@tennac-booking/sdk 1.0.24 → 1.0.25
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 +10 -0
- package/README.md +20 -2
- package/api.ts +825 -68
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +456 -13
- package/dist/api.js +521 -1
- 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 +456 -13
- package/dist/esm/api.js +521 -1
- 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/FavoriteClubResponse.md +22 -0
- package/docs/FrequentlyPlayedWithItem.md +28 -0
- package/docs/FrequentlyVisitedClubItem.md +24 -0
- package/docs/ProfileVisibilityResponse.md +20 -0
- package/docs/SetupPaymentMethodRequestBody.md +0 -2
- 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 +1 -1
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.25
|
|
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}
|
|
@@ -2001,6 +2008,87 @@ export interface DeleteSport200Response {
|
|
|
2001
2008
|
*/
|
|
2002
2009
|
'message'?: string;
|
|
2003
2010
|
}
|
|
2011
|
+
/**
|
|
2012
|
+
*
|
|
2013
|
+
* @export
|
|
2014
|
+
* @interface FavoriteClubResponse
|
|
2015
|
+
*/
|
|
2016
|
+
export interface FavoriteClubResponse {
|
|
2017
|
+
/**
|
|
2018
|
+
*
|
|
2019
|
+
* @type {string}
|
|
2020
|
+
* @memberof FavoriteClubResponse
|
|
2021
|
+
*/
|
|
2022
|
+
'message'?: string;
|
|
2023
|
+
/**
|
|
2024
|
+
*
|
|
2025
|
+
* @type {Array<string>}
|
|
2026
|
+
* @memberof FavoriteClubResponse
|
|
2027
|
+
*/
|
|
2028
|
+
'favoriteClubs'?: Array<string>;
|
|
2029
|
+
}
|
|
2030
|
+
/**
|
|
2031
|
+
*
|
|
2032
|
+
* @export
|
|
2033
|
+
* @interface FrequentlyPlayedWithItem
|
|
2034
|
+
*/
|
|
2035
|
+
export interface FrequentlyPlayedWithItem {
|
|
2036
|
+
/**
|
|
2037
|
+
*
|
|
2038
|
+
* @type {string}
|
|
2039
|
+
* @memberof FrequentlyPlayedWithItem
|
|
2040
|
+
*/
|
|
2041
|
+
'userId'?: string;
|
|
2042
|
+
/**
|
|
2043
|
+
*
|
|
2044
|
+
* @type {string}
|
|
2045
|
+
* @memberof FrequentlyPlayedWithItem
|
|
2046
|
+
*/
|
|
2047
|
+
'firstName'?: string;
|
|
2048
|
+
/**
|
|
2049
|
+
*
|
|
2050
|
+
* @type {string}
|
|
2051
|
+
* @memberof FrequentlyPlayedWithItem
|
|
2052
|
+
*/
|
|
2053
|
+
'lastName'?: string;
|
|
2054
|
+
/**
|
|
2055
|
+
*
|
|
2056
|
+
* @type {string}
|
|
2057
|
+
* @memberof FrequentlyPlayedWithItem
|
|
2058
|
+
*/
|
|
2059
|
+
'profilePicture'?: string;
|
|
2060
|
+
/**
|
|
2061
|
+
*
|
|
2062
|
+
* @type {number}
|
|
2063
|
+
* @memberof FrequentlyPlayedWithItem
|
|
2064
|
+
*/
|
|
2065
|
+
'playCount'?: number;
|
|
2066
|
+
}
|
|
2067
|
+
/**
|
|
2068
|
+
*
|
|
2069
|
+
* @export
|
|
2070
|
+
* @interface FrequentlyVisitedClubItem
|
|
2071
|
+
*/
|
|
2072
|
+
export interface FrequentlyVisitedClubItem {
|
|
2073
|
+
/**
|
|
2074
|
+
*
|
|
2075
|
+
* @type {string}
|
|
2076
|
+
* @memberof FrequentlyVisitedClubItem
|
|
2077
|
+
*/
|
|
2078
|
+
'clubId'?: string;
|
|
2079
|
+
/**
|
|
2080
|
+
*
|
|
2081
|
+
* @type {string}
|
|
2082
|
+
* @memberof FrequentlyVisitedClubItem
|
|
2083
|
+
*/
|
|
2084
|
+
'name'?: string;
|
|
2085
|
+
/**
|
|
2086
|
+
*
|
|
2087
|
+
* @type {number}
|
|
2088
|
+
* @memberof FrequentlyVisitedClubItem
|
|
2089
|
+
*/
|
|
2090
|
+
'visitCount'?: number;
|
|
2091
|
+
}
|
|
2004
2092
|
/**
|
|
2005
2093
|
*
|
|
2006
2094
|
* @export
|
|
@@ -2814,6 +2902,19 @@ export interface ProfilePictureResponse {
|
|
|
2814
2902
|
*/
|
|
2815
2903
|
'profilePicture'?: string;
|
|
2816
2904
|
}
|
|
2905
|
+
/**
|
|
2906
|
+
*
|
|
2907
|
+
* @export
|
|
2908
|
+
* @interface ProfileVisibilityResponse
|
|
2909
|
+
*/
|
|
2910
|
+
export interface ProfileVisibilityResponse {
|
|
2911
|
+
/**
|
|
2912
|
+
*
|
|
2913
|
+
* @type {boolean}
|
|
2914
|
+
* @memberof ProfileVisibilityResponse
|
|
2915
|
+
*/
|
|
2916
|
+
'isProfileVisible'?: boolean;
|
|
2917
|
+
}
|
|
2817
2918
|
/**
|
|
2818
2919
|
*
|
|
2819
2920
|
* @export
|
|
@@ -2926,12 +3027,6 @@ export interface RestoreSubscriptionPlanForClub200Response {
|
|
|
2926
3027
|
* @interface SetupPaymentMethodRequestBody
|
|
2927
3028
|
*/
|
|
2928
3029
|
export interface SetupPaymentMethodRequestBody {
|
|
2929
|
-
/**
|
|
2930
|
-
* ID de l\'utilisateur
|
|
2931
|
-
* @type {string}
|
|
2932
|
-
* @memberof SetupPaymentMethodRequestBody
|
|
2933
|
-
*/
|
|
2934
|
-
'userId': string;
|
|
2935
3030
|
/**
|
|
2936
3031
|
* ID du club
|
|
2937
3032
|
* @type {string}
|
|
@@ -3691,6 +3786,19 @@ export interface UpdateProfilePictureRequestBody {
|
|
|
3691
3786
|
*/
|
|
3692
3787
|
'profilePicture': string;
|
|
3693
3788
|
}
|
|
3789
|
+
/**
|
|
3790
|
+
*
|
|
3791
|
+
* @export
|
|
3792
|
+
* @interface UpdateProfileVisibilityRequestBody
|
|
3793
|
+
*/
|
|
3794
|
+
export interface UpdateProfileVisibilityRequestBody {
|
|
3795
|
+
/**
|
|
3796
|
+
* Indique si le profil est visible aux autres utilisateurs
|
|
3797
|
+
* @type {boolean}
|
|
3798
|
+
* @memberof UpdateProfileVisibilityRequestBody
|
|
3799
|
+
*/
|
|
3800
|
+
'isProfileVisible': boolean;
|
|
3801
|
+
}
|
|
3694
3802
|
/**
|
|
3695
3803
|
*
|
|
3696
3804
|
* @export
|
|
@@ -3760,6 +3868,32 @@ export interface UpdateSubscriptionPlanResponse {
|
|
|
3760
3868
|
*/
|
|
3761
3869
|
'plan'?: SubscriptionPlan;
|
|
3762
3870
|
}
|
|
3871
|
+
/**
|
|
3872
|
+
*
|
|
3873
|
+
* @export
|
|
3874
|
+
* @interface UpdateUserCityRequestBody
|
|
3875
|
+
*/
|
|
3876
|
+
export interface UpdateUserCityRequestBody {
|
|
3877
|
+
/**
|
|
3878
|
+
* Nouvelle ville de l\'utilisateur
|
|
3879
|
+
* @type {string}
|
|
3880
|
+
* @memberof UpdateUserCityRequestBody
|
|
3881
|
+
*/
|
|
3882
|
+
'city': string;
|
|
3883
|
+
}
|
|
3884
|
+
/**
|
|
3885
|
+
*
|
|
3886
|
+
* @export
|
|
3887
|
+
* @interface UpdateUserDescriptionRequestBody
|
|
3888
|
+
*/
|
|
3889
|
+
export interface UpdateUserDescriptionRequestBody {
|
|
3890
|
+
/**
|
|
3891
|
+
* Nouvelle description de l\'utilisateur
|
|
3892
|
+
* @type {string}
|
|
3893
|
+
* @memberof UpdateUserDescriptionRequestBody
|
|
3894
|
+
*/
|
|
3895
|
+
'description': string;
|
|
3896
|
+
}
|
|
3763
3897
|
/**
|
|
3764
3898
|
*
|
|
3765
3899
|
* @export
|
|
@@ -3882,6 +4016,32 @@ export interface User {
|
|
|
3882
4016
|
*/
|
|
3883
4017
|
'isAdmin'?: boolean;
|
|
3884
4018
|
}
|
|
4019
|
+
/**
|
|
4020
|
+
*
|
|
4021
|
+
* @export
|
|
4022
|
+
* @interface UserCityResponse
|
|
4023
|
+
*/
|
|
4024
|
+
export interface UserCityResponse {
|
|
4025
|
+
/**
|
|
4026
|
+
*
|
|
4027
|
+
* @type {string}
|
|
4028
|
+
* @memberof UserCityResponse
|
|
4029
|
+
*/
|
|
4030
|
+
'city'?: string | null;
|
|
4031
|
+
}
|
|
4032
|
+
/**
|
|
4033
|
+
*
|
|
4034
|
+
* @export
|
|
4035
|
+
* @interface UserDescriptionResponse
|
|
4036
|
+
*/
|
|
4037
|
+
export interface UserDescriptionResponse {
|
|
4038
|
+
/**
|
|
4039
|
+
*
|
|
4040
|
+
* @type {string}
|
|
4041
|
+
* @memberof UserDescriptionResponse
|
|
4042
|
+
*/
|
|
4043
|
+
'description'?: string | null;
|
|
4044
|
+
}
|
|
3885
4045
|
/**
|
|
3886
4046
|
*
|
|
3887
4047
|
* @export
|
|
@@ -8027,6 +8187,20 @@ export declare const UserProfileApiAxiosParamCreator: (configuration?: Configura
|
|
|
8027
8187
|
* @throws {RequiredError}
|
|
8028
8188
|
*/
|
|
8029
8189
|
getAllUsers: (limit?: number, skip?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8190
|
+
/**
|
|
8191
|
+
*
|
|
8192
|
+
* @summary Joueurs avec lesquels l\'utilisateur a le plus joué (profils visibles)
|
|
8193
|
+
* @param {*} [options] Override http request option.
|
|
8194
|
+
* @throws {RequiredError}
|
|
8195
|
+
*/
|
|
8196
|
+
getFrequentlyPlayedWith: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8197
|
+
/**
|
|
8198
|
+
*
|
|
8199
|
+
* @summary Clubs les plus fréquemment visités par l\'utilisateur connecté
|
|
8200
|
+
* @param {*} [options] Override http request option.
|
|
8201
|
+
* @throws {RequiredError}
|
|
8202
|
+
*/
|
|
8203
|
+
getFrequentlyVisitedClub: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8030
8204
|
/**
|
|
8031
8205
|
*
|
|
8032
8206
|
* @summary Récupère l\'URL de la photo de profil de l\'utilisateur connecté
|
|
@@ -8034,6 +8208,20 @@ export declare const UserProfileApiAxiosParamCreator: (configuration?: Configura
|
|
|
8034
8208
|
* @throws {RequiredError}
|
|
8035
8209
|
*/
|
|
8036
8210
|
getProfilePicture: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8211
|
+
/**
|
|
8212
|
+
*
|
|
8213
|
+
* @summary Récupère la ville de l\'utilisateur connecté
|
|
8214
|
+
* @param {*} [options] Override http request option.
|
|
8215
|
+
* @throws {RequiredError}
|
|
8216
|
+
*/
|
|
8217
|
+
getUserCity: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8218
|
+
/**
|
|
8219
|
+
*
|
|
8220
|
+
* @summary Récupère la description de l\'utilisateur connecté
|
|
8221
|
+
* @param {*} [options] Override http request option.
|
|
8222
|
+
* @throws {RequiredError}
|
|
8223
|
+
*/
|
|
8224
|
+
getUserDescription: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8037
8225
|
/**
|
|
8038
8226
|
*
|
|
8039
8227
|
* @summary Récupère les informations de l\'utilisateur connecté
|
|
@@ -8041,6 +8229,13 @@ export declare const UserProfileApiAxiosParamCreator: (configuration?: Configura
|
|
|
8041
8229
|
* @throws {RequiredError}
|
|
8042
8230
|
*/
|
|
8043
8231
|
getUserInfo: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8232
|
+
/**
|
|
8233
|
+
*
|
|
8234
|
+
* @summary Récupère la visibilité du profil de l\'utilisateur connecté
|
|
8235
|
+
* @param {*} [options] Override http request option.
|
|
8236
|
+
* @throws {RequiredError}
|
|
8237
|
+
*/
|
|
8238
|
+
getUserProfileVisibility: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8044
8239
|
/**
|
|
8045
8240
|
*
|
|
8046
8241
|
* @summary Met à jour le tableau levelBySports de l\'utilisateur connecté
|
|
@@ -8057,6 +8252,14 @@ export declare const UserProfileApiAxiosParamCreator: (configuration?: Configura
|
|
|
8057
8252
|
* @throws {RequiredError}
|
|
8058
8253
|
*/
|
|
8059
8254
|
updateProfilePicture: (updateProfilePictureRequestBody: UpdateProfilePictureRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8255
|
+
/**
|
|
8256
|
+
*
|
|
8257
|
+
* @summary Met à jour la visibilité du profil de l\'utilisateur connecté
|
|
8258
|
+
* @param {UpdateProfileVisibilityRequestBody} updateProfileVisibilityRequestBody
|
|
8259
|
+
* @param {*} [options] Override http request option.
|
|
8260
|
+
* @throws {RequiredError}
|
|
8261
|
+
*/
|
|
8262
|
+
updateProfileVisibility: (updateProfileVisibilityRequestBody: UpdateProfileVisibilityRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8060
8263
|
/**
|
|
8061
8264
|
*
|
|
8062
8265
|
* @summary Met à jour les données de l\'utilisateur connecté
|
|
@@ -8065,6 +8268,22 @@ export declare const UserProfileApiAxiosParamCreator: (configuration?: Configura
|
|
|
8065
8268
|
* @throws {RequiredError}
|
|
8066
8269
|
*/
|
|
8067
8270
|
updateUser: (updateUserRequestBody: UpdateUserRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8271
|
+
/**
|
|
8272
|
+
*
|
|
8273
|
+
* @summary Met à jour la ville de l\'utilisateur connecté
|
|
8274
|
+
* @param {UpdateUserCityRequestBody} updateUserCityRequestBody
|
|
8275
|
+
* @param {*} [options] Override http request option.
|
|
8276
|
+
* @throws {RequiredError}
|
|
8277
|
+
*/
|
|
8278
|
+
updateUserCity: (updateUserCityRequestBody: UpdateUserCityRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8279
|
+
/**
|
|
8280
|
+
*
|
|
8281
|
+
* @summary Met à jour la description de l\'utilisateur connecté
|
|
8282
|
+
* @param {UpdateUserDescriptionRequestBody} updateUserDescriptionRequestBody
|
|
8283
|
+
* @param {*} [options] Override http request option.
|
|
8284
|
+
* @throws {RequiredError}
|
|
8285
|
+
*/
|
|
8286
|
+
updateUserDescription: (updateUserDescriptionRequestBody: UpdateUserDescriptionRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8068
8287
|
};
|
|
8069
8288
|
/**
|
|
8070
8289
|
* UserProfileApi - functional programming interface
|
|
@@ -8089,6 +8308,20 @@ export declare const UserProfileApiFp: (configuration?: Configuration) => {
|
|
|
8089
8308
|
* @throws {RequiredError}
|
|
8090
8309
|
*/
|
|
8091
8310
|
getAllUsers(limit?: number, skip?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserResponse>>>;
|
|
8311
|
+
/**
|
|
8312
|
+
*
|
|
8313
|
+
* @summary Joueurs avec lesquels l\'utilisateur a le plus joué (profils visibles)
|
|
8314
|
+
* @param {*} [options] Override http request option.
|
|
8315
|
+
* @throws {RequiredError}
|
|
8316
|
+
*/
|
|
8317
|
+
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FrequentlyPlayedWithItem>>>;
|
|
8318
|
+
/**
|
|
8319
|
+
*
|
|
8320
|
+
* @summary Clubs les plus fréquemment visités par l\'utilisateur connecté
|
|
8321
|
+
* @param {*} [options] Override http request option.
|
|
8322
|
+
* @throws {RequiredError}
|
|
8323
|
+
*/
|
|
8324
|
+
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FrequentlyVisitedClubItem>>>;
|
|
8092
8325
|
/**
|
|
8093
8326
|
*
|
|
8094
8327
|
* @summary Récupère l\'URL de la photo de profil de l\'utilisateur connecté
|
|
@@ -8096,6 +8329,20 @@ export declare const UserProfileApiFp: (configuration?: Configuration) => {
|
|
|
8096
8329
|
* @throws {RequiredError}
|
|
8097
8330
|
*/
|
|
8098
8331
|
getProfilePicture(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfilePictureResponse>>;
|
|
8332
|
+
/**
|
|
8333
|
+
*
|
|
8334
|
+
* @summary Récupère la ville de l\'utilisateur connecté
|
|
8335
|
+
* @param {*} [options] Override http request option.
|
|
8336
|
+
* @throws {RequiredError}
|
|
8337
|
+
*/
|
|
8338
|
+
getUserCity(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCityResponse>>;
|
|
8339
|
+
/**
|
|
8340
|
+
*
|
|
8341
|
+
* @summary Récupère la description de l\'utilisateur connecté
|
|
8342
|
+
* @param {*} [options] Override http request option.
|
|
8343
|
+
* @throws {RequiredError}
|
|
8344
|
+
*/
|
|
8345
|
+
getUserDescription(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserDescriptionResponse>>;
|
|
8099
8346
|
/**
|
|
8100
8347
|
*
|
|
8101
8348
|
* @summary Récupère les informations de l\'utilisateur connecté
|
|
@@ -8103,6 +8350,13 @@ export declare const UserProfileApiFp: (configuration?: Configuration) => {
|
|
|
8103
8350
|
* @throws {RequiredError}
|
|
8104
8351
|
*/
|
|
8105
8352
|
getUserInfo(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponse>>;
|
|
8353
|
+
/**
|
|
8354
|
+
*
|
|
8355
|
+
* @summary Récupère la visibilité du profil de l\'utilisateur connecté
|
|
8356
|
+
* @param {*} [options] Override http request option.
|
|
8357
|
+
* @throws {RequiredError}
|
|
8358
|
+
*/
|
|
8359
|
+
getUserProfileVisibility(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfileVisibilityResponse>>;
|
|
8106
8360
|
/**
|
|
8107
8361
|
*
|
|
8108
8362
|
* @summary Met à jour le tableau levelBySports de l\'utilisateur connecté
|
|
@@ -8119,6 +8373,14 @@ export declare const UserProfileApiFp: (configuration?: Configuration) => {
|
|
|
8119
8373
|
* @throws {RequiredError}
|
|
8120
8374
|
*/
|
|
8121
8375
|
updateProfilePicture(updateProfilePictureRequestBody: UpdateProfilePictureRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfilePictureResponse>>;
|
|
8376
|
+
/**
|
|
8377
|
+
*
|
|
8378
|
+
* @summary Met à jour la visibilité du profil de l\'utilisateur connecté
|
|
8379
|
+
* @param {UpdateProfileVisibilityRequestBody} updateProfileVisibilityRequestBody
|
|
8380
|
+
* @param {*} [options] Override http request option.
|
|
8381
|
+
* @throws {RequiredError}
|
|
8382
|
+
*/
|
|
8383
|
+
updateProfileVisibility(updateProfileVisibilityRequestBody: UpdateProfileVisibilityRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponse>>;
|
|
8122
8384
|
/**
|
|
8123
8385
|
*
|
|
8124
8386
|
* @summary Met à jour les données de l\'utilisateur connecté
|
|
@@ -8127,6 +8389,22 @@ export declare const UserProfileApiFp: (configuration?: Configuration) => {
|
|
|
8127
8389
|
* @throws {RequiredError}
|
|
8128
8390
|
*/
|
|
8129
8391
|
updateUser(updateUserRequestBody: UpdateUserRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponse>>;
|
|
8392
|
+
/**
|
|
8393
|
+
*
|
|
8394
|
+
* @summary Met à jour la ville de l\'utilisateur connecté
|
|
8395
|
+
* @param {UpdateUserCityRequestBody} updateUserCityRequestBody
|
|
8396
|
+
* @param {*} [options] Override http request option.
|
|
8397
|
+
* @throws {RequiredError}
|
|
8398
|
+
*/
|
|
8399
|
+
updateUserCity(updateUserCityRequestBody: UpdateUserCityRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponse>>;
|
|
8400
|
+
/**
|
|
8401
|
+
*
|
|
8402
|
+
* @summary Met à jour la description de l\'utilisateur connecté
|
|
8403
|
+
* @param {UpdateUserDescriptionRequestBody} updateUserDescriptionRequestBody
|
|
8404
|
+
* @param {*} [options] Override http request option.
|
|
8405
|
+
* @throws {RequiredError}
|
|
8406
|
+
*/
|
|
8407
|
+
updateUserDescription(updateUserDescriptionRequestBody: UpdateUserDescriptionRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserResponse>>;
|
|
8130
8408
|
};
|
|
8131
8409
|
/**
|
|
8132
8410
|
* UserProfileApi - factory interface
|
|
@@ -8149,6 +8427,20 @@ export declare const UserProfileApiFactory: (configuration?: Configuration, base
|
|
|
8149
8427
|
* @throws {RequiredError}
|
|
8150
8428
|
*/
|
|
8151
8429
|
getAllUsers(requestParameters?: UserProfileApiGetAllUsersRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<UserResponse>>;
|
|
8430
|
+
/**
|
|
8431
|
+
*
|
|
8432
|
+
* @summary Joueurs avec lesquels l\'utilisateur a le plus joué (profils visibles)
|
|
8433
|
+
* @param {*} [options] Override http request option.
|
|
8434
|
+
* @throws {RequiredError}
|
|
8435
|
+
*/
|
|
8436
|
+
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): AxiosPromise<Array<FrequentlyPlayedWithItem>>;
|
|
8437
|
+
/**
|
|
8438
|
+
*
|
|
8439
|
+
* @summary Clubs les plus fréquemment visités par l\'utilisateur connecté
|
|
8440
|
+
* @param {*} [options] Override http request option.
|
|
8441
|
+
* @throws {RequiredError}
|
|
8442
|
+
*/
|
|
8443
|
+
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): AxiosPromise<Array<FrequentlyVisitedClubItem>>;
|
|
8152
8444
|
/**
|
|
8153
8445
|
*
|
|
8154
8446
|
* @summary Récupère l\'URL de la photo de profil de l\'utilisateur connecté
|
|
@@ -8156,6 +8448,20 @@ export declare const UserProfileApiFactory: (configuration?: Configuration, base
|
|
|
8156
8448
|
* @throws {RequiredError}
|
|
8157
8449
|
*/
|
|
8158
8450
|
getProfilePicture(options?: RawAxiosRequestConfig): AxiosPromise<ProfilePictureResponse>;
|
|
8451
|
+
/**
|
|
8452
|
+
*
|
|
8453
|
+
* @summary Récupère la ville de l\'utilisateur connecté
|
|
8454
|
+
* @param {*} [options] Override http request option.
|
|
8455
|
+
* @throws {RequiredError}
|
|
8456
|
+
*/
|
|
8457
|
+
getUserCity(options?: RawAxiosRequestConfig): AxiosPromise<UserCityResponse>;
|
|
8458
|
+
/**
|
|
8459
|
+
*
|
|
8460
|
+
* @summary Récupère la description de l\'utilisateur connecté
|
|
8461
|
+
* @param {*} [options] Override http request option.
|
|
8462
|
+
* @throws {RequiredError}
|
|
8463
|
+
*/
|
|
8464
|
+
getUserDescription(options?: RawAxiosRequestConfig): AxiosPromise<UserDescriptionResponse>;
|
|
8159
8465
|
/**
|
|
8160
8466
|
*
|
|
8161
8467
|
* @summary Récupère les informations de l\'utilisateur connecté
|
|
@@ -8163,6 +8469,13 @@ export declare const UserProfileApiFactory: (configuration?: Configuration, base
|
|
|
8163
8469
|
* @throws {RequiredError}
|
|
8164
8470
|
*/
|
|
8165
8471
|
getUserInfo(options?: RawAxiosRequestConfig): AxiosPromise<UserResponse>;
|
|
8472
|
+
/**
|
|
8473
|
+
*
|
|
8474
|
+
* @summary Récupère la visibilité du profil de l\'utilisateur connecté
|
|
8475
|
+
* @param {*} [options] Override http request option.
|
|
8476
|
+
* @throws {RequiredError}
|
|
8477
|
+
*/
|
|
8478
|
+
getUserProfileVisibility(options?: RawAxiosRequestConfig): AxiosPromise<ProfileVisibilityResponse>;
|
|
8166
8479
|
/**
|
|
8167
8480
|
*
|
|
8168
8481
|
* @summary Met à jour le tableau levelBySports de l\'utilisateur connecté
|
|
@@ -8179,6 +8492,14 @@ export declare const UserProfileApiFactory: (configuration?: Configuration, base
|
|
|
8179
8492
|
* @throws {RequiredError}
|
|
8180
8493
|
*/
|
|
8181
8494
|
updateProfilePicture(requestParameters: UserProfileApiUpdateProfilePictureRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProfilePictureResponse>;
|
|
8495
|
+
/**
|
|
8496
|
+
*
|
|
8497
|
+
* @summary Met à jour la visibilité du profil de l\'utilisateur connecté
|
|
8498
|
+
* @param {UserProfileApiUpdateProfileVisibilityRequest} requestParameters Request parameters.
|
|
8499
|
+
* @param {*} [options] Override http request option.
|
|
8500
|
+
* @throws {RequiredError}
|
|
8501
|
+
*/
|
|
8502
|
+
updateProfileVisibility(requestParameters: UserProfileApiUpdateProfileVisibilityRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserResponse>;
|
|
8182
8503
|
/**
|
|
8183
8504
|
*
|
|
8184
8505
|
* @summary Met à jour les données de l\'utilisateur connecté
|
|
@@ -8187,6 +8508,22 @@ export declare const UserProfileApiFactory: (configuration?: Configuration, base
|
|
|
8187
8508
|
* @throws {RequiredError}
|
|
8188
8509
|
*/
|
|
8189
8510
|
updateUser(requestParameters: UserProfileApiUpdateUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserResponse>;
|
|
8511
|
+
/**
|
|
8512
|
+
*
|
|
8513
|
+
* @summary Met à jour la ville de l\'utilisateur connecté
|
|
8514
|
+
* @param {UserProfileApiUpdateUserCityRequest} requestParameters Request parameters.
|
|
8515
|
+
* @param {*} [options] Override http request option.
|
|
8516
|
+
* @throws {RequiredError}
|
|
8517
|
+
*/
|
|
8518
|
+
updateUserCity(requestParameters: UserProfileApiUpdateUserCityRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserResponse>;
|
|
8519
|
+
/**
|
|
8520
|
+
*
|
|
8521
|
+
* @summary Met à jour la description de l\'utilisateur connecté
|
|
8522
|
+
* @param {UserProfileApiUpdateUserDescriptionRequest} requestParameters Request parameters.
|
|
8523
|
+
* @param {*} [options] Override http request option.
|
|
8524
|
+
* @throws {RequiredError}
|
|
8525
|
+
*/
|
|
8526
|
+
updateUserDescription(requestParameters: UserProfileApiUpdateUserDescriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<UserResponse>;
|
|
8190
8527
|
};
|
|
8191
8528
|
/**
|
|
8192
8529
|
* Request parameters for changePassword operation in UserProfileApi.
|
|
@@ -8252,6 +8589,19 @@ export interface UserProfileApiUpdateProfilePictureRequest {
|
|
|
8252
8589
|
*/
|
|
8253
8590
|
readonly updateProfilePictureRequestBody: UpdateProfilePictureRequestBody;
|
|
8254
8591
|
}
|
|
8592
|
+
/**
|
|
8593
|
+
* Request parameters for updateProfileVisibility operation in UserProfileApi.
|
|
8594
|
+
* @export
|
|
8595
|
+
* @interface UserProfileApiUpdateProfileVisibilityRequest
|
|
8596
|
+
*/
|
|
8597
|
+
export interface UserProfileApiUpdateProfileVisibilityRequest {
|
|
8598
|
+
/**
|
|
8599
|
+
*
|
|
8600
|
+
* @type {UpdateProfileVisibilityRequestBody}
|
|
8601
|
+
* @memberof UserProfileApiUpdateProfileVisibility
|
|
8602
|
+
*/
|
|
8603
|
+
readonly updateProfileVisibilityRequestBody: UpdateProfileVisibilityRequestBody;
|
|
8604
|
+
}
|
|
8255
8605
|
/**
|
|
8256
8606
|
* Request parameters for updateUser operation in UserProfileApi.
|
|
8257
8607
|
* @export
|
|
@@ -8265,6 +8615,32 @@ export interface UserProfileApiUpdateUserRequest {
|
|
|
8265
8615
|
*/
|
|
8266
8616
|
readonly updateUserRequestBody: UpdateUserRequestBody;
|
|
8267
8617
|
}
|
|
8618
|
+
/**
|
|
8619
|
+
* Request parameters for updateUserCity operation in UserProfileApi.
|
|
8620
|
+
* @export
|
|
8621
|
+
* @interface UserProfileApiUpdateUserCityRequest
|
|
8622
|
+
*/
|
|
8623
|
+
export interface UserProfileApiUpdateUserCityRequest {
|
|
8624
|
+
/**
|
|
8625
|
+
*
|
|
8626
|
+
* @type {UpdateUserCityRequestBody}
|
|
8627
|
+
* @memberof UserProfileApiUpdateUserCity
|
|
8628
|
+
*/
|
|
8629
|
+
readonly updateUserCityRequestBody: UpdateUserCityRequestBody;
|
|
8630
|
+
}
|
|
8631
|
+
/**
|
|
8632
|
+
* Request parameters for updateUserDescription operation in UserProfileApi.
|
|
8633
|
+
* @export
|
|
8634
|
+
* @interface UserProfileApiUpdateUserDescriptionRequest
|
|
8635
|
+
*/
|
|
8636
|
+
export interface UserProfileApiUpdateUserDescriptionRequest {
|
|
8637
|
+
/**
|
|
8638
|
+
*
|
|
8639
|
+
* @type {UpdateUserDescriptionRequestBody}
|
|
8640
|
+
* @memberof UserProfileApiUpdateUserDescription
|
|
8641
|
+
*/
|
|
8642
|
+
readonly updateUserDescriptionRequestBody: UpdateUserDescriptionRequestBody;
|
|
8643
|
+
}
|
|
8268
8644
|
/**
|
|
8269
8645
|
* UserProfileApi - object-oriented interface
|
|
8270
8646
|
* @export
|
|
@@ -8290,6 +8666,22 @@ export declare class UserProfileApi extends BaseAPI {
|
|
|
8290
8666
|
* @memberof UserProfileApi
|
|
8291
8667
|
*/
|
|
8292
8668
|
getAllUsers(requestParameters?: UserProfileApiGetAllUsersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse[], any>>;
|
|
8669
|
+
/**
|
|
8670
|
+
*
|
|
8671
|
+
* @summary Joueurs avec lesquels l\'utilisateur a le plus joué (profils visibles)
|
|
8672
|
+
* @param {*} [options] Override http request option.
|
|
8673
|
+
* @throws {RequiredError}
|
|
8674
|
+
* @memberof UserProfileApi
|
|
8675
|
+
*/
|
|
8676
|
+
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FrequentlyPlayedWithItem[], any>>;
|
|
8677
|
+
/**
|
|
8678
|
+
*
|
|
8679
|
+
* @summary Clubs les plus fréquemment visités par l\'utilisateur connecté
|
|
8680
|
+
* @param {*} [options] Override http request option.
|
|
8681
|
+
* @throws {RequiredError}
|
|
8682
|
+
* @memberof UserProfileApi
|
|
8683
|
+
*/
|
|
8684
|
+
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FrequentlyVisitedClubItem[], any>>;
|
|
8293
8685
|
/**
|
|
8294
8686
|
*
|
|
8295
8687
|
* @summary Récupère l\'URL de la photo de profil de l\'utilisateur connecté
|
|
@@ -8298,6 +8690,22 @@ export declare class UserProfileApi extends BaseAPI {
|
|
|
8298
8690
|
* @memberof UserProfileApi
|
|
8299
8691
|
*/
|
|
8300
8692
|
getProfilePicture(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfilePictureResponse, any>>;
|
|
8693
|
+
/**
|
|
8694
|
+
*
|
|
8695
|
+
* @summary Récupère la ville de l\'utilisateur connecté
|
|
8696
|
+
* @param {*} [options] Override http request option.
|
|
8697
|
+
* @throws {RequiredError}
|
|
8698
|
+
* @memberof UserProfileApi
|
|
8699
|
+
*/
|
|
8700
|
+
getUserCity(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCityResponse, any>>;
|
|
8701
|
+
/**
|
|
8702
|
+
*
|
|
8703
|
+
* @summary Récupère la description de l\'utilisateur connecté
|
|
8704
|
+
* @param {*} [options] Override http request option.
|
|
8705
|
+
* @throws {RequiredError}
|
|
8706
|
+
* @memberof UserProfileApi
|
|
8707
|
+
*/
|
|
8708
|
+
getUserDescription(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserDescriptionResponse, any>>;
|
|
8301
8709
|
/**
|
|
8302
8710
|
*
|
|
8303
8711
|
* @summary Récupère les informations de l\'utilisateur connecté
|
|
@@ -8306,6 +8714,14 @@ export declare class UserProfileApi extends BaseAPI {
|
|
|
8306
8714
|
* @memberof UserProfileApi
|
|
8307
8715
|
*/
|
|
8308
8716
|
getUserInfo(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any>>;
|
|
8717
|
+
/**
|
|
8718
|
+
*
|
|
8719
|
+
* @summary Récupère la visibilité du profil de l\'utilisateur connecté
|
|
8720
|
+
* @param {*} [options] Override http request option.
|
|
8721
|
+
* @throws {RequiredError}
|
|
8722
|
+
* @memberof UserProfileApi
|
|
8723
|
+
*/
|
|
8724
|
+
getUserProfileVisibility(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfileVisibilityResponse, any>>;
|
|
8309
8725
|
/**
|
|
8310
8726
|
*
|
|
8311
8727
|
* @summary Met à jour le tableau levelBySports de l\'utilisateur connecté
|
|
@@ -8324,6 +8740,15 @@ export declare class UserProfileApi extends BaseAPI {
|
|
|
8324
8740
|
* @memberof UserProfileApi
|
|
8325
8741
|
*/
|
|
8326
8742
|
updateProfilePicture(requestParameters: UserProfileApiUpdateProfilePictureRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfilePictureResponse, any>>;
|
|
8743
|
+
/**
|
|
8744
|
+
*
|
|
8745
|
+
* @summary Met à jour la visibilité du profil de l\'utilisateur connecté
|
|
8746
|
+
* @param {UserProfileApiUpdateProfileVisibilityRequest} requestParameters Request parameters.
|
|
8747
|
+
* @param {*} [options] Override http request option.
|
|
8748
|
+
* @throws {RequiredError}
|
|
8749
|
+
* @memberof UserProfileApi
|
|
8750
|
+
*/
|
|
8751
|
+
updateProfileVisibility(requestParameters: UserProfileApiUpdateProfileVisibilityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any>>;
|
|
8327
8752
|
/**
|
|
8328
8753
|
*
|
|
8329
8754
|
* @summary Met à jour les données de l\'utilisateur connecté
|
|
@@ -8333,6 +8758,24 @@ export declare class UserProfileApi extends BaseAPI {
|
|
|
8333
8758
|
* @memberof UserProfileApi
|
|
8334
8759
|
*/
|
|
8335
8760
|
updateUser(requestParameters: UserProfileApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any>>;
|
|
8761
|
+
/**
|
|
8762
|
+
*
|
|
8763
|
+
* @summary Met à jour la ville de l\'utilisateur connecté
|
|
8764
|
+
* @param {UserProfileApiUpdateUserCityRequest} requestParameters Request parameters.
|
|
8765
|
+
* @param {*} [options] Override http request option.
|
|
8766
|
+
* @throws {RequiredError}
|
|
8767
|
+
* @memberof UserProfileApi
|
|
8768
|
+
*/
|
|
8769
|
+
updateUserCity(requestParameters: UserProfileApiUpdateUserCityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any>>;
|
|
8770
|
+
/**
|
|
8771
|
+
*
|
|
8772
|
+
* @summary Met à jour la description de l\'utilisateur connecté
|
|
8773
|
+
* @param {UserProfileApiUpdateUserDescriptionRequest} requestParameters Request parameters.
|
|
8774
|
+
* @param {*} [options] Override http request option.
|
|
8775
|
+
* @throws {RequiredError}
|
|
8776
|
+
* @memberof UserProfileApi
|
|
8777
|
+
*/
|
|
8778
|
+
updateUserDescription(requestParameters: UserProfileApiUpdateUserDescriptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserResponse, any>>;
|
|
8336
8779
|
}
|
|
8337
8780
|
/**
|
|
8338
8781
|
* UserSubscriptionsApi - axios parameter creator
|