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