Skip to content

dependabit / manifest/src / ScheduleSchema

Variable: ScheduleSchema

ts
const ScheduleSchema: ZodObject<{
  day: ZodOptional<ZodEnum<{
     friday: "friday";
     monday: "monday";
     saturday: "saturday";
     sunday: "sunday";
     thursday: "thursday";
     tuesday: "tuesday";
     wednesday: "wednesday";
  }>>;
  interval: ZodEnum<{
     daily: "daily";
     hourly: "hourly";
     monthly: "monthly";
     weekly: "weekly";
  }>;
  time: ZodOptional<ZodString>;
  timezone: ZodDefault<ZodString>;
}, $strip>;

Defined in: packages/manifest/src/schema.ts:158

Released under the MIT License.