@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 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?: number;
119
- serviceFee?: number;
120
- serviceFeeVat?: number;
121
- minimumFee?: number;
122
- maximumFee?: number;
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?: number;
119
- serviceFee?: number;
120
- serviceFeeVat?: number;
121
- minimumFee?: number;
122
- maximumFee?: number;
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matchi/api",
3
- "version": "0.20241017.1",
3
+ "version": "0.20241021.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.mjs",