import { ClosedEnum } from "../../types/enums.js"; import * as z from "zod"; export declare const IngestionScheduleUpdateContractDtoDataset: { readonly Events: "Events"; readonly Metrics: "Metrics"; readonly ExportExposures: "export_exposures"; readonly EntityProperties: "entity_properties"; }; export type IngestionScheduleUpdateContractDtoDataset = ClosedEnum; export type IngestionScheduleUpdateContractDto = { dataset: IngestionScheduleUpdateContractDtoDataset; scheduledHourPst?: number | undefined; }; /** @internal */ export declare const IngestionScheduleUpdateContractDtoDataset$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const IngestionScheduleUpdateContractDtoDataset$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace IngestionScheduleUpdateContractDtoDataset$ { /** @deprecated use `IngestionScheduleUpdateContractDtoDataset$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Events: "Events"; readonly Metrics: "Metrics"; readonly ExportExposures: "export_exposures"; readonly EntityProperties: "entity_properties"; }>; /** @deprecated use `IngestionScheduleUpdateContractDtoDataset$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Events: "Events"; readonly Metrics: "Metrics"; readonly ExportExposures: "export_exposures"; readonly EntityProperties: "entity_properties"; }>; } /** @internal */ export declare const IngestionScheduleUpdateContractDto$inboundSchema: z.ZodType; /** @internal */ export type IngestionScheduleUpdateContractDto$Outbound = { dataset: string; scheduled_hour_pst: number; }; /** @internal */ export declare const IngestionScheduleUpdateContractDto$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace IngestionScheduleUpdateContractDto$ { /** @deprecated use `IngestionScheduleUpdateContractDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IngestionScheduleUpdateContractDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IngestionScheduleUpdateContractDto$Outbound` instead. */ type Outbound = IngestionScheduleUpdateContractDto$Outbound; } //# sourceMappingURL=ingestionscheduleupdatecontractdto.d.ts.map