Updated BillingCadence to align with Price frequency type
All checks were successful
Publish to Private NPM Registry / publish (push) Successful in 44s

This commit is contained in:
Alan Bridgeman 2026-02-07 12:15:24 -06:00
parent b093c38d47
commit 9856719102

View file

@ -1,4 +1,7 @@
export enum BillingCadence {
MONTHLY = 'monthly',
YEARLY = 'yearly'
DAILY = 'day',
WEEKLY = 'week',
BIWEEKLY = 'bi-week',
MONTHLY = 'month',
YEARLY = 'year'
}