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