@tennac-booking/sdk 1.0.179 → 1.0.181

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.
@@ -90,7 +90,9 @@ docs/ClubPlayerDetailResponseSportsLevelsInner.md
90
90
  docs/ClubPlayerResponse.md
91
91
  docs/ClubPlayerStatisticsResponse.md
92
92
  docs/ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner.md
93
+ docs/ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner.md
93
94
  docs/ClubPlayerStatisticsResponseFavoriteClub.md
95
+ docs/ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner.md
94
96
  docs/ClubPlayerStatisticsResponseMostPlayedClub.md
95
97
  docs/ClubPlayerStatisticsResponseMostPlayedPartnersInner.md
96
98
  docs/ClubPlayerSubscriptionSummary.md
package/README.md CHANGED
@@ -358,7 +358,9 @@ Class | Method | HTTP request | Description
358
358
  - [ClubPlayerResponse](docs/ClubPlayerResponse.md)
359
359
  - [ClubPlayerStatisticsResponse](docs/ClubPlayerStatisticsResponse.md)
360
360
  - [ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner](docs/ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner.md)
361
+ - [ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner](docs/ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner.md)
361
362
  - [ClubPlayerStatisticsResponseFavoriteClub](docs/ClubPlayerStatisticsResponseFavoriteClub.md)
363
+ - [ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner](docs/ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner.md)
362
364
  - [ClubPlayerStatisticsResponseMostPlayedClub](docs/ClubPlayerStatisticsResponseMostPlayedClub.md)
363
365
  - [ClubPlayerStatisticsResponseMostPlayedPartnersInner](docs/ClubPlayerStatisticsResponseMostPlayedPartnersInner.md)
364
366
  - [ClubPlayerSubscriptionSummary](docs/ClubPlayerSubscriptionSummary.md)
package/api.ts CHANGED
@@ -3051,6 +3051,18 @@ export interface ClubPlayerStatisticsResponse {
3051
3051
  * @memberof ClubPlayerStatisticsResponse
3052
3052
  */
3053
3053
  'bookingAmountEvolutionThisMonth': Array<ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner>;
3054
+ /**
3055
+ * Évolution quotidienne du nombre de réservations ce mois-ci
3056
+ * @type {Array<ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner>}
3057
+ * @memberof ClubPlayerStatisticsResponse
3058
+ */
3059
+ 'bookingCountEvolutionThisMonth': Array<ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner>;
3060
+ /**
3061
+ * Jours de la semaine les plus réservés ce mois-ci (0 = dimanche)
3062
+ * @type {Array<ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner>}
3063
+ * @memberof ClubPlayerStatisticsResponse
3064
+ */
3065
+ 'mostBookedWeekdaysThisMonth': Array<ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner>;
3054
3066
  /**
3055
3067
  * Joueurs les plus joués dans le club courant
3056
3068
  * @type {Array<ClubPlayerStatisticsResponseMostPlayedPartnersInner>}
@@ -3077,6 +3089,25 @@ export interface ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInne
3077
3089
  */
3078
3090
  'day': number;
3079
3091
  }
3092
+ /**
3093
+ *
3094
+ * @export
3095
+ * @interface ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner
3096
+ */
3097
+ export interface ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner {
3098
+ /**
3099
+ *
3100
+ * @type {number}
3101
+ * @memberof ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner
3102
+ */
3103
+ 'bookingsCount': number;
3104
+ /**
3105
+ *
3106
+ * @type {number}
3107
+ * @memberof ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner
3108
+ */
3109
+ 'day': number;
3110
+ }
3080
3111
  /**
3081
3112
  * Club favori selon le profil utilisateur
3082
3113
  * @export
@@ -3096,6 +3127,31 @@ export interface ClubPlayerStatisticsResponseFavoriteClub {
3096
3127
  */
3097
3128
  'clubId': string;
3098
3129
  }
3130
+ /**
3131
+ *
3132
+ * @export
3133
+ * @interface ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3134
+ */
3135
+ export interface ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner {
3136
+ /**
3137
+ *
3138
+ * @type {number}
3139
+ * @memberof ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3140
+ */
3141
+ 'bookingsCount': number;
3142
+ /**
3143
+ *
3144
+ * @type {string}
3145
+ * @memberof ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3146
+ */
3147
+ 'weekdayName': string;
3148
+ /**
3149
+ *
3150
+ * @type {number}
3151
+ * @memberof ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3152
+ */
3153
+ 'weekday': number;
3154
+ }
3099
3155
  /**
3100
3156
  * Club où le joueur a le plus joué
3101
3157
  * @export
@@ -12826,6 +12882,12 @@ export interface UserClubMembership {
12826
12882
  * @memberof UserClubMembership
12827
12883
  */
12828
12884
  'clubPicture': string | null;
12885
+ /**
12886
+ *
12887
+ * @type {Array<string>}
12888
+ * @memberof UserClubMembership
12889
+ */
12890
+ 'bannerPictures'?: Array<string>;
12829
12891
  /**
12830
12892
  *
12831
12893
  * @type {string}
package/dist/api.d.ts CHANGED
@@ -3003,6 +3003,18 @@ export interface ClubPlayerStatisticsResponse {
3003
3003
  * @memberof ClubPlayerStatisticsResponse
3004
3004
  */
