@tennac-booking/sdk 1.0.293 → 1.0.294
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/BookingAnalyticsResponse.md +2 -0
- package/docs/BookingPopulated.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -434,6 +434,12 @@ export interface BookingAnalyticsResponse {
|
|
|
434
434
|
* @memberof BookingAnalyticsResponse
|
|
435
435
|
*/
|
|
436
436
|
'playersIds': Array<string>;
|
|
437
|
+
/**
|
|
438
|
+
* Nombre total réel de joueurs pour la réservation (créateur inclus)
|
|
439
|
+
* @type {number}
|
|
440
|
+
* @memberof BookingAnalyticsResponse
|
|
441
|
+
*/
|
|
442
|
+
'playersCount': number;
|
|
437
443
|
/**
|
|
438
444
|
* Utilisateur qui a fait la réservation
|
|
439
445
|
* @type {any}
|
|
@@ -1109,6 +1115,12 @@ export interface BookingPopulated {
|
|
|
1109
1115
|
* @memberof BookingPopulated
|
|
1110
1116
|
*/
|
|
1111
1117
|
'minLevel'?: string;
|
|
1118
|
+
/**
|
|
1119
|
+
* Nombre total réel de joueurs attendu (créateur inclus)
|
|
1120
|
+
* @type {number}
|
|
1121
|
+
* @memberof BookingPopulated
|
|
1122
|
+
*/
|
|
1123
|
+
'playersCount': number;
|
|
1112
1124
|
/**
|
|
1113
1125
|
*
|
|
1114
1126
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -422,6 +422,12 @@ export interface BookingAnalyticsResponse {
|
|
|
422
422
|
* @memberof BookingAnalyticsResponse
|
|
423
423
|
*/
|
|
424
424
|
'playersIds': Array<string>;
|
|
425
|
+
/**
|
|
426
|
+
* Nombre total réel de joueurs pour la réservation (créateur inclus)
|
|
427
|
+
* @type {number}
|
|
428
|
+
* @memberof BookingAnalyticsResponse
|
|
429
|
+
*/
|
|
430
|
+
'playersCount': number;
|
|
425
431
|
/**
|
|
426
432
|
* Utilisateur qui a fait la réservation
|
|
427
433
|
* @type {any}
|
|
@@ -1084,6 +1090,12 @@ export interface BookingPopulated {
|
|
|
1084
1090
|
* @memberof BookingPopulated
|
|
1085
1091
|
*/
|
|
1086
1092
|
'minLevel'?: string;
|
|
1093
|
+
/**
|
|
1094
|
+
* Nombre total réel de joueurs attendu (créateur inclus)
|
|
1095
|
+
* @type {number}
|
|
1096
|
+
* @memberof BookingPopulated
|
|
1097
|
+
*/
|
|
1098
|
+
'playersCount': number;
|
|
1087
1099
|
/**
|
|
1088
1100
|
*
|
|
1089
1101
|
* @type {number}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -422,6 +422,12 @@ export interface BookingAnalyticsResponse {
|
|
|
422
422
|
* @memberof BookingAnalyticsResponse
|
|
423
423
|
*/
|
|
424
424
|
'playersIds': Array<string>;
|
|
425
|
+
/**
|
|
426
|
+
* Nombre total réel de joueurs pour la réservation (créateur inclus)
|
|
427
|
+
* @type {number}
|
|
428
|
+
* @memberof BookingAnalyticsResponse
|
|
429
|
+
*/
|
|
430
|
+
'playersCount': number;
|
|
425
431
|
/**
|
|
426
432
|
* Utilisateur qui a fait la réservation
|
|
427
433
|
* @type {any}
|
|
@@ -1084,6 +1090,12 @@ export interface BookingPopulated {
|
|
|
1084
1090
|
* @memberof BookingPopulated
|
|
1085
1091
|
*/
|
|
1086
1092
|
'minLevel'?: string;
|
|
1093
|
+
/**
|
|
1094
|
+
* Nombre total réel de joueurs attendu (créateur inclus)
|
|
1095
|
+
* @type {number}
|
|
1096
|
+
* @memberof BookingPopulated
|
|
1097
|
+
*/
|
|
1098
|
+
'playersCount': number;
|
|
1087
1099
|
/**
|
|
1088
1100
|
*
|
|
1089
1101
|
* @type {number}
|
|
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**clubId** | **string** | ID du club | [default to undefined]
|
|
11
11
|
**sportId** | **string** | ID du sport | [default to undefined]
|
|
12
12
|
**playersIds** | **Array<string>** | IDs des joueurs | [default to undefined]
|
|
13
|
+
**playersCount** | **number** | Nombre total réel de joueurs pour la réservation (créateur inclus) | [default to undefined]
|
|
13
14
|
**userId** | **any** | Utilisateur qui a fait la réservation | [default to undefined]
|
|
14
15
|
**slotId** | **any** | Créneau réservé | [default to undefined]
|
|
15
16
|
**paymentByPlayersStatus** | **Array<any>** | Statut de paiement par joueur | [default to undefined]
|
|
@@ -25,6 +26,7 @@ const instance: BookingAnalyticsResponse = {
|
|
|
25
26
|
clubId,
|
|
26
27
|
sportId,
|
|
27
28
|
playersIds,
|
|
29
|
+
playersCount,
|
|
28
30
|
userId,
|
|
29
31
|
slotId,
|
|
30
32
|
paymentByPlayersStatus,
|
package/docs/BookingPopulated.md
CHANGED
|
@@ -25,6 +25,7 @@ Name | Type | Description | Notes
|
|
|
25
25
|
**isOpen** | **boolean** | | [default to undefined]
|
|
26
26
|
**description** | **string** | | [optional] [default to undefined]
|
|
27
27
|
**minLevel** | **string** | | [optional] [default to undefined]
|
|
28
|
+
**playersCount** | **number** | Nombre total réel de joueurs attendu (créateur inclus) | [default to undefined]
|
|
28
29
|
**maxPlayersDesired** | **number** | | [optional] [default to undefined]
|
|
29
30
|
|
|
30
31
|
## Example
|
|
@@ -53,6 +54,7 @@ const instance: BookingPopulated = {
|
|
|
53
54
|
isOpen,
|
|
54
55
|
description,
|
|
55
56
|
minLevel,
|
|
57
|
+
playersCount,
|
|
56
58
|
maxPlayersDesired,
|
|
57
59
|
};
|
|
58
60
|
```
|