/* * 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 CommitmentType = { Amount: "amount", Quantity: "quantity", } as const; export type CommitmentType = OpenEnum; /** @internal */ export const CommitmentType$inboundSchema: z.ZodMiniType< CommitmentType, unknown > = openEnums.inboundSchema(CommitmentType); /** @internal */ export const CommitmentType$outboundSchema: z.ZodMiniType< string, CommitmentType > = openEnums.outboundSchema(CommitmentType);