import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1IngestionControllerGenIngestionRunsRequest = { page?: any | undefined; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * List Ingestion Runs Success */ export type ConsoleV1IngestionControllerGenIngestionRunsResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: Array; /** * Pagination metadata for checking if there is next page for example. */ pagination: components.PaginationResponseMetadataDto; }; /** @internal */ export declare const ConsoleV1IngestionControllerGenIngestionRunsRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1IngestionControllerGenIngestionRunsRequest$Outbound = { page?: any | undefined; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1IngestionControllerGenIngestionRunsRequest$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 ConsoleV1IngestionControllerGenIngestionRunsRequest$ { /** @deprecated use `ConsoleV1IngestionControllerGenIngestionRunsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenIngestionRunsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenIngestionRunsRequest$Outbound` instead. */ type Outbound = ConsoleV1IngestionControllerGenIngestionRunsRequest$Outbound; } /** @internal */ export declare const ConsoleV1IngestionControllerGenIngestionRunsResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1IngestionControllerGenIngestionRunsResponseBody$Outbound = { message: string; data: Array; pagination: components.PaginationResponseMetadataDto$Outbound; }; /** @internal */ export declare const ConsoleV1IngestionControllerGenIngestionRunsResponseBody$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 ConsoleV1IngestionControllerGenIngestionRunsResponseBody$ { /** @deprecated use `ConsoleV1IngestionControllerGenIngestionRunsResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenIngestionRunsResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionControllerGenIngestionRunsResponseBody$Outbound` instead. */ type Outbound = ConsoleV1IngestionControllerGenIngestionRunsResponseBody$Outbound; } //# sourceMappingURL=consolev1ingestioncontrollergeningestionruns.d.ts.map