fix: add on with merge subs

This commit is contained in:
John Yeo
2025-07-07 19:49:16 +01:00
parent 1cfcb6096d
commit 24ab50d9d4
3 changed files with 14 additions and 8 deletions

View File

@@ -16,6 +16,7 @@ export const OrgConfigSchema = z.object({
sync_status: z.boolean().default(true),
merge_billing_cycles: z.boolean().default(true),
multiple_trials: z.boolean().default(false),
allow_paid_default: z.boolean().default(false),
});
export type OrgConfig = z.infer<typeof OrgConfigSchema>;