3005
3005
  'bookingAmountEvolutionThisMonth': Array<ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner>;
3006
+ /**
3007
+ * Évolution quotidienne du nombre de réservations ce mois-ci
3008
+ * @type {Array<ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner>}
3009
+ * @memberof ClubPlayerStatisticsResponse
3010
+ */
3011
+ 'bookingCountEvolutionThisMonth': Array<ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner>;
3012
+ /**
3013
+ * Jours de la semaine les plus réservés ce mois-ci (0 = dimanche)
3014
+ * @type {Array<ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner>}
3015
+ * @memberof ClubPlayerStatisticsResponse
3016
+ */
3017
+ 'mostBookedWeekdaysThisMonth': Array<ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner>;
3006
3018
  /**
3007
3019
  * Joueurs les plus joués dans le club courant
3008
3020
  * @type {Array<ClubPlayerStatisticsResponseMostPlayedPartnersInner>}
@@ -3029,6 +3041,25 @@ export interface ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInne
3029
3041
  */
3030
3042
  'day': number;
3031
3043
  }
3044
+ /**
3045
+ *
3046
+ * @export
3047
+ * @interface ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner
3048
+ */
3049
+ export interface ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner {
3050
+ /**
3051
+ *
3052
+ * @type {number}
3053
+ * @memberof ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner
3054
+ */
3055
+ 'bookingsCount': number;
3056
+ /**
3057
+ *
3058
+ * @type {number}
3059
+ * @memberof ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner
3060
+ */
3061
+ 'day': number;
3062
+ }
3032
3063
  /**
3033
3064
  * Club favori selon le profil utilisateur
3034
3065
  * @export
@@ -3048,6 +3079,31 @@ export interface ClubPlayerStatisticsResponseFavoriteClub {
3048
3079
  */
3049
3080
  'clubId': string;
3050
3081
  }
3082
+ /**
3083
+ *
3084
+ * @export
3085
+ * @interface ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3086
+ */
3087
+ export interface ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner {
3088
+ /**
3089
+ *
3090
+ * @type {number}
3091
+ * @memberof ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3092
+ */
3093
+ 'bookingsCount': number;
3094
+ /**
3095
+ *
3096
+ * @type {string}
3097
+ * @memberof ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3098
+ */
3099
+ 'weekdayName': string;
3100
+ /**
3101
+ *
3102
+ * @type {number}
3103
+ * @memberof ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3104
+ */
3105
+ 'weekday': number;
3106
+ }
3051
3107
  /**
3052
3108
  * Club où le joueur a le plus joué
3053
3109
  * @export
@@ -12600,6 +12656,12 @@ export interface UserClubMembership {
12600
12656
  * @memberof UserClubMembership
12601
12657
  */
12602
12658
  'clubPicture': string | null;
12659
+ /**
12660
+ *
12661
+ * @type {Array<string>}
12662
+ * @memberof UserClubMembership
12663
+ */
12664
+ 'bannerPictures'?: Array<string>;
12603
12665
  /**
12604
12666
  *
12605
12667
  * @type {string}
package/dist/esm/api.d.ts CHANGED
@@ -3003,6 +3003,18 @@ export interface ClubPlayerStatisticsResponse {
3003
3003
  * @memberof ClubPlayerStatisticsResponse
3004
3004
  */
3005
3005
  'bookingAmountEvolutionThisMonth': Array<ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner>;
3006
+ /**
3007
+ * Évolution quotidienne du nombre de réservations ce mois-ci
3008
+ * @type {Array<ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner>}
3009
+ * @memberof ClubPlayerStatisticsResponse
3010
+ */
3011
+ 'bookingCountEvolutionThisMonth': Array<ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner>;
3012
+ /**
3013
+ * Jours de la semaine les plus réservés ce mois-ci (0 = dimanche)
3014
+ * @type {Array<ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner>}
3015
+ * @memberof ClubPlayerStatisticsResponse
3016
+ */
3017
+ 'mostBookedWeekdaysThisMonth': Array<ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner>;
3006
3018
  /**
3007
3019
  * Joueurs les plus joués dans le club courant
3008
3020
  * @type {Array<ClubPlayerStatisticsResponseMostPlayedPartnersInner>}
@@ -3029,6 +3041,25 @@ export interface ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInne
3029
3041
  */
3030
3042
  'day': number;
3031
3043
  }
3044
+ /**
3045
+ *
3046
+ * @export
3047
+ * @interface ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner
3048
+ */
3049
+ export interface ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner {
3050
+ /**
3051
+ *
3052
+ * @type {number}
3053
+ * @memberof ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner
3054
+ */
3055
+ 'bookingsCount': number;
3056
+ /**
3057
+ *
3058
+ * @type {number}
3059
+ * @memberof ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner
3060
+ */
3061
+ 'day': number;
3062
+ }
3032
3063
  /**
3033
3064
  * Club favori selon le profil utilisateur
3034
3065
  * @export
@@ -3048,6 +3079,31 @@ export interface ClubPlayerStatisticsResponseFavoriteClub {
3048
3079
  */
3049
3080
  'clubId': string;
3050
3081
  }
3082
+ /**
3083
+ *
3084
+ * @export
3085
+ * @interface ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3086
+ */
3087
+ export interface ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner {
3088
+ /**
3089
+ *
3090
+ * @type {number}
3091
+ * @memberof ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3092
+ */
3093
+ 'bookingsCount': number;
3094
+ /**
3095
+ *
3096
+ * @type {string}
3097
+ * @memberof ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3098
+ */
3099
+ 'weekdayName': string;
3100
+ /**
3101
+ *
3102
+ * @type {number}
3103
+ * @memberof ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
3104
+ */
3105
+ 'weekday': number;
3106
+ }
3051
3107
  /**
3052
3108
  * Club où le joueur a le plus joué
3053
3109
  * @export
@@ -12600,6 +12656,12 @@ export interface UserClubMembership {
12600
12656
  * @memberof UserClubMembership
12601
12657
  */
12602
12658
  'clubPicture': string | null;
12659
+ /**
12660
+ *
12661
+ * @type {Array<string>}
12662
+ * @memberof UserClubMembership
12663
+ */
12664
+ 'bannerPictures'?: Array<string>;
12603
12665
  /**
12604
12666
  *
12605
12667
  * @type {string}
@@ -16,6 +16,8 @@ Name | Type | Description | Notes
16
16
  **favoriteClub** | [**ClubPlayerStatisticsResponseFavoriteClub**](ClubPlayerStatisticsResponseFavoriteClub.md) | | [default to undefined]
17
17
  **mostPlayedClub** | [**ClubPlayerStatisticsResponseMostPlayedClub**](ClubPlayerStatisticsResponseMostPlayedClub.md) | | [default to undefined]
18
18
  **bookingAmountEvolutionThisMonth** | [**Array&lt;ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner&gt;**](ClubPlayerStatisticsResponseBookingAmountEvolutionThisMonthInner.md) | Évolution quotidienne des montants dépensés ce mois-ci | [default to undefined]
19
+ **bookingCountEvolutionThisMonth** | [**Array&lt;ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner&gt;**](ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner.md) | Évolution quotidienne du nombre de réservations ce mois-ci | [default to undefined]
20
+ **mostBookedWeekdaysThisMonth** | [**Array&lt;ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner&gt;**](ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner.md) | Jours de la semaine les plus réservés ce mois-ci (0 &#x3D; dimanche) | [default to undefined]
19
21
  **mostPlayedPartners** | [**Array&lt;ClubPlayerStatisticsResponseMostPlayedPartnersInner&gt;**](ClubPlayerStatisticsResponseMostPlayedPartnersInner.md) | Joueurs les plus joués dans le club courant | [default to undefined]
20
22
 
21
23
  ## Example
@@ -35,6 +37,8 @@ const instance: ClubPlayerStatisticsResponse = {
35
37
  favoriteClub,
36
38
  mostPlayedClub,
37
39
  bookingAmountEvolutionThisMonth,
40
+ bookingCountEvolutionThisMonth,
41
+ mostBookedWeekdaysThisMonth,
38
42
  mostPlayedPartners,
39
43
  };
40
44
  ```
@@ -0,0 +1,22 @@
1
+ # ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **bookingsCount** | **number** | | [default to undefined]
9
+ **day** | **number** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner } from '@tennac-booking/sdk';
15
+
16
+ const instance: ClubPlayerStatisticsResponseBookingCountEvolutionThisMonthInner = {
17
+ bookingsCount,
18
+ day,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,24 @@
1
+ # ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **bookingsCount** | **number** | | [default to undefined]
9
+ **weekdayName** | **string** | | [default to undefined]
10
+ **weekday** | **number** | | [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner } from '@tennac-booking/sdk';
16
+
17
+ const instance: ClubPlayerStatisticsResponseMostBookedWeekdaysThisMonthInner = {
18
+ bookingsCount,
19
+ weekdayName,
20
+ weekday,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **clubId** | **string** | | [default to undefined]
9
9
  **clubName** | **string** | | [default to undefined]
10
10
  **clubPicture** | **string** | | [default to undefined]
11
+ **bannerPictures** | **Array&lt;string&gt;** | | [optional] [default to undefined]
11
12
  **address** | **string** | | [optional] [default to undefined]
12
13
  **description** | **string** | | [optional] [default to undefined]
13
14
  **tags** | **Array&lt;string&gt;** | | [optional] [default to undefined]
@@ -29,6 +30,7 @@ const instance: UserClubMembership = {
29
30
  clubId,
30
31
  clubName,
31
32
  clubPicture,
33
+ bannerPictures,
32
34
  address,
33
35
  description,
34
36
  tags,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tennac-booking/sdk",
3
- "version": "1.0.179",
3
+ "version": "1.0.181",
4
4
  "description": "OpenAPI client for @tennac-booking/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {