Skip to content

Variable: StatusUpdateSchema

ts
const StatusUpdateSchema: ZodObject<{
  description: ZodOptional<ZodString>;
  id: ZodString;
  name: ZodString;
  statusCategory: ZodCustom<string & object | "TODO" | "IN_PROGRESS" | "DONE", string & object | "TODO" | "IN_PROGRESS" | "DONE">;
}, $loose>;

Defined in: src/cloud/models/statusUpdate.ts:5

Details of the status being updated.