Skip to content

Variable: GetCardChecklistsSchema

ts
const GetCardChecklistsSchema: ZodObject<{
  checkItemFields: ZodOptional<ZodCustom<
     | "name"
     | "type"
     | "state"
     | string & object
     | "idMember"
     | "nameData"
     | "pos"
     | "due"
     | "dueReminder", 
     | "name"
     | "type"
     | "state"
     | string & object
     | "idMember"
     | "nameData"
     | "pos"
     | "due"
    | "dueReminder">>;
  checkItems: ZodOptional<ZodCustom<"all" | "none" | string & object, "all" | "none" | string & object>>;
  fields: ZodOptional<ZodCustom<"name" | "type" | "all" | "state" | string & object | "nameData" | "pos", "name" | "type" | "all" | "state" | string & object | "nameData" | "pos">>;
  filter: ZodOptional<ZodCustom<"all" | "none" | string & object, "all" | "none" | string & object>>;
  id: ZodString;
}, $strip>;

Defined in: parameters/getCardChecklists.ts:4