Variable: WorkflowStatusUpdateSchema
ts
const WorkflowStatusUpdateSchema: ZodObject<{
description: ZodOptional<ZodString>;
id: ZodOptional<ZodString>;
name: ZodString;
statusCategory: ZodCustom<string & object | "TODO" | "IN_PROGRESS" | "DONE", string & object | "TODO" | "IN_PROGRESS" | "DONE">;
statusReference: ZodString;
}, $loose>;Defined in: src/cloud/models/workflowStatusUpdate.ts:5
Details of the status being updated.