import * as z from 'zod'; export const PaymentMethodSchema = z.enum(['EFT', 'CHECK', 'CASH', 'CARD', 'OTHER']) export type PaymentMethod = z.infer;