@tennac-booking/sdk 1.0.91 → 1.0.93
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/BookingSummary.md +4 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -929,6 +929,12 @@ export interface BookingSummary {
|
|
|
929
929
|
* @memberof BookingSummary
|
|
930
930
|
*/
|
|
931
931
|
'isPublic': boolean;
|
|
932
|
+
/**
|
|
933
|
+
*
|
|
934
|
+
* @type {string}
|
|
935
|
+
* @memberof BookingSummary
|
|
936
|
+
*/
|
|
937
|
+
'requestingUserId': string;
|
|
932
938
|
/**
|
|
933
939
|
*
|
|
934
940
|
* @type {string}
|
|
@@ -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
|
+
'paymentUrl'?: string | null;
|
|
1052
1064
|
/**
|
|
1053
1065
|
*
|
|
1054
1066
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -906,6 +906,12 @@ export interface BookingSummary {
|
|
|
906
906
|
* @memberof BookingSummary
|
|
907
907
|
*/
|
|
908
908
|
'isPublic': boolean;
|
|
909
|
+
/**
|
|
910
|
+
*
|
|
911
|
+
* @type {string}
|
|
912
|
+
* @memberof BookingSummary
|
|
913
|
+
*/
|
|
914
|
+
'requestingUserId': string;
|
|
909
915
|
/**
|
|
910
916
|
*
|
|
911
917
|
* @type {string}
|
|
@@ -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
|
+
'paymentUrl'?: string | null;
|
|
1029
1041
|
/**
|
|
1030
1042
|
*
|
|
1031
1043
|
* @type {number}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -906,6 +906,12 @@ export interface BookingSummary {
|
|
|
906
906
|
* @memberof BookingSummary
|
|
907
907
|
*/
|
|
908
908
|
'isPublic': boolean;
|
|
909
|
+
/**
|
|
910
|
+
*
|
|
911
|
+
* @type {string}
|
|
912
|
+
* @memberof BookingSummary
|
|
913
|
+
*/
|
|
914
|
+
'requestingUserId': string;
|
|
909
915
|
/**
|
|
910
916
|
*
|
|
911
917
|
* @type {string}
|
|
@@ -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
|
+
'paymentUrl'?: string | null;
|
|
1029
1041
|
/**
|
|
1030
1042
|
*
|
|
1031
1043
|
* @type {number}
|
package/docs/BookingSummary.md
CHANGED
|
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
|
|
|
15
15
|
**totalPrice** | **number** | | [default to undefined]
|
|
16
16
|
**slotIds** | **Array<string>** | | [default to undefined]
|
|
17
17
|
**isPublic** | **boolean** | | [default to undefined]
|
|
18
|
+
**requestingUserId** | **string** | | [default to undefined]
|
|
18
19
|
**creatorPaymentMethodId** | **string** | | [optional] [default to undefined]
|
|
19
20
|
**paymentMethodSetupCompleted** | **boolean** | | [default to undefined]
|
|
20
21
|
**noShowChargeAmount** | **number** | | [optional] [default to undefined]
|
|
@@ -35,6 +36,7 @@ Name | Type | Description | Notes
|
|
|
35
36
|
**bookingStatus** | **string** | | [optional] [default to undefined]
|
|
36
37
|
**playersName** | **Array<string>** | | [default to undefined]
|
|
37
38
|
**myAmountToPay** | **number** | | [default to undefined]
|
|
39
|
+
**paymentUrl** | **string** | | [optional] [default to undefined]
|
|
38
40
|
**totalAmount** | **number** | | [default to undefined]
|
|
39
41
|
**timeBeforeCancel** | **string** | | [optional] [default to undefined]
|
|
40
42
|
**clubAddress** | [**BookingSummaryClubAddress**](BookingSummaryClubAddress.md) | | [optional] [default to undefined]
|
|
@@ -61,6 +63,7 @@ const instance: BookingSummary = {
|
|
|
61
63
|
totalPrice,
|
|
62
64
|
slotIds,
|
|
63
65
|
isPublic,
|
|
66
|
+
requestingUserId,
|
|
64
67
|
creatorPaymentMethodId,
|
|
65
68
|
paymentMethodSetupCompleted,
|
|
66
69
|
noShowChargeAmount,
|
|
@@ -81,6 +84,7 @@ const instance: BookingSummary = {
|
|
|
81
84
|
bookingStatus,
|
|
82
85
|
playersName,
|
|
83
86
|
myAmountToPay,
|
|
87
|
+
paymentUrl,
|
|
84
88
|
totalAmount,
|
|
85
89
|
timeBeforeCancel,
|
|
86
90
|
clubAddress,
|