/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 3bd6e678684f */ import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; export const PlanId = { Starter: "starter", Pro: "pro", ProAnnual: "pro_annual", Enterprise: "enterprise", } as const; export type PlanId = ClosedEnum; /** @internal */ export const PlanId$inboundSchema: z.ZodEnum = z.enum(PlanId);