/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; export const GroupedInvoicingAction = { Add: "add", Remove: "remove", } as const; export type GroupedInvoicingAction = ClosedEnum; /** @internal */ export const GroupedInvoicingAction$outboundSchema: z.ZodMiniEnum< typeof GroupedInvoicingAction > = z.enum(GroupedInvoicingAction);