@tennac-booking/sdk 1.0.211 → 1.0.213
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 +6 -0
- package/dist/esm/api.d.ts +6 -0
- package/docs/ClubPageResponse.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2690,6 +2690,12 @@ export interface ClubPageResponse {
|
|
|
2690
2690
|
* @memberof ClubPageResponse
|
|
2691
2691
|
*/
|
|
2692
2692
|
'slotDurationsBySport'?: { [key: string]: Array<number>; };
|
|
2693
|
+
/**
|
|
2694
|
+
* Période de réservation en jours
|
|
2695
|
+
* @type {number}
|
|
2696
|
+
* @memberof ClubPageResponse
|
|
2697
|
+
*/
|
|
2698
|
+
'bookingPeriodInDays'?: number;
|
|
2693
2699
|
/**
|
|
2694
2700
|
*
|
|
2695
2701
|
* @type {ClubPresentation}
|
package/dist/api.d.ts
CHANGED
|
@@ -2649,6 +2649,12 @@ export interface ClubPageResponse {
|
|
|
2649
2649
|
'slotDurationsBySport'?: {
|
|
2650
2650
|
[key: string]: Array<number>;
|
|
2651
2651
|
};
|
|
2652
|
+
/**
|
|
2653
|
+
* Période de réservation en jours
|
|
2654
|
+
* @type {number}
|
|
2655
|
+
* @memberof ClubPageResponse
|
|
2656
|
+
*/
|
|
2657
|
+
'bookingPeriodInDays'?: number;
|
|
2652
2658
|
/**
|
|
2653
2659
|
*
|
|
2654
2660
|
* @type {ClubPresentation}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2649,6 +2649,12 @@ export interface ClubPageResponse {
|
|
|
2649
2649
|
'slotDurationsBySport'?: {
|
|
2650
2650
|
[key: string]: Array<number>;
|
|
2651
2651
|
};
|
|
2652
|
+
/**
|
|
2653
|
+
* Période de réservation en jours
|
|
2654
|
+
* @type {number}
|
|
2655
|
+
* @memberof ClubPageResponse
|
|
2656
|
+
*/
|
|
2657
|
+
'bookingPeriodInDays'?: number;
|
|
2652
2658
|
/**
|
|
2653
2659
|
*
|
|
2654
2660
|
* @type {ClubPresentation}
|
package/docs/ClubPageResponse.md
CHANGED
|
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
|
|
|
22
22
|
**surfacesBySport** | **{ [key: string]: Array<SurfaceType>; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
|
|
23
23
|
**indoorOutdoorBySport** | **{ [key: string]: Array<CourtEnvironment>; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
|
|
24
24
|
**slotDurationsBySport** | **{ [key: string]: Array<number>; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
|
|
25
|
+
**bookingPeriodInDays** | **number** | Période de réservation en jours | [optional] [default to undefined]
|
|
25
26
|
**clubPresentation** | [**ClubPresentation**](ClubPresentation.md) | | [default to undefined]
|
|
26
27
|
**comingEvents** | [**Array<ClubEvent>**](ClubEvent.md) | | [default to undefined]
|
|
27
28
|
**comingClosures** | [**Array<ClubEvent>**](ClubEvent.md) | | [default to undefined]
|
|
@@ -53,6 +54,7 @@ const instance: ClubPageResponse = {
|
|
|
53
54
|
surfacesBySport,
|
|
54
55
|
indoorOutdoorBySport,
|
|
55
56
|
slotDurationsBySport,
|
|
57
|
+
bookingPeriodInDays,
|
|
56
58
|
clubPresentation,
|
|
57
59
|
comingEvents,
|
|
58
60
|
comingClosures,
|