Variable: GetChecklistSchema
ts
const GetChecklistSchema: ZodObject<{
cards: ZodOptional<ZodCustom<"all" | "none" | "closed" | "open" | "visible" | string & object, "all" | "none" | "closed" | "open" | "visible" | string & object>>;
checkItemFields: ZodOptional<ZodCustom<
| "name"
| "type"
| "all"
| "state"
| string & object
| "idMember"
| "nameData"
| "pos"
| "due"
| "dueReminder",
| "name"
| "type"
| "all"
| "state"
| string & object
| "idMember"
| "nameData"
| "pos"
| "due"
| "dueReminder">>;
checkItems: ZodOptional<ZodCustom<"all" | "none" | string & object, "all" | "none" | string & object>>;
fields: ZodOptional<ZodUnion<readonly [ZodString, ZodArray<ZodString>, ZodCustom<"name" | "id" | string & object | "pos" | "idBoard" | "idCard", "name" | "id" | string & object | "pos" | "idBoard" | "idCard">, ZodArray<ZodCustom<"name" | "id" | string & object | "pos" | "idBoard" | "idCard", "name" | "id" | string & object | "pos" | "idBoard" | "idCard">>]>>;
id: ZodString;
}, $strip>;Defined in: parameters/getChecklist.ts:4