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