auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps) => {
}
// In any step, you can reference the contents of the trigger event
console.log(steps.trigger.event)
this.exportedData = "I can use this data in another step"
this.anotherProperty = {
data: "I can export any JSON-serializable data",
foo: "bar"
}
auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps) => {
}
return {
data: "I can use this data in another step"
}