Skip to content

Variable: UpdateStatusesSchema

ts
const UpdateStatusesSchema: 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>>;
}, $strip>;

Defined in: src/cloud/parameters/updateStatuses.ts:4