import { ClosedEnum } from "../../types/enums.js"; import * as components from "../components/index.js"; import * as z from "zod"; /** * report type */ export declare const QueryParamType: { readonly FirstExposures: "first_exposures"; readonly PulseDaily: "pulse_daily"; }; /** * report type */ export type QueryParamType = ClosedEnum; export type ConsoleV1ReportsControllerGenReportRequest = { /** * report type */ type: QueryParamType; /** * date for the report */ date: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * Get Reports */ export type ConsoleV1ReportsControllerGenReportResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: components.ReportDto; }; /** @internal */ export declare const QueryParamType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const QueryParamType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace QueryParamType$ { /** @deprecated use `QueryParamType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly FirstExposures: "first_exposures"; readonly PulseDaily: "pulse_daily"; }>; /** @deprecated use `QueryParamType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly FirstExposures: "first_exposures"; readonly PulseDaily: "pulse_daily"; }>; } /** @internal */ export declare const ConsoleV1ReportsControllerGenReportRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ReportsControllerGenReportRequest$Outbound = { type: string; date: string; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1ReportsControllerGenReportRequest$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 ConsoleV1ReportsControllerGenReportRequest$ { /** @deprecated use `ConsoleV1ReportsControllerGenReportRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ReportsControllerGenReportRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ReportsControllerGenReportRequest$Outbound` instead. */ type Outbound = ConsoleV1ReportsControllerGenReportRequest$Outbound; } /** @internal */ export declare const ConsoleV1ReportsControllerGenReportResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ReportsControllerGenReportResponseBody$Outbound = { message: string; data: components.ReportDto$Outbound; }; /** @internal */ export declare const ConsoleV1ReportsControllerGenReportResponseBody$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 ConsoleV1ReportsControllerGenReportResponseBody$ { /** @deprecated use `ConsoleV1ReportsControllerGenReportResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ReportsControllerGenReportResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ReportsControllerGenReportResponseBody$Outbound` instead. */ type Outbound = ConsoleV1ReportsControllerGenReportResponseBody$Outbound; } //# sourceMappingURL=consolev1reportscontrollergenreport.d.ts.map