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