/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const EntitlementEntityType = { Plan: "PLAN", Subscription: "SUBSCRIPTION", Addon: "ADDON", } as const; export type EntitlementEntityType = OpenEnum; /** @internal */ export const EntitlementEntityType$inboundSchema: z.ZodMiniType< EntitlementEntityType, unknown > = openEnums.inboundSchema(EntitlementEntityType); /** @internal */ export const EntitlementEntityType$outboundSchema: z.ZodMiniType< string, EntitlementEntityType > = openEnums.outboundSchema(EntitlementEntityType);