@tennac-booking/sdk 1.0.174 → 1.0.176

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.
Files changed (51) hide show
  1. package/.openapi-generator/FILES +404 -399
  2. package/README.md +30 -13
  3. package/api.ts +2072 -852
  4. package/base.ts +1 -1
  5. package/common.ts +1 -1
  6. package/configuration.ts +1 -1
  7. package/dist/api.d.ts +1231 -506
  8. package/dist/api.js +2167 -1382
  9. package/dist/base.d.ts +1 -1
  10. package/dist/base.js +1 -1
  11. package/dist/common.d.ts +1 -1
  12. package/dist/common.js +1 -1
  13. package/dist/configuration.d.ts +1 -1
  14. package/dist/configuration.js +1 -1
  15. package/dist/esm/api.d.ts +1231 -506
  16. package/dist/esm/api.js +2276 -1491
  17. package/dist/esm/base.d.ts +1 -1
  18. package/dist/esm/base.js +1 -1
  19. package/dist/esm/common.d.ts +1 -1
  20. package/dist/esm/common.js +1 -1
  21. package/dist/esm/configuration.d.ts +1 -1
  22. package/dist/esm/configuration.js +1 -1
  23. package/dist/esm/index.d.ts +1 -1
  24. package/dist/esm/index.js +1 -1
  25. package/dist/index.d.ts +1 -1
  26. package/dist/index.js +1 -1
  27. package/docs/BookingsApi.md +4 -4
  28. package/docs/BookingsUserApi.md +56 -0
  29. package/docs/ClubsManagerApi.md +6 -6
  30. package/docs/CreateOpenBookingRequest.md +4 -0
  31. package/docs/EventsApi.md +2 -2
  32. package/docs/{JoinWaitList200Response.md → JoinEventWaitList200Response.md} +3 -7
  33. package/docs/{RequestPasswordReset200Response.md → LeaveEventWaitList200Response.md} +3 -3
  34. package/docs/OpenBookingInfo.md +48 -0
  35. package/docs/OpenBookingPlayerInfo.md +26 -0
  36. package/docs/OpenBookingSlotInfo.md +24 -0
  37. package/docs/OpenBookingSportInfo.md +24 -0
  38. package/docs/{GetOpenBookings200Response.md → OpenBookingsResponse.md} +4 -4
  39. package/docs/UpdateOpenBooking200Response.md +22 -0
  40. package/docs/UpdateOpenBookingRequest.md +22 -0
  41. package/docs/UsersApi.md +69 -14
  42. package/docs/WaitListApi.md +499 -0
  43. package/docs/{GetWaitListForEvent200Response.md → WaitListListResponse.md} +5 -5
  44. package/docs/{GetUserPosition200Response.md → WaitListPositionResponse.md} +5 -5
  45. package/docs/WaitListResponse.md +12 -6
  46. package/docs/WaitListStaffApi.md +331 -0
  47. package/index.ts +1 -1
  48. package/package.json +1 -1
  49. package/docs/EventsWaitListApi.md +0 -175
  50. package/docs/EventsWaitListStaffApi.md +0 -115
  51. package/docs/JoinWaitListRequest.md +0 -22
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.172
5
+ * The version of the OpenAPI document: 1.0.176
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4508,6 +4508,18 @@ export interface CreateOpenBookingRequest {
4508
4508
  * @memberof CreateOpenBookingRequest
4509
4509
  */
4510
4510
  'maxPlayers': number;
4511
+ /**
4512
+ * Description de la réservation ouverte
4513
+ * @type {string}
4514
+ * @memberof CreateOpenBookingRequest
4515
+ */
4516
+ 'description'?: string;
4517
+ /**
4518
+ * Niveau minimal souhaité pour rejoindre
4519
+ * @type {string}
4520
+ * @memberof CreateOpenBookingRequest
4521
+ */
4522
+ 'minLevel'?: string;
4511
4523
  }
4512
4524
  /**
4513
4525
  *
@@ -6158,19 +6170,6 @@ export interface GetInfillPercentagePerPeriod200Response {
6158
6170
  */
6159
6171
  'infillPercentage': number;
6160
6172
  }
6161
- /**
6162
- *
6163
- * @export
6164
- * @interface GetOpenBookings200Response
6165
- */
6166
- export interface GetOpenBookings200Response {
6167
- /**
6168
- *
6169
- * @type {Array<BookingInfo>}
6170
- * @memberof GetOpenBookings200Response
6171
- */
6172
- 'bookings': Array<BookingInfo>;
6173
- }
6174
6173
  /**
6175
6174
  *
6176
6175
  * @export
@@ -6235,44 +6234,6 @@ export interface GetSlotsByClubById200Response {
6235
6234
  */
6236
6235
  'slots': Array<any>;
6237
6236
  }
6238
- /**
6239
- *
6240
- * @export
6241
- * @interface GetUserPosition200Response
6242
- */
6243
- export interface GetUserPosition200Response {
6244
- /**
6245
- *
6246
- * @type {string}
6247
- * @memberof GetUserPosition200Response
6248
- */
6249
- 'message'?: string;
6250
- /**
6251
- *
6252
- * @type {number}
6253
- * @memberof GetUserPosition200Response
6254
- */
6255
- 'position': number | null;
6256
- }
6257
- /**
6258
- *
6259
- * @export
6260
- * @interface GetWaitListForEvent200Response
6261
- */
6262
- export interface GetWaitListForEvent200Response {
6263
- /**
6264
- *
6265
- * @type {number}
6266
- * @memberof GetWaitListForEvent200Response
6267
- */
6268
- 'total': number;
6269
- /**
6270
- *
6271
- * @type {Array<WaitListResponse>}
6272
- * @memberof GetWaitListForEvent200Response
6273
- */
6274
- 'waitList': Array<WaitListResponse>;
6275
- }
6276
6237
  /**
6277
6238
  *
6278
6239
  * @export
@@ -7237,6 +7198,25 @@ export interface JoinEventResponseOnsitePaymentsInner {
7237
7198
  */
7238
7199
  'playerId': string;
7239
7200
  }
7201
+ /**
7202
+ *
7203
+ * @export
7204
+ * @interface JoinEventWaitList200Response
7205
+ */
7206
+ export interface JoinEventWaitList200Response {
7207
+ /**
7208
+ *
7209
+ * @type {WaitListResponse}
7210
+ * @memberof JoinEventWaitList200Response
7211
+ */
7212
+ 'waitList': WaitListResponse;
7213
+ /**
7214
+ *
7215
+ * @type {string}
7216
+ * @memberof JoinEventWaitList200Response
7217
+ */
7218
+ 'message': string;
7219
+ }
7240
7220
  /**
7241
7221
  *
7242
7222
  * @export
@@ -7334,56 +7314,6 @@ export interface JoinOpenEventResponse {
7334
7314
  */
7335
7315
  'invoices'?: Array<CheckInEventParticipants200ResponseInvoicesInner>;
7336
7316
  }
7337
- /**
7338
- *
7339
- * @export
7340
- * @interface JoinWaitList200Response
7341
- */
7342
- export interface JoinWaitList200Response {
7343
- /**
7344
- *
7345
- * @type {boolean}
7346
- * @memberof JoinWaitList200Response
7347
- */
7348
- 'requiresSetup'?: boolean;
7349
- /**
7350
- *
7351
- * @type {string}
7352
- * @memberof JoinWaitList200Response
7353
- */
7354
- 'paymentLink'?: string;
7355
- /**
7356
- *
7357
- * @type {WaitListResponse}
7358
- * @memberof JoinWaitList200Response
7359
- */
7360
- 'waitList': WaitListResponse;
7361
- /**
7362
- *
7363
- * @type {string}
7364
- * @memberof JoinWaitList200Response
7365
- */
7366
- 'message': string;
7367
- }
7368
- /**
7369
- *
7370
- * @export
7371
- * @interface JoinWaitListRequest
7372
- */
7373
- export interface JoinWaitListRequest {
7374
- /**
7375
- *
7376
- * @type {PaymentMethod}
7377
- * @memberof JoinWaitListRequest
7378
- */
7379
- 'paymentMethod'?: PaymentMethod;
7380
- /**
7381
- *
7382
- * @type {boolean}
7383
- * @memberof JoinWaitListRequest
7384
- */
7385
- 'useDefaultPaymentMethod'?: boolean;
7386
- }
7387
7317
  /**
7388
7318
  *
7389
7319
  * @export
@@ -7490,6 +7420,19 @@ export interface LeastBookedWeekdayResponse {
7490
7420
  */
7491
7421
  'weekdayAverages': Array<WeekdayAverageItem>;
7492
7422
  }
7423
+ /**
7424
+ *
7425
+ * @export
7426
+ * @interface LeaveEventWaitList200Response
7427
+ */
7428
+ export interface LeaveEventWaitList200Response {
7429
+ /**
7430
+ *
7431
+ * @type {string}
7432
+ * @memberof LeaveEventWaitList200Response
7433
+ */
7434
+ 'message': string;
7435
+ }
7493
7436
  /**
7494
7437
  *
7495
7438
  * @export
@@ -7856,6 +7799,197 @@ export interface OffPeakRule {
7856
7799
  */
7857
7800
  'dayOfWeek': number;
7858
7801
  }
7802
+ /**
7803
+ *
7804
+ * @export
7805
+ * @interface OpenBookingInfo
7806
+ */
7807
+ export interface OpenBookingInfo {
7808
+ /**
7809
+ * ID de la réservation
7810
+ * @type {string}
7811
+ * @memberof OpenBookingInfo
7812
+ */
7813
+ 'id': string;
7814
+ /**
7815
+ * ID du club
7816
+ * @type {string}
7817
+ * @memberof OpenBookingInfo
7818
+ */
7819
+ 'clubId': string;
7820
+ /**
7821
+ * ID de l\'utilisateur créateur
7822
+ * @type {string}
7823
+ * @memberof OpenBookingInfo
7824
+ */
7825
+ 'userId': string;
7826
+ /**
7827
+ * Liste des joueurs avec leurs infos
7828
+ * @type {Array<OpenBookingPlayerInfo>}
7829
+ * @memberof OpenBookingInfo
7830
+ */
7831
+ 'players': Array<OpenBookingPlayerInfo>;
7832
+ /**
7833
+ *
7834
+ * @type {BookingStatus}
7835
+ * @memberof OpenBookingInfo
7836
+ */
7837
+ 'status': BookingStatus;
7838
+ /**
7839
+ * Prix total en euros
7840
+ * @type {number}
7841
+ * @memberof OpenBookingInfo
7842
+ */
7843
+ 'totalPrice': number;
7844
+ /**
7845
+ * Informations des créneaux
7846
+ * @type {Array<OpenBookingSlotInfo>}
7847
+ * @memberof OpenBookingInfo
7848
+ */
7849
+ 'slots': Array<OpenBookingSlotInfo>;
7850
+ /**
7851
+ * Indique si le créateur paie pour tous
7852
+ * @type {boolean}
7853
+ * @memberof OpenBookingInfo
7854
+ */
7855
+ 'isCreatorPayingAll': boolean;
7856
+ /**
7857
+ * Date de création
7858
+ * @type {string}
7859
+ * @memberof OpenBookingInfo
7860
+ */
7861
+ 'createdAt': string;
7862
+ /**
7863
+ * Date de mise à jour
7864
+ * @type {string}
7865
+ * @memberof OpenBookingInfo
7866
+ */
7867
+ 'updatedAt': string;
7868
+ /**
7869
+ *
7870
+ * @type {OpenBookingSportInfo}
7871
+ * @memberof OpenBookingInfo
7872
+ */
7873
+ 'sport'?: OpenBookingSportInfo;
7874
+ /**
7875
+ * Niveau minimal souhaité
7876
+ * @type {string}
7877
+ * @memberof OpenBookingInfo
7878
+ */
7879
+ 'minLevel'?: string;
7880
+ /**
7881
+ * Description de la réservation
7882
+ * @type {string}
7883
+ * @memberof OpenBookingInfo
7884
+ */
7885
+ 'description'?: string;
7886
+ /**
7887
+ * Nombre maximal de joueurs
7888
+ * @type {number}
7889
+ * @memberof OpenBookingInfo
7890
+ */
7891
+ 'maxPlayers'?: number;
7892
+ /**
7893
+ * Nombre de joueurs actuels
7894
+ * @type {number}
7895
+ * @memberof OpenBookingInfo
7896
+ */
7897
+ 'currentPlayersCount': number;
7898
+ }
7899
+ /**
7900
+ *
7901
+ * @export
7902
+ * @interface OpenBookingPlayerInfo
7903
+ */
7904
+ export interface OpenBookingPlayerInfo {
7905
+ /**
7906
+ * ID du joueur
7907
+ * @type {string}
7908
+ * @memberof OpenBookingPlayerInfo
7909
+ */
7910
+ 'id': string;
7911
+ /**
7912
+ * Prénom
7913
+ * @type {string}
7914
+ * @memberof OpenBookingPlayerInfo
7915
+ */
7916
+ 'firstName': string;
7917
+ /**
7918
+ * Nom
7919
+ * @type {string}
7920
+ * @memberof OpenBookingPlayerInfo
7921
+ */
7922
+ 'lastName': string;
7923
+ /**
7924
+ * Photo de profil
7925
+ * @type {string}
7926
+ * @memberof OpenBookingPlayerInfo
7927
+ */
7928
+ 'profilePicture'?: string;
7929
+ }
7930
+ /**
7931
+ *
7932
+ * @export
7933
+ * @interface OpenBookingSlotInfo
7934
+ */
7935
+ export interface OpenBookingSlotInfo {
7936
+ /**
7937
+ * ID du slot
7938
+ * @type {string}
7939
+ * @memberof OpenBookingSlotInfo
7940
+ */
7941
+ 'id': string;
7942
+ /**
7943
+ * Date de début ISO
7944
+ * @type {string}
7945
+ * @memberof OpenBookingSlotInfo
7946
+ */
7947
+ 'startDate': string;
7948
+ /**
7949
+ * Date de fin ISO
7950
+ * @type {string}
7951
+ * @memberof OpenBookingSlotInfo
7952
+ */
7953
+ 'endDate': string;
7954
+ }
7955
+ /**
7956
+ *
7957
+ * @export
7958
+ * @interface OpenBookingSportInfo
7959
+ */
7960
+ export interface OpenBookingSportInfo {
7961
+ /**
7962
+ * ID du sport
7963
+ * @type {string}
7964
+ * @memberof OpenBookingSportInfo
7965
+ */
7966
+ 'id': string;
7967
+ /**
7968
+ * Clé du sport
7969
+ * @type {string}
7970
+ * @memberof OpenBookingSportInfo
7971
+ */
7972
+ 'key': string;
7973
+ /**
7974
+ * Nom du sport
7975
+ * @type {string}
7976
+ * @memberof OpenBookingSportInfo
7977
+ */
7978
+ 'name': string;
7979
+ }
7980
+ /**
7981
+ *
7982
+ * @export
7983
+ * @interface OpenBookingsResponse
7984
+ */
7985
+ export interface OpenBookingsResponse {
7986
+ /**
7987
+ * Liste des réservations ouvertes
7988
+ * @type {Array<OpenBookingInfo>}
7989
+ * @memberof OpenBookingsResponse
7990
+ */
7991
+ 'bookings': Array<OpenBookingInfo>;
7992
+ }
7859
7993
  /**
7860
7994
  *
7861
7995
  * @export
@@ -9539,26 +9673,13 @@ export interface RequestEmailCodeResponse {
9539
9673
  /**
9540
9674
  *
9541
9675
  * @export
9542
- * @interface RequestPasswordReset200Response
9676
+ * @interface ResetPasswordRequest
9543
9677
  */
9544
- export interface RequestPasswordReset200Response {
9678
+ export interface ResetPasswordRequest {
9545
9679
  /**
9546
9680
  *
9547
9681
  * @type {string}
9548
- * @memberof RequestPasswordReset200Response
9549
- */
9550
- 'message': string;
9551
- }
9552
- /**
9553
- *
9554
- * @export
9555
- * @interface ResetPasswordRequest
9556
- */
9557
- export interface ResetPasswordRequest {
9558
- /**
9559
- *
9560
- * @type {string}
9561
- * @memberof ResetPasswordRequest
9682
+ * @memberof ResetPasswordRequest
9562
9683
  */
9563
9684
  'newPassword'?: string;
9564
9685
  /**
@@ -11730,6 +11851,44 @@ export interface UpdateLevelBySportsRequestBody {
11730
11851
  */
11731
11852
  'levelBySports': Array<LevelBySportEntry>;
11732
11853
  }
11854
+ /**
11855
+ *
11856
+ * @export
11857
+ * @interface UpdateOpenBooking200Response
11858
+ */
11859
+ export interface UpdateOpenBooking200Response {
11860
+ /**
11861
+ *
11862
+ * @type {BookingInfo}
11863
+ * @memberof UpdateOpenBooking200Response
11864
+ */
11865
+ 'booking': BookingInfo;
11866
+ /**
11867
+ *
11868
+ * @type {string}
11869
+ * @memberof UpdateOpenBooking200Response
11870
+ */
11871
+ 'message': string;
11872
+ }
11873
+ /**
11874
+ *
11875
+ * @export
11876
+ * @interface UpdateOpenBookingRequest
11877
+ */
11878
+ export interface UpdateOpenBookingRequest {
11879
+ /**
11880
+ * Description de la réservation ouverte
11881
+ * @type {string}
11882
+ * @memberof UpdateOpenBookingRequest
11883
+ */
11884
+ 'description'?: string;
11885
+ /**
11886
+ * Niveau minimal souhaité pour rejoindre
11887
+ * @type {string}
11888
+ * @memberof UpdateOpenBookingRequest
11889
+ */
11890
+ 'minLevel'?: string;
11891
+ }
11733
11892
  /**
11734
11893
  *
11735
11894
  * @export
@@ -12970,6 +13129,44 @@ export declare const VisibilityType: {
12970
13129
  readonly Invitation: "invitation";
12971
13130
  };
12972
13131
  export type VisibilityType = typeof VisibilityType[keyof typeof VisibilityType];
13132
+ /**
13133
+ *
13134
+ * @export
13135
+ * @interface WaitListListResponse
13136
+ */
13137
+ export interface WaitListListResponse {
13138
+ /**
13139
+ *
13140
+ * @type {Array<WaitListResponse>}
13141
+ * @memberof WaitListListResponse
13142
+ */
13143
+ 'waitList': Array<WaitListResponse>;
13144
+ /**
13145
+ *
13146
+ * @type {number}
13147
+ * @memberof WaitListListResponse
13148
+ */
13149
+ 'total': number;
13150
+ }
13151
+ /**
13152
+ *
13153
+ * @export
13154
+ * @interface WaitListPositionResponse
13155
+ */
13156
+ export interface WaitListPositionResponse {
13157
+ /**
13158
+ *
13159
+ * @type {number}
13160
+ * @memberof WaitListPositionResponse
13161
+ */
13162
+ 'position': number | null;
13163
+ /**
13164
+ *
13165
+ * @type {string}
13166
+ * @memberof WaitListPositionResponse
13167
+ */
13168
+ 'message'?: string;
13169
+ }
12973
13170
  /**
12974
13171
  *
12975
13172
  * @export
@@ -12987,13 +13184,25 @@ export interface WaitListResponse {
12987
13184
  * @type {string}
12988
13185
  * @memberof WaitListResponse
12989
13186
  */
12990
- 'eventId': string;
13187
+ 'userId': string;
12991
13188
  /**
12992
13189
  *
12993
13190
  * @type {string}
12994
13191
  * @memberof WaitListResponse
12995
13192
  */
12996
- 'userId': string;
13193
+ 'clubId': string;
13194
+ /**
13195
+ *
13196
+ * @type {string}
13197
+ * @memberof WaitListResponse
13198
+ */
13199
+ 'targetType': WaitListResponseTargetTypeEnum;
13200
+ /**
13201
+ *
13202
+ * @type {string}
13203
+ * @memberof WaitListResponse
13204
+ */
13205
+ 'targetId': string;
12997
13206
  /**
12998
13207
  *
12999
13208
  * @type {string}
@@ -13014,22 +13223,28 @@ export interface WaitListResponse {
13014
13223
  'priceInCents': number;
13015
13224
  /**
13016
13225
  *
13017
- * @type {boolean}
13226
+ * @type {string}
13018
13227
  * @memberof WaitListResponse
13019
13228
  */
13020
- 'paymentAuthorized': boolean;
13229
+ 'joinedAt': string;
13021
13230
  /**
13022
13231
  *
13023
13232
  * @type {string}
13024
13233
  * @memberof WaitListResponse
13025
13234
  */
13026
- 'joinedAt': string;
13235
+ 'notifiedAt'?: string;
13236
+ /**
13237
+ *
13238
+ * @type {string}
13239
+ * @memberof WaitListResponse
13240
+ */
13241
+ 'paymentExpiresAt'?: string;
13027
13242
  /**
13028
13243
  *
13029
13244
  * @type {string}
13030
13245
  * @memberof WaitListResponse
13031
13246
  */
13032
- 'expiresAt'?: string;
13247
+ 'confirmedAt'?: string;
13033
13248
  /**
13034
13249
  *
13035
13250
  * @type {string}
@@ -13037,6 +13252,12 @@ export interface WaitListResponse {
13037
13252
  */
13038
13253
  'paymentLink'?: string;
13039
13254
  }
13255
+ export declare const WaitListResponseTargetTypeEnum: {
13256
+ readonly Event: "event";
13257
+ readonly Booking: "booking";
13258
+ readonly EventBooking: "event_booking";
13259
+ };
13260
+ export type WaitListResponseTargetTypeEnum = typeof WaitListResponseTargetTypeEnum[keyof typeof WaitListResponseTargetTypeEnum];
13040
13261
  /**
13041
13262
  *
13042
13263
  * @export
@@ -13262,7 +13483,7 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
13262
13483
  * @param {*} [options] Override http request option.
13263
13484
  * @throws {RequiredError}
13264
13485
  */
13265
- getOpenBookings(clubId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetOpenBookings200Response>>;
13486
+ getOpenBookings(clubId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OpenBookingsResponse>>;
13266
13487
  /**
13267
13488
  * Recherche des créneaux disponibles pour une réservation rapide
13268
13489
  * @param {number} [latitude]
@@ -13294,7 +13515,7 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
13294
13515
  * @param {*} [options] Override http request option.
13295
13516
  * @throws {RequiredError}
13296
13517
  */
13297
- leaveOpenBooking(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
13518
+ leaveOpenBooking(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
13298
13519
  };
13299
13520
  /**
13300
13521
  * BookingsApi - factory interface
@@ -13349,7 +13570,7 @@ export declare const BookingsApiFactory: (configuration?: Configuration, basePat
13349
13570
  * @param {*} [options] Override http request option.
13350
13571
  * @throws {RequiredError}
13351
13572
  */
13352
- getOpenBookings(requestParameters?: BookingsApiGetOpenBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetOpenBookings200Response>;
13573
+ getOpenBookings(requestParameters?: BookingsApiGetOpenBookingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<OpenBookingsResponse>;
13353
13574
  /**
13354
13575
  * Recherche des créneaux disponibles pour une réservation rapide
13355
13576
  * @param {BookingsApiGetQuickReservationSlotsRequest} requestParameters Request parameters.
@@ -13370,7 +13591,7 @@ export declare const BookingsApiFactory: (configuration?: Configuration, basePat
13370
13591
  * @param {*} [options] Override http request option.
13371
13592
  * @throws {RequiredError}
13372
13593
  */
13373
- leaveOpenBooking(requestParameters: BookingsApiLeaveOpenBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
13594
+ leaveOpenBooking(requestParameters: BookingsApiLeaveOpenBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
13374
13595
  };
13375
13596
  /**
13376
13597
  * Request parameters for createGuestBooking operation in BookingsApi.
@@ -13636,7 +13857,7 @@ export declare class BookingsApi extends BaseAPI {
13636
13857
  * @throws {RequiredError}
13637
13858
  * @memberof BookingsApi
13638
13859
  */
13639
- getOpenBookings(requestParameters?: BookingsApiGetOpenBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetOpenBookings200Response, any, {}>>;
13860
+ getOpenBookings(requestParameters?: BookingsApiGetOpenBookingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OpenBookingsResponse, any, {}>>;
13640
13861
  /**
13641
13862
  * Recherche des créneaux disponibles pour une réservation rapide
13642
13863
  * @param {BookingsApiGetQuickReservationSlotsRequest} requestParameters Request parameters.
@@ -13660,7 +13881,7 @@ export declare class BookingsApi extends BaseAPI {
13660
13881
  * @throws {RequiredError}
13661
13882
  * @memberof BookingsApi
13662
13883
  */
13663
- leaveOpenBooking(requestParameters: BookingsApiLeaveOpenBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
13884
+ leaveOpenBooking(requestParameters: BookingsApiLeaveOpenBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
13664
13885
  }
13665
13886
  /**
13666
13887
  * BookingsManagerApi - axios parameter creator
@@ -14208,6 +14429,14 @@ export declare const BookingsUserApiAxiosParamCreator: (configuration?: Configur
14208
14429
  * @throws {RequiredError}
14209
14430
  */
14210
14431
  createOpenBooking: (createOpenBookingRequest: CreateOpenBookingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14432
+ /**
14433
+ * Mettre à jour une réservation ouverte (description et niveau minimal)
14434
+ * @param {string} bookingId
14435
+ * @param {UpdateOpenBookingRequest} updateOpenBookingRequest
14436
+ * @param {*} [options] Override http request option.
14437
+ * @throws {RequiredError}
14438
+ */
14439
+ updateOpenBooking: (bookingId: string, updateOpenBookingRequest: UpdateOpenBookingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14211
14440
  };
14212
14441
  /**
14213
14442
  * BookingsUserApi - functional programming interface
@@ -14235,6 +14464,14 @@ export declare const BookingsUserApiFp: (configuration?: Configuration) => {
14235
14464
  * @throws {RequiredError}
14236
14465
  */
14237
14466
  createOpenBooking(createOpenBookingRequest: CreateOpenBookingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingResponse>>;
14467
+ /**
14468
+ * Mettre à jour une réservation ouverte (description et niveau minimal)
14469
+ * @param {string} bookingId
14470
+ * @param {UpdateOpenBookingRequest} updateOpenBookingRequest
14471
+ * @param {*} [options] Override http request option.
14472
+ * @throws {RequiredError}
14473
+ */
14474
+ updateOpenBooking(bookingId: string, updateOpenBookingRequest: UpdateOpenBookingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateOpenBooking200Response>>;
14238
14475
  };
14239
14476
  /**
14240
14477
  * BookingsUserApi - factory interface
@@ -14262,6 +14499,13 @@ export declare const BookingsUserApiFactory: (configuration?: Configuration, bas
14262
14499
  * @throws {RequiredError}
14263
14500
  */
14264
14501
  createOpenBooking(requestParameters: BookingsUserApiCreateOpenBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<BookingResponse>;
14502
+ /**
14503
+ * Mettre à jour une réservation ouverte (description et niveau minimal)
14504
+ * @param {BookingsUserApiUpdateOpenBookingRequest} requestParameters Request parameters.
14505
+ * @param {*} [options] Override http request option.
14506
+ * @throws {RequiredError}
14507
+ */
14508
+ updateOpenBooking(requestParameters: BookingsUserApiUpdateOpenBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateOpenBooking200Response>;
14265
14509
  };
14266
14510
  /**
14267
14511
  * Request parameters for cancelBooking operation in BookingsUserApi.
@@ -14302,6 +14546,25 @@ export interface BookingsUserApiCreateOpenBookingRequest {
14302
14546
  */
14303
14547
  readonly createOpenBookingRequest: CreateOpenBookingRequest;
14304
14548
  }
14549
+ /**
14550
+ * Request parameters for updateOpenBooking operation in BookingsUserApi.
14551
+ * @export
14552
+ * @interface BookingsUserApiUpdateOpenBookingRequest
14553
+ */
14554
+ export interface BookingsUserApiUpdateOpenBookingRequest {
14555
+ /**
14556
+ *
14557
+ * @type {string}
14558
+ * @memberof BookingsUserApiUpdateOpenBooking
14559
+ */
14560
+ readonly bookingId: string;
14561
+ /**
14562
+ *
14563
+ * @type {UpdateOpenBookingRequest}
14564
+ * @memberof BookingsUserApiUpdateOpenBooking
14565
+ */
14566
+ readonly updateOpenBookingRequest: UpdateOpenBookingRequest;
14567
+ }
14305
14568
  /**
14306
14569
  * BookingsUserApi - object-oriented interface
14307
14570
  * @export
@@ -14333,6 +14596,14 @@ export declare class BookingsUserApi extends BaseAPI {
14333
14596
  * @memberof BookingsUserApi
14334
14597
  */
14335
14598
  createOpenBooking(requestParameters: BookingsUserApiCreateOpenBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingResponse, any, {}>>;
14599
+ /**
14600
+ * Mettre à jour une réservation ouverte (description et niveau minimal)
14601
+ * @param {BookingsUserApiUpdateOpenBookingRequest} requestParameters Request parameters.
14602
+ * @param {*} [options] Override http request option.
14603
+ * @throws {RequiredError}
14604
+ * @memberof BookingsUserApi
14605
+ */
14606
+ updateOpenBooking(requestParameters: BookingsUserApiUpdateOpenBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateOpenBooking200Response, any, {}>>;
14336
14607
  }
14337
14608
  /**
14338
14609
  * ClientApi - axios parameter creator
@@ -17354,7 +17625,7 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
17354
17625
  * @param {*} [options] Override http request option.
17355
17626
  * @throws {RequiredError}
17356
17627
  */
17357
- deleteActuality(actualityId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
17628
+ deleteActuality(actualityId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
17358
17629
  /**
17359
17630
  * Supprime un membre d\'un club
17360
17631
  * @param {string} userId
@@ -17374,7 +17645,7 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
17374
17645
  * @param {*} [options] Override http request option.
17375
17646
  * @throws {RequiredError}
17376
17647
  */
17377
- deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
17648
+ deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
17378
17649
  /**
17379
17650
  *
17380
17651
  * @param {string} productId
@@ -17395,7 +17666,7 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
17395
17666
  * @param {*} [options] Override http request option.
17396
17667
  * @throws {RequiredError}
17397
17668
  */
17398
- restoreSubscriptionPlanForClub(productId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
17669
+ restoreSubscriptionPlanForClub(productId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
17399
17670
  /**
17400
17671
  *
17401
17672
  * @param {string} priceId
@@ -17510,7 +17781,7 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
17510
17781
  * @param {*} [options] Override http request option.
17511
17782
  * @throws {RequiredError}
17512
17783
  */
17513
- deleteActuality(requestParameters: ClubsManagerApiDeleteActualityRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
17784
+ deleteActuality(requestParameters: ClubsManagerApiDeleteActualityRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
17514
17785
  /**
17515
17786
  * Supprime un membre d\'un club
17516
17787
  * @param {ClubsManagerApiDeleteClubMemberRequest} requestParameters Request parameters.
@@ -17530,7 +17801,7 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
17530
17801
  * @param {*} [options] Override http request option.
17531
17802
  * @throws {RequiredError}
17532
17803
  */
17533
- deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
17804
+ deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
17534
17805
  /**
17535
17806
  *
17536
17807
  * @param {ClubsManagerApiDeleteSubscriptionPlanForClubRequest} requestParameters Request parameters.
@@ -17551,7 +17822,7 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
17551
17822
  * @param {*} [options] Override http request option.
17552
17823
  * @throws {RequiredError}
17553
17824
  */
17554
- restoreSubscriptionPlanForClub(requestParameters: ClubsManagerApiRestoreSubscriptionPlanForClubRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
17825
+ restoreSubscriptionPlanForClub(requestParameters: ClubsManagerApiRestoreSubscriptionPlanForClubRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
17555
17826
  /**
17556
17827
  *
17557
17828
  * @param {ClubsManagerApiRestoreSubscriptionPriceForClubRequest} requestParameters Request parameters.
@@ -17961,7 +18232,7 @@ export declare class ClubsManagerApi extends BaseAPI {
17961
18232
  * @throws {RequiredError}
17962
18233
  * @memberof ClubsManagerApi
17963
18234
  */
17964
- deleteActuality(requestParameters: ClubsManagerApiDeleteActualityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
18235
+ deleteActuality(requestParameters: ClubsManagerApiDeleteActualityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
17965
18236
  /**
17966
18237
  * Supprime un membre d\'un club
17967
18238
  * @param {ClubsManagerApiDeleteClubMemberRequest} requestParameters Request parameters.
@@ -17984,7 +18255,7 @@ export declare class ClubsManagerApi extends BaseAPI {
17984
18255
  * @throws {RequiredError}
17985
18256
  * @memberof ClubsManagerApi
17986
18257
  */
17987
- deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
18258
+ deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
17988
18259
  /**
17989
18260
  *
17990
18261
  * @param {ClubsManagerApiDeleteSubscriptionPlanForClubRequest} requestParameters Request parameters.
@@ -18008,7 +18279,7 @@ export declare class ClubsManagerApi extends BaseAPI {
18008
18279
  * @throws {RequiredError}
18009
18280
  * @memberof ClubsManagerApi
18010
18281
  */
18011
- restoreSubscriptionPlanForClub(requestParameters: ClubsManagerApiRestoreSubscriptionPlanForClubRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
18282
+ restoreSubscriptionPlanForClub(requestParameters: ClubsManagerApiRestoreSubscriptionPlanForClubRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
18012
18283
  /**
18013
18284
  *
18014
18285
  * @param {ClubsManagerApiRestoreSubscriptionPriceForClubRequest} requestParameters Request parameters.
@@ -18827,7 +19098,7 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
18827
19098
  * @param {*} [options] Override http request option.
18828
19099
  * @throws {RequiredError}
18829
19100
  */
18830
- leaveOpenEventBooking(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
19101
+ leaveOpenEventBooking(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
18831
19102
  };
18832
19103
  /**
18833
19104
  * EventsApi - factory interface
@@ -18910,7 +19181,7 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
18910
19181
  * @param {*} [options] Override http request option.
18911
19182
  * @throws {RequiredError}
18912
19183
  */
18913
- leaveOpenEventBooking(requestParameters: EventsApiLeaveOpenEventBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
19184
+ leaveOpenEventBooking(requestParameters: EventsApiLeaveOpenEventBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
18914
19185
  };
18915
19186
  /**
18916
19187
  * Request parameters for checkTeamNameAvailability operation in EventsApi.
@@ -19209,7 +19480,7 @@ export declare class EventsApi extends BaseAPI {
19209
19480
  * @throws {RequiredError}
19210
19481
  * @memberof EventsApi
19211
19482
  */
19212
- leaveOpenEventBooking(requestParameters: EventsApiLeaveOpenEventBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
19483
+ leaveOpenEventBooking(requestParameters: EventsApiLeaveOpenEventBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
19213
19484
  }
19214
19485
  /**
19215
19486
  * @export
@@ -20073,436 +20344,166 @@ export declare const GetWeeklyEventsTypeEnum: {
20073
20344
  };
20074
20345
  export type GetWeeklyEventsTypeEnum = typeof GetWeeklyEventsTypeEnum[keyof typeof GetWeeklyEventsTypeEnum];
20075
20346
  /**
20076
- * EventsWaitListApi - axios parameter creator
20347
+ * ImagesApi - axios parameter creator
20077
20348
  * @export
20078
20349
  */
20079
- export declare const EventsWaitListApiAxiosParamCreator: (configuration?: Configuration) => {
20080
- /**
20081
- * Obtenir la position actuelle dans la file d\'attente
20082
- * @param {string} eventId
20083
- * @param {*} [options] Override http request option.
20084
- * @throws {RequiredError}
20085
- */
20086
- getUserPosition: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20087
- /**
20088
- * Rejoindre la file d\'attente pour un événement
20089
- * @param {string} eventId
20090
- * @param {JoinWaitListRequest} joinWaitListRequest
20091
- * @param {*} [options] Override http request option.
20092
- * @throws {RequiredError}
20093
- */
20094
- joinWaitList: (eventId: string, joinWaitListRequest: JoinWaitListRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20350
+ export declare const ImagesApiAxiosParamCreator: (configuration?: Configuration) => {
20095
20351
  /**
20096
- * Quitter la file d\'attente
20097
- * @param {string} eventId
20352
+ *
20353
+ * @param {ImageCleanupRequestBody} imageCleanupRequestBody
20098
20354
  * @param {*} [options] Override http request option.
20099
20355
  * @throws {RequiredError}
20100
20356
  */
20101
- leaveWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20357
+ cleanupImages: (imageCleanupRequestBody: ImageCleanupRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20102
20358
  };
20103
20359
  /**
20104
- * EventsWaitListApi - functional programming interface
20360
+ * ImagesApi - functional programming interface
20105
20361
  * @export
20106
20362
  */
20107
- export declare const EventsWaitListApiFp: (configuration?: Configuration) => {
20108
- /**
20109
- * Obtenir la position actuelle dans la file d\'attente
20110
- * @param {string} eventId
20111
- * @param {*} [options] Override http request option.
20112
- * @throws {RequiredError}
20113
- */
20114
- getUserPosition(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetUserPosition200Response>>;
20115
- /**
20116
- * Rejoindre la file d\'attente pour un événement
20117
- * @param {string} eventId
20118
- * @param {JoinWaitListRequest} joinWaitListRequest
20119
- * @param {*} [options] Override http request option.
20120
- * @throws {RequiredError}
20121
- */
20122
- joinWaitList(eventId: string, joinWaitListRequest: JoinWaitListRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinWaitList200Response>>;
20363
+ export declare const ImagesApiFp: (configuration?: Configuration) => {
20123
20364
  /**
20124
- * Quitter la file d\'attente
20125
- * @param {string} eventId
20365
+ *
20366
+ * @param {ImageCleanupRequestBody} imageCleanupRequestBody
20126
20367
  * @param {*} [options] Override http request option.
20127
20368
  * @throws {RequiredError}
20128
20369
  */
20129
- leaveWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
20370
+ cleanupImages(imageCleanupRequestBody: ImageCleanupRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImageCleanupResponse>>;
20130
20371
  };
20131
20372
  /**
20132
- * EventsWaitListApi - factory interface
20373
+ * ImagesApi - factory interface
20133
20374
  * @export
20134
20375
  */
20135
- export declare const EventsWaitListApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20136
- /**
20137
- * Obtenir la position actuelle dans la file d\'attente
20138
- * @param {EventsWaitListApiGetUserPositionRequest} requestParameters Request parameters.
20139
- * @param {*} [options] Override http request option.
20140
- * @throws {RequiredError}
20141
- */
20142
- getUserPosition(requestParameters: EventsWaitListApiGetUserPositionRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetUserPosition200Response>;
20143
- /**
20144
- * Rejoindre la file d\'attente pour un événement
20145
- * @param {EventsWaitListApiJoinWaitListRequest} requestParameters Request parameters.
20146
- * @param {*} [options] Override http request option.
20147
- * @throws {RequiredError}
20148
- */
20149
- joinWaitList(requestParameters: EventsWaitListApiJoinWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JoinWaitList200Response>;
20376
+ export declare const ImagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20150
20377
  /**
20151
- * Quitter la file d\'attente
20152
- * @param {EventsWaitListApiLeaveWaitListRequest} requestParameters Request parameters.
20378
+ *
20379
+ * @param {ImagesApiCleanupImagesRequest} requestParameters Request parameters.
20153
20380
  * @param {*} [options] Override http request option.
20154
20381
  * @throws {RequiredError}
20155
20382
  */
20156
- leaveWaitList(requestParameters: EventsWaitListApiLeaveWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
20383
+ cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImageCleanupResponse>;
20157
20384
  };
20158
20385
  /**
20159
- * Request parameters for getUserPosition operation in EventsWaitListApi.
20386
+ * Request parameters for cleanupImages operation in ImagesApi.
20160
20387
  * @export
20161
- * @interface EventsWaitListApiGetUserPositionRequest
20388
+ * @interface ImagesApiCleanupImagesRequest
20162
20389
  */
20163
- export interface EventsWaitListApiGetUserPositionRequest {
20390
+ export interface ImagesApiCleanupImagesRequest {
20164
20391
  /**
20165
20392
  *
20166
- * @type {string}
20167
- * @memberof EventsWaitListApiGetUserPosition
20393
+ * @type {ImageCleanupRequestBody}
20394
+ * @memberof ImagesApiCleanupImages
20168
20395
  */
20169
- readonly eventId: string;
20396
+ readonly imageCleanupRequestBody: ImageCleanupRequestBody;
20170
20397
  }
20171
20398
  /**
20172
- * Request parameters for joinWaitList operation in EventsWaitListApi.
20399
+ * ImagesApi - object-oriented interface
20173
20400
  * @export
20174
- * @interface EventsWaitListApiJoinWaitListRequest
20401
+ * @class ImagesApi
20402
+ * @extends {BaseAPI}
20175
20403
  */
20176
- export interface EventsWaitListApiJoinWaitListRequest {
20177
- /**
20178
- *
20179
- * @type {string}
20180
- * @memberof EventsWaitListApiJoinWaitList
20181
- */
20182
- readonly eventId: string;
20404
+ export declare class ImagesApi extends BaseAPI {
20183
20405
  /**
20184
20406
  *
20185
- * @type {JoinWaitListRequest}
20186
- * @memberof EventsWaitListApiJoinWaitList
20407
+ * @param {ImagesApiCleanupImagesRequest} requestParameters Request parameters.
20408
+ * @param {*} [options] Override http request option.
20409
+ * @throws {RequiredError}
20410
+ * @memberof ImagesApi
20187
20411
  */
20188
- readonly joinWaitListRequest: JoinWaitListRequest;
20412
+ cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageCleanupResponse, any, {}>>;
20189
20413
  }
20190
20414
  /**
20191
- * Request parameters for leaveWaitList operation in EventsWaitListApi.
20415
+ * PublicEmailApi - axios parameter creator
20192
20416
  * @export
20193
- * @interface EventsWaitListApiLeaveWaitListRequest
20194
20417
  */
20195
- export interface EventsWaitListApiLeaveWaitListRequest {
20418
+ export declare const PublicEmailApiAxiosParamCreator: (configuration?: Configuration) => {
20196
20419
  /**
20197
20420
  *
20198
- * @type {string}
20199
- * @memberof EventsWaitListApiLeaveWaitList
20200
- */
20201
- readonly eventId: string;
20202
- }
20203
- /**
20204
- * EventsWaitListApi - object-oriented interface
20205
- * @export
20206
- * @class EventsWaitListApi
20207
- * @extends {BaseAPI}
20208
- */
20209
- export declare class EventsWaitListApi extends BaseAPI {
20210
- /**
20211
- * Obtenir la position actuelle dans la file d\'attente
20212
- * @param {EventsWaitListApiGetUserPositionRequest} requestParameters Request parameters.
20421
+ * @param {EmailExistsRequestBody} emailExistsRequestBody
20213
20422
  * @param {*} [options] Override http request option.
20214
20423
  * @throws {RequiredError}
20215
- * @memberof EventsWaitListApi
20216
20424
  */
20217
- getUserPosition(requestParameters: EventsWaitListApiGetUserPositionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetUserPosition200Response, any, {}>>;
20425
+ authEmailExists: (emailExistsRequestBody: EmailExistsRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20218
20426
  /**
20219
- * Rejoindre la file d\'attente pour un événement
20220
- * @param {EventsWaitListApiJoinWaitListRequest} requestParameters Request parameters.
20427
+ *
20428
+ * @param {RequestEmailCodeBody} requestEmailCodeBody
20221
20429
  * @param {*} [options] Override http request option.
20222
20430
  * @throws {RequiredError}
20223
- * @memberof EventsWaitListApi
20224
20431
  */
20225
- joinWaitList(requestParameters: EventsWaitListApiJoinWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JoinWaitList200Response, any, {}>>;
20432
+ requestVerificationCode: (requestEmailCodeBody: RequestEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20226
20433
  /**
20227
- * Quitter la file d\'attente
20228
- * @param {EventsWaitListApiLeaveWaitListRequest} requestParameters Request parameters.
20434
+ *
20435
+ * @param {VerifyEmailCodeBody} verifyEmailCodeBody
20229
20436
  * @param {*} [options] Override http request option.
20230
20437
  * @throws {RequiredError}
20231
- * @memberof EventsWaitListApi
20232
20438
  */
20233
- leaveWaitList(requestParameters: EventsWaitListApiLeaveWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
20234
- }
20439
+ verifyCode: (verifyEmailCodeBody: VerifyEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20440
+ };
20235
20441
  /**
20236
- * EventsWaitListStaffApi - axios parameter creator
20442
+ * PublicEmailApi - functional programming interface
20237
20443
  * @export
20238
20444
  */
20239
- export declare const EventsWaitListStaffApiAxiosParamCreator: (configuration?: Configuration) => {
20240
- /**
20241
- * Obtenir la liste complète de la file d\'attente (staff only)
20242
- * @param {string} eventId
20243
- * @param {*} [options] Override http request option.
20244
- * @throws {RequiredError}
20245
- */
20246
- getWaitListForEvent: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20445
+ export declare const PublicEmailApiFp: (configuration?: Configuration) => {
20247
20446
  /**
20248
- * Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
20249
- * @param {string} eventId
20447
+ *
20448
+ * @param {EmailExistsRequestBody} emailExistsRequestBody
20250
20449
  * @param {*} [options] Override http request option.
20251
20450
  * @throws {RequiredError}
20252
20451
  */
20253
- processWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20254
- };
20255
- /**
20256
- * EventsWaitListStaffApi - functional programming interface
20257
- * @export
20258
- */
20259
- export declare const EventsWaitListStaffApiFp: (configuration?: Configuration) => {
20452
+ authEmailExists(emailExistsRequestBody: EmailExistsRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailExistsResponse>>;
20260
20453
  /**
20261
- * Obtenir la liste complète de la file d\'attente (staff only)
20262
- * @param {string} eventId
20454
+ *
20455
+ * @param {RequestEmailCodeBody} requestEmailCodeBody
20263
20456
  * @param {*} [options] Override http request option.
20264
20457
  * @throws {RequiredError}
20265
20458
  */
20266
- getWaitListForEvent(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetWaitListForEvent200Response>>;
20459
+ requestVerificationCode(requestEmailCodeBody: RequestEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestEmailCodeResponse>>;
20267
20460
  /**
20268
- * Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
20269
- * @param {string} eventId
20461
+ *
20462
+ * @param {VerifyEmailCodeBody} verifyEmailCodeBody
20270
20463
  * @param {*} [options] Override http request option.
20271
20464
  * @throws {RequiredError}
20272
20465
  */
20273
- processWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
20466
+ verifyCode(verifyEmailCodeBody: VerifyEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VerifyEmailCodeResponse>>;
20274
20467
  };
20275
20468
  /**
20276
- * EventsWaitListStaffApi - factory interface
20469
+ * PublicEmailApi - factory interface
20277
20470
  * @export
20278
20471
  */
20279
- export declare const EventsWaitListStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20472
+ export declare const PublicEmailApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20473
+ /**
20474
+ *
20475
+ * @param {PublicEmailApiAuthEmailExistsRequest} requestParameters Request parameters.
20476
+ * @param {*} [options] Override http request option.
20477
+ * @throws {RequiredError}
20478
+ */
20479
+ authEmailExists(requestParameters: PublicEmailApiAuthEmailExistsRequest, options?: RawAxiosRequestConfig): AxiosPromise<EmailExistsResponse>;
20280
20480
  /**
20281
- * Obtenir la liste complète de la file d\'attente (staff only)
20282
- * @param {EventsWaitListStaffApiGetWaitListForEventRequest} requestParameters Request parameters.
20481
+ *
20482
+ * @param {PublicEmailApiRequestVerificationCodeRequest} requestParameters Request parameters.
20283
20483
  * @param {*} [options] Override http request option.
20284
20484
  * @throws {RequiredError}
20285
20485
  */
20286
- getWaitListForEvent(requestParameters: EventsWaitListStaffApiGetWaitListForEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetWaitListForEvent200Response>;
20486
+ requestVerificationCode(requestParameters: PublicEmailApiRequestVerificationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestEmailCodeResponse>;
20287
20487
  /**
20288
- * Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
20289
- * @param {EventsWaitListStaffApiProcessWaitListRequest} requestParameters Request parameters.
20488
+ *
20489
+ * @param {PublicEmailApiVerifyCodeRequest} requestParameters Request parameters.
20290
20490
  * @param {*} [options] Override http request option.
20291
20491
  * @throws {RequiredError}
20292
20492
  */
20293
- processWaitList(requestParameters: EventsWaitListStaffApiProcessWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
20493
+ verifyCode(requestParameters: PublicEmailApiVerifyCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<VerifyEmailCodeResponse>;
20294
20494
  };
20295
20495
  /**
20296
- * Request parameters for getWaitListForEvent operation in EventsWaitListStaffApi.
20496
+ * Request parameters for authEmailExists operation in PublicEmailApi.
20297
20497
  * @export
20298
- * @interface EventsWaitListStaffApiGetWaitListForEventRequest
20498
+ * @interface PublicEmailApiAuthEmailExistsRequest
20299
20499
  */
20300
- export interface EventsWaitListStaffApiGetWaitListForEventRequest {
20500
+ export interface PublicEmailApiAuthEmailExistsRequest {
20301
20501
  /**
20302
20502
  *
20303
- * @type {string}
20304
- * @memberof EventsWaitListStaffApiGetWaitListForEvent
20503
+ * @type {EmailExistsRequestBody}
20504
+ * @memberof PublicEmailApiAuthEmailExists
20305
20505
  */
20306
- readonly eventId: string;
20307
- }
20308
- /**
20309
- * Request parameters for processWaitList operation in EventsWaitListStaffApi.
20310
- * @export
20311
- * @interface EventsWaitListStaffApiProcessWaitListRequest
20312
- */
20313
- export interface EventsWaitListStaffApiProcessWaitListRequest {
20314
- /**
20315
- *
20316
- * @type {string}
20317
- * @memberof EventsWaitListStaffApiProcessWaitList
20318
- */
20319
- readonly eventId: string;
20320
- }
20321
- /**
20322
- * EventsWaitListStaffApi - object-oriented interface
20323
- * @export
20324
- * @class EventsWaitListStaffApi
20325
- * @extends {BaseAPI}
20326
- */
20327
- export declare class EventsWaitListStaffApi extends BaseAPI {
20328
- /**
20329
- * Obtenir la liste complète de la file d\'attente (staff only)
20330
- * @param {EventsWaitListStaffApiGetWaitListForEventRequest} requestParameters Request parameters.
20331
- * @param {*} [options] Override http request option.
20332
- * @throws {RequiredError}
20333
- * @memberof EventsWaitListStaffApi
20334
- */
20335
- getWaitListForEvent(requestParameters: EventsWaitListStaffApiGetWaitListForEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetWaitListForEvent200Response, any, {}>>;
20336
- /**
20337
- * Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
20338
- * @param {EventsWaitListStaffApiProcessWaitListRequest} requestParameters Request parameters.
20339
- * @param {*} [options] Override http request option.
20340
- * @throws {RequiredError}
20341
- * @memberof EventsWaitListStaffApi
20342
- */
20343
- processWaitList(requestParameters: EventsWaitListStaffApiProcessWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
20344
- }
20345
- /**
20346
- * ImagesApi - axios parameter creator
20347
- * @export
20348
- */
20349
- export declare const ImagesApiAxiosParamCreator: (configuration?: Configuration) => {
20350
- /**
20351
- *
20352
- * @param {ImageCleanupRequestBody} imageCleanupRequestBody
20353
- * @param {*} [options] Override http request option.
20354
- * @throws {RequiredError}
20355
- */
20356
- cleanupImages: (imageCleanupRequestBody: ImageCleanupRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20357
- };
20358
- /**
20359
- * ImagesApi - functional programming interface
20360
- * @export
20361
- */
20362
- export declare const ImagesApiFp: (configuration?: Configuration) => {
20363
- /**
20364
- *
20365
- * @param {ImageCleanupRequestBody} imageCleanupRequestBody
20366
- * @param {*} [options] Override http request option.
20367
- * @throws {RequiredError}
20368
- */
20369
- cleanupImages(imageCleanupRequestBody: ImageCleanupRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImageCleanupResponse>>;
20370
- };
20371
- /**
20372
- * ImagesApi - factory interface
20373
- * @export
20374
- */
20375
- export declare const ImagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20376
- /**
20377
- *
20378
- * @param {ImagesApiCleanupImagesRequest} requestParameters Request parameters.
20379
- * @param {*} [options] Override http request option.
20380
- * @throws {RequiredError}
20381
- */
20382
- cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImageCleanupResponse>;
20383
- };
20384
- /**
20385
- * Request parameters for cleanupImages operation in ImagesApi.
20386
- * @export
20387
- * @interface ImagesApiCleanupImagesRequest
20388
- */
20389
- export interface ImagesApiCleanupImagesRequest {
20390
- /**
20391
- *
20392
- * @type {ImageCleanupRequestBody}
20393
- * @memberof ImagesApiCleanupImages
20394
- */
20395
- readonly imageCleanupRequestBody: ImageCleanupRequestBody;
20396
- }
20397
- /**
20398
- * ImagesApi - object-oriented interface
20399
- * @export
20400
- * @class ImagesApi
20401
- * @extends {BaseAPI}
20402
- */
20403
- export declare class ImagesApi extends BaseAPI {
20404
- /**
20405
- *
20406
- * @param {ImagesApiCleanupImagesRequest} requestParameters Request parameters.
20407
- * @param {*} [options] Override http request option.
20408
- * @throws {RequiredError}
20409
- * @memberof ImagesApi
20410
- */
20411
- cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageCleanupResponse, any, {}>>;
20412
- }
20413
- /**
20414
- * PublicEmailApi - axios parameter creator
20415
- * @export
20416
- */
20417
- export declare const PublicEmailApiAxiosParamCreator: (configuration?: Configuration) => {
20418
- /**
20419
- *
20420
- * @param {EmailExistsRequestBody} emailExistsRequestBody
20421
- * @param {*} [options] Override http request option.
20422
- * @throws {RequiredError}
20423
- */
20424
- authEmailExists: (emailExistsRequestBody: EmailExistsRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20425
- /**
20426
- *
20427
- * @param {RequestEmailCodeBody} requestEmailCodeBody
20428
- * @param {*} [options] Override http request option.
20429
- * @throws {RequiredError}
20430
- */
20431
- requestVerificationCode: (requestEmailCodeBody: RequestEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20432
- /**
20433
- *
20434
- * @param {VerifyEmailCodeBody} verifyEmailCodeBody
20435
- * @param {*} [options] Override http request option.
20436
- * @throws {RequiredError}
20437
- */
20438
- verifyCode: (verifyEmailCodeBody: VerifyEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20439
- };
20440
- /**
20441
- * PublicEmailApi - functional programming interface
20442
- * @export
20443
- */
20444
- export declare const PublicEmailApiFp: (configuration?: Configuration) => {
20445
- /**
20446
- *
20447
- * @param {EmailExistsRequestBody} emailExistsRequestBody
20448
- * @param {*} [options] Override http request option.
20449
- * @throws {RequiredError}
20450
- */
20451
- authEmailExists(emailExistsRequestBody: EmailExistsRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailExistsResponse>>;
20452
- /**
20453
- *
20454
- * @param {RequestEmailCodeBody} requestEmailCodeBody
20455
- * @param {*} [options] Override http request option.
20456
- * @throws {RequiredError}
20457
- */
20458
- requestVerificationCode(requestEmailCodeBody: RequestEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestEmailCodeResponse>>;
20459
- /**
20460
- *
20461
- * @param {VerifyEmailCodeBody} verifyEmailCodeBody
20462
- * @param {*} [options] Override http request option.
20463
- * @throws {RequiredError}
20464
- */
20465
- verifyCode(verifyEmailCodeBody: VerifyEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VerifyEmailCodeResponse>>;
20466
- };
20467
- /**
20468
- * PublicEmailApi - factory interface
20469
- * @export
20470
- */
20471
- export declare const PublicEmailApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20472
- /**
20473
- *
20474
- * @param {PublicEmailApiAuthEmailExistsRequest} requestParameters Request parameters.
20475
- * @param {*} [options] Override http request option.
20476
- * @throws {RequiredError}
20477
- */
20478
- authEmailExists(requestParameters: PublicEmailApiAuthEmailExistsRequest, options?: RawAxiosRequestConfig): AxiosPromise<EmailExistsResponse>;
20479
- /**
20480
- *
20481
- * @param {PublicEmailApiRequestVerificationCodeRequest} requestParameters Request parameters.
20482
- * @param {*} [options] Override http request option.
20483
- * @throws {RequiredError}
20484
- */
20485
- requestVerificationCode(requestParameters: PublicEmailApiRequestVerificationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestEmailCodeResponse>;
20486
- /**
20487
- *
20488
- * @param {PublicEmailApiVerifyCodeRequest} requestParameters Request parameters.
20489
- * @param {*} [options] Override http request option.
20490
- * @throws {RequiredError}
20491
- */
20492
- verifyCode(requestParameters: PublicEmailApiVerifyCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<VerifyEmailCodeResponse>;
20493
- };
20494
- /**
20495
- * Request parameters for authEmailExists operation in PublicEmailApi.
20496
- * @export
20497
- * @interface PublicEmailApiAuthEmailExistsRequest
20498
- */
20499
- export interface PublicEmailApiAuthEmailExistsRequest {
20500
- /**
20501
- *
20502
- * @type {EmailExistsRequestBody}
20503
- * @memberof PublicEmailApiAuthEmailExists
20504
- */
20505
- readonly emailExistsRequestBody: EmailExistsRequestBody;
20506
+ readonly emailExistsRequestBody: EmailExistsRequestBody;
20506
20507
  }
20507
20508
  /**
20508
20509
  * Request parameters for requestVerificationCode operation in PublicEmailApi.
@@ -21543,6 +21544,13 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
21543
21544
  * @throws {RequiredError}
21544
21545
  */
21545
21546
  getUserProfileById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21547
+ /**
21548
+ * Quitter une réservation
21549
+ * @param {string} bookingId
21550
+ * @param {*} [options] Override http request option.
21551
+ * @throws {RequiredError}
21552
+ */
21553
+ leaveBooking: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21546
21554
  /**
21547
21555
  *
21548
21556
  * @param {PlayerCategoryId} [category]
@@ -21710,7 +21718,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
21710
21718
  * @param {*} [options] Override http request option.
21711
21719
  * @throws {RequiredError}
21712
21720
  */
21713
- addOrganization(addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
21721
+ addOrganization(addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
21714
21722
  /**
21715
21723
  *
21716
21724
  * @param {ChangePasswordRequestBody} changePasswordRequestBody
@@ -21847,6 +21855,13 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
21847
21855
  * @throws {RequiredError}
21848
21856
  */
21849
21857
  getUserProfileById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PublicUserProfileResponse>>;
21858
+ /**
21859
+ * Quitter une réservation
21860
+ * @param {string} bookingId
21861
+ * @param {*} [options] Override http request option.
21862
+ * @throws {RequiredError}
21863
+ */
21864
+ leaveBooking(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
21850
21865
  /**
21851
21866
  *
21852
21867
  * @param {PlayerCategoryId} [category]
@@ -21918,27 +21933,27 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
21918
21933
  * @param {*} [options] Override http request option.
21919
21934
  * @throws {RequiredError}
21920
21935
  */
21921
- removeOrganization(addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
21936
+ removeOrganization(addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
21922
21937
  /**
21923
21938
  *
21924
21939
  * @param {*} [options] Override http request option.
21925
21940
  * @throws {RequiredError}
21926
21941
  */
21927
- requestEmailVerification(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
21942
+ requestEmailVerification(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
21928
21943
  /**
21929
21944
  *
21930
21945
  * @param {PasswordResetRequestBody} passwordResetRequestBody
21931
21946
  * @param {*} [options] Override http request option.
21932
21947
  * @throws {RequiredError}
21933
21948
  */
21934
- requestPasswordReset(passwordResetRequestBody: PasswordResetRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
21949
+ requestPasswordReset(passwordResetRequestBody: PasswordResetRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
21935
21950
  /**
21936
21951
  *
21937
21952
  * @param {ResetPasswordRequest} resetPasswordRequest
21938
21953
  * @param {*} [options] Override http request option.
21939
21954
  * @throws {RequiredError}
21940
21955
  */
21941
- resetPassword(resetPasswordRequest: ResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
21956
+ resetPassword(resetPasswordRequest: ResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
21942
21957
  /**
21943
21958
  *
21944
21959
  * @param {GoogleAuthRequestBody} googleAuthRequestBody
@@ -21980,14 +21995,14 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
21980
21995
  * @param {*} [options] Override http request option.
21981
21996
  * @throws {RequiredError}
21982
21997
  */
21983
- verifyEmail(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
21998
+ verifyEmail(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
21984
21999
  /**
21985
22000
  *
21986
22001
  * @param {VerifyEmailRequest} verifyEmailRequest
21987
22002
  * @param {*} [options] Override http request option.
21988
22003
  * @throws {RequiredError}
21989
22004
  */
21990
- verifyOrganization(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
22005
+ verifyOrganization(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
21991
22006
  };
21992
22007
  /**
21993
22008
  * UsersApi - factory interface
@@ -22014,7 +22029,7 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
22014
22029
  * @param {*} [options] Override http request option.
22015
22030
  * @throws {RequiredError}
22016
22031
  */
22017
- addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
22032
+ addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
22018
22033
  /**
22019
22034
  *
22020
22035
  * @param {UsersApiChangePasswordRequest} requestParameters Request parameters.
@@ -22141,6 +22156,13 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
22141
22156
  * @throws {RequiredError}
22142
22157
  */
22143
22158
  getUserProfileById(requestParameters: UsersApiGetUserProfileByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<PublicUserProfileResponse>;
22159
+ /**
22160
+ * Quitter une réservation
22161
+ * @param {UsersApiLeaveBookingRequest} requestParameters Request parameters.
22162
+ * @param {*} [options] Override http request option.
22163
+ * @throws {RequiredError}
22164
+ */
22165
+ leaveBooking(requestParameters: UsersApiLeaveBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
22144
22166
  /**
22145
22167
  *
22146
22168
  * @param {UsersApiListPlayersRequest} requestParameters Request parameters.
@@ -22203,27 +22225,27 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
22203
22225
  * @param {*} [options] Override http request option.
22204
22226
  * @throws {RequiredError}
22205
22227
  */
22206
- removeOrganization(requestParameters: UsersApiRemoveOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
22228
+ removeOrganization(requestParameters: UsersApiRemoveOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
22207
22229
  /**
22208
22230
  *
22209
22231
  * @param {*} [options] Override http request option.
22210
22232
  * @throws {RequiredError}
22211
22233
  */
22212
- requestEmailVerification(options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
22234
+ requestEmailVerification(options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
22213
22235
  /**
22214
22236
  *
22215
22237
  * @param {UsersApiRequestPasswordResetRequest} requestParameters Request parameters.
22216
22238
  * @param {*} [options] Override http request option.
22217
22239
  * @throws {RequiredError}
22218
22240
  */
22219
- requestPasswordReset(requestParameters: UsersApiRequestPasswordResetRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
22241
+ requestPasswordReset(requestParameters: UsersApiRequestPasswordResetRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
22220
22242
  /**
22221
22243
  *
22222
22244
  * @param {UsersApiResetPasswordRequest} requestParameters Request parameters.
22223
22245
  * @param {*} [options] Override http request option.
22224
22246
  * @throws {RequiredError}
22225
22247
  */
22226
- resetPassword(requestParameters: UsersApiResetPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
22248
+ resetPassword(requestParameters: UsersApiResetPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
22227
22249
  /**
22228
22250
  *
22229
22251
  * @param {UsersApiSignInOrSignUpWithGoogleRequest} requestParameters Request parameters.
@@ -22265,14 +22287,14 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
22265
22287
  * @param {*} [options] Override http request option.
22266
22288
  * @throws {RequiredError}
22267
22289
  */
22268
- verifyEmail(requestParameters: UsersApiVerifyEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
22290
+ verifyEmail(requestParameters: UsersApiVerifyEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
22269
22291
  /**
22270
22292
  *
22271
22293
  * @param {UsersApiVerifyOrganizationRequest} requestParameters Request parameters.
22272
22294
  * @param {*} [options] Override http request option.
22273
22295
  * @throws {RequiredError}
22274
22296
  */
22275
- verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
22297
+ verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
22276
22298
  };
22277
22299
  /**
22278
22300
  * Request parameters for addFavoriteClub operation in UsersApi.
@@ -22503,6 +22525,19 @@ export interface UsersApiGetUserProfileByIdRequest {
22503
22525
  */
22504
22526
  readonly id: string;
22505
22527
  }
22528
+ /**
22529
+ * Request parameters for leaveBooking operation in UsersApi.
22530
+ * @export
22531
+ * @interface UsersApiLeaveBookingRequest
22532
+ */
22533
+ export interface UsersApiLeaveBookingRequest {
22534
+ /**
22535
+ *
22536
+ * @type {string}
22537
+ * @memberof UsersApiLeaveBooking
22538
+ */
22539
+ readonly bookingId: string;
22540
+ }
22506
22541
  /**
22507
22542
  * Request parameters for listPlayers operation in UsersApi.
22508
22543
  * @export
@@ -22821,7 +22856,7 @@ export declare class UsersApi extends BaseAPI {
22821
22856
  * @throws {RequiredError}
22822
22857
  * @memberof UsersApi
22823
22858
  */
22824
- addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
22859
+ addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
22825
22860
  /**
22826
22861
  *
22827
22862
  * @param {UsersApiChangePasswordRequest} requestParameters Request parameters.
@@ -22966,6 +23001,14 @@ export declare class UsersApi extends BaseAPI {
22966
23001
  * @memberof UsersApi
22967
23002
  */
22968
23003
  getUserProfileById(requestParameters: UsersApiGetUserProfileByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PublicUserProfileResponse, any, {}>>;
23004
+ /**
23005
+ * Quitter une réservation
23006
+ * @param {UsersApiLeaveBookingRequest} requestParameters Request parameters.
23007
+ * @param {*} [options] Override http request option.
23008
+ * @throws {RequiredError}
23009
+ * @memberof UsersApi
23010
+ */
23011
+ leaveBooking(requestParameters: UsersApiLeaveBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
22969
23012
  /**
22970
23013
  *
22971
23014
  * @param {UsersApiListPlayersRequest} requestParameters Request parameters.
@@ -23037,14 +23080,14 @@ export declare class UsersApi extends BaseAPI {
23037
23080
  * @throws {RequiredError}
23038
23081
  * @memberof UsersApi
23039
23082
  */
23040
- removeOrganization(requestParameters: UsersApiRemoveOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
23083
+ removeOrganization(requestParameters: UsersApiRemoveOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23041
23084
  /**
23042
23085
  *
23043
23086
  * @param {*} [options] Override http request option.
23044
23087
  * @throws {RequiredError}
23045
23088
  * @memberof UsersApi
23046
23089
  */
23047
- requestEmailVerification(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
23090
+ requestEmailVerification(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23048
23091
  /**
23049
23092
  *
23050
23093
  * @param {UsersApiRequestPasswordResetRequest} requestParameters Request parameters.
@@ -23052,7 +23095,7 @@ export declare class UsersApi extends BaseAPI {
23052
23095
  * @throws {RequiredError}
23053
23096
  * @memberof UsersApi
23054
23097
  */
23055
- requestPasswordReset(requestParameters: UsersApiRequestPasswordResetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
23098
+ requestPasswordReset(requestParameters: UsersApiRequestPasswordResetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23056
23099
  /**
23057
23100
  *
23058
23101
  * @param {UsersApiResetPasswordRequest} requestParameters Request parameters.
@@ -23060,7 +23103,7 @@ export declare class UsersApi extends BaseAPI {
23060
23103
  * @throws {RequiredError}
23061
23104
  * @memberof UsersApi
23062
23105
  */
23063
- resetPassword(requestParameters: UsersApiResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
23106
+ resetPassword(requestParameters: UsersApiResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23064
23107
  /**
23065
23108
  *
23066
23109
  * @param {UsersApiSignInOrSignUpWithGoogleRequest} requestParameters Request parameters.
@@ -23108,7 +23151,7 @@ export declare class UsersApi extends BaseAPI {
23108
23151
  * @throws {RequiredError}
23109
23152
  * @memberof UsersApi
23110
23153
  */
23111
- verifyEmail(requestParameters: UsersApiVerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
23154
+ verifyEmail(requestParameters: UsersApiVerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23112
23155
  /**
23113
23156
  *
23114
23157
  * @param {UsersApiVerifyOrganizationRequest} requestParameters Request parameters.
@@ -23116,5 +23159,687 @@ export declare class UsersApi extends BaseAPI {
23116
23159
  * @throws {RequiredError}
23117
23160
  * @memberof UsersApi
23118
23161
  */
23119
- verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
23162
+ verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23163
+ }
23164
+ /**
23165
+ * WaitListApi - axios parameter creator
23166
+ * @export
23167
+ */
23168
+ export declare const WaitListApiAxiosParamCreator: (configuration?: Configuration) => {
23169
+ /**
23170
+ * Obtenir la position actuelle dans la file d\'attente d\'un booking
23171
+ * @param {string} bookingId
23172
+ * @param {*} [options] Override http request option.
23173
+ * @throws {RequiredError}
23174
+ */
23175
+ getBookingPosition: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23176
+ /**
23177
+ * Obtenir la position actuelle dans la file d\'attente d\'un eventBooking
23178
+ * @param {string} eventBookingId
23179
+ * @param {*} [options] Override http request option.
23180
+ * @throws {RequiredError}
23181
+ */
23182
+ getEventBookingPosition: (eventBookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23183
+ /**
23184
+ * Obtenir la position actuelle dans la file d\'attente d\'un event
23185
+ * @param {string} eventId
23186
+ * @param {*} [options] Override http request option.
23187
+ * @throws {RequiredError}
23188
+ */
23189
+ getEventPosition: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23190
+ /**
23191
+ * Rejoindre la file d\'attente pour un booking (créneau ouvert)
23192
+ * @param {string} bookingId
23193
+ * @param {*} [options] Override http request option.
23194
+ * @throws {RequiredError}
23195
+ */
23196
+ joinBookingWaitList: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23197
+ /**
23198
+ * Rejoindre la file d\'attente pour un eventBooking (event en équipe avec créneau ouvert)
23199
+ * @param {string} eventBookingId
23200
+ * @param {*} [options] Override http request option.
23201
+ * @throws {RequiredError}
23202
+ */
23203
+ joinEventBookingWaitList: (eventBookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23204
+ /**
23205
+ * Rejoindre la file d\'attente pour un event (participation solo)
23206
+ * @param {string} eventId
23207
+ * @param {*} [options] Override http request option.
23208
+ * @throws {RequiredError}
23209
+ */
23210
+ joinEventWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23211
+ /**
23212
+ * Quitter la file d\'attente d\'un booking
23213
+ * @param {string} bookingId
23214
+ * @param {*} [options] Override http request option.
23215
+ * @throws {RequiredError}
23216
+ */
23217
+ leaveBookingWaitList: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23218
+ /**
23219
+ * Quitter la file d\'attente d\'un eventBooking
23220
+ * @param {string} eventBookingId
23221
+ * @param {*} [options] Override http request option.
23222
+ * @throws {RequiredError}
23223
+ */
23224
+ leaveEventBookingWaitList: (eventBookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23225
+ /**
23226
+ * Quitter la file d\'attente d\'un event
23227
+ * @param {string} eventId
23228
+ * @param {*} [options] Override http request option.
23229
+ * @throws {RequiredError}
23230
+ */
23231
+ leaveEventWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23232
+ };
23233
+ /**
23234
+ * WaitListApi - functional programming interface
23235
+ * @export
23236
+ */
23237
+ export declare const WaitListApiFp: (configuration?: Configuration) => {
23238
+ /**
23239
+ * Obtenir la position actuelle dans la file d\'attente d\'un booking
23240
+ * @param {string} bookingId
23241
+ * @param {*} [options] Override http request option.
23242
+ * @throws {RequiredError}
23243
+ */
23244
+ getBookingPosition(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListPositionResponse>>;
23245
+ /**
23246
+ * Obtenir la position actuelle dans la file d\'attente d\'un eventBooking
23247
+ * @param {string} eventBookingId
23248
+ * @param {*} [options] Override http request option.
23249
+ * @throws {RequiredError}
23250
+ */
23251
+ getEventBookingPosition(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListPositionResponse>>;
23252
+ /**
23253
+ * Obtenir la position actuelle dans la file d\'attente d\'un event
23254
+ * @param {string} eventId
23255
+ * @param {*} [options] Override http request option.
23256
+ * @throws {RequiredError}
23257
+ */
23258
+ getEventPosition(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListPositionResponse>>;
23259
+ /**
23260
+ * Rejoindre la file d\'attente pour un booking (créneau ouvert)
23261
+ * @param {string} bookingId
23262
+ * @param {*} [options] Override http request option.
23263
+ * @throws {RequiredError}
23264
+ */
23265
+ joinBookingWaitList(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinEventWaitList200Response>>;
23266
+ /**
23267
+ * Rejoindre la file d\'attente pour un eventBooking (event en équipe avec créneau ouvert)
23268
+ * @param {string} eventBookingId
23269
+ * @param {*} [options] Override http request option.
23270
+ * @throws {RequiredError}
23271
+ */
23272
+ joinEventBookingWaitList(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinEventWaitList200Response>>;
23273
+ /**
23274
+ * Rejoindre la file d\'attente pour un event (participation solo)
23275
+ * @param {string} eventId
23276
+ * @param {*} [options] Override http request option.
23277
+ * @throws {RequiredError}
23278
+ */
23279
+ joinEventWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinEventWaitList200Response>>;
23280
+ /**
23281
+ * Quitter la file d\'attente d\'un booking
23282
+ * @param {string} bookingId
23283
+ * @param {*} [options] Override http request option.
23284
+ * @throws {RequiredError}
23285
+ */
23286
+ leaveBookingWaitList(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
23287
+ /**
23288
+ * Quitter la file d\'attente d\'un eventBooking
23289
+ * @param {string} eventBookingId
23290
+ * @param {*} [options] Override http request option.
23291
+ * @throws {RequiredError}
23292
+ */
23293
+ leaveEventBookingWaitList(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
23294
+ /**
23295
+ * Quitter la file d\'attente d\'un event
23296
+ * @param {string} eventId
23297
+ * @param {*} [options] Override http request option.
23298
+ * @throws {RequiredError}
23299
+ */
23300
+ leaveEventWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
23301
+ };
23302
+ /**
23303
+ * WaitListApi - factory interface
23304
+ * @export
23305
+ */
23306
+ export declare const WaitListApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23307
+ /**
23308
+ * Obtenir la position actuelle dans la file d\'attente d\'un booking
23309
+ * @param {WaitListApiGetBookingPositionRequest} requestParameters Request parameters.
23310
+ * @param {*} [options] Override http request option.
23311
+ * @throws {RequiredError}
23312
+ */
23313
+ getBookingPosition(requestParameters: WaitListApiGetBookingPositionRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListPositionResponse>;
23314
+ /**
23315
+ * Obtenir la position actuelle dans la file d\'attente d\'un eventBooking
23316
+ * @param {WaitListApiGetEventBookingPositionRequest} requestParameters Request parameters.
23317
+ * @param {*} [options] Override http request option.
23318
+ * @throws {RequiredError}
23319
+ */
23320
+ getEventBookingPosition(requestParameters: WaitListApiGetEventBookingPositionRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListPositionResponse>;
23321
+ /**
23322
+ * Obtenir la position actuelle dans la file d\'attente d\'un event
23323
+ * @param {WaitListApiGetEventPositionRequest} requestParameters Request parameters.
23324
+ * @param {*} [options] Override http request option.
23325
+ * @throws {RequiredError}
23326
+ */
23327
+ getEventPosition(requestParameters: WaitListApiGetEventPositionRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListPositionResponse>;
23328
+ /**
23329
+ * Rejoindre la file d\'attente pour un booking (créneau ouvert)
23330
+ * @param {WaitListApiJoinBookingWaitListRequest} requestParameters Request parameters.
23331
+ * @param {*} [options] Override http request option.
23332
+ * @throws {RequiredError}
23333
+ */
23334
+ joinBookingWaitList(requestParameters: WaitListApiJoinBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JoinEventWaitList200Response>;
23335
+ /**
23336
+ * Rejoindre la file d\'attente pour un eventBooking (event en équipe avec créneau ouvert)
23337
+ * @param {WaitListApiJoinEventBookingWaitListRequest} requestParameters Request parameters.
23338
+ * @param {*} [options] Override http request option.
23339
+ * @throws {RequiredError}
23340
+ */
23341
+ joinEventBookingWaitList(requestParameters: WaitListApiJoinEventBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JoinEventWaitList200Response>;
23342
+ /**
23343
+ * Rejoindre la file d\'attente pour un event (participation solo)
23344
+ * @param {WaitListApiJoinEventWaitListRequest} requestParameters Request parameters.
23345
+ * @param {*} [options] Override http request option.
23346
+ * @throws {RequiredError}
23347
+ */
23348
+ joinEventWaitList(requestParameters: WaitListApiJoinEventWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JoinEventWaitList200Response>;
23349
+ /**
23350
+ * Quitter la file d\'attente d\'un booking
23351
+ * @param {WaitListApiLeaveBookingWaitListRequest} requestParameters Request parameters.
23352
+ * @param {*} [options] Override http request option.
23353
+ * @throws {RequiredError}
23354
+ */
23355
+ leaveBookingWaitList(requestParameters: WaitListApiLeaveBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
23356
+ /**
23357
+ * Quitter la file d\'attente d\'un eventBooking
23358
+ * @param {WaitListApiLeaveEventBookingWaitListRequest} requestParameters Request parameters.
23359
+ * @param {*} [options] Override http request option.
23360
+ * @throws {RequiredError}
23361
+ */
23362
+ leaveEventBookingWaitList(requestParameters: WaitListApiLeaveEventBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
23363
+ /**
23364
+ * Quitter la file d\'attente d\'un event
23365
+ * @param {WaitListApiLeaveEventWaitListRequest} requestParameters Request parameters.
23366
+ * @param {*} [options] Override http request option.
23367
+ * @throws {RequiredError}
23368
+ */
23369
+ leaveEventWaitList(requestParameters: WaitListApiLeaveEventWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
23370
+ };
23371
+ /**
23372
+ * Request parameters for getBookingPosition operation in WaitListApi.
23373
+ * @export
23374
+ * @interface WaitListApiGetBookingPositionRequest
23375
+ */
23376
+ export interface WaitListApiGetBookingPositionRequest {
23377
+ /**
23378
+ *
23379
+ * @type {string}
23380
+ * @memberof WaitListApiGetBookingPosition
23381
+ */
23382
+ readonly bookingId: string;
23383
+ }
23384
+ /**
23385
+ * Request parameters for getEventBookingPosition operation in WaitListApi.
23386
+ * @export
23387
+ * @interface WaitListApiGetEventBookingPositionRequest
23388
+ */
23389
+ export interface WaitListApiGetEventBookingPositionRequest {
23390
+ /**
23391
+ *
23392
+ * @type {string}
23393
+ * @memberof WaitListApiGetEventBookingPosition
23394
+ */
23395
+ readonly eventBookingId: string;
23396
+ }
23397
+ /**
23398
+ * Request parameters for getEventPosition operation in WaitListApi.
23399
+ * @export
23400
+ * @interface WaitListApiGetEventPositionRequest
23401
+ */
23402
+ export interface WaitListApiGetEventPositionRequest {
23403
+ /**
23404
+ *
23405
+ * @type {string}
23406
+ * @memberof WaitListApiGetEventPosition
23407
+ */
23408
+ readonly eventId: string;
23409
+ }
23410
+ /**
23411
+ * Request parameters for joinBookingWaitList operation in WaitListApi.
23412
+ * @export
23413
+ * @interface WaitListApiJoinBookingWaitListRequest
23414
+ */
23415
+ export interface WaitListApiJoinBookingWaitListRequest {
23416
+ /**
23417
+ *
23418
+ * @type {string}
23419
+ * @memberof WaitListApiJoinBookingWaitList
23420
+ */
23421
+ readonly bookingId: string;
23422
+ }
23423
+ /**
23424
+ * Request parameters for joinEventBookingWaitList operation in WaitListApi.
23425
+ * @export
23426
+ * @interface WaitListApiJoinEventBookingWaitListRequest
23427
+ */
23428
+ export interface WaitListApiJoinEventBookingWaitListRequest {
23429
+ /**
23430
+ *
23431
+ * @type {string}
23432
+ * @memberof WaitListApiJoinEventBookingWaitList
23433
+ */
23434
+ readonly eventBookingId: string;
23435
+ }
23436
+ /**
23437
+ * Request parameters for joinEventWaitList operation in WaitListApi.
23438
+ * @export
23439
+ * @interface WaitListApiJoinEventWaitListRequest
23440
+ */
23441
+ export interface WaitListApiJoinEventWaitListRequest {
23442
+ /**
23443
+ *
23444
+ * @type {string}
23445
+ * @memberof WaitListApiJoinEventWaitList
23446
+ */
23447
+ readonly eventId: string;
23448
+ }
23449
+ /**
23450
+ * Request parameters for leaveBookingWaitList operation in WaitListApi.
23451
+ * @export
23452
+ * @interface WaitListApiLeaveBookingWaitListRequest
23453
+ */
23454
+ export interface WaitListApiLeaveBookingWaitListRequest {
23455
+ /**
23456
+ *
23457
+ * @type {string}
23458
+ * @memberof WaitListApiLeaveBookingWaitList
23459
+ */
23460
+ readonly bookingId: string;
23461
+ }
23462
+ /**
23463
+ * Request parameters for leaveEventBookingWaitList operation in WaitListApi.
23464
+ * @export
23465
+ * @interface WaitListApiLeaveEventBookingWaitListRequest
23466
+ */
23467
+ export interface WaitListApiLeaveEventBookingWaitListRequest {
23468
+ /**
23469
+ *
23470
+ * @type {string}
23471
+ * @memberof WaitListApiLeaveEventBookingWaitList
23472
+ */
23473
+ readonly eventBookingId: string;
23474
+ }
23475
+ /**
23476
+ * Request parameters for leaveEventWaitList operation in WaitListApi.
23477
+ * @export
23478
+ * @interface WaitListApiLeaveEventWaitListRequest
23479
+ */
23480
+ export interface WaitListApiLeaveEventWaitListRequest {
23481
+ /**
23482
+ *
23483
+ * @type {string}
23484
+ * @memberof WaitListApiLeaveEventWaitList
23485
+ */
23486
+ readonly eventId: string;
23487
+ }
23488
+ /**
23489
+ * WaitListApi - object-oriented interface
23490
+ * @export
23491
+ * @class WaitListApi
23492
+ * @extends {BaseAPI}
23493
+ */
23494
+ export declare class WaitListApi extends BaseAPI {
23495
+ /**
23496
+ * Obtenir la position actuelle dans la file d\'attente d\'un booking
23497
+ * @param {WaitListApiGetBookingPositionRequest} requestParameters Request parameters.
23498
+ * @param {*} [options] Override http request option.
23499
+ * @throws {RequiredError}
23500
+ * @memberof WaitListApi
23501
+ */
23502
+ getBookingPosition(requestParameters: WaitListApiGetBookingPositionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListPositionResponse, any, {}>>;
23503
+ /**
23504
+ * Obtenir la position actuelle dans la file d\'attente d\'un eventBooking
23505
+ * @param {WaitListApiGetEventBookingPositionRequest} requestParameters Request parameters.
23506
+ * @param {*} [options] Override http request option.
23507
+ * @throws {RequiredError}
23508
+ * @memberof WaitListApi
23509
+ */
23510
+ getEventBookingPosition(requestParameters: WaitListApiGetEventBookingPositionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListPositionResponse, any, {}>>;
23511
+ /**
23512
+ * Obtenir la position actuelle dans la file d\'attente d\'un event
23513
+ * @param {WaitListApiGetEventPositionRequest} requestParameters Request parameters.
23514
+ * @param {*} [options] Override http request option.
23515
+ * @throws {RequiredError}
23516
+ * @memberof WaitListApi
23517
+ */
23518
+ getEventPosition(requestParameters: WaitListApiGetEventPositionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListPositionResponse, any, {}>>;
23519
+ /**
23520
+ * Rejoindre la file d\'attente pour un booking (créneau ouvert)
23521
+ * @param {WaitListApiJoinBookingWaitListRequest} requestParameters Request parameters.
23522
+ * @param {*} [options] Override http request option.
23523
+ * @throws {RequiredError}
23524
+ * @memberof WaitListApi
23525
+ */
23526
+ joinBookingWaitList(requestParameters: WaitListApiJoinBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JoinEventWaitList200Response, any, {}>>;
23527
+ /**
23528
+ * Rejoindre la file d\'attente pour un eventBooking (event en équipe avec créneau ouvert)
23529
+ * @param {WaitListApiJoinEventBookingWaitListRequest} requestParameters Request parameters.
23530
+ * @param {*} [options] Override http request option.
23531
+ * @throws {RequiredError}
23532
+ * @memberof WaitListApi
23533
+ */
23534
+ joinEventBookingWaitList(requestParameters: WaitListApiJoinEventBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JoinEventWaitList200Response, any, {}>>;
23535
+ /**
23536
+ * Rejoindre la file d\'attente pour un event (participation solo)
23537
+ * @param {WaitListApiJoinEventWaitListRequest} requestParameters Request parameters.
23538
+ * @param {*} [options] Override http request option.
23539
+ * @throws {RequiredError}
23540
+ * @memberof WaitListApi
23541
+ */
23542
+ joinEventWaitList(requestParameters: WaitListApiJoinEventWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JoinEventWaitList200Response, any, {}>>;
23543
+ /**
23544
+ * Quitter la file d\'attente d\'un booking
23545
+ * @param {WaitListApiLeaveBookingWaitListRequest} requestParameters Request parameters.
23546
+ * @param {*} [options] Override http request option.
23547
+ * @throws {RequiredError}
23548
+ * @memberof WaitListApi
23549
+ */
23550
+ leaveBookingWaitList(requestParameters: WaitListApiLeaveBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23551
+ /**
23552
+ * Quitter la file d\'attente d\'un eventBooking
23553
+ * @param {WaitListApiLeaveEventBookingWaitListRequest} requestParameters Request parameters.
23554
+ * @param {*} [options] Override http request option.
23555
+ * @throws {RequiredError}
23556
+ * @memberof WaitListApi
23557
+ */
23558
+ leaveEventBookingWaitList(requestParameters: WaitListApiLeaveEventBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23559
+ /**
23560
+ * Quitter la file d\'attente d\'un event
23561
+ * @param {WaitListApiLeaveEventWaitListRequest} requestParameters Request parameters.
23562
+ * @param {*} [options] Override http request option.
23563
+ * @throws {RequiredError}
23564
+ * @memberof WaitListApi
23565
+ */
23566
+ leaveEventWaitList(requestParameters: WaitListApiLeaveEventWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23567
+ }
23568
+ /**
23569
+ * WaitListStaffApi - axios parameter creator
23570
+ * @export
23571
+ */
23572
+ export declare const WaitListStaffApiAxiosParamCreator: (configuration?: Configuration) => {
23573
+ /**
23574
+ * Obtenir la liste complète de la file d\'attente pour un booking (staff only)
23575
+ * @param {string} bookingId
23576
+ * @param {*} [options] Override http request option.
23577
+ * @throws {RequiredError}
23578
+ */
23579
+ getBookingWaitList: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23580
+ /**
23581
+ * Obtenir la liste complète de la file d\'attente pour un eventBooking (staff only)
23582
+ * @param {string} eventBookingId
23583
+ * @param {*} [options] Override http request option.
23584
+ * @throws {RequiredError}
23585
+ */
23586
+ getEventBookingWaitList: (eventBookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23587
+ /**
23588
+ * Obtenir la liste complète de la file d\'attente pour un event (staff only)
23589
+ * @param {string} eventId
23590
+ * @param {*} [options] Override http request option.
23591
+ * @throws {RequiredError}
23592
+ */
23593
+ getEventWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23594
+ /**
23595
+ * Forcer le traitement de la waitlist pour un booking (staff only)
23596
+ * @param {string} bookingId
23597
+ * @param {*} [options] Override http request option.
23598
+ * @throws {RequiredError}
23599
+ */
23600
+ processBookingWaitList: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23601
+ /**
23602
+ * Forcer le traitement de la waitlist pour un eventBooking (staff only)
23603
+ * @param {string} eventBookingId
23604
+ * @param {*} [options] Override http request option.
23605
+ * @throws {RequiredError}
23606
+ */
23607
+ processEventBookingWaitList: (eventBookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23608
+ /**
23609
+ * Forcer le traitement de la waitlist pour un event (staff only)
23610
+ * @param {string} eventId
23611
+ * @param {*} [options] Override http request option.
23612
+ * @throws {RequiredError}
23613
+ */
23614
+ processEventWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23615
+ };
23616
+ /**
23617
+ * WaitListStaffApi - functional programming interface
23618
+ * @export
23619
+ */
23620
+ export declare const WaitListStaffApiFp: (configuration?: Configuration) => {
23621
+ /**
23622
+ * Obtenir la liste complète de la file d\'attente pour un booking (staff only)
23623
+ * @param {string} bookingId
23624
+ * @param {*} [options] Override http request option.
23625
+ * @throws {RequiredError}
23626
+ */
23627
+ getBookingWaitList(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListListResponse>>;
23628
+ /**
23629
+ * Obtenir la liste complète de la file d\'attente pour un eventBooking (staff only)
23630
+ * @param {string} eventBookingId
23631
+ * @param {*} [options] Override http request option.
23632
+ * @throws {RequiredError}
23633
+ */
23634
+ getEventBookingWaitList(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListListResponse>>;
23635
+ /**
23636
+ * Obtenir la liste complète de la file d\'attente pour un event (staff only)
23637
+ * @param {string} eventId
23638
+ * @param {*} [options] Override http request option.
23639
+ * @throws {RequiredError}
23640
+ */
23641
+ getEventWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListListResponse>>;
23642
+ /**
23643
+ * Forcer le traitement de la waitlist pour un booking (staff only)
23644
+ * @param {string} bookingId
23645
+ * @param {*} [options] Override http request option.
23646
+ * @throws {RequiredError}
23647
+ */
23648
+ processBookingWaitList(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
23649
+ /**
23650
+ * Forcer le traitement de la waitlist pour un eventBooking (staff only)
23651
+ * @param {string} eventBookingId
23652
+ * @param {*} [options] Override http request option.
23653
+ * @throws {RequiredError}
23654
+ */
23655
+ processEventBookingWaitList(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
23656
+ /**
23657
+ * Forcer le traitement de la waitlist pour un event (staff only)
23658
+ * @param {string} eventId
23659
+ * @param {*} [options] Override http request option.
23660
+ * @throws {RequiredError}
23661
+ */
23662
+ processEventWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
23663
+ };
23664
+ /**
23665
+ * WaitListStaffApi - factory interface
23666
+ * @export
23667
+ */
23668
+ export declare const WaitListStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23669
+ /**
23670
+ * Obtenir la liste complète de la file d\'attente pour un booking (staff only)
23671
+ * @param {WaitListStaffApiGetBookingWaitListRequest} requestParameters Request parameters.
23672
+ * @param {*} [options] Override http request option.
23673
+ * @throws {RequiredError}
23674
+ */
23675
+ getBookingWaitList(requestParameters: WaitListStaffApiGetBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListListResponse>;
23676
+ /**
23677
+ * Obtenir la liste complète de la file d\'attente pour un eventBooking (staff only)
23678
+ * @param {WaitListStaffApiGetEventBookingWaitListRequest} requestParameters Request parameters.
23679
+ * @param {*} [options] Override http request option.
23680
+ * @throws {RequiredError}
23681
+ */
23682
+ getEventBookingWaitList(requestParameters: WaitListStaffApiGetEventBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListListResponse>;
23683
+ /**
23684
+ * Obtenir la liste complète de la file d\'attente pour un event (staff only)
23685
+ * @param {WaitListStaffApiGetEventWaitListRequest} requestParameters Request parameters.
23686
+ * @param {*} [options] Override http request option.
23687
+ * @throws {RequiredError}
23688
+ */
23689
+ getEventWaitList(requestParameters: WaitListStaffApiGetEventWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListListResponse>;
23690
+ /**
23691
+ * Forcer le traitement de la waitlist pour un booking (staff only)
23692
+ * @param {WaitListStaffApiProcessBookingWaitListRequest} requestParameters Request parameters.
23693
+ * @param {*} [options] Override http request option.
23694
+ * @throws {RequiredError}
23695
+ */
23696
+ processBookingWaitList(requestParameters: WaitListStaffApiProcessBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
23697
+ /**
23698
+ * Forcer le traitement de la waitlist pour un eventBooking (staff only)
23699
+ * @param {WaitListStaffApiProcessEventBookingWaitListRequest} requestParameters Request parameters.
23700
+ * @param {*} [options] Override http request option.
23701
+ * @throws {RequiredError}
23702
+ */
23703
+ processEventBookingWaitList(requestParameters: WaitListStaffApiProcessEventBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
23704
+ /**
23705
+ * Forcer le traitement de la waitlist pour un event (staff only)
23706
+ * @param {WaitListStaffApiProcessEventWaitListRequest} requestParameters Request parameters.
23707
+ * @param {*} [options] Override http request option.
23708
+ * @throws {RequiredError}
23709
+ */
23710
+ processEventWaitList(requestParameters: WaitListStaffApiProcessEventWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
23711
+ };
23712
+ /**
23713
+ * Request parameters for getBookingWaitList operation in WaitListStaffApi.
23714
+ * @export
23715
+ * @interface WaitListStaffApiGetBookingWaitListRequest
23716
+ */
23717
+ export interface WaitListStaffApiGetBookingWaitListRequest {
23718
+ /**
23719
+ *
23720
+ * @type {string}
23721
+ * @memberof WaitListStaffApiGetBookingWaitList
23722
+ */
23723
+ readonly bookingId: string;
23724
+ }
23725
+ /**
23726
+ * Request parameters for getEventBookingWaitList operation in WaitListStaffApi.
23727
+ * @export
23728
+ * @interface WaitListStaffApiGetEventBookingWaitListRequest
23729
+ */
23730
+ export interface WaitListStaffApiGetEventBookingWaitListRequest {
23731
+ /**
23732
+ *
23733
+ * @type {string}
23734
+ * @memberof WaitListStaffApiGetEventBookingWaitList
23735
+ */
23736
+ readonly eventBookingId: string;
23737
+ }
23738
+ /**
23739
+ * Request parameters for getEventWaitList operation in WaitListStaffApi.
23740
+ * @export
23741
+ * @interface WaitListStaffApiGetEventWaitListRequest
23742
+ */
23743
+ export interface WaitListStaffApiGetEventWaitListRequest {
23744
+ /**
23745
+ *
23746
+ * @type {string}
23747
+ * @memberof WaitListStaffApiGetEventWaitList
23748
+ */
23749
+ readonly eventId: string;
23750
+ }
23751
+ /**
23752
+ * Request parameters for processBookingWaitList operation in WaitListStaffApi.
23753
+ * @export
23754
+ * @interface WaitListStaffApiProcessBookingWaitListRequest
23755
+ */
23756
+ export interface WaitListStaffApiProcessBookingWaitListRequest {
23757
+ /**
23758
+ *
23759
+ * @type {string}
23760
+ * @memberof WaitListStaffApiProcessBookingWaitList
23761
+ */
23762
+ readonly bookingId: string;
23763
+ }
23764
+ /**
23765
+ * Request parameters for processEventBookingWaitList operation in WaitListStaffApi.
23766
+ * @export
23767
+ * @interface WaitListStaffApiProcessEventBookingWaitListRequest
23768
+ */
23769
+ export interface WaitListStaffApiProcessEventBookingWaitListRequest {
23770
+ /**
23771
+ *
23772
+ * @type {string}
23773
+ * @memberof WaitListStaffApiProcessEventBookingWaitList
23774
+ */
23775
+ readonly eventBookingId: string;
23776
+ }
23777
+ /**
23778
+ * Request parameters for processEventWaitList operation in WaitListStaffApi.
23779
+ * @export
23780
+ * @interface WaitListStaffApiProcessEventWaitListRequest
23781
+ */
23782
+ export interface WaitListStaffApiProcessEventWaitListRequest {
23783
+ /**
23784
+ *
23785
+ * @type {string}
23786
+ * @memberof WaitListStaffApiProcessEventWaitList
23787
+ */
23788
+ readonly eventId: string;
23789
+ }
23790
+ /**
23791
+ * WaitListStaffApi - object-oriented interface
23792
+ * @export
23793
+ * @class WaitListStaffApi
23794
+ * @extends {BaseAPI}
23795
+ */
23796
+ export declare class WaitListStaffApi extends BaseAPI {
23797
+ /**
23798
+ * Obtenir la liste complète de la file d\'attente pour un booking (staff only)
23799
+ * @param {WaitListStaffApiGetBookingWaitListRequest} requestParameters Request parameters.
23800
+ * @param {*} [options] Override http request option.
23801
+ * @throws {RequiredError}
23802
+ * @memberof WaitListStaffApi
23803
+ */
23804
+ getBookingWaitList(requestParameters: WaitListStaffApiGetBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListListResponse, any, {}>>;
23805
+ /**
23806
+ * Obtenir la liste complète de la file d\'attente pour un eventBooking (staff only)
23807
+ * @param {WaitListStaffApiGetEventBookingWaitListRequest} requestParameters Request parameters.
23808
+ * @param {*} [options] Override http request option.
23809
+ * @throws {RequiredError}
23810
+ * @memberof WaitListStaffApi
23811
+ */
23812
+ getEventBookingWaitList(requestParameters: WaitListStaffApiGetEventBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListListResponse, any, {}>>;
23813
+ /**
23814
+ * Obtenir la liste complète de la file d\'attente pour un event (staff only)
23815
+ * @param {WaitListStaffApiGetEventWaitListRequest} requestParameters Request parameters.
23816
+ * @param {*} [options] Override http request option.
23817
+ * @throws {RequiredError}
23818
+ * @memberof WaitListStaffApi
23819
+ */
23820
+ getEventWaitList(requestParameters: WaitListStaffApiGetEventWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListListResponse, any, {}>>;
23821
+ /**
23822
+ * Forcer le traitement de la waitlist pour un booking (staff only)
23823
+ * @param {WaitListStaffApiProcessBookingWaitListRequest} requestParameters Request parameters.
23824
+ * @param {*} [options] Override http request option.
23825
+ * @throws {RequiredError}
23826
+ * @memberof WaitListStaffApi
23827
+ */
23828
+ processBookingWaitList(requestParameters: WaitListStaffApiProcessBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23829
+ /**
23830
+ * Forcer le traitement de la waitlist pour un eventBooking (staff only)
23831
+ * @param {WaitListStaffApiProcessEventBookingWaitListRequest} requestParameters Request parameters.
23832
+ * @param {*} [options] Override http request option.
23833
+ * @throws {RequiredError}
23834
+ * @memberof WaitListStaffApi
23835
+ */
23836
+ processEventBookingWaitList(requestParameters: WaitListStaffApiProcessEventBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23837
+ /**
23838
+ * Forcer le traitement de la waitlist pour un event (staff only)
23839
+ * @param {WaitListStaffApiProcessEventWaitListRequest} requestParameters Request parameters.
23840
+ * @param {*} [options] Override http request option.
23841
+ * @throws {RequiredError}
23842
+ * @memberof WaitListStaffApi
23843
+ */
23844
+ processEventWaitList(requestParameters: WaitListStaffApiProcessEventWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
23120
23845
  }