/* * 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 SubscriptionChangeEntityType = { Plan: "plan", Addon: "addon", CreditGrant: "credit_grant", Entitlement: "entitlement", EntitlementGrant: "entitlement_grant", } as const; export type SubscriptionChangeEntityType = OpenEnum< typeof SubscriptionChangeEntityType >; /** @internal */ export const SubscriptionChangeEntityType$inboundSchema: z.ZodMiniType< SubscriptionChangeEntityType, unknown > = openEnums.inboundSchema(SubscriptionChangeEntityType);