/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 6a2a429129a3 */ import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; export const GatewayProjectState = { NotSetUp: "not-set-up", SetupInProgress: "setup-in-progress", Active: "active", NeedsAttention: "needs-attention", } as const; export type GatewayProjectState = ClosedEnum; /** @internal */ export const GatewayProjectState$inboundSchema: z.ZodEnum< typeof GatewayProjectState > = z.enum(GatewayProjectState);