@matchi/api 0.20231018.1 → 0.20231023.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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -383,6 +383,10 @@ type checkoutResponse = {
|
|
|
383
383
|
* 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
384
|
*/
|
|
385
385
|
amountToPay: string;
|
|
386
|
+
/**
|
|
387
|
+
* How much the payment method has to be charged with. This will be a reservation where the diff to amountToPay eventually will be released
|
|
388
|
+
*/
|
|
389
|
+
reservationAmount: string;
|
|
386
390
|
};
|
|
387
391
|
|
|
388
392
|
type competitionAdminAccount = {
|
package/dist/index.d.ts
CHANGED
|
@@ -383,6 +383,10 @@ type checkoutResponse = {
|
|
|
383
383
|
* 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
384
|
*/
|
|
385
385
|
amountToPay: string;
|
|
386
|
+
/**
|
|
387
|
+
* How much the payment method has to be charged with. This will be a reservation where the diff to amountToPay eventually will be released
|
|
388
|
+
*/
|
|
389
|
+
reservationAmount: string;
|
|
386
390
|
};
|
|
387
391
|
|
|
388
392
|
type competitionAdminAccount = {
|