Variable WorkflowStatusUpdateSchemaConst
WorkflowStatusUpdateSchema: ZodObject<
{
description: ZodOptional<ZodString>;
id: ZodOptional<ZodString>;
name: ZodString;
statusCategory: ZodCustom<
string & {}
| "TODO"
| "IN_PROGRESS"
| "DONE",
string & {} | "TODO" | "IN_PROGRESS" | "DONE",
>;
statusReference: ZodString;
},
$loose,
> = ...
Details of the status being updated.