@decocms/bindings 1.0.7 → 1.0.8
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/package.json
CHANGED
|
@@ -164,7 +164,6 @@ export type WorkflowExecutionStatus = z.infer<
|
|
|
164
164
|
* Includes lock columns and retry tracking.
|
|
165
165
|
*/
|
|
166
166
|
export const WorkflowExecutionSchema = BaseCollectionEntitySchema.extend({
|
|
167
|
-
steps: z.array(StepSchema).describe("Steps that make up the workflow"),
|
|
168
167
|
gateway_id: z
|
|
169
168
|
.string()
|
|
170
169
|
.describe("ID of the gateway that will be used to execute the workflow"),
|
|
@@ -199,6 +198,7 @@ export const WorkflowExecutionSchema = BaseCollectionEntitySchema.extend({
|
|
|
199
198
|
),
|
|
200
199
|
error: z
|
|
201
200
|
.unknown()
|
|
201
|
+
.nullish()
|
|
202
202
|
.describe("Error that occurred during the workflow execution"),
|
|
203
203
|
completed_steps: z
|
|
204
204
|
.object({
|