/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 4435afe23c5c */ import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; /** * Alien Gateway a customer deployment runs */ export const GatewayKind = { Ai: "ai", Encryption: "encryption", Sandbox: "sandbox", } as const; /** * Alien Gateway a customer deployment runs */ export type GatewayKind = ClosedEnum; /** @internal */ export const GatewayKind$outboundSchema: z.ZodEnum = z.enum( GatewayKind, );