@tennac-booking/sdk 1.0.268 → 1.0.270
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
|
@@ -881,6 +881,12 @@ export interface BookingPlayerPaymentSummary {
|
|
|
881
881
|
* @memberof BookingPlayerPaymentSummary
|
|
882
882
|
*/
|
|
883
883
|
'isCreator': boolean;
|
|
884
|
+
/**
|
|
885
|
+
* Nom(s) des abonnements actifs du joueur dans le club.
|
|
886
|
+
* @type {Array<string>}
|
|
887
|
+
* @memberof BookingPlayerPaymentSummary
|
|
888
|
+
*/
|
|
889
|
+
'subscriptions'?: Array<string>;
|
|
884
890
|
}
|
|
885
891
|
|
|
886
892
|
|
|
@@ -1452,6 +1458,12 @@ export interface BookingSummary {
|
|
|
1452
1458
|
* @memberof BookingSummary
|
|
1453
1459
|
*/
|
|
1454
1460
|
'timeBeforeCancel'?: string | null;
|
|
1461
|
+
/**
|
|
1462
|
+
*
|
|
1463
|
+
* @type {string}
|
|
1464
|
+
* @memberof BookingSummary
|
|
1465
|
+
*/
|
|
1466
|
+
'limitCancellationDate'?: string | null;
|
|
1455
1467
|
/**
|
|
1456
1468
|
*
|
|
1457
1469
|
* @type {BookingSummaryClubAddress}
|
package/dist/api.d.ts
CHANGED
|
@@ -858,6 +858,12 @@ export interface BookingPlayerPaymentSummary {
|
|
|
858
858
|
* @memberof BookingPlayerPaymentSummary
|
|
859
859
|
*/
|
|
860
860
|
'isCreator': boolean;
|
|
861
|
+
/**
|
|
862
|
+
* Nom(s) des abonnements actifs du joueur dans le club.
|
|
863
|
+
* @type {Array<string>}
|
|
864
|
+
* @memberof BookingPlayerPaymentSummary
|
|
865
|
+
*/
|
|
866
|
+
'subscriptions'?: Array<string>;
|
|
861
867
|
}
|
|
862
868
|
/**
|
|
863
869
|
*
|
|
@@ -1423,6 +1429,12 @@ export interface BookingSummary {
|
|
|
1423
1429
|
* @memberof BookingSummary
|
|
1424
1430
|
*/
|
|
1425
1431
|
'timeBeforeCancel'?: string | null;
|
|
1432
|
+
/**
|
|
1433
|
+
*
|
|
1434
|
+
* @type {string}
|
|
1435
|
+
* @memberof BookingSummary
|
|
1436
|
+
*/
|
|
1437
|
+
'limitCancellationDate'?: string | null;
|
|
1426
1438
|
/**
|
|
1427
1439
|
*
|
|
1428
1440
|
* @type {BookingSummaryClubAddress}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -858,6 +858,12 @@ export interface BookingPlayerPaymentSummary {
|
|
|
858
858
|
* @memberof BookingPlayerPaymentSummary
|
|
859
859
|
*/
|
|
860
860
|
'isCreator': boolean;
|
|
861
|
+
/**
|
|
862
|
+
* Nom(s) des abonnements actifs du joueur dans le club.
|
|
863
|
+
* @type {Array<string>}
|
|
864
|
+
* @memberof BookingPlayerPaymentSummary
|
|
865
|
+
*/
|
|
866
|
+
'subscriptions'?: Array<string>;
|
|
861
867
|
}
|
|
862
868
|
/**
|
|
863
869
|
*
|
|
@@ -1423,6 +1429,12 @@ export interface BookingSummary {
|
|
|
1423
1429
|
* @memberof BookingSummary
|
|
1424
1430
|
*/
|
|
1425
1431
|
'timeBeforeCancel'?: string | null;
|
|
1432
|
+
/**
|
|
1433
|
+
*
|
|
1434
|
+
* @type {string}
|
|
1435
|
+
* @memberof BookingSummary
|
|
1436
|
+
*/
|
|
1437
|
+
'limitCancellationDate'?: string | null;
|
|
1426
1438
|
/**
|
|
1427
1439
|
*
|
|
1428
1440
|
* @type {BookingSummaryClubAddress}
|
|
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
|
|
|
13
13
|
**invoiceId** | **string** | | [optional] [default to undefined]
|
|
14
14
|
**invoiceStatus** | [**InvoiceStatus**](InvoiceStatus.md) | | [optional] [default to undefined]
|
|
15
15
|
**isCreator** | **boolean** | | [default to undefined]
|
|
16
|
+
**subscriptions** | **Array<string>** | Nom(s) des abonnements actifs du joueur dans le club. | [optional] [default to undefined]
|
|
16
17
|
|
|
17
18
|
## Example
|
|
18
19
|
|
|
@@ -28,6 +29,7 @@ const instance: BookingPlayerPaymentSummary = {
|
|
|
28
29
|
invoiceId,
|
|
29
30
|
invoiceStatus,
|
|
30
31
|
isCreator,
|
|
32
|
+
subscriptions,
|
|
31
33
|
};
|
|
32
34
|
```
|
|
33
35
|
|
package/docs/BookingSummary.md
CHANGED
|
@@ -45,6 +45,7 @@ Name | Type | Description | Notes
|
|
|
45
45
|
**paymentUrl** | **string** | | [optional] [default to undefined]
|
|
46
46
|
**totalAmount** | **number** | | [default to undefined]
|
|
47
47
|
**timeBeforeCancel** | **string** | | [optional] [default to undefined]
|
|
48
|
+
**limitCancellationDate** | **string** | | [optional] [default to undefined]
|
|
48
49
|
**clubAddress** | [**BookingSummaryClubAddress**](BookingSummaryClubAddress.md) | | [optional] [default to undefined]
|
|
49
50
|
**bookingHistory** | [**Array<BookingHistoryPopulated>**](BookingHistoryPopulated.md) | | [optional] [default to undefined]
|
|
50
51
|
**club** | [**BookingClubInfo**](BookingClubInfo.md) | | [optional] [default to undefined]
|
|
@@ -101,6 +102,7 @@ const instance: BookingSummary = {
|
|
|
101
102
|
paymentUrl,
|
|
102
103
|
totalAmount,
|
|
103
104
|
timeBeforeCancel,
|
|
105
|
+
limitCancellationDate,
|
|
104
106
|
clubAddress,
|
|
105
107
|
bookingHistory,
|
|
106
108
|
club,
|