@matchi/api 0.20260602.1 → 0.20260603.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 +9 -0
- package/dist/main/index.d.ts +9 -0
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -1394,6 +1394,15 @@ type paymentDetails = {
|
|
|
1394
1394
|
checkoutSessionData?: string;
|
|
1395
1395
|
checkoutToken?: string;
|
|
1396
1396
|
checkoutUrl?: string;
|
|
1397
|
+
/**
|
|
1398
|
+
* URL to the remote payment page for this order. Only present while the order
|
|
1399
|
+
* has an active payment link (e.g. a venue admin added the participant with
|
|
1400
|
+
* "send payment link"). Absent when the venue marked the participant as
|
|
1401
|
+
* "not paid" (to be settled at the venue), so clients can use this field to
|
|
1402
|
+
* decide whether to offer a pay action for an unpaid order.
|
|
1403
|
+
*
|
|
1404
|
+
*/
|
|
1405
|
+
payLaterUrl?: string;
|
|
1397
1406
|
/**
|
|
1398
1407
|
* If this is a booking payment, this is the ID of the booking
|
|
1399
1408
|
*/
|
package/dist/main/index.d.ts
CHANGED
|
@@ -1394,6 +1394,15 @@ type paymentDetails = {
|
|
|
1394
1394
|
checkoutSessionData?: string;
|
|
1395
1395
|
checkoutToken?: string;
|
|
1396
1396
|
checkoutUrl?: string;
|
|
1397
|
+
/**
|
|
1398
|
+
* URL to the remote payment page for this order. Only present while the order
|
|
1399
|
+
* has an active payment link (e.g. a venue admin added the participant with
|
|
1400
|
+
* "send payment link"). Absent when the venue marked the participant as
|
|
1401
|
+
* "not paid" (to be settled at the venue), so clients can use this field to
|
|
1402
|
+
* decide whether to offer a pay action for an unpaid order.
|
|
1403
|
+
*
|
|
1404
|
+
*/
|
|
1405
|
+
payLaterUrl?: string;
|
|
1397
1406
|
/**
|
|
1398
1407
|
* If this is a booking payment, this is the ID of the booking
|
|
1399
1408
|
*/
|