/* * 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 AlertEntityType = { Wallet: "wallet", Feature: "feature", Subscription: "subscription", SubscriptionLineItem: "subscription_line_item", Group: "group", EntitlementGrant: "entitlement_grant", } as const; export type AlertEntityType = OpenEnum; /** @internal */ export const AlertEntityType$inboundSchema: z.ZodMiniType< AlertEntityType, unknown > = openEnums.inboundSchema(AlertEntityType); /** @internal */ export const AlertEntityType$outboundSchema: z.ZodMiniType< string, AlertEntityType > = openEnums.outboundSchema(AlertEntityType);