Files
cfw-autumn/shared/api/billing/common/billingBehavior.ts
2026-02-20 15:17:00 +00:00

12 lines
364 B
TypeScript

import { z } from "zod/v4";
export const BillingBehaviorSchema = z
.enum(["prorate_immediately", "none"])
.meta({
title: "BillingBehavior",
description:
"How to handle billing. 'prorate_immediately' charges/credits prorated amounts now, 'none' does not charge/credit anything.",
});
export type BillingBehavior = z.infer<typeof BillingBehaviorSchema>;