@lifeready/core 5.0.4 → 5.0.5
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.
|
@@ -682,6 +682,7 @@ export interface IssuedPlanNode extends Node, TimeStamped {
|
|
|
682
682
|
currentPriceOption?: PriceOptionField;
|
|
683
683
|
upcomingInvoice?: BillingField;
|
|
684
684
|
alternativePriceOptions?: PriceOptionField[];
|
|
685
|
+
scheduledPriceChanges?: PriceChangeField[];
|
|
685
686
|
}
|
|
686
687
|
export interface IssuedPlanStateNode extends Node, TimeStamped {
|
|
687
688
|
periodStart?: DateTime;
|
|
@@ -708,3 +709,7 @@ export interface BillingField {
|
|
|
708
709
|
paid?: boolean;
|
|
709
710
|
nextPaymentAttempt?: DateTime;
|
|
710
711
|
}
|
|
712
|
+
export interface PriceChangeField {
|
|
713
|
+
periodStart?: DateTime;
|
|
714
|
+
priceOption?: PriceOptionField;
|
|
715
|
+
}
|