/* * 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 AlertType = { LowOngoingBalance: "low_ongoing_balance", LowCreditBalance: "low_credit_balance", FeatureWalletBalance: "feature_wallet_balance", SubscriptionSpend: "subscription_spend", SubscriptionLineItemSpend: "subscription_line_item_spend", SubscriptionGroupSpend: "subscription_group_spend", EntitlementGrantThreshold: "entitlement_grant_threshold", EntitlementGrantExhausted: "entitlement_grant_exhausted", } as const; export type AlertType = OpenEnum; /** @internal */ export const AlertType$inboundSchema: z.ZodMiniType = openEnums.inboundSchema(AlertType); /** @internal */ export const AlertType$outboundSchema: z.ZodMiniType = openEnums.outboundSchema(AlertType);