@tennac-booking/sdk 1.0.91 → 1.0.92
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/api.ts +12 -0
- package/dist/api.d.ts +12 -0
- package/dist/esm/api.d.ts +12 -0
- package/docs/BookingPlayerPaymentSummary.md +2 -0
- package/docs/BookingSummary.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -574,6 +574,12 @@ export interface BookingPlayerPaymentSummary {
|
|
|
574
574
|
* @memberof BookingPlayerPaymentSummary
|
|
575
575
|
*/
|
|
576
576
|
'invoiceStatus'?: InvoiceStatus | null;
|
|
577
|
+
/**
|
|
578
|
+
*
|
|
579
|
+
* @type {string}
|
|
580
|
+
* @memberof BookingPlayerPaymentSummary
|
|
581
|
+
*/
|
|
582
|
+
'invoicePaymentUrl'?: string | null;
|
|
577
583
|
/**
|
|
578
584
|
*
|
|
579
585
|
* @type {boolean}
|
|
@@ -1049,6 +1055,12 @@ export interface BookingSummary {
|
|
|
1049
1055
|
* @memberof BookingSummary
|
|
1050
1056
|
*/
|
|
1051
1057
|
'myAmountToPay': number;
|
|
1058
|
+
/**
|
|
1059
|
+
*
|
|
1060
|
+
* @type {string}
|
|
1061
|
+
* @memberof BookingSummary
|
|
1062
|
+
*/
|
|
1063
|
+
'myPaymentLink'?: string | null;
|
|
1052
1064
|
/**
|
|
1053
1065
|
*
|
|
1054
1066
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -557,6 +557,12 @@ export interface BookingPlayerPaymentSummary {
|
|
|
557
557
|
* @memberof BookingPlayerPaymentSummary
|
|
558
558
|
*/
|
|
559
559
|
'invoiceStatus'?: InvoiceStatus | null;
|
|
560
|
+
/**
|
|
561
|
+
*
|
|
562
|
+
* @type {string}
|
|
563
|
+
* @memberof BookingPlayerPaymentSummary
|
|
564
|
+
*/
|
|
565
|
+
'invoicePaymentUrl'?: string | null;
|
|
560
566
|
/**
|
|
561
567
|
*
|
|
562
568
|
* @type {boolean}
|
|
@@ -1026,6 +1032,12 @@ export interface BookingSummary {
|
|
|
1026
1032
|
* @memberof BookingSummary
|
|
1027
1033
|
*/
|
|
1028
1034
|
'myAmountToPay': number;
|
|
1035
|
+
/**
|
|
1036
|
+
*
|
|
1037
|
+
* @type {string}
|
|
1038
|
+
* @memberof BookingSummary
|
|
1039
|
+
*/
|
|
1040
|
+
'myPaymentLink'?: string | null;
|
|
1029
1041
|
/**
|
|
1030
1042
|
*
|
|
1031
1043
|
* @type {number}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -557,6 +557,12 @@ export interface BookingPlayerPaymentSummary {
|
|
|
557
557
|
* @memberof BookingPlayerPaymentSummary
|
|
558
558
|
*/
|
|
559
559
|
'invoiceStatus'?: InvoiceStatus | null;
|
|
560
|
+
/**
|
|
561
|
+
*
|
|
562
|
+
* @type {string}
|
|
563
|
+
* @memberof BookingPlayerPaymentSummary
|
|
564
|
+
*/
|
|
565
|
+
'invoicePaymentUrl'?: string | null;
|
|
560
566
|
/**
|
|
561
567
|
*
|
|
562
568
|
* @type {boolean}
|
|
@@ -1026,6 +1032,12 @@ export interface BookingSummary {
|
|
|
1026
1032
|
* @memberof BookingSummary
|
|
1027
1033
|
*/
|
|
1028
1034
|
'myAmountToPay': number;
|
|
1035
|
+
/**
|
|
1036
|
+
*
|
|
1037
|
+
* @type {string}
|
|
1038
|
+
* @memberof BookingSummary
|
|
1039
|
+
*/
|
|
1040
|
+
'myPaymentLink'?: string | null;
|
|
1029
1041
|
/**
|
|
1030
1042
|
*
|
|
1031
1043
|
* @type {number}
|
|
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**amountToPay** | **number** | | [default to undefined]
|
|
13
13
|
**invoiceId** | **string** | | [optional] [default to undefined]
|
|
14
14
|
**invoiceStatus** | [**InvoiceStatus**](InvoiceStatus.md) | | [optional] [default to undefined]
|
|
15
|
+
**invoicePaymentUrl** | **string** | | [optional] [default to undefined]
|
|
15
16
|
**isCreator** | **boolean** | | [default to undefined]
|
|
16
17
|
|
|
17
18
|
## Example
|
|
@@ -27,6 +28,7 @@ const instance: BookingPlayerPaymentSummary = {
|
|
|
27
28
|
amountToPay,
|
|
28
29
|
invoiceId,
|
|
29
30
|
invoiceStatus,
|
|
31
|
+
invoicePaymentUrl,
|
|
30
32
|
isCreator,
|
|
31
33
|
};
|
|
32
34
|
```
|
package/docs/BookingSummary.md
CHANGED
|
@@ -35,6 +35,7 @@ Name | Type | Description | Notes
|
|
|
35
35
|
**bookingStatus** | **string** | | [optional] [default to undefined]
|
|
36
36
|
**playersName** | **Array<string>** | | [default to undefined]
|
|
37
37
|
**myAmountToPay** | **number** | | [default to undefined]
|
|
38
|
+
**myPaymentLink** | **string** | | [optional] [default to undefined]
|
|
38
39
|
**totalAmount** | **number** | | [default to undefined]
|
|
39
40
|
**timeBeforeCancel** | **string** | | [optional] [default to undefined]
|
|
40
41
|
**clubAddress** | [**BookingSummaryClubAddress**](BookingSummaryClubAddress.md) | | [optional] [default to undefined]
|
|
@@ -81,6 +82,7 @@ const instance: BookingSummary = {
|
|
|
81
82
|
bookingStatus,
|
|
82
83
|
playersName,
|
|
83
84
|
myAmountToPay,
|
|
85
|
+
myPaymentLink,
|
|
84
86
|
totalAmount,
|
|
85
87
|
timeBeforeCancel,
|
|
86
88
|
clubAddress,
|