@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 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matchi/api",
3
- "version": "0.20240927.1",
3
+ "version": "0.20241017.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.mjs",