@teamkeel/functions-runtime 0.421.5 → 0.422.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3240,7 +3240,10 @@ function createFlowContext(runId, data, action, callback, element, spanId, ctx)
|
|
|
3240
3240
|
spanId,
|
|
3241
3241
|
endTime: /* @__PURE__ */ new Date()
|
|
3242
3242
|
}).where("id", "=", step.id).returningAll().executeTakeFirst();
|
|
3243
|
-
|
|
3243
|
+
if (action) {
|
|
3244
|
+
return { data, action };
|
|
3245
|
+
}
|
|
3246
|
+
return data;
|
|
3244
3247
|
});
|
|
3245
3248
|
}, "page"),
|
|
3246
3249
|
inputs: {
|