import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1DynamicConfigControllerGenFullUpdateRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; dynamicConfigFullUpdateDto: components.DynamicConfigFullUpdateDto; }; /** * Fully Update Dynamic Config Response */ export type ConsoleV1DynamicConfigControllerGenFullUpdateResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: components.DynamicConfigDto; }; /** @internal */ export declare const ConsoleV1DynamicConfigControllerGenFullUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1DynamicConfigControllerGenFullUpdateRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; DynamicConfigFullUpdateDto: components.DynamicConfigFullUpdateDto$Outbound; }; /** @internal */ export declare const ConsoleV1DynamicConfigControllerGenFullUpdateRequest$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 ConsoleV1DynamicConfigControllerGenFullUpdateRequest$ { /** @deprecated use `ConsoleV1DynamicConfigControllerGenFullUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1DynamicConfigControllerGenFullUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1DynamicConfigControllerGenFullUpdateRequest$Outbound` instead. */ type Outbound = ConsoleV1DynamicConfigControllerGenFullUpdateRequest$Outbound; } /** @internal */ export declare const ConsoleV1DynamicConfigControllerGenFullUpdateResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1DynamicConfigControllerGenFullUpdateResponseBody$Outbound = { message: string; data: components.DynamicConfigDto$Outbound; }; /** @internal */ export declare const ConsoleV1DynamicConfigControllerGenFullUpdateResponseBody$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 ConsoleV1DynamicConfigControllerGenFullUpdateResponseBody$ { /** @deprecated use `ConsoleV1DynamicConfigControllerGenFullUpdateResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1DynamicConfigControllerGenFullUpdateResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1DynamicConfigControllerGenFullUpdateResponseBody$Outbound` instead. */ type Outbound = ConsoleV1DynamicConfigControllerGenFullUpdateResponseBody$Outbound; } //# sourceMappingURL=consolev1dynamicconfigcontrollergenfullupdate.d.ts.map