/* * 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 OrderStatus = { Draft: "draft", Pending: "pending", Paid: "paid", Refunded: "refunded", PartiallyRefunded: "partially_refunded", Void: "void", } as const; export type OrderStatus = OpenEnum; /** @internal */ export const OrderStatus$inboundSchema: z.ZodMiniType = openEnums.inboundSchema(OrderStatus); /** @internal */ export const OrderStatus$outboundSchema: z.ZodMiniType = openEnums.outboundSchema(OrderStatus);