From 9856719102af93ac5f79fbca4a338a16ca672776 Mon Sep 17 00:00:00 2001 From: Alan Bridgeman Date: Sat, 7 Feb 2026 12:15:24 -0600 Subject: [PATCH] Updated BillingCadence to align with Price frequency type --- src/oauth/types/BillingCadence.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/oauth/types/BillingCadence.ts b/src/oauth/types/BillingCadence.ts index 1eb0e12..99be191 100644 --- a/src/oauth/types/BillingCadence.ts +++ b/src/oauth/types/BillingCadence.ts @@ -1,4 +1,7 @@ export enum BillingCadence { - MONTHLY = 'monthly', - YEARLY = 'yearly' + DAILY = 'day', + WEEKLY = 'week', + BIWEEKLY = 'bi-week', + MONTHLY = 'month', + YEARLY = 'year' } \ No newline at end of file