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