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