@matchi/api 0.20240927.1 → 0.20241017.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.
- package/dist/index.d.mts +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -105,6 +105,8 @@ type OrderSplitPrice = {
|
|
|
105
105
|
reservationSum?: string;
|
|
106
106
|
totalOrderPrice?: string;
|
|
107
107
|
currency?: string;
|
|
108
|
+
orderPrice?: string;
|
|
109
|
+
orderPriceVat?: string;
|
|
108
110
|
};
|
|
109
111
|
|
|
110
112
|
type price = {
|
|
@@ -113,6 +115,11 @@ type price = {
|
|
|
113
115
|
vat?: string;
|
|
114
116
|
vatValue?: string;
|
|
115
117
|
orderSplitPrice?: OrderSplitPrice;
|
|
118
|
+
amountWithFee?: number;
|
|
119
|
+
serviceFee?: number;
|
|
120
|
+
serviceFeeVat?: number;
|
|
121
|
+
minimumFee?: number;
|
|
122
|
+
maximumFee?: number;
|
|
116
123
|
};
|
|
117
124
|
|
|
118
125
|
type timeStamp = string;
|
package/dist/index.d.ts
CHANGED
|
@@ -105,6 +105,8 @@ type OrderSplitPrice = {
|
|
|
105
105
|
reservationSum?: string;
|
|
106
106
|
totalOrderPrice?: string;
|
|
107
107
|
currency?: string;
|
|
108
|
+
orderPrice?: string;
|
|
109
|
+
orderPriceVat?: string;
|
|
108
110
|
};
|
|
109
111
|
|
|
110
112
|
type price = {
|
|
@@ -113,6 +115,11 @@ type price = {
|
|
|
113
115
|
vat?: string;
|
|
114
116
|
vatValue?: string;
|
|
115
117
|
orderSplitPrice?: OrderSplitPrice;
|
|
118
|
+
amountWithFee?: number;
|
|
119
|
+
serviceFee?: number;
|
|
120
|
+
serviceFeeVat?: number;
|
|
121
|
+
minimumFee?: number;
|
|
122
|
+
maximumFee?: number;
|
|
116
123
|
};
|
|
117
124
|
|
|
118
125
|
type timeStamp = string;
|