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