@lifeready/core 8.0.13 → 8.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/lifeready-core.umd.js +4 -0
- package/bundles/lifeready-core.umd.js.map +1 -1
- package/bundles/lifeready-core.umd.min.js +1 -1
- package/bundles/lifeready-core.umd.min.js.map +1 -1
- package/esm2015/lib/api/types/lr-graphql.types.js +6 -1
- package/esm2015/lib/plan/plan.types.js +1 -1
- package/fesm2015/lifeready-core.js +6 -1
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/api/types/lr-graphql.types.d.ts +7 -0
- package/lib/plan/plan.types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -695,6 +695,7 @@ export interface ServerConfig {
|
|
|
695
695
|
relayConnectionMaxLimit?: number;
|
|
696
696
|
}
|
|
697
697
|
export interface AvailablePlanField {
|
|
698
|
+
planName?: string;
|
|
698
699
|
issuerUid?: string;
|
|
699
700
|
planUid?: string;
|
|
700
701
|
name?: string;
|
|
@@ -704,13 +705,19 @@ export interface AvailablePlanField {
|
|
|
704
705
|
}
|
|
705
706
|
export interface PriceOptionField {
|
|
706
707
|
priceId?: string;
|
|
708
|
+
planName?: string;
|
|
707
709
|
name?: string;
|
|
710
|
+
billingPeriod?: BillingPeriodField;
|
|
708
711
|
description?: string;
|
|
709
712
|
amount?: number;
|
|
710
713
|
currency?: string;
|
|
711
714
|
intervalUnit?: string;
|
|
712
715
|
intervalCount?: number;
|
|
713
716
|
}
|
|
717
|
+
export declare enum BillingPeriodField {
|
|
718
|
+
MONTHLY = "MONTHLY",
|
|
719
|
+
ANNUAL = "ANNUAL"
|
|
720
|
+
}
|
|
714
721
|
export interface TrialPeriodField {
|
|
715
722
|
years?: number;
|
|
716
723
|
months?: number;
|
package/lib/plan/plan.types.d.ts
CHANGED