@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.
@@ -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;
@@ -3,6 +3,7 @@ export interface IssuePlanOptions {
3
3
  issuerUid: string;
4
4
  planUid: string;
5
5
  priceId: string;
6
+ disableTrial: boolean;
6
7
  promotionalCode?: string;
7
8
  }
8
9
  export interface CancelPlanOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lifeready/core",
3
- "version": "8.0.13",
3
+ "version": "8.0.14",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "~10.0.5",
6
6
  "@angular/core": "~10.0.5",