Skip to content

Variable: StatusUpdateRequestSchema

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

Defined in: src/cloud/models/statusUpdateRequest.ts:6

The list of statuses that will be updated.