@matchi/api 0.20231018.1 → 0.20231024.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 +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -278,6 +278,7 @@ type article = {
|
|
|
278
278
|
priceBase?: price;
|
|
279
279
|
metadata: articleMetadata;
|
|
280
280
|
paymentInterval?: paymentInterval;
|
|
281
|
+
isRefundable?: boolean;
|
|
281
282
|
};
|
|
282
283
|
|
|
283
284
|
type availability = {
|
|
@@ -383,6 +384,10 @@ type checkoutResponse = {
|
|
|
383
384
|
* Is what is left to pay e.g. the attribute price minus sum of other payment methods that have been applied, e.g. value cards
|
|
384
385
|
*/
|
|
385
386
|
amountToPay: string;
|
|
387
|
+
/**
|
|
388
|
+
* How much the payment method has to be charged with. This will be a reservation where the diff to amountToPay eventually will be released
|
|
389
|
+
*/
|
|
390
|
+
reservationAmount: string;
|
|
386
391
|
};
|
|
387
392
|
|
|
388
393
|
type competitionAdminAccount = {
|
package/dist/index.d.ts
CHANGED
|
@@ -278,6 +278,7 @@ type article = {
|
|
|
278
278
|
priceBase?: price;
|
|
279
279
|
metadata: articleMetadata;
|
|
280
280
|
paymentInterval?: paymentInterval;
|
|
281
|
+
isRefundable?: boolean;
|
|
281
282
|
};
|
|
282
283
|
|
|
283
284
|
type availability = {
|
|
@@ -383,6 +384,10 @@ type checkoutResponse = {
|
|
|
383
384
|
* Is what is left to pay e.g. the attribute price minus sum of other payment methods that have been applied, e.g. value cards
|
|
384
385
|
*/
|
|
385
386
|
amountToPay: string;
|
|
387
|
+
/**
|
|
388
|
+
* How much the payment method has to be charged with. This will be a reservation where the diff to amountToPay eventually will be released
|
|
389
|
+
*/
|
|
390
|
+
reservationAmount: string;
|
|
386
391
|
};
|
|
387
392
|
|
|
388
393
|
type competitionAdminAccount = {
|