import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1IngestionControllerGenUpdateIngestionScheduleRequest = { /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; ingestionScheduleUpdateContractDto: components.IngestionScheduleUpdateContractDto; }; /** * Update Ingestion Schedule Success */ export type ConsoleV1IngestionControllerGenUpdateIngestionScheduleResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: components.IngestionScheduleDto; }; /** @internal */ export declare const ConsoleV1IngestionControllerGenUpdateIngestionScheduleRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1IngestionControllerGenUpdateIngestionScheduleRequest$Outbound = { "x-respect-review-settings"?: string | undefined; IngestionScheduleUpdateContractDto: components.IngestionScheduleUpdateContractDto$Outbound; }; /** @internal */ export declare const ConsoleV1IngestionControllerGenUpdateIngestionScheduleRequest$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 ConsoleV1IngestionControllerGenUpdateIngestionScheduleRequest$ { /** @deprecated use `ConsoleV1IngestionControllerGenUpdateIngestionScheduleRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenUpdateIngestionScheduleRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenUpdateIngestionScheduleRequest$Outbound` instead. */ type Outbound = ConsoleV1IngestionControllerGenUpdateIngestionScheduleRequest$Outbound; } /** @internal */ export declare const ConsoleV1IngestionControllerGenUpdateIngestionScheduleResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1IngestionControllerGenUpdateIngestionScheduleResponseBody$Outbound = { message: string; data: components.IngestionScheduleDto$Outbound; }; /** @internal */ export declare const ConsoleV1IngestionControllerGenUpdateIngestionScheduleResponseBody$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 ConsoleV1IngestionControllerGenUpdateIngestionScheduleResponseBody$ { /** @deprecated use `ConsoleV1IngestionControllerGenUpdateIngestionScheduleResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenUpdateIngestionScheduleResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenUpdateIngestionScheduleResponseBody$Outbound` instead. */ type Outbound = ConsoleV1IngestionControllerGenUpdateIngestionScheduleResponseBody$Outbound; } //# sourceMappingURL=consolev1ingestioncontrollergenupdateingestionschedule.d.ts.map