@matchi/api 0.20250219.1 → 0.20250225.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.
@@ -1133,16 +1133,16 @@ type order = {
1133
1133
  };
1134
1134
 
1135
1135
  type OrderPriceDetails = {
1136
- totalPrice?: number;
1137
- price: number;
1138
- fee?: number;
1139
- priceVat?: number;
1140
- feeVat?: number;
1136
+ totalPrice?: string;
1137
+ price: string;
1138
+ fee?: string;
1139
+ priceVat?: string;
1140
+ feeVat?: string;
1141
1141
  };
1142
1142
 
1143
1143
  type paymentMethodPaymentDetail = {
1144
1144
  name: string;
1145
- amount: number;
1145
+ amount: string;
1146
1146
  method: string;
1147
1147
  status: string;
1148
1148
  type: string;
@@ -1150,30 +1150,31 @@ type paymentMethodPaymentDetail = {
1150
1150
  };
1151
1151
 
1152
1152
  type PaymentMethodPaymentRefund = {
1153
- amount: number;
1153
+ amount: string;
1154
1154
  note: string;
1155
1155
  lastUpdated: timeStamp;
1156
1156
  };
1157
1157
 
1158
1158
  type ServiceFeeSettings = {
1159
- minimumFee: number;
1160
- maximumFee: number;
1161
- variableAmount: number;
1162
- feeVatValue: number;
1159
+ minimumFee: string;
1160
+ maximumFee: string;
1161
+ variableAmount: string;
1162
+ feeVatValue: string;
1163
1163
  };
1164
1164
 
1165
1165
  type OrderPaymentDetails = {
1166
- totalAmount: number;
1166
+ totalAmount: string;
1167
1167
  isSettled: boolean;
1168
1168
  isMainBooker: boolean;
1169
- totalAmountPaid: number;
1169
+ totalAmountPaid: string;
1170
+ totalPaidWithoutFee?: string;
1170
1171
  splitPart?: string | null;
1171
- totalRefunded: number;
1172
+ totalRefunded: string;
1172
1173
  payments?: Array<paymentMethodPaymentDetail>;
1173
1174
  promoCodeOutcome?: {
1174
1175
  code: string;
1175
- discountAmount?: number;
1176
- discountPercent?: number;
1176
+ discountAmount?: string;
1177
+ discountPercent?: string;
1177
1178
  };
1178
1179
  serviceFeeSettings?: ServiceFeeSettings;
1179
1180
  standardPrice?: OrderPriceDetails;
@@ -1133,16 +1133,16 @@ type order = {
1133
1133
  };
1134
1134
 
1135
1135
  type OrderPriceDetails = {
1136
- totalPrice?: number;
1137
- price: number;
1138
- fee?: number;
1139
- priceVat?: number;
1140
- feeVat?: number;
1136
+ totalPrice?: string;
1137
+ price: string;
1138
+ fee?: string;
1139
+ priceVat?: string;
1140
+ feeVat?: string;
1141
1141
  };
1142
1142
 
1143
1143
  type paymentMethodPaymentDetail = {
1144
1144
  name: string;
1145
- amount: number;
1145
+ amount: string;
1146
1146
  method: string;
1147
1147
  status: string;
1148
1148
  type: string;
@@ -1150,30 +1150,31 @@ type paymentMethodPaymentDetail = {
1150
1150
  };
1151
1151
 
1152
1152
  type PaymentMethodPaymentRefund = {
1153
- amount: number;
1153
+ amount: string;
1154
1154
  note: string;
1155
1155
  lastUpdated: timeStamp;
1156
1156
  };
1157
1157
 
1158
1158
  type ServiceFeeSettings = {
1159
- minimumFee: number;
1160
- maximumFee: number;
1161
- variableAmount: number;
1162
- feeVatValue: number;
1159
+ minimumFee: string;
1160
+ maximumFee: string;
1161
+ variableAmount: string;
1162
+ feeVatValue: string;
1163
1163
  };
1164
1164
 
1165
1165
  type OrderPaymentDetails = {
1166
- totalAmount: number;
1166
+ totalAmount: string;
1167
1167
  isSettled: boolean;
1168
1168
  isMainBooker: boolean;
1169
- totalAmountPaid: number;
1169
+ totalAmountPaid: string;
1170
+ totalPaidWithoutFee?: string;
1170
1171
  splitPart?: string | null;
1171
- totalRefunded: number;
1172
+ totalRefunded: string;
1172
1173
  payments?: Array<paymentMethodPaymentDetail>;
1173
1174
  promoCodeOutcome?: {
1174
1175
  code: string;
1175
- discountAmount?: number;
1176
- discountPercent?: number;
1176
+ discountAmount?: string;
1177
+ discountPercent?: string;
1177
1178
  };
1178
1179
  serviceFeeSettings?: ServiceFeeSettings;
1179
1180
  standardPrice?: OrderPriceDetails;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matchi/api",
3
- "version": "0.20250219.1",
3
+ "version": "0.20250225.1",
4
4
  "main": "dist/main/index.js",
5
5
  "module": "dist/main/index.mjs",
6
6
  "devDependencies": {