@tennac-booking/sdk 1.0.198 → 1.0.199
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 +6 -0
- package/dist/api.d.ts +8 -0
- package/dist/esm/api.d.ts +8 -0
- package/docs/ClubResponse.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3575,6 +3575,12 @@ export interface ClubResponse {
|
|
|
3575
3575
|
* @memberof ClubResponse
|
|
3576
3576
|
*/
|
|
3577
3577
|
'courtsCount'?: number;
|
|
3578
|
+
/**
|
|
3579
|
+
* Construct a type with a set of properties K of type T
|
|
3580
|
+
* @type {{ [key: string]: number; }}
|
|
3581
|
+
* @memberof ClubResponse
|
|
3582
|
+
*/
|
|
3583
|
+
'courtsCountBySport'?: { [key: string]: number; };
|
|
3578
3584
|
/**
|
|
3579
3585
|
* Construct a type with a set of properties K of type T
|
|
3580
3586
|
* @type {{ [key: string]: Array<SurfaceType>; }}
|
package/dist/api.d.ts
CHANGED
|
@@ -3526,6 +3526,14 @@ export interface ClubResponse {
|
|
|
3526
3526
|
* @memberof ClubResponse
|
|
3527
3527
|
*/
|
|
3528
3528
|
'courtsCount'?: number;
|
|
3529
|
+
/**
|
|
3530
|
+
* Construct a type with a set of properties K of type T
|
|
3531
|
+
* @type {{ [key: string]: number; }}
|
|
3532
|
+
* @memberof ClubResponse
|
|
3533
|
+
*/
|
|
3534
|
+
'courtsCountBySport'?: {
|
|
3535
|
+
[key: string]: number;
|
|
3536
|
+
};
|
|
3529
3537
|
/**
|
|
3530
3538
|
* Construct a type with a set of properties K of type T
|
|
3531
3539
|
* @type {{ [key: string]: Array<SurfaceType>; }}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3526,6 +3526,14 @@ export interface ClubResponse {
|
|
|
3526
3526
|
* @memberof ClubResponse
|
|
3527
3527
|
*/
|
|
3528
3528
|
'courtsCount'?: number;
|
|
3529
|
+
/**
|
|
3530
|
+
* Construct a type with a set of properties K of type T
|
|
3531
|
+
* @type {{ [key: string]: number; }}
|
|
3532
|
+
* @memberof ClubResponse
|
|
3533
|
+
*/
|
|
3534
|
+
'courtsCountBySport'?: {
|
|
3535
|
+
[key: string]: number;
|
|
3536
|
+
};
|
|
3529
3537
|
/**
|
|
3530
3538
|
* Construct a type with a set of properties K of type T
|
|
3531
3539
|
* @type {{ [key: string]: Array<SurfaceType>; }}
|
package/docs/ClubResponse.md
CHANGED
|
@@ -21,6 +21,7 @@ Name | Type | Description | Notes
|
|
|
21
21
|
**isNoShowEnabled** | **boolean** | Indique si la fonctionnalité \"no show\" est activée | [optional] [default to undefined]
|
|
22
22
|
**sports** | **Array<string>** | Liste des sports proposés par le club (identifiés par leur clé) | [optional] [default to undefined]
|
|
23
23
|
**courtsCount** | **number** | Nombre total de terrains du club | [optional] [default to undefined]
|
|
24
|
+
**courtsCountBySport** | **{ [key: string]: number; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
|
|
24
25
|
**surfacesBySport** | **{ [key: string]: Array<SurfaceType>; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
|
|
25
26
|
**indoorOutdoorBySport** | **{ [key: string]: Array<CourtEnvironment>; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
|
|
26
27
|
**allowMultipleBookingsAtTheSameTime** | **boolean** | Autoriser plusieurs réservations en même temps | [optional] [default to undefined]
|
|
@@ -52,6 +53,7 @@ const instance: ClubResponse = {
|
|
|
52
53
|
isNoShowEnabled,
|
|
53
54
|
sports,
|
|
54
55
|
courtsCount,
|
|
56
|
+
courtsCountBySport,
|
|
55
57
|
surfacesBySport,
|
|
56
58
|
indoorOutdoorBySport,
|
|
57
59
|
allowMultipleBookingsAtTheSameTime,
|