/* * 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 PriceEntityType = { Plan: "PLAN", Subscription: "SUBSCRIPTION", Addon: "ADDON", Price: "PRICE", Costsheet: "COSTSHEET", } as const; export type PriceEntityType = OpenEnum; /** @internal */ export const PriceEntityType$inboundSchema: z.ZodMiniType< PriceEntityType, unknown > = openEnums.inboundSchema(PriceEntityType); /** @internal */ export const PriceEntityType$outboundSchema: z.ZodMiniType< string, PriceEntityType > = openEnums.outboundSchema(PriceEntityType);