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