/* * 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 SubscriptionType = { Standalone: "standalone", DelegatedInvoicing: "delegated_invoicing", Parent: "parent", Inherited: "inherited", GroupedInvoicing: "grouped_invoicing", } as const; export type SubscriptionType = OpenEnum; /** @internal */ export const SubscriptionType$inboundSchema: z.ZodMiniType< SubscriptionType, unknown > = openEnums.inboundSchema(SubscriptionType); /** @internal */ export const SubscriptionType$outboundSchema: z.ZodMiniType< string, SubscriptionType > = openEnums.outboundSchema(SubscriptionType);