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