import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MonthlyTypeEnum } from "./monthlytypeenum.js"; import { OrdinalEnum } from "./ordinalenum.js"; import { OrdinalValueEnum } from "./ordinalvalueenum.js"; export declare const DigestTimedConfigDtoWeekDays: { readonly Monday: "monday"; readonly Tuesday: "tuesday"; readonly Wednesday: "wednesday"; readonly Thursday: "thursday"; readonly Friday: "friday"; readonly Saturday: "saturday"; readonly Sunday: "sunday"; }; export type DigestTimedConfigDtoWeekDays = ClosedEnum; export type DigestTimedConfigDto = { /** * Time at which the digest is triggered */ atTime?: string | undefined; /** * Days of the week for the digest */ weekDays?: Array | undefined; /** * Specific days of the month for the digest */ monthDays?: Array | undefined; /** * Ordinal position for the digest */ ordinal?: OrdinalEnum | undefined; /** * Value of the ordinal */ ordinalValue?: OrdinalValueEnum | undefined; /** * Type of monthly schedule */ monthlyType?: MonthlyTypeEnum | undefined; /** * Cron expression for scheduling */ cronExpression?: string | undefined; /** * Until date for scheduling */ untilDate?: string | undefined; }; /** @internal */ export declare const DigestTimedConfigDtoWeekDays$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const DigestTimedConfigDto$inboundSchema: z.ZodType; export declare function digestTimedConfigDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=digesttimedconfigdto.d.ts.map