@lifeready/core 4.0.2 → 4.0.4
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;
|
|
@@ -697,6 +698,7 @@ export declare enum PlanStateField {
|
|
|
697
698
|
export interface BillingField {
|
|
698
699
|
invoiceNumber?: string;
|
|
699
700
|
total?: number;
|
|
701
|
+
amountDue?: number;
|
|
700
702
|
currency?: string;
|
|
701
703
|
documentUrl?: string;
|
|
702
704
|
status?: string;
|
|
@@ -707,3 +709,7 @@ export interface BillingField {
|
|
|
707
709
|
paid?: boolean;
|
|
708
710
|
nextPaymentAttempt?: DateTime;
|
|
709
711
|
}
|
|
712
|
+
export interface PriceChangeField {
|
|
713
|
+
periodStart?: DateTime;
|
|
714
|
+
priceOption?: PriceOptionField;
|
|
715
|
+
}
|