@matchi/api 0.20240927.1 → 0.20241021.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 +13 -0
- package/dist/index.d.ts +13 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -105,6 +105,13 @@ type OrderSplitPrice = {
|
|
|
105
105
|
reservationSum?: string;
|
|
106
106
|
totalOrderPrice?: string;
|
|
107
107
|
currency?: string;
|
|
108
|
+
orderPrice?: string;
|
|
109
|
+
orderPriceVat?: string;
|
|
110
|
+
splitFee?: string;
|
|
111
|
+
splitFeeVat?: string;
|
|
112
|
+
splitFeeVatValue?: string;
|
|
113
|
+
minSplitFee?: string;
|
|
114
|
+
maxSplitFee?: string;
|
|
108
115
|
};
|
|
109
116
|
|
|
110
117
|
type price = {
|
|
@@ -113,6 +120,12 @@ type price = {
|
|
|
113
120
|
vat?: string;
|
|
114
121
|
vatValue?: string;
|
|
115
122
|
orderSplitPrice?: OrderSplitPrice;
|
|
123
|
+
amountWithFee?: string;
|
|
124
|
+
serviceFee?: string;
|
|
125
|
+
serviceFeeVat?: string;
|
|
126
|
+
minimumFee?: string;
|
|
127
|
+
maximumFee?: string;
|
|
128
|
+
serviceFeeVatPercentage?: string;
|
|
116
129
|
};
|
|
117
130
|
|
|
118
131
|
type timeStamp = string;
|
package/dist/index.d.ts
CHANGED
|
@@ -105,6 +105,13 @@ type OrderSplitPrice = {
|
|
|
105
105
|
reservationSum?: string;
|
|
106
106
|
totalOrderPrice?: string;
|
|
107
107
|
currency?: string;
|
|
108
|
+
orderPrice?: string;
|
|
109
|
+
orderPriceVat?: string;
|
|
110
|
+
splitFee?: string;
|
|
111
|
+
splitFeeVat?: string;
|
|
112
|
+
splitFeeVatValue?: string;
|
|
113
|
+
minSplitFee?: string;
|
|
114
|
+
maxSplitFee?: string;
|
|
108
115
|
};
|
|
109
116
|
|
|
110
117
|
type price = {
|
|
@@ -113,6 +120,12 @@ type price = {
|
|
|
113
120
|
vat?: string;
|
|
114
121
|
vatValue?: string;
|
|
115
122
|
orderSplitPrice?: OrderSplitPrice;
|
|
123
|
+
amountWithFee?: string;
|
|
124
|
+
serviceFee?: string;
|
|
125
|
+
serviceFeeVat?: string;
|
|
126
|
+
minimumFee?: string;
|
|
127
|
+
maximumFee?: string;
|
|
128
|
+
serviceFeeVatPercentage?: string;
|
|
116
129
|
};
|
|
117
130
|
|
|
118
131
|
type timeStamp = string;
|