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