/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const ScheduledTaskInterval = { FifteenMIN: "15MIN", ThirtyMIN: "30MIN", Custom: "custom", Hourly: "hourly", Daily: "daily", } as const; export type ScheduledTaskInterval = OpenEnum; /** @internal */ export const ScheduledTaskInterval$inboundSchema: z.ZodMiniType< ScheduledTaskInterval, unknown > = openEnums.inboundSchema(ScheduledTaskInterval); /** @internal */ export const ScheduledTaskInterval$outboundSchema: z.ZodMiniType< string, ScheduledTaskInterval > = openEnums.outboundSchema(ScheduledTaskInterval);