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