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