Skip to content

Variable: NotificationChannelSettingsSchema

ts
const NotificationChannelSettingsSchema: ZodObject<{
  blockedKeys: ZodOptional<ZodArray<ZodEnum<{
     notification_added_a_due_date: "notification_added_a_due_date";
     notification_added_attachment_to_card: "notification_added_attachment_to_card";
     notification_archived_card: "notification_archived_card";
     notification_card_due_soon: "notification_card_due_soon";
     notification_changed_due_date: "notification_changed_due_date";
     notification_comment_card: "notification_comment_card";
     notification_created_card: "notification_created_card";
     notification_moved_card: "notification_moved_card";
     notification_removed_from_card: "notification_removed_from_card";
     notification_unarchived_card: "notification_unarchived_card";
  }>>>;
  channel: ZodOptional<ZodEnum<{
     email: "email";
  }>>;
  id: ZodString;
  idMember: ZodOptional<ZodString>;
}, $strip>;

Defined in: models/notificationChannelSettings.ts:7