Variable: CreateStatusesSchema
ts
const CreateStatusesSchema: ZodObject<{
scope: ZodObject<{
project: ZodOptional<ZodObject<{
id: ZodString;
}, $loose>>;
type: ZodCustom<string & object | "PROJECT" | "GLOBAL", string & object | "PROJECT" | "GLOBAL">;
}, $loose>;
statuses: ZodArray<ZodObject<{
description: ZodOptional<ZodString>;
name: ZodString;
statusCategory: ZodCustom<string & object | "TODO" | "IN_PROGRESS" | "DONE", string & object | "TODO" | "IN_PROGRESS" | "DONE">;
}, $loose>>;
}, $strip>;Defined in: src/cloud/parameters/createStatuses.ts:4