Variable StatusMetadataSchemaConst
StatusMetadataSchema: ZodObject<
{
category: ZodOptional<
ZodCustom<
string & {}
| "TODO"
| "IN_PROGRESS"
| "DONE",
string & {} | "TODO" | "IN_PROGRESS" | "DONE",
>,
>;
id: ZodOptional<ZodString>;
name: ZodOptional<ZodString>;
},
$loose,
> = ...
The details of the statuses in the associated workflows.