Files
cfw-autumn/shared/api/billing/common/refundBehavior.ts
2026-01-23 16:57:04 +00:00

9 lines
198 B
TypeScript

import { z } from "zod/v4";
export const RefundBehaviorSchema = z.enum([
"grant_invoice_credits",
"refund_payment_method",
]);
export type RefundBehavior = z.infer<typeof RefundBehaviorSchema>;