@bondsports/types 1.19.14 → 1.19.15
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.
|
@@ -73,6 +73,7 @@ export interface IRemoveAddonsFinancialData {
|
|
|
73
73
|
paymentMethods: IPaymentMethodToFundLeft[];
|
|
74
74
|
lineItems: AddonsLineItemData[];
|
|
75
75
|
nextFinancialStep: FinancialStepEnum;
|
|
76
|
+
invoice: Invoice;
|
|
76
77
|
}
|
|
77
78
|
export interface ReservationData {
|
|
78
79
|
id: number;
|
|
@@ -238,4 +239,12 @@ export interface OverridePriceMeta {
|
|
|
238
239
|
quantity: number;
|
|
239
240
|
totalPrice: number;
|
|
240
241
|
}
|
|
242
|
+
export interface ValidateRemoveSlotsResult {
|
|
243
|
+
invoicedSlots: Slot[];
|
|
244
|
+
invoice: Invoice;
|
|
245
|
+
}
|
|
246
|
+
export interface ValidateRemoveAddonsResult {
|
|
247
|
+
invoicedAddons: Addon[];
|
|
248
|
+
invoice: Invoice;
|
|
249
|
+
}
|
|
241
250
|
export {};
|