@tennac-booking/sdk 1.0.24 → 1.0.26
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/.openapi-generator/FILES +22 -0
- package/README.md +36 -2
- package/api.ts +3120 -1375
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1114 -19
- package/dist/api.js +1216 -92
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +1114 -19
- package/dist/esm/api.js +1202 -90
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AddFavoriteClubRequestBody.md +20 -0
- package/docs/ConfirmPaymentMethodSetupRequestBody.md +0 -2
- package/docs/CreateEventRequest.md +30 -0
- package/docs/DeleteEvent200Response.md +20 -0
- package/docs/Event.md +40 -0
- package/docs/EventBooking.md +32 -0
- package/docs/EventRegistrationRequest.md +22 -0
- package/docs/EventsApi.md +119 -0
- package/docs/FavoriteClubResponse.md +22 -0
- package/docs/FrequentlyPlayedWithItem.md +28 -0
- package/docs/FrequentlyVisitedClubItem.md +24 -0
- package/docs/GetPublishedEventsByClubId200Response.md +20 -0
- package/docs/ManagerEventResponse.md +22 -0
- package/docs/ManagerEventsApi.md +227 -0
- package/docs/ProfileVisibilityResponse.md +20 -0
- package/docs/RegisterForEvent201Response.md +20 -0
- package/docs/SetupPaymentMethodRequestBody.md +0 -2
- package/docs/StaffEventResponse.md +20 -0
- package/docs/StaffEventsApi.md +54 -0
- package/docs/UpdateProfileVisibilityRequestBody.md +20 -0
- package/docs/UpdateUserCityRequestBody.md +20 -0
- package/docs/UpdateUserDescriptionRequestBody.md +20 -0
- package/docs/UserCityResponse.md +20 -0
- package/docs/UserDescriptionResponse.md +20 -0
- package/docs/UserProfileApi.md +398 -0
- package/index.ts +1 -1
- package/package.json +5 -4
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pandook API
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.26
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -89,6 +89,19 @@ export interface AddClubMemberResponse {
|
|
|
89
89
|
*/
|
|
90
90
|
'member'?: ClubMember;
|
|
91
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @export
|
|
95
|
+
* @interface AddFavoriteClubRequestBody
|
|
96
|
+
*/
|
|
97
|
+
export interface AddFavoriteClubRequestBody {
|
|
98
|
+
/**
|
|
99
|
+
* ID du club à ajouter aux favoris
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof AddFavoriteClubRequestBody
|
|
102
|
+
*/
|
|
103
|
+
'clubId': string;
|
|
104
|
+
}
|
|
92
105
|
/**
|
|
93
106
|
*
|
|
94
107
|
* @export
|
|
@@ -1358,12 +1371,6 @@ export interface ClubsResponse {
|
|
|
1358
1371
|
* @interface ConfirmPaymentMethodSetupRequestBody
|
|
1359
1372
|
*/
|
|
1360
1373
|
export interface ConfirmPaymentMethodSetupRequestBody {
|
|
1361
|
-
/**
|
|
1362
|
-
* ID de l\'utilisateur
|
|
1363
|
-
* @type {string}
|
|
1364
|
-
* @memberof ConfirmPaymentMethodSetupRequestBody
|
|
1365
|
-
*/
|
|
1366
|
-
'userId': string;
|
|
1367
1374
|
/**
|
|
1368
1375
|
* ID du Setup Intent à confirmer
|
|
1369
1376
|
* @type {string}
|
|
@@ -1804,6 +1811,49 @@ export interface CreateCourtRequest {
|
|
|
1804
1811
|
*/
|
|
1805
1812
|
'isIndoor': boolean;
|
|
1806
1813
|
}
|
|
1814
|
+
/**
|
|
1815
|
+
*
|
|
1816
|
+
* @export
|
|
1817
|
+
* @interface CreateEventRequest
|
|
1818
|
+
*/
|
|
1819
|
+
export interface CreateEventRequest {
|
|
1820
|
+
/**
|
|
1821
|
+
*
|
|
1822
|
+
* @type {string}
|
|
1823
|
+
* @memberof CreateEventRequest
|
|
1824
|
+
*/
|
|
1825
|
+
'title': string;
|
|
1826
|
+
/**
|
|
1827
|
+
*
|
|
1828
|
+
* @type {string}
|
|
1829
|
+
* @memberof CreateEventRequest
|
|
1830
|
+
*/
|
|
1831
|
+
'description'?: string;
|
|
1832
|
+
/**
|
|
1833
|
+
*
|
|
1834
|
+
* @type {string}
|
|
1835
|
+
* @memberof CreateEventRequest
|
|
1836
|
+
*/
|
|
1837
|
+
'startDate': string;
|
|
1838
|
+
/**
|
|
1839
|
+
*
|
|
1840
|
+
* @type {string}
|
|
1841
|
+
* @memberof CreateEventRequest
|
|
1842
|
+
*/
|
|
1843
|
+
'endDate': string;
|
|
1844
|
+
/**
|
|
1845
|
+
*
|
|
1846
|
+
* @type {Array<number>}
|
|
1847
|
+
* @memberof CreateEventRequest
|
|
1848
|
+
*/
|
|
1849
|
+
'courts': Array<number>;
|
|
1850
|
+
/**
|
|
1851
|
+
*
|
|
1852
|
+
* @type {boolean}
|
|
1853
|
+
* @memberof CreateEventRequest
|
|
1854
|
+
*/
|
|
1855
|
+
'isActive'?: boolean;
|
|
1856
|
+
}
|
|
1807
1857
|
/**
|
|
1808
1858
|
*
|
|
1809
1859
|
* @export
|
|
@@ -1962,6 +2012,19 @@ export interface DeleteClubSettingsRequest {
|
|
|
1962
2012
|
*/
|
|
1963
2013
|
'clubId': string;
|
|
1964
2014
|
}
|
|
2015
|
+
/**
|
|
2016
|
+
*
|
|
2017
|
+
* @export
|
|
2018
|
+
* @interface DeleteEvent200Response
|
|
2019
|
+
*/
|
|
2020
|
+
export interface DeleteEvent200Response {
|
|
2021
|
+
/**
|
|
2022
|
+
*
|
|
2023
|
+
* @type {string}
|
|
2024
|
+
* @memberof DeleteEvent200Response
|
|
2025
|
+
*/
|
|
2026
|
+
'message'?: string;
|
|
2027
|
+
}
|
|
1965
2028
|
/**
|
|
1966
2029
|
*
|
|
1967
2030
|
* @export
|
|
@@ -2001,6 +2064,234 @@ export interface DeleteSport200Response {
|
|
|
2001
2064
|
*/
|
|
2002
2065
|
'message'?: string;
|
|
2003
2066
|
}
|
|
2067
|
+
/**
|
|
2068
|
+
*
|
|
2069
|
+
* @export
|
|
2070
|
+
* @interface Event
|
|
2071
|
+
*/
|
|
2072
|
+
export interface Event {
|
|
2073
|
+
/**
|
|
2074
|
+
*
|
|
2075
|
+
* @type {string}
|
|
2076
|
+
* @memberof Event
|
|
2077
|
+
*/
|
|
2078
|
+
'_id'?: string;
|
|
2079
|
+
/**
|
|
2080
|
+
*
|
|
2081
|
+
* @type {string}
|
|
2082
|
+
* @memberof Event
|
|
2083
|
+
*/
|
|
2084
|
+
'clubId'?: string;
|
|
2085
|
+
/**
|
|
2086
|
+
*
|
|
2087
|
+
* @type {string}
|
|
2088
|
+
* @memberof Event
|
|
2089
|
+
*/
|
|
2090
|
+
'title'?: string;
|
|
2091
|
+
/**
|
|
2092
|
+
*
|
|
2093
|
+
* @type {string}
|
|
2094
|
+
* @memberof Event
|
|
2095
|
+
*/
|
|
2096
|
+
'description'?: string;
|
|
2097
|
+
/**
|
|
2098
|
+
*
|
|
2099
|
+
* @type {string}
|
|
2100
|
+
* @memberof Event
|
|
2101
|
+
*/
|
|
2102
|
+
'startDate'?: string;
|
|
2103
|
+
/**
|
|
2104
|
+
*
|
|
2105
|
+
* @type {string}
|
|
2106
|
+
* @memberof Event
|
|
2107
|
+
*/
|
|
2108
|
+
'endDate'?: string;
|
|
2109
|
+
/**
|
|
2110
|
+
*
|
|
2111
|
+
* @type {Array<string>}
|
|
2112
|
+
* @memberof Event
|
|
2113
|
+
*/
|
|
2114
|
+
'courts'?: Array<string>;
|
|
2115
|
+
/**
|
|
2116
|
+
*
|
|
2117
|
+
* @type {boolean}
|
|
2118
|
+
* @memberof Event
|
|
2119
|
+
*/
|
|
2120
|
+
'isActive'?: boolean;
|
|
2121
|
+
/**
|
|
2122
|
+
*
|
|
2123
|
+
* @type {string}
|
|
2124
|
+
* @memberof Event
|
|
2125
|
+
*/
|
|
2126
|
+
'createdBy'?: string;
|
|
2127
|
+
/**
|
|
2128
|
+
*
|
|
2129
|
+
* @type {string}
|
|
2130
|
+
* @memberof Event
|
|
2131
|
+
*/
|
|
2132
|
+
'createdAt'?: string;
|
|
2133
|
+
/**
|
|
2134
|
+
*
|
|
2135
|
+
* @type {string}
|
|
2136
|
+
* @memberof Event
|
|
2137
|
+
*/
|
|
2138
|
+
'updatedAt'?: string;
|
|
2139
|
+
}
|
|
2140
|
+
/**
|
|
2141
|
+
*
|
|
2142
|
+
* @export
|
|
2143
|
+
* @interface EventBooking
|
|
2144
|
+
*/
|
|
2145
|
+
export interface EventBooking {
|
|
2146
|
+
/**
|
|
2147
|
+
*
|
|
2148
|
+
* @type {string}
|
|
2149
|
+
* @memberof EventBooking
|
|
2150
|
+
*/
|
|
2151
|
+
'_id'?: string;
|
|
2152
|
+
/**
|
|
2153
|
+
*
|
|
2154
|
+
* @type {string}
|
|
2155
|
+
* @memberof EventBooking
|
|
2156
|
+
*/
|
|
2157
|
+
'eventId'?: string;
|
|
2158
|
+
/**
|
|
2159
|
+
*
|
|
2160
|
+
* @type {string}
|
|
2161
|
+
* @memberof EventBooking
|
|
2162
|
+
*/
|
|
2163
|
+
'teamName'?: string;
|
|
2164
|
+
/**
|
|
2165
|
+
*
|
|
2166
|
+
* @type {Array<string>}
|
|
2167
|
+
* @memberof EventBooking
|
|
2168
|
+
*/
|
|
2169
|
+
'players'?: Array<string>;
|
|
2170
|
+
/**
|
|
2171
|
+
*
|
|
2172
|
+
* @type {string}
|
|
2173
|
+
* @memberof EventBooking
|
|
2174
|
+
*/
|
|
2175
|
+
'status'?: EventBookingStatusEnum;
|
|
2176
|
+
/**
|
|
2177
|
+
*
|
|
2178
|
+
* @type {string}
|
|
2179
|
+
* @memberof EventBooking
|
|
2180
|
+
*/
|
|
2181
|
+
'createdAt'?: string;
|
|
2182
|
+
/**
|
|
2183
|
+
*
|
|
2184
|
+
* @type {string}
|
|
2185
|
+
* @memberof EventBooking
|
|
2186
|
+
*/
|
|
2187
|
+
'updatedAt'?: string;
|
|
2188
|
+
}
|
|
2189
|
+
export declare const EventBookingStatusEnum: {
|
|
2190
|
+
readonly Pending: "pending";
|
|
2191
|
+
readonly Confirmed: "confirmed";
|
|
2192
|
+
readonly Cancelled: "cancelled";
|
|
2193
|
+
};
|
|
2194
|
+
export type EventBookingStatusEnum = typeof EventBookingStatusEnum[keyof typeof EventBookingStatusEnum];
|
|
2195
|
+
/**
|
|
2196
|
+
*
|
|
2197
|
+
* @export
|
|
2198
|
+
* @interface EventRegistrationRequest
|
|
2199
|
+
*/
|
|
2200
|
+
export interface EventRegistrationRequest {
|
|
2201
|
+
/**
|
|
2202
|
+
*
|
|
2203
|
+
* @type {string}
|
|
2204
|
+
* @memberof EventRegistrationRequest
|
|
2205
|
+
*/
|
|
2206
|
+
'teamName': string;
|
|
2207
|
+
/**
|
|
2208
|
+
*
|
|
2209
|
+
* @type {Array<string>}
|
|
2210
|
+
* @memberof EventRegistrationRequest
|
|
2211
|
+
*/
|
|
2212
|
+
'players': Array<string>;
|
|
2213
|
+
}
|
|
2214
|
+
/**
|
|
2215
|
+
*
|
|
2216
|
+
* @export
|
|
2217
|
+
* @interface FavoriteClubResponse
|
|
2218
|
+
*/
|
|
2219
|
+
export interface FavoriteClubResponse {
|
|
2220
|
+
/**
|
|
2221
|
+
*
|
|
2222
|
+
* @type {string}
|
|
2223
|
+
* @memberof FavoriteClubResponse
|
|
2224
|
+
*/
|
|
2225
|
+
'message'?: string;
|
|
2226
|
+
/**
|
|
2227
|
+
*
|
|
2228
|
+
* @type {Array<string>}
|
|
2229
|
+
* @memberof FavoriteClubResponse
|
|
2230
|
+
*/
|
|
2231
|
+
'favoriteClubs'?: Array<string>;
|
|
2232
|
+
}
|
|
2233
|
+
/**
|
|
2234
|
+
*
|
|
2235
|
+
* @export
|
|
2236
|
+
* @interface FrequentlyPlayedWithItem
|
|
2237
|
+
*/
|
|
2238
|
+
export interface FrequentlyPlayedWithItem {
|
|
2239
|
+
/**
|
|
2240
|
+
*
|
|
2241
|
+
* @type {string}
|
|
2242
|
+
* @memberof FrequentlyPlayedWithItem
|
|
2243
|
+
*/
|
|
2244
|
+
'userId'?: string;
|
|
2245
|
+
/**
|
|
2246
|
+
*
|
|
2247
|
+
* @type {string}
|
|
2248
|
+
* @memberof FrequentlyPlayedWithItem
|
|
2249
|
+
*/
|
|
2250
|
+
'firstName'?: string;
|
|
2251
|
+
/**
|
|
2252
|
+
*
|
|
2253
|
+
* @type {string}
|
|
2254
|
+
* @memberof FrequentlyPlayedWithItem
|
|
2255
|
+
*/
|
|
2256
|
+
'lastName'?: string;
|
|
2257
|
+
/**
|
|
2258
|
+
*
|
|
2259
|
+
* @type {string}
|
|
2260
|
+
* @memberof FrequentlyPlayedWithItem
|
|
2261
|
+
*/
|
|
2262
|
+
'profilePicture'?: string;
|
|
2263
|
+
/**
|
|
2264
|
+
*
|
|
2265
|
+
* @type {number}
|
|
2266
|
+
* @memberof FrequentlyPlayedWithItem
|
|
2267
|
+
*/
|
|
2268
|
+
'playCount'?: number;
|
|
2269
|
+
}
|
|
2270
|
+
/**
|
|
2271
|
+
*
|
|
2272
|
+
* @export
|
|
2273
|
+
* @interface FrequentlyVisitedClubItem
|
|
2274
|
+
*/
|
|
2275
|
+
export interface FrequentlyVisitedClubItem {
|
|
2276
|
+
/**
|
|
2277
|
+
*
|
|
2278
|
+
* @type {string}
|
|
2279
|
+
* @memberof FrequentlyVisitedClubItem
|
|
2280
|
+
*/
|
|
2281
|
+
'clubId'?: string;
|
|
2282
|
+
/**
|
|
2283
|
+
*
|
|
2284
|
+
* @type {string}
|
|
2285
|
+
* @memberof FrequentlyVisitedClubItem
|
|
2286
|
+
*/
|
|
2287
|
+
'name'?: string;
|
|
2288
|
+
/**
|
|
2289
|
+
*
|
|
2290
|
+
* @type {number}
|
|
2291
|
+
* @memberof FrequentlyVisitedClubItem
|
|
2292
|
+
*/
|
|
2293
|
+
'visitCount'?: number;
|
|
2294
|
+
}
|
|
2004
2295
|
/**
|
|
2005
2296
|
*
|
|
2006
2297
|
* @export
|
|
@@ -2146,6 +2437,19 @@ export interface GetNumberOfClubUsers200Response {
|
|
|
2146
2437
|
*/
|
|
2147
2438
|
'count'?: number;
|
|
2148
2439
|
}
|
|
2440
|
+
/**
|
|
2441
|
+
*
|
|
2442
|
+
* @export
|
|
2443
|
+
* @interface GetPublishedEventsByClubId200Response
|
|
2444
|
+
*/
|
|
2445
|
+
export interface GetPublishedEventsByClubId200Response {
|
|
2446
|
+
/**
|
|
2447
|
+
*
|
|
2448
|
+
* @type {Array<Event>}
|
|
2449
|
+
* @memberof GetPublishedEventsByClubId200Response
|
|
2450
|
+
*/
|
|
2451
|
+
'events'?: Array<Event>;
|
|
2452
|
+
}
|
|
2149
2453
|
/**
|
|
2150
2454
|
*
|
|
2151
2455
|
* @export
|
|
@@ -2559,6 +2863,25 @@ export declare const ManagerCancelBookingResponseBookingStatusEnum: {
|
|
|
2559
2863
|
readonly Cancelled: "cancelled";
|
|
2560
2864
|
};
|
|
2561
2865
|
export type ManagerCancelBookingResponseBookingStatusEnum = typeof ManagerCancelBookingResponseBookingStatusEnum[keyof typeof ManagerCancelBookingResponseBookingStatusEnum];
|
|
2866
|
+
/**
|
|
2867
|
+
*
|
|
2868
|
+
* @export
|
|
2869
|
+
* @interface ManagerEventResponse
|
|
2870
|
+
*/
|
|
2871
|
+
export interface ManagerEventResponse {
|
|
2872
|
+
/**
|
|
2873
|
+
*
|
|
2874
|
+
* @type {Event}
|
|
2875
|
+
* @memberof ManagerEventResponse
|
|
2876
|
+
*/
|
|
2877
|
+
'event'?: Event;
|
|
2878
|
+
/**
|
|
2879
|
+
*
|
|
2880
|
+
* @type {string}
|
|
2881
|
+
* @memberof ManagerEventResponse
|
|
2882
|
+
*/
|
|
2883
|
+
'message'?: string;
|
|
2884
|
+
}
|
|
2562
2885
|
/**
|
|
2563
2886
|
*
|
|
2564
2887
|
* @export
|
|
@@ -2817,20 +3140,33 @@ export interface ProfilePictureResponse {
|
|
|
2817
3140
|
/**
|
|
2818
3141
|
*
|
|
2819
3142
|
* @export
|
|
2820
|
-
* @interface
|
|
3143
|
+
* @interface ProfileVisibilityResponse
|
|
2821
3144
|
*/
|
|
2822
|
-
export interface
|
|
3145
|
+
export interface ProfileVisibilityResponse {
|
|
2823
3146
|
/**
|
|
2824
3147
|
*
|
|
2825
|
-
* @type {
|
|
2826
|
-
* @memberof
|
|
3148
|
+
* @type {boolean}
|
|
3149
|
+
* @memberof ProfileVisibilityResponse
|
|
2827
3150
|
*/
|
|
2828
|
-
'
|
|
3151
|
+
'isProfileVisible'?: boolean;
|
|
2829
3152
|
}
|
|
2830
3153
|
/**
|
|
2831
3154
|
*
|
|
2832
3155
|
* @export
|
|
2833
|
-
* @interface
|
|
3156
|
+
* @interface RefreshTokenRequestBody
|
|
3157
|
+
*/
|
|
3158
|
+
export interface RefreshTokenRequestBody {
|
|
3159
|
+
/**
|
|
3160
|
+
*
|
|
3161
|
+
* @type {string}
|
|
3162
|
+
* @memberof RefreshTokenRequestBody
|
|
3163
|
+
*/
|
|
3164
|
+
'refreshToken': string;
|
|
3165
|
+
}
|
|
3166
|
+
/**
|
|
3167
|
+
*
|
|
3168
|
+
* @export
|
|
3169
|
+
* @interface RefreshTokenResponse
|
|
2834
3170
|
*/
|
|
2835
3171
|
export interface RefreshTokenResponse {
|
|
2836
3172
|
/**
|
|
@@ -2846,6 +3182,19 @@ export interface RefreshTokenResponse {
|
|
|
2846
3182
|
*/
|
|
2847
3183
|
'refreshToken'?: string;
|
|
2848
3184
|
}
|
|
3185
|
+
/**
|
|
3186
|
+
*
|
|
3187
|
+
* @export
|
|
3188
|
+
* @interface RegisterForEvent201Response
|
|
3189
|
+
*/
|
|
3190
|
+
export interface RegisterForEvent201Response {
|
|
3191
|
+
/**
|
|
3192
|
+
*
|
|
3193
|
+
* @type {EventBooking}
|
|
3194
|
+
* @memberof RegisterForEvent201Response
|
|
3195
|
+
*/
|
|
3196
|
+
'booking'?: EventBooking;
|
|
3197
|
+
}
|
|
2849
3198
|
/**
|
|
2850
3199
|
*
|
|
2851
3200
|
* @export
|
|
@@ -2926,12 +3275,6 @@ export interface RestoreSubscriptionPlanForClub200Response {
|
|
|
2926
3275
|
* @interface SetupPaymentMethodRequestBody
|
|
2927
3276
|
*/
|
|
2928
3277
|
export interface SetupPaymentMethodRequestBody {
|
|
2929
|
-
/**
|
|
2930
|
-
* ID de l\'utilisateur
|
|
2931
|
-
* @type {string}
|
|
2932
|
-
* @memberof SetupPaymentMethodRequestBody
|
|
2933
|
-
*/
|
|
2934
|
-
'userId': string;
|
|
2935
3278
|
/**
|
|
2936
3279
|
* ID du club
|
|
2937
3280
|
* @type {string}
|
|
@@ -3187,6 +3530,19 @@ export interface SportsResponse {
|
|
|
3187
3530
|
*/
|
|
3188
3531
|
'total'?: number;
|
|
3189
3532
|
}
|
|
3533
|
+
/**
|
|
3534
|
+
*
|
|
3535
|
+
* @export
|
|
3536
|
+
* @interface StaffEventResponse
|
|
3537
|
+
*/
|
|
3538
|
+
export interface StaffEventResponse {
|
|
3539
|
+
/**
|
|
3540
|
+
*
|
|
3541
|
+
* @type {Array<Event>}
|
|
3542
|
+
* @memberof StaffEventResponse
|
|
3543
|
+
*/
|
|
3544
|
+
'events'?: Array<Event>;
|
|
3545
|
+
}
|
|
3190
3546
|
/**
|
|
3191
3547
|
*
|
|
3192
3548
|
* @export
|
|
@@ -3691,6 +4047,19 @@ export interface UpdateProfilePictureRequestBody {
|
|
|
3691
4047
|
*/
|
|
3692
4048
|
'profilePicture': string;
|
|
3693
4049
|
}
|
|
4050
|
+
/**
|
|
4051
|
+
*
|
|
4052
|
+
* @export
|
|
4053
|
+
* @interface UpdateProfileVisibilityRequestBody
|
|
4054
|
+
*/
|
|
4055
|
+
export interface UpdateProfileVisibilityRequestBody {
|
|
4056
|
+
/**
|
|
4057
|
+
* Indique si le profil est visible aux autres utilisateurs
|
|
4058
|
+
* @type {boolean}
|
|
4059
|
+
* @memberof UpdateProfileVisibilityRequestBody
|
|
4060
|
+
*/
|
|
4061
|
+
'isProfileVisible': boolean;
|
|
4062
|
+
}
|
|
3694
4063
|
/**
|
|
3695
4064
|
*
|
|
3696
4065
|
* @export
|
|
@@ -3760,6 +4129,32 @@ export interface UpdateSubscriptionPlanResponse {
|
|
|
3760
4129
|
*/
|
|
3761
4130
|
'plan'?: SubscriptionPlan;
|
|
3762
4131
|
}
|
|
4132
|
+
/**
|
|
4133
|
+
*
|
|
4134
|
+
* @export
|
|
4135
|
+
* @interface UpdateUserCityRequestBody
|
|
4136
|
+
*/
|
|
4137
|
+
export interface UpdateUserCityRequestBody {
|
|
4138
|
+
/**
|
|
4139
|
+
* Nouvelle ville de l\'utilisateur
|
|
4140
|
+
* @type {string}
|
|
4141
|
+
* @memberof UpdateUserCityRequestBody
|
|
4142
|
+
*/
|
|
4143
|
+
'city': string;
|
|
4144
|
+
}
|
|
4145
|
+
/**
|
|
4146
|
+
*
|
|
4147
|
+
* @export
|
|
4148
|
+
* @interface UpdateUserDescriptionRequestBody
|
|
4149
|
+
*/
|
|
4150
|
+
export interface UpdateUserDescriptionRequestBody {
|
|
4151
|
+
/**
|
|
4152
|
+
* Nouvelle description de l\'utilisateur
|
|
4153
|
+
* @type {string}
|
|
4154
|
+
* @memberof UpdateUserDescriptionRequestBody
|
|
4155
|
+
*/
|
|
4156
|
+
'description': string;
|
|
4157
|
+
}
|
|
3763
4158
|
/**
|
|
3764
4159
|
*
|
|
3765
4160
|
* @export
|
|
@@ -3882,6 +4277,32 @@ export interface User {
|
|
|
3882
4277
|
*/
|
|
3883
4278
|
'isAdmin'?: boolean;
|
|
3884
4279
|
}
|
|
4280
|
+
/**
|
|
4281
|
+
*
|
|
4282
|
+
* @export
|
|
4283
|
+
* @interface UserCityResponse
|
|
4284
|
+
*/
|
|
4285
|
+
export interface UserCityResponse {
|
|
4286
|
+
/**
|
|
4287
|
+
*
|
|
4288
|
+
* @type {string}
|
|
4289
|
+
* @memberof UserCityResponse
|
|
4290
|
+
*/
|
|
4291
|
+
'city'?: string | null;
|
|
4292
|
+
}
|
|
4293
|
+
/**
|
|
4294
|
+
*
|
|
4295
|
+
* @export
|
|
4296
|
+
* @interface UserDescriptionResponse
|
|
4297
|
+
*/
|
|
4298
|
+
export interface UserDescriptionResponse {
|
|
4299
|
+
/**
|
|
4300
|
+
*
|
|
4301
|
+
* @type {string}
|
|
4302
|
+
* @memberof UserDescriptionResponse
|
|
4303
|
+
*/
|
|
4304
|
+
'description'?: string | null;
|
|
4305
|
+
}
|
|
3885
4306
|
/**
|
|
3886
4307
|
*
|
|
3887
4308
|
* @export
|
|
@@ -5368,6 +5789,132 @@ export declare const GetInvoicesStatusEnum: {
|
|
|
5368
5789
|
readonly Expired: "expired";
|
|
5369
5790
|
};
|
|
5370
5791
|
export type GetInvoicesStatusEnum = typeof GetInvoicesStatusEnum[keyof typeof GetInvoicesStatusEnum];
|
|
5792
|
+
/**
|
|
5793
|
+
* EventsApi - axios parameter creator
|
|
5794
|
+
* @export
|
|
5795
|
+
*/
|
|
5796
|
+
export declare const EventsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5797
|
+
/**
|
|
5798
|
+
*
|
|
5799
|
+
* @summary Get all published events for a club
|
|
5800
|
+
* @param {string} clubId
|
|
5801
|
+
* @param {*} [options] Override http request option.
|
|
5802
|
+
* @throws {RequiredError}
|
|
5803
|
+
*/
|
|
5804
|
+
getPublishedEventsByClubId: (clubId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5805
|
+
/**
|
|
5806
|
+
*
|
|
5807
|
+
* @summary Register for an event
|
|
5808
|
+
* @param {string} eventId
|
|
5809
|
+
* @param {EventRegistrationRequest} eventRegistrationRequest
|
|
5810
|
+
* @param {*} [options] Override http request option.
|
|
5811
|
+
* @throws {RequiredError}
|
|
5812
|
+
*/
|
|
5813
|
+
registerForEvent: (eventId: string, eventRegistrationRequest: EventRegistrationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5814
|
+
};
|
|
5815
|
+
/**
|
|
5816
|
+
* EventsApi - functional programming interface
|
|
5817
|
+
* @export
|
|
5818
|
+
*/
|
|
5819
|
+
export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
5820
|
+
/**
|
|
5821
|
+
*
|
|
5822
|
+
* @summary Get all published events for a club
|
|
5823
|
+
* @param {string} clubId
|
|
5824
|
+
* @param {*} [options] Override http request option.
|
|
5825
|
+
* @throws {RequiredError}
|
|
5826
|
+
*/
|
|
5827
|
+
getPublishedEventsByClubId(clubId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPublishedEventsByClubId200Response>>;
|
|
5828
|
+
/**
|
|
5829
|
+
*
|
|
5830
|
+
* @summary Register for an event
|
|
5831
|
+
* @param {string} eventId
|
|
5832
|
+
* @param {EventRegistrationRequest} eventRegistrationRequest
|
|
5833
|
+
* @param {*} [options] Override http request option.
|
|
5834
|
+
* @throws {RequiredError}
|
|
5835
|
+
*/
|
|
5836
|
+
registerForEvent(eventId: string, eventRegistrationRequest: EventRegistrationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisterForEvent201Response>>;
|
|
5837
|
+
};
|
|
5838
|
+
/**
|
|
5839
|
+
* EventsApi - factory interface
|
|
5840
|
+
* @export
|
|
5841
|
+
*/
|
|
5842
|
+
export declare const EventsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5843
|
+
/**
|
|
5844
|
+
*
|
|
5845
|
+
* @summary Get all published events for a club
|
|
5846
|
+
* @param {EventsApiGetPublishedEventsByClubIdRequest} requestParameters Request parameters.
|
|
5847
|
+
* @param {*} [options] Override http request option.
|
|
5848
|
+
* @throws {RequiredError}
|
|
5849
|
+
*/
|
|
5850
|
+
getPublishedEventsByClubId(requestParameters: EventsApiGetPublishedEventsByClubIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPublishedEventsByClubId200Response>;
|
|
5851
|
+
/**
|
|
5852
|
+
*
|
|
5853
|
+
* @summary Register for an event
|
|
5854
|
+
* @param {EventsApiRegisterForEventRequest} requestParameters Request parameters.
|
|
5855
|
+
* @param {*} [options] Override http request option.
|
|
5856
|
+
* @throws {RequiredError}
|
|
5857
|
+
*/
|
|
5858
|
+
registerForEvent(requestParameters: EventsApiRegisterForEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<RegisterForEvent201Response>;
|
|
5859
|
+
};
|
|
5860
|
+
/**
|
|
5861
|
+
* Request parameters for getPublishedEventsByClubId operation in EventsApi.
|
|
5862
|
+
* @export
|
|
5863
|
+
* @interface EventsApiGetPublishedEventsByClubIdRequest
|
|
5864
|
+
*/
|
|
5865
|
+
export interface EventsApiGetPublishedEventsByClubIdRequest {
|
|
5866
|
+
/**
|
|
5867
|
+
*
|
|
5868
|
+
* @type {string}
|
|
5869
|
+
* @memberof EventsApiGetPublishedEventsByClubId
|
|
5870
|
+
*/
|
|
5871
|
+
readonly clubId: string;
|
|
5872
|
+
}
|
|
5873
|
+
/**
|
|
5874
|
+
* Request parameters for registerForEvent operation in EventsApi.
|
|
5875
|
+
* @export
|
|
5876
|
+
* @interface EventsApiRegisterForEventRequest
|
|
5877
|
+
*/
|
|
5878
|
+
export interface EventsApiRegisterForEventRequest {
|
|
5879
|
+
/**
|
|
5880
|
+
*
|
|
5881
|
+
* @type {string}
|
|
5882
|
+
* @memberof EventsApiRegisterForEvent
|
|
5883
|
+
*/
|
|
5884
|
+
readonly eventId: string;
|
|
5885
|
+
/**
|
|
5886
|
+
*
|
|
5887
|
+
* @type {EventRegistrationRequest}
|
|
5888
|
+
* @memberof EventsApiRegisterForEvent
|
|
5889
|
+
*/
|
|
5890
|
+
readonly eventRegistrationRequest: EventRegistrationRequest;
|
|
5891
|
+
}
|
|
5892
|
+
/**
|
|
5893
|
+
* EventsApi - object-oriented interface
|
|
5894
|
+
* @export
|
|
5895
|
+
* @class EventsApi
|
|
5896
|
+
* @extends {BaseAPI}
|
|
5897
|
+
*/
|
|
5898
|
+
export declare class EventsApi extends BaseAPI {
|
|
5899
|
+
/**
|
|
5900
|
+
*
|
|
5901
|
+
* @summary Get all published events for a club
|
|
5902
|
+
* @param {EventsApiGetPublishedEventsByClubIdRequest} requestParameters Request parameters.
|
|
5903
|
+
* @param {*} [options] Override http request option.
|
|
5904
|
+
* @throws {RequiredError}
|
|
5905
|
+
* @memberof EventsApi
|
|
5906
|
+
*/
|
|
5907
|
+
getPublishedEventsByClubId(requestParameters: EventsApiGetPublishedEventsByClubIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPublishedEventsByClubId200Response, any>>;
|
|
5908
|
+
/**
|
|
5909
|
+
*
|
|
5910
|
+
* @summary Register for an event
|
|
5911
|
+
* @param {EventsApiRegisterForEventRequest} requestParameters Request parameters.
|
|
5912
|
+
* @param {*} [options] Override http request option.
|
|
5913
|
+
* @throws {RequiredError}
|
|
5914
|
+
* @memberof EventsApi
|
|
5915
|
+
*/
|
|
5916
|
+
registerForEvent(requestParameters: EventsApiRegisterForEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegisterForEvent201Response, any>>;
|
|
5917
|
+
}
|
|
5371
5918
|
/**
|
|
5372
5919
|
* ManagerBookingsApi - axios parameter creator
|
|
5373
5920
|
* @export
|
|
@@ -6545,6 +7092,216 @@ export declare class ManagerClubsApi extends BaseAPI {
|
|
|
6545
7092
|
*/
|
|
6546
7093
|
updateClubNoId(requestParameters: ManagerClubsApiUpdateClubNoIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubResponse, any>>;
|
|
6547
7094
|
}
|
|
7095
|
+
/**
|
|
7096
|
+
* ManagerEventsApi - axios parameter creator
|
|
7097
|
+
* @export
|
|
7098
|
+
*/
|
|
7099
|
+
export declare const ManagerEventsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7100
|
+
/**
|
|
7101
|
+
*
|
|
7102
|
+
* @summary Create a new event
|
|
7103
|
+
* @param {CreateEventRequest} createEventRequest
|
|
7104
|
+
* @param {*} [options] Override http request option.
|
|
7105
|
+
* @throws {RequiredError}
|
|
7106
|
+
*/
|
|
7107
|
+
createEvent: (createEventRequest: CreateEventRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7108
|
+
/**
|
|
7109
|
+
*
|
|
7110
|
+
* @summary Delete an event
|
|
7111
|
+
* @param {string} eventId
|
|
7112
|
+
* @param {*} [options] Override http request option.
|
|
7113
|
+
* @throws {RequiredError}
|
|
7114
|
+
*/
|
|
7115
|
+
deleteEvent: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7116
|
+
/**
|
|
7117
|
+
*
|
|
7118
|
+
* @summary Publish an event
|
|
7119
|
+
* @param {string} eventId
|
|
7120
|
+
* @param {*} [options] Override http request option.
|
|
7121
|
+
* @throws {RequiredError}
|
|
7122
|
+
*/
|
|
7123
|
+
publishEvent: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7124
|
+
/**
|
|
7125
|
+
*
|
|
7126
|
+
* @summary Unpublish an event
|
|
7127
|
+
* @param {string} eventId
|
|
7128
|
+
* @param {*} [options] Override http request option.
|
|
7129
|
+
* @throws {RequiredError}
|
|
7130
|
+
*/
|
|
7131
|
+
unpublishEvent: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7132
|
+
};
|
|
7133
|
+
/**
|
|
7134
|
+
* ManagerEventsApi - functional programming interface
|
|
7135
|
+
* @export
|
|
7136
|
+
*/
|
|
7137
|
+
export declare const ManagerEventsApiFp: (configuration?: Configuration) => {
|
|
7138
|
+
/**
|
|
7139
|
+
*
|
|
7140
|
+
* @summary Create a new event
|
|
7141
|
+
* @param {CreateEventRequest} createEventRequest
|
|
7142
|
+
* @param {*} [options] Override http request option.
|
|
7143
|
+
* @throws {RequiredError}
|
|
7144
|
+
*/
|
|
7145
|
+
createEvent(createEventRequest: CreateEventRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagerEventResponse>>;
|
|
7146
|
+
/**
|
|
7147
|
+
*
|
|
7148
|
+
* @summary Delete an event
|
|
7149
|
+
* @param {string} eventId
|
|
7150
|
+
* @param {*} [options] Override http request option.
|
|
7151
|
+
* @throws {RequiredError}
|
|
7152
|
+
*/
|
|
7153
|
+
deleteEvent(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteEvent200Response>>;
|
|
7154
|
+
/**
|
|
7155
|
+
*
|
|
7156
|
+
* @summary Publish an event
|
|
7157
|
+
* @param {string} eventId
|
|
7158
|
+
* @param {*} [options] Override http request option.
|
|
7159
|
+
* @throws {RequiredError}
|
|
7160
|
+
*/
|
|
7161
|
+
publishEvent(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagerEventResponse>>;
|
|
7162
|
+
/**
|
|
7163
|
+
*
|
|
7164
|
+
* @summary Unpublish an event
|
|
7165
|
+
* @param {string} eventId
|
|
7166
|
+
* @param {*} [options] Override http request option.
|
|
7167
|
+
* @throws {RequiredError}
|
|
7168
|
+
*/
|
|
7169
|
+
unpublishEvent(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagerEventResponse>>;
|
|
7170
|
+
};
|
|
7171
|
+
/**
|
|
7172
|
+
* ManagerEventsApi - factory interface
|
|
7173
|
+
* @export
|
|
7174
|
+
*/
|
|
7175
|
+
export declare const ManagerEventsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7176
|
+
/**
|
|
7177
|
+
*
|
|
7178
|
+
* @summary Create a new event
|
|
7179
|
+
* @param {ManagerEventsApiCreateEventRequest} requestParameters Request parameters.
|
|
7180
|
+
* @param {*} [options] Override http request option.
|
|
7181
|
+
* @throws {RequiredError}
|
|
7182
|
+
*/
|
|
7183
|
+
createEvent(requestParameters: ManagerEventsApiCreateEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<ManagerEventResponse>;
|
|
7184
|
+
/**
|
|
7185
|
+
*
|
|
7186
|
+
* @summary Delete an event
|
|
7187
|
+
* @param {ManagerEventsApiDeleteEventRequest} requestParameters Request parameters.
|
|
7188
|
+
* @param {*} [options] Override http request option.
|
|
7189
|
+
* @throws {RequiredError}
|
|
7190
|
+
*/
|
|
7191
|
+
deleteEvent(requestParameters: ManagerEventsApiDeleteEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteEvent200Response>;
|
|
7192
|
+
/**
|
|
7193
|
+
*
|
|
7194
|
+
* @summary Publish an event
|
|
7195
|
+
* @param {ManagerEventsApiPublishEventRequest} requestParameters Request parameters.
|
|
7196
|
+
* @param {*} [options] Override http request option.
|
|
7197
|
+
* @throws {RequiredError}
|
|
7198
|
+
*/
|
|
7199
|
+
publishEvent(requestParameters: ManagerEventsApiPublishEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<ManagerEventResponse>;
|
|
7200
|
+
/**
|
|
7201
|
+
*
|
|
7202
|
+
* @summary Unpublish an event
|
|
7203
|
+
* @param {ManagerEventsApiUnpublishEventRequest} requestParameters Request parameters.
|
|
7204
|
+
* @param {*} [options] Override http request option.
|
|
7205
|
+
* @throws {RequiredError}
|
|
7206
|
+
*/
|
|
7207
|
+
unpublishEvent(requestParameters: ManagerEventsApiUnpublishEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<ManagerEventResponse>;
|
|
7208
|
+
};
|
|
7209
|
+
/**
|
|
7210
|
+
* Request parameters for createEvent operation in ManagerEventsApi.
|
|
7211
|
+
* @export
|
|
7212
|
+
* @interface ManagerEventsApiCreateEventRequest
|
|
7213
|
+
*/
|
|
7214
|
+
export interface ManagerEventsApiCreateEventRequest {
|
|
7215
|
+
/**
|
|
7216
|
+
*
|
|
7217
|
+
* @type {CreateEventRequest}
|
|
7218
|
+
* @memberof ManagerEventsApiCreateEvent
|
|
7219
|
+
*/
|
|
7220
|
+
readonly createEventRequest: CreateEventRequest;
|
|
7221
|
+
}
|
|
7222
|
+
/**
|
|
7223
|
+
* Request parameters for deleteEvent operation in ManagerEventsApi.
|
|
7224
|
+
* @export
|
|
7225
|
+
* @interface ManagerEventsApiDeleteEventRequest
|
|
7226
|
+
*/
|
|
7227
|
+
export interface ManagerEventsApiDeleteEventRequest {
|
|
7228
|
+
/**
|
|
7229
|
+
*
|
|
7230
|
+
* @type {string}
|
|
7231
|
+
* @memberof ManagerEventsApiDeleteEvent
|
|
7232
|
+
*/
|
|
7233
|
+
readonly eventId: string;
|
|
7234
|
+
}
|
|
7235
|
+
/**
|
|
7236
|
+
* Request parameters for publishEvent operation in ManagerEventsApi.
|
|
7237
|
+
* @export
|
|
7238
|
+
* @interface ManagerEventsApiPublishEventRequest
|
|
7239
|
+
*/
|
|
7240
|
+
export interface ManagerEventsApiPublishEventRequest {
|
|
7241
|
+
/**
|
|
7242
|
+
*
|
|
7243
|
+
* @type {string}
|
|
7244
|
+
* @memberof ManagerEventsApiPublishEvent
|
|
7245
|
+
*/
|
|
7246
|
+
readonly eventId: string;
|
|
7247
|
+
}
|
|
7248
|
+
/**
|
|
7249
|
+
* Request parameters for unpublishEvent operation in ManagerEventsApi.
|
|
7250
|
+
* @export
|
|
7251
|
+
* @interface ManagerEventsApiUnpublishEventRequest
|
|
7252
|
+
*/
|
|
7253
|
+
export interface ManagerEventsApiUnpublishEventRequest {
|
|
7254
|
+
/**
|
|
7255
|
+
*
|
|
7256
|
+
* @type {string}
|
|
7257
|
+
* @memberof ManagerEventsApiUnpublishEvent
|
|
7258
|
+
*/
|
|
7259
|
+
readonly eventId: string;
|
|
7260
|
+
}
|
|
7261
|
+
/**
|
|
7262
|
+
* ManagerEventsApi - object-oriented interface
|
|
7263
|
+
* @export
|
|
7264
|
+
* @class ManagerEventsApi
|
|
7265
|
+
* @extends {BaseAPI}
|
|
7266
|
+
*/
|
|
7267
|
+
export declare class ManagerEventsApi extends BaseAPI {
|
|
7268
|
+
/**
|
|
7269
|
+
*
|
|
7270
|
+
* @summary Create a new event
|
|
7271
|
+
* @param {ManagerEventsApiCreateEventRequest} requestParameters Request parameters.
|
|
7272
|
+
* @param {*} [options] Override http request option.
|
|
7273
|
+
* @throws {RequiredError}
|
|
7274
|
+
* @memberof ManagerEventsApi
|
|
7275
|
+
*/
|
|
7276
|
+
createEvent(requestParameters: ManagerEventsApiCreateEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerEventResponse, any>>;
|
|
7277
|
+
/**
|
|
7278
|
+
*
|
|
7279
|
+
* @summary Delete an event
|
|
7280
|
+
* @param {ManagerEventsApiDeleteEventRequest} requestParameters Request parameters.
|
|
7281
|
+
* @param {*} [options] Override http request option.
|
|
7282
|
+
* @throws {RequiredError}
|
|
7283
|
+
* @memberof ManagerEventsApi
|
|
7284
|
+
*/
|
|
7285
|
+
deleteEvent(requestParameters: ManagerEventsApiDeleteEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteEvent200Response, any>>;
|
|
7286
|
+
/**
|
|
7287
|
+
*
|
|
7288
|
+
* @summary Publish an event
|
|
7289
|
+
* @param {ManagerEventsApiPublishEventRequest} requestParameters Request parameters.
|
|
7290
|
+
* @param {*} [options] Override http request option.
|
|
7291
|
+
* @throws {RequiredError}
|
|
7292
|
+
* @memberof ManagerEventsApi
|
|
7293
|
+
*/
|
|
7294
|
+
publishEvent(requestParameters: ManagerEventsApiPublishEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerEventResponse, any>>;
|
|
7295
|
+
/**
|
|
7296
|
+
*
|
|
7297
|
+
* @summary Unpublish an event
|
|
7298
|
+
* @param {ManagerEventsApiUnpublishEventRequest} requestParameters Request parameters.
|
|
7299
|
+
* @param {*} [options] Override http request option.
|
|
7300
|
+
* @throws {RequiredError}
|
|
7301
|
+
* @memberof ManagerEventsApi
|
|
7302
|
+
*/
|
|
7303
|
+
unpublishEvent(requestParameters: ManagerEventsApiUnpublishEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerEventResponse, any>>;
|
|
7304
|
+
}
|
|
6548
7305
|
/**
|
|
6549
7306
|
* ManagerSportsApi - axios parameter creator
|
|
6550
7307
|
* @export
|
|
@@ -6974,6 +7731,61 @@ export declare class StaffClubsApi extends BaseAPI {
|
|
|
6974
7731
|
*/
|
|
6975
7732
|
getClubSettings(requestParameters: StaffClubsApiGetClubSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubSettings, any>>;
|
|
6976
7733
|
}
|
|
7734
|
+
/**
|
|
7735
|
+
* StaffEventsApi - axios parameter creator
|
|
7736
|
+
* @export
|
|
7737
|
+
*/
|
|
7738
|
+
export declare const StaffEventsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7739
|
+
/**
|
|
7740
|
+
*
|
|
7741
|
+
* @summary Get all events for current club (including unpublished)
|
|
7742
|
+
* @param {*} [options] Override http request option.
|
|
7743
|
+
* @throws {RequiredError}
|
|
7744
|
+
*/
|
|
7745
|
+
getEventsByClub: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7746
|
+
};
|
|
7747
|
+
/**
|
|
7748
|
+
* StaffEventsApi - functional programming interface
|
|
7749
|
+
* @export
|
|
7750
|
+
*/
|
|
7751
|
+
export declare const StaffEventsApiFp: (configuration?: Configuration) => {
|
|
7752
|
+
/**
|
|
7753
|
+
*
|
|
7754
|
+
* @summary Get all events for current club (including unpublished)
|
|
7755
|
+
* @param {*} [options] Override http request option.
|
|
7756
|
+
* @throws {RequiredError}
|
|
7757
|
+
*/
|
|
7758
|
+
getEventsByClub(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StaffEventResponse>>;
|
|
7759
|
+
};
|
|
7760
|
+
/**
|
|
7761
|
+
* StaffEventsApi - factory interface
|
|
7762
|
+
* @export
|
|
7763
|
+
*/
|
|
7764
|
+
export declare const StaffEventsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7765
|
+
/**
|
|
7766
|
+
*
|
|
7767
|
+
* @summary Get all events for current club (including unpublished)
|
|
7768
|
+
* @param {*} [options] Override http request option.
|
|
7769
|
+
* @throws {RequiredError}
|
|
7770
|
+
*/
|
|
7771
|
+
getEventsByClub(options?: RawAxiosRequestConfig): AxiosPromise<StaffEventResponse>;
|
|
7772
|
+
};
|
|
7773
|
+
/**
|
|
7774
|
+
* StaffEventsApi - object-oriented interface
|
|
7775
|
+
* @export
|
|
7776
|
+
* @class StaffEventsApi
|
|
7777
|
+
* @extends {BaseAPI}
|
|
7778
|
+
*/
|
|
7779
|
+
export declare class StaffEventsApi extends BaseAPI {
|
|
7780
|
+
/**
|
|
7781
|
+
*
|
|
7782
|
+
* @summary Get all events for current club (including unpublished)
|
|
7783
|
+
* @param {*} [options] Override http request option.
|
|
7784
|
+
* @throws {RequiredError}
|
|
7785
|
+
* @memberof StaffEventsApi
|
|
7786
|
+
*/
|
|
7787
|
+
getEventsByClub(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StaffEventResponse, any>>;
|
|
7788
|
+
}
|
|
6977
7789
|
/**
|
|
6978
7790
|
* StaffProfileApi - axios parameter creator
|
|
6979
7791
|
* @export
|
|
@@ -8027,6 +8839,20 @@ export declare const UserProfileApiAxiosParamCreator: (configuration?: Configura
|
|
|
8027
8839
|
* @throws {RequiredError}
|
|
8028
8840
|
*/
|
|
8029
8841
|
getAllUsers: (limit?: number, skip?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8842
|
+
/**
|
|
8843
|
+
*
|
|
8844
|
+
* @summary Joueurs avec lesquels l\'utilisateur a le plus joué (profils visibles)
|
|
8845
|
+
* @param {*} [options] Override http request option.
|
|
8846
|
+
* @throws {RequiredError}
|
|
8847
|
+
*/
|
|
8848
|
+
getFrequentlyPlayedWith: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8849
|
+
/**
|
|
8850
|
+
*
|
|
8851
|
+
* @summary Clubs les plus fréquemment visités par l\'utilisateur connecté
|
|
8852
|
+
* @param {*} [options] Override http request option.
|
|
8853
|
+
* @throws {RequiredError}
|
|
8854
|
+
*/
|
|
8855
|
+
getFrequentlyVisitedClub: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8030
8856
|
/**
|
|
8031
8857
|
*
|
|
8032
8858
|
* @summary Récupère l\'URL de la photo de profil de l\'utilisateur connecté
|
|
@@ -8034,6 +8860,20 @@ export declare const UserProfileApiAxiosParamCreator: (configuration?: Configura
|
|
|
8034
8860
|
* @throws {RequiredError}
|
|
8035
8861
|
*/
|
|
8036
8862
|
getProfilePicture: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8863
|
+
/**
|
|
8864
|
+
*
|
|
8865
|
+
* @summary Récupère la ville de l\'utilisateur connecté
|
|
8866
|
+
* @param {*} [options] Override http request option.
|
|
8867
|
+
* @throws {RequiredError}
|
|
8868
|
+
*/
|
|
8869
|
+
getUserCity: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8870
|
+
/**
|
|
8871
|
+
*
|
|
8872
|
+
* @summary Récupère la description de l\'utilisateur connecté
|
|
8873
|
+
* @param {*} [options] Override http request option.
|
|
8874
|
+
* @throws {RequiredError}
|
|
8875
|
+
*/
|
|
8876
|
+
getUserDescription: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8037
8877
|
/**
|
|
8038
8878
|
*
|
|
8039
8879
|
* @summary Récupère les informations de l\'utilisateur connecté
|
|
@@ -8041,6 +8881,13 @@ export declare const UserProfileApiAxiosParamCreator: (configuration?: Configura
|
|
|
8041
8881
|
* @throws {RequiredError}
|
|
8042
8882
|
*/
|
|
8043
8883
|
getUserInfo: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8884
|
+
/**
|
|
8885
|
+
*
|
|
8886
|
+
* @summary Récupère la visibilité du profil de l\'utilisateur connecté
|
|
8887
|
+
* @param {*} [options] Override http request option.
|
|
8888
|
+
* @throws {RequiredError}
|
|
8889
|
+
*/
|
|
8890
|
+
getUserProfileVisibility: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8044
8891
|
/**
|
|
8045
8892
|
*
|
|
8046
8893
|
* @summary Met à jour le tableau levelBySports de l\'utilisateur connecté
|
|
@@ -8057,6 +8904,14 @@ export declare const UserProfileApiAxiosParamCreator: (configuration?: Configura
|
|
|
8057
8904
|
* @throws {RequiredError}
|
|
8058
8905
|
*/
|
|
8059
8906
|
updateProfilePicture: (updateProfilePictureRequestBody: UpdateProfilePictureRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8907
|
+
/**
|
|
8908
|
+
*
|
|
8909
|
+
* @summary Met à jour la visibilité du profil de l\'utilisateur connecté
|
|
8910
|
+
* @param {UpdateProfileVisibilityRequestBody} updateProfileVisibilityRequestBody
|
|
8911
|
+
* @param {*} [options] Override http request option.
|
|
8912
|
+
* @throws {RequiredError}
|
|
8913
|
+
*/
|
|
8914
|
+
updateProfileVisibility: (updateProfileVisibilityRequestBody: UpdateProfileVisibilityRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8060
8915
|
/**
|
|
8061
8916
|
*
|
|
8062
8917
|
* @summary Met à jour les données de l\'utilisateur connecté
|
|
@@ -8065,6 +8920,22 @@ export declare const UserProfileApiAxiosParamCreator: (configuration?: Configura
|
|
|
8065
8920
|
* @throws {RequiredError}
|
|
8066
8921
|
*/
|
|
8067
8922
|
updateUser: (updateUserRequestBody: UpdateUserRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8923
|
+
/**
|
|
8924
|
+
*
|
|
8925
|
+
* @summary Met à jour la ville de l\'utilisateur connecté
|
|
8926
|
+
* @param {UpdateUserCityRequestBody} updateUserCityRequestBody
|
|
8927
|
+
* @param {*} [options] Override http request option.
|
|
8928
|
+
* @throws {RequiredError}
|
|
8929
|
+
*/
|
|
8930
|
+
updateUserCity: (updateUserCityRequestBody: UpdateUserCityRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8931
|
+
/**
|
|
8932
|
+
*
|
|
8933
|
+
* @summary Met à jour la description de l\'utilisateur connecté
|
|
8934
|
+
* @param {UpdateUserDescriptionRequestBody} updateUserDescriptionRequestBody
|
|
8935
|
+
* @param {*} [options] Override http request option.
|
|
8936
|
+
* @throws {RequiredError}
|
|
8937
|
+
*/
|
|
8938
|
+
updateUserDescription: (updateUserDescriptionRequestBody: UpdateUserDescriptionRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8068
8939
|
};
|
|
8069
8940
|
/**
|
|
8070
8941
|
* UserProfileApi - functional programming interface
|
|
@@ -8089,6 +8960,20 @@ export declare const UserProfileApiFp: (configuration?: Configuration) => {
|
|
|
8089
8960
|
* @throws {RequiredError}
|
|
8090
8961
|
*/
|
|
8091
8962
|
getAllUsers(limit?: number, skip?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserResponse>>>;
|
|
8963
|
+
/**
|
|
8964
|
+
*
|
|
8965
|
+
* @summary Joueurs avec lesquels l\'utilisateur a le plus joué (profils visibles)
|
|
8966
|
+
* @param {*} [options] Override http request option.
|
|
8967
|
+
* @throws {RequiredError}
|
|
8968
|
+
*/
|
|
8969
|
+
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FrequentlyPlayedWithItem>>>;
|
|
8970
|
+
/**
|
|
8971
|
+
*
|
|
8972
|
+
* @summary Clubs les plus fréquemment visités par l\'utilisateur connecté
|
|
8973
|
+
* @param {*} [options] Override http request option.
|
|
8974
|
+
* @throws {RequiredError}
|
|
8975
|
+
*/
|
|
8976
|
+
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FrequentlyVisitedClubItem>>>;
|
|
8092
8977
|
/**
|
|
8093
8978
|
*
|
|
8094
8979
|
* @summary Récupère l\'URL de la photo de profil de l\'utilisateur connecté
|
|
@@ -8096,6 +8981,20 @@ export declare const UserProfileApiFp: (configuration?: Configuration) => {
|
|
|
8096
8981
|
* @throws {RequiredError}
|
|
8097
8982
|
*/
|
|
8098
8983
|
getProfilePicture(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfilePictureResponse>>;
|
|
8984
|
+
/**
|
|
8985
|
+
*
|
|
8986
|
+
* @summary Récupère la ville de l\'utilisateur connecté
|
|
8987
|
+
* @param {*} [options] Override http request option.
|
|
8988
|
+
* @throws {RequiredError}
|
|
8989
|
+
*/
|
|
8990
|
+
getUserCity(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCityResponse>>;
|
|
8991
|
+
/**
|
|
8992
|
+
*
|
|
8993
|
+
* @summary Récupère la description de l\'utilisateur connecté
|
|
8994
|
+
* @param {*} [options] Override http request option.
|
|
8995
|
+
* @throws {RequiredError}
|
|
8996
|
+
*/
|
|
8997
|
+
getUserDescription(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDescriptionResponse>>;
|
|
8099
8998
|
/**
|
|
8100
8999
|
*
|
|
8101
9000
|
* @summary Récupère les informations de l\'utilisateur connecté
|
|
@@ -8103,6 +9002,13 @@ export declare const UserProfileApiFp: (configuration?: Configuration) => {
|
|
|
8103
9002
|
* @throws {RequiredError}
|
|
8104
9003
|
*/
|
|
8105
9004
|
getUserInfo(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponse>>;
|
|
9005
|
+
/**
|
|
9006
|
+
*
|
|
9007
|
+
* @summary Récupère la visibilité du profil de l\'utilisateur connecté
|
|
9008
|
+
* @param {*} [options] Override http request option.
|
|
9009
|
+
* @throws {RequiredError}
|
|
9010
|
+
*/
|
|
9011
|
+
getUserProfileVisibility(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfileVisibilityResponse>>;
|
|
8106
9012
|
/**
|
|
8107
9013
|
*
|
|
8108
9014
|
* @summary Met à jour le tableau levelBySports de l\'utilisateur connecté
|
|
@@ -8119,6 +9025,14 @@ export declare const UserProfileApiFp: (configuration?: Configuration) => {
|
|
|
8119
9025
|
* @throws {RequiredError}
|
|
8120
9026
|
*/
|
|
8121
9027
|
updateProfilePicture(updateProfilePictureRequestBody: UpdateProfilePictureRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfilePictureResponse>>;
|
|
9028
|
+
/**
|
|
9029
|
+
*
|
|
9030
|
+
* @summary Met à jour la visibilité du profil de l\'utilisateur connecté
|
|
9031
|
+
* @param {UpdateProfileVisibilityRequestBody} updateProfileVisibilityRequestBody
|
|
9032
|
+
* @param {*} [options] Override http request option.
|
|
9033
|
+
* @throws {RequiredError}
|
|
9034
|
+
*/
|
|
9035
|
+
updateProfileVisibility(updateProfileVisibilityRequestBody: UpdateProfileVisibilityRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponse>>;
|
|
8122
9036
|
/**
|
|
8123
9037
|
*
|
|
8124
9038
|
* @summary Met à jour les données de l\'utilisateur connecté
|
|
@@ -8127,6 +9041,22 @@ export declare const UserProfileApiFp: (configuration?: Configuration) => {
|
|
|
8127
9041
|
* @throws {RequiredError}
|
|
8128
9042
|
*/
|
|
8129
9043
|
updateUser(updateUserRequestBody: UpdateUserRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponse>>;
|
|
9044
|
+
/**
|
|
9045
|
+
*
|
|
9046
|
+
* @summary Met à jour la ville de l\'utilisateur connecté
|
|
9047
|
+
* @param {UpdateUserCityRequestBody} updateUserCityRequestBody
|
|
9048
|
+
* @param {*} [options] Override http request option.
|
|
9049
|
+
* @throws {RequiredError}
|
|
9050
|
+
*/
|
|
9051
|
+
updateUserCity(updateUserCityRequestBody: UpdateUserCityRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponse>>;
|
|
9052
|
+
/**
|
|
9053
|
+
*
|
|
9054
|
+
* @summary Met à jour la description de l\'utilisateur connecté
|
|
9055
|
+
* @param {UpdateUserDescriptionRequestBody} updateUserDescriptionRequestBody
|
|
9056
|
+
* @param {*} [options] Override http request option.
|
|
9057
|
+
* @throws {RequiredError}
|
|
9058
|
+
*/
|
|
9059
|
+
updateUserDescription(updateUserDescriptionRequestBody: UpdateUserDescriptionRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponse>>;
|
|
8130
9060
|
};
|
|
8131
9061
|
/**
|
|
8132
9062
|
* UserProfileApi - factory interface
|
|
@@ -8149,6 +9079,20 @@ export declare const UserProfileApiFactory: (configuration?: Configuration, base
|
|
|
8149
9079
|
* @throws {RequiredError}
|
|
8150
9080
|
*/
|
|
8151
9081
|
getAllUsers(requestParameters?: UserProfileApiGetAllUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<UserResponse>>;
|
|
9082
|
+
/**
|
|
9083
|
+
*
|
|
9084
|
+
* @summary Joueurs avec lesquels l\'utilisateur a le plus joué (profils visibles)
|
|
9085
|
+
* @param {*} [options] Override http request option.
|
|
9086
|
+
* @throws {RequiredError}
|
|
9087
|
+
*/
|
|
9088
|
+
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): AxiosPromise<Array<FrequentlyPlayedWithItem>>;
|
|
9089
|
+
/**
|
|
9090
|
+
*
|
|
9091
|
+
* @summary Clubs les plus fréquemment visités par l\'utilisateur connecté
|
|
9092
|
+
* @param {*} [options] Override http request option.
|
|
9093
|
+
* @throws {RequiredError}
|
|
9094
|
+
*/
|
|
9095
|
+
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): AxiosPromise<Array<FrequentlyVisitedClubItem>>;
|
|
8152
9096
|
/**
|
|
8153
9097
|
*
|
|
8154
9098
|
* @summary Récupère l\'URL de la photo de profil de l\'utilisateur connecté
|
|
@@ -8156,6 +9100,20 @@ export declare const UserProfileApiFactory: (configuration?: Configuration, base
|
|
|
8156
9100
|
* @throws {RequiredError}
|
|
8157
9101
|
*/
|
|
8158
9102
|
getProfilePicture(options?: RawAxiosRequestConfig): AxiosPromise<ProfilePictureResponse>;
|
|
9103
|
+
/**
|
|
9104
|
+
*
|
|
9105
|
+
* @summary Récupère la ville de l\'utilisateur connecté
|
|
9106
|
+
* @param {*} [options] Override http request option.
|
|
9107
|
+
* @throws {RequiredError}
|
|
9108
|
+
*/
|
|
9109
|
+
getUserCity(options?: RawAxiosRequestConfig): AxiosPromise<UserCityResponse>;
|
|
9110
|
+
/**
|
|
9111
|
+
*
|
|
9112
|
+
* @summary Récupère la description de l\'utilisateur connecté
|
|
9113
|
+
* @param {*} [options] Override http request option.
|
|
9114
|
+
* @throws {RequiredError}
|
|
9115
|
+
*/
|
|
9116
|
+
getUserDescription(options?: RawAxiosRequestConfig): AxiosPromise<UserDescriptionResponse>;
|
|
8159
9117
|
/**
|
|
8160
9118
|
*
|
|
8161
9119
|
* @summary Récupère les informations de l\'utilisateur connecté
|
|
@@ -8163,6 +9121,13 @@ export declare const UserProfileApiFactory: (configuration?: Configuration, base
|
|
|
8163
9121
|
* @throws {RequiredError}
|
|
8164
9122
|
*/
|
|
8165
9123
|
getUserInfo(options?: RawAxiosRequestConfig): AxiosPromise<UserResponse>;
|
|
9124
|
+
/**
|
|
9125
|
+
*
|
|
9126
|
+
* @summary Récupère la visibilité du profil de l\'utilisateur connecté
|
|
9127
|
+
* @param {*} [options] Override http request option.
|
|
9128
|
+
* @throws {RequiredError}
|
|
9129
|
+
*/
|
|
9130
|
+
getUserProfileVisibility(options?: RawAxiosRequestConfig): AxiosPromise<ProfileVisibilityResponse>;
|
|
8166
9131
|
/**
|
|
8167
9132
|
*
|
|
8168
9133
|
* @summary Met à jour le tableau levelBySports de l\'utilisateur connecté
|
|
@@ -8179,6 +9144,14 @@ export declare const UserProfileApiFactory: (configuration?: Configuration, base
|
|
|
8179
9144
|
* @throws {RequiredError}
|
|
8180
9145
|
*/
|
|
8181
9146
|
updateProfilePicture(requestParameters: UserProfileApiUpdateProfilePictureRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProfilePictureResponse>;
|
|
9147
|
+
/**
|
|
9148
|
+
*
|
|
9149
|
+
* @summary Met à jour la visibilité du profil de l\'utilisateur connecté
|
|
9150
|
+
* @param {UserProfileApiUpdateProfileVisibilityRequest} requestParameters Request parameters.
|
|
9151
|
+
* @param {*} [options] Override http request option.
|
|
9152
|
+
* @throws {RequiredError}
|
|
9153
|
+
*/
|
|
9154
|
+
updateProfileVisibility(requestParameters: UserProfileApiUpdateProfileVisibilityRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserResponse>;
|
|
8182
9155
|
/**
|
|
8183
9156
|
*
|
|
8184
9157
|
* @summary Met à jour les données de l\'utilisateur connecté
|
|
@@ -8187,6 +9160,22 @@ export declare const UserProfileApiFactory: (configuration?: Configuration, base
|
|
|
8187
9160
|
* @throws {RequiredError}
|
|
8188
9161
|
*/
|
|
8189
9162
|
updateUser(requestParameters: UserProfileApiUpdateUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserResponse>;
|
|
9163
|
+
/**
|
|
9164
|
+
*
|
|
9165
|
+
* @summary Met à jour la ville de l\'utilisateur connecté
|
|
9166
|
+
* @param {UserProfileApiUpdateUserCityRequest} requestParameters Request parameters.
|
|
9167
|
+
* @param {*} [options] Override http request option.
|
|
9168
|
+
* @throws {RequiredError}
|
|
9169
|
+
*/
|
|
9170
|
+
updateUserCity(requestParameters: UserProfileApiUpdateUserCityRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserResponse>;
|
|
9171
|
+
/**
|
|
9172
|
+
*
|
|
9173
|
+
* @summary Met à jour la description de l\'utilisateur connecté
|
|
9174
|
+
* @param {UserProfileApiUpdateUserDescriptionRequest} requestParameters Request parameters.
|
|
9175
|
+
* @param {*} [options] Override http request option.
|
|
9176
|
+
* @throws {RequiredError}
|
|
9177
|
+
*/
|
|
9178
|
+
updateUserDescription(requestParameters: UserProfileApiUpdateUserDescriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserResponse>;
|
|
8190
9179
|
};
|
|
8191
9180
|
/**
|
|
8192
9181
|
* Request parameters for changePassword operation in UserProfileApi.
|
|
@@ -8252,6 +9241,19 @@ export interface UserProfileApiUpdateProfilePictureRequest {
|
|
|
8252
9241
|
*/
|
|
8253
9242
|
readonly updateProfilePictureRequestBody: UpdateProfilePictureRequestBody;
|
|
8254
9243
|
}
|
|
9244
|
+
/**
|
|
9245
|
+
* Request parameters for updateProfileVisibility operation in UserProfileApi.
|
|
9246
|
+
* @export
|
|
9247
|
+
* @interface UserProfileApiUpdateProfileVisibilityRequest
|
|
9248
|
+
*/
|
|
9249
|
+
export interface UserProfileApiUpdateProfileVisibilityRequest {
|
|
9250
|
+
/**
|
|
9251
|
+
*
|
|
9252
|
+
* @type {UpdateProfileVisibilityRequestBody}
|
|
9253
|
+
* @memberof UserProfileApiUpdateProfileVisibility
|
|
9254
|
+
*/
|
|
9255
|
+
readonly updateProfileVisibilityRequestBody: UpdateProfileVisibilityRequestBody;
|
|
9256
|
+
}
|
|
8255
9257
|
/**
|
|
8256
9258
|
* Request parameters for updateUser operation in UserProfileApi.
|
|
8257
9259
|
* @export
|
|
@@ -8265,6 +9267,32 @@ export interface UserProfileApiUpdateUserRequest {
|
|
|
8265
9267
|
*/
|
|
8266
9268
|
readonly updateUserRequestBody: UpdateUserRequestBody;
|
|
8267
9269
|
}
|
|
9270
|
+
/**
|
|
9271
|
+
* Request parameters for updateUserCity operation in UserProfileApi.
|
|
9272
|
+
* @export
|
|
9273
|
+
* @interface UserProfileApiUpdateUserCityRequest
|
|
9274
|
+
*/
|
|
9275
|
+
export interface UserProfileApiUpdateUserCityRequest {
|
|
9276
|
+
/**
|
|
9277
|
+
*
|
|
9278
|
+
* @type {UpdateUserCityRequestBody}
|
|
9279
|
+
* @memberof UserProfileApiUpdateUserCity
|
|
9280
|
+
*/
|
|
9281
|
+
readonly updateUserCityRequestBody: UpdateUserCityRequestBody;
|
|
9282
|
+
}
|
|
9283
|
+
/**
|
|
9284
|
+
* Request parameters for updateUserDescription operation in UserProfileApi.
|
|
9285
|
+
* @export
|
|
9286
|
+
* @interface UserProfileApiUpdateUserDescriptionRequest
|
|
9287
|
+
*/
|
|
9288
|
+
export interface UserProfileApiUpdateUserDescriptionRequest {
|
|
9289
|
+
/**
|
|
9290
|
+
*
|
|
9291
|
+
* @type {UpdateUserDescriptionRequestBody}
|
|
9292
|
+
* @memberof UserProfileApiUpdateUserDescription
|
|
9293
|
+
*/
|
|
9294
|
+
readonly updateUserDescriptionRequestBody: UpdateUserDescriptionRequestBody;
|
|
9295
|
+
}
|
|
8268
9296
|
/**
|
|
8269
9297
|
* UserProfileApi - object-oriented interface
|
|
8270
9298
|
* @export
|
|
@@ -8290,6 +9318,22 @@ export declare class UserProfileApi extends BaseAPI {
|
|
|
8290
9318
|
* @memberof UserProfileApi
|
|
8291
9319
|
*/
|
|
8292
9320
|
getAllUsers(requestParameters?: UserProfileApiGetAllUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse[], any>>;
|
|
9321
|
+
/**
|
|
9322
|
+
*
|
|
9323
|
+
* @summary Joueurs avec lesquels l\'utilisateur a le plus joué (profils visibles)
|
|
9324
|
+
* @param {*} [options] Override http request option.
|
|
9325
|
+
* @throws {RequiredError}
|
|
9326
|
+
* @memberof UserProfileApi
|
|
9327
|
+
*/
|
|
9328
|
+
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FrequentlyPlayedWithItem[], any>>;
|
|
9329
|
+
/**
|
|
9330
|
+
*
|
|
9331
|
+
* @summary Clubs les plus fréquemment visités par l\'utilisateur connecté
|
|
9332
|
+
* @param {*} [options] Override http request option.
|
|
9333
|
+
* @throws {RequiredError}
|
|
9334
|
+
* @memberof UserProfileApi
|
|
9335
|
+
*/
|
|
9336
|
+
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FrequentlyVisitedClubItem[], any>>;
|
|
8293
9337
|
/**
|
|
8294
9338
|
*
|
|
8295
9339
|
* @summary Récupère l\'URL de la photo de profil de l\'utilisateur connecté
|
|
@@ -8298,6 +9342,22 @@ export declare class UserProfileApi extends BaseAPI {
|
|
|
8298
9342
|
* @memberof UserProfileApi
|
|
8299
9343
|
*/
|
|
8300
9344
|
getProfilePicture(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfilePictureResponse, any>>;
|
|
9345
|
+
/**
|
|
9346
|
+
*
|
|
9347
|
+
* @summary Récupère la ville de l\'utilisateur connecté
|
|
9348
|
+
* @param {*} [options] Override http request option.
|
|
9349
|
+
* @throws {RequiredError}
|
|
9350
|
+
* @memberof UserProfileApi
|
|
9351
|
+
*/
|
|
9352
|
+
getUserCity(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCityResponse, any>>;
|
|
9353
|
+
/**
|
|
9354
|
+
*
|
|
9355
|
+
* @summary Récupère la description de l\'utilisateur connecté
|
|
9356
|
+
* @param {*} [options] Override http request option.
|
|
9357
|
+
* @throws {RequiredError}
|
|
9358
|
+
* @memberof UserProfileApi
|
|
9359
|
+
*/
|
|
9360
|
+
getUserDescription(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserDescriptionResponse, any>>;
|
|
8301
9361
|
/**
|
|
8302
9362
|
*
|
|
8303
9363
|
* @summary Récupère les informations de l\'utilisateur connecté
|
|
@@ -8306,6 +9366,14 @@ export declare class UserProfileApi extends BaseAPI {
|
|
|
8306
9366
|
* @memberof UserProfileApi
|
|
8307
9367
|
*/
|
|
8308
9368
|
getUserInfo(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any>>;
|
|
9369
|
+
/**
|
|
9370
|
+
*
|
|
9371
|
+
* @summary Récupère la visibilité du profil de l\'utilisateur connecté
|
|
9372
|
+
* @param {*} [options] Override http request option.
|
|
9373
|
+
* @throws {RequiredError}
|
|
9374
|
+
* @memberof UserProfileApi
|
|
9375
|
+
*/
|
|
9376
|
+
getUserProfileVisibility(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfileVisibilityResponse, any>>;
|
|
8309
9377
|
/**
|
|
8310
9378
|
*
|
|
8311
9379
|
* @summary Met à jour le tableau levelBySports de l\'utilisateur connecté
|
|
@@ -8324,6 +9392,15 @@ export declare class UserProfileApi extends BaseAPI {
|
|
|
8324
9392
|
* @memberof UserProfileApi
|
|
8325
9393
|
*/
|
|
8326
9394
|
updateProfilePicture(requestParameters: UserProfileApiUpdateProfilePictureRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfilePictureResponse, any>>;
|
|
9395
|
+
/**
|
|
9396
|
+
*
|
|
9397
|
+
* @summary Met à jour la visibilité du profil de l\'utilisateur connecté
|
|
9398
|
+
* @param {UserProfileApiUpdateProfileVisibilityRequest} requestParameters Request parameters.
|
|
9399
|
+
* @param {*} [options] Override http request option.
|
|
9400
|
+
* @throws {RequiredError}
|
|
9401
|
+
* @memberof UserProfileApi
|
|
9402
|
+
*/
|
|
9403
|
+
updateProfileVisibility(requestParameters: UserProfileApiUpdateProfileVisibilityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any>>;
|
|
8327
9404
|
/**
|
|
8328
9405
|
*
|
|
8329
9406
|
* @summary Met à jour les données de l\'utilisateur connecté
|
|
@@ -8333,6 +9410,24 @@ export declare class UserProfileApi extends BaseAPI {
|
|
|
8333
9410
|
* @memberof UserProfileApi
|
|
8334
9411
|
*/
|
|
8335
9412
|
updateUser(requestParameters: UserProfileApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any>>;
|
|
9413
|
+
/**
|
|
9414
|
+
*
|
|
9415
|
+
* @summary Met à jour la ville de l\'utilisateur connecté
|
|
9416
|
+
* @param {UserProfileApiUpdateUserCityRequest} requestParameters Request parameters.
|
|
9417
|
+
* @param {*} [options] Override http request option.
|
|
9418
|
+
* @throws {RequiredError}
|
|
9419
|
+
* @memberof UserProfileApi
|
|
9420
|
+
*/
|
|
9421
|
+
updateUserCity(requestParameters: UserProfileApiUpdateUserCityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any>>;
|
|
9422
|
+
/**
|
|
9423
|
+
*
|
|
9424
|
+
* @summary Met à jour la description de l\'utilisateur connecté
|
|
9425
|
+
* @param {UserProfileApiUpdateUserDescriptionRequest} requestParameters Request parameters.
|
|
9426
|
+
* @param {*} [options] Override http request option.
|
|
9427
|
+
* @throws {RequiredError}
|
|
9428
|
+
* @memberof UserProfileApi
|
|
9429
|
+
*/
|
|
9430
|
+
updateUserDescription(requestParameters: UserProfileApiUpdateUserDescriptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any>>;
|
|
8336
9431
|
}
|
|
8337
9432
|
/**
|
|
8338
9433
|
* UserSubscriptionsApi - axios parameter creator
|