import { z } from 'zod'; /** * Zod schema for the CategoryDeliveryConfig model. * Defines the structure and validation rules for this data type. * This is the shape used in application code - what developers interact with. */ export declare const categoryDeliveryConfig: z.ZodLazy; if: z.ZodNullable>; }, "strip", z.ZodTypeAny, { channel: string; delay?: number | undefined; if?: string | null | undefined; }, { channel: string; delay?: number | undefined; if?: string | null | undefined; }>>, "many">; disabled: z.ZodOptional; key: z.ZodString; }, "strip", z.ZodTypeAny, { key: string; channels: { channel: string; delay?: number | undefined; if?: string | null | undefined; }[]; disabled?: boolean | undefined; }, { key: string; channels: { channel: string; delay?: number | undefined; if?: string | null | undefined; }[]; disabled?: boolean | undefined; }>>; /** * * @typedef {CategoryDeliveryConfig} categoryDeliveryConfig * @property {CategoryDeliveryConfigChannels[]} - Ordered channel steps the delivery planner should execute. * @property {boolean} - Disables the plan so it cannot be executed. * @property {string} - Unique identifier for this delivery plan. */ export type CategoryDeliveryConfig = z.infer; /** * Zod schema for mapping API responses to the CategoryDeliveryConfig application shape. * Handles any property name transformations from the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const categoryDeliveryConfigResponse: z.ZodLazy; if: z.ZodNullable>; }, "strip", z.ZodTypeAny, { channel: string; delay?: number | undefined; if?: string | null | undefined; }, { channel: string; delay?: number | undefined; if?: string | null | undefined; }>, { channel: string; delay: number | undefined; if: string | null | undefined; }, { channel: string; delay?: number | undefined; if?: string | null | undefined; }>>, "many">; disabled: z.ZodOptional; key: z.ZodString; }, "strip", z.ZodTypeAny, { key: string; channels: { channel: string; delay: number | undefined; if: string | null | undefined; }[]; disabled?: boolean | undefined; }, { key: string; channels: { channel: string; delay?: number | undefined; if?: string | null | undefined; }[]; disabled?: boolean | undefined; }>, { channels: { channel: string; delay: number | undefined; if: string | null | undefined; }[]; disabled: boolean | undefined; key: string; }, { key: string; channels: { channel: string; delay?: number | undefined; if?: string | null | undefined; }[]; disabled?: boolean | undefined; }>>; /** * Zod schema for mapping the CategoryDeliveryConfig application shape to API requests. * Handles any property name transformations required by the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const categoryDeliveryConfigRequest: z.ZodLazy; if: z.ZodNullable>; }, "strip", z.ZodTypeAny, { channel: string; delay?: number | undefined; if?: string | null | undefined; }, { channel: string; delay?: number | undefined; if?: string | null | undefined; }>, { channel: string; delay: number | undefined; if: string | null | undefined; }, { channel: string; delay?: number | undefined; if?: string | null | undefined; }>>, "many">; disabled: z.ZodOptional; key: z.ZodString; }, "strip", z.ZodTypeAny, { key: string; channels: { channel: string; delay: number | undefined; if: string | null | undefined; }[]; disabled?: boolean | undefined; }, { key: string; channels: { channel: string; delay?: number | undefined; if?: string | null | undefined; }[]; disabled?: boolean | undefined; }>, { channels: { channel: string; delay: number | undefined; if: string | null | undefined; }[]; disabled: boolean | undefined; key: string; }, { key: string; channels: { channel: string; delay?: number | undefined; if?: string | null | undefined; }[]; disabled?: boolean | undefined; }>>; //# sourceMappingURL=category-delivery-config.d.ts.map