/* * 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 EntitlementAggregationMode = { Additive: "additive", Parallel: "parallel", } as const; export type EntitlementAggregationMode = OpenEnum< typeof EntitlementAggregationMode >; /** @internal */ export const EntitlementAggregationMode$inboundSchema: z.ZodMiniType< EntitlementAggregationMode, unknown > = openEnums.inboundSchema(EntitlementAggregationMode); /** @internal */ export const EntitlementAggregationMode$outboundSchema: z.ZodMiniType< string, EntitlementAggregationMode > = openEnums.outboundSchema(EntitlementAggregationMode);