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