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