@lifeready/core 7.1.2 → 7.2.1

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.
@@ -681,6 +681,7 @@ export interface ServerConfig {
681
681
  relayConnectionMaxLimit?: number;
682
682
  }
683
683
  export interface AvailablePlanField {
684
+ planName?: string;
684
685
  issuerUid?: string;
685
686
  planUid?: string;
686
687
  name?: string;
@@ -690,13 +691,19 @@ export interface AvailablePlanField {
690
691
  }
691
692
  export interface PriceOptionField {
692
693
  priceId?: string;
694
+ planName?: string;
693
695
  name?: string;
696
+ billingPeriod?: BillingPeriodField;
694
697
  description?: string;
695
698
  amount?: number;
696
699
  currency?: string;
697
700
  intervalUnit?: string;
698
701
  intervalCount?: number;
699
702
  }
703
+ export declare enum BillingPeriodField {
704
+ MONTHLY = "MONTHLY",
705
+ ANNUAL = "ANNUAL"
706
+ }
700
707
  export interface TrialPeriodField {
701
708
  years?: number;
702
709
  months?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lifeready/core",
3
- "version": "7.1.2",
3
+ "version": "7.2.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "~10.0.5",
6
6
  "@angular/core": "~10.0.5",