auths objectreturn or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.async (event, steps) => {}const stream = require("stream");
const { promisify } = require("util");
const fs = require("fs");
const got = require("got");
 
const pipeline = promisify(stream.pipeline);
await pipeline(
  got.stream(steps.trigger.event.body.raw_body_url),
  fs.createWriteStream(`/tmp/raw_body`)
);
this.tmpFiles = fs.readdirSync("/tmp");