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