@tennac-booking/sdk 1.0.174 → 1.0.175
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +6 -7
- package/README.md +19 -10
- package/api.ts +3292 -2482
- package/dist/api.d.ts +866 -461
- package/dist/api.js +2168 -1519
- package/dist/esm/api.d.ts +866 -461
- package/dist/esm/api.js +2277 -1628
- package/docs/BookingsApi.md +2 -2
- package/docs/ClubsManagerApi.md +6 -6
- package/docs/EventsApi.md +2 -2
- package/docs/{JoinWaitList200Response.md → JoinEventWaitList200Response.md} +3 -7
- package/docs/{RequestPasswordReset200Response.md → LeaveEventWaitList200Response.md} +3 -3
- package/docs/UsersApi.md +14 -14
- package/docs/WaitListApi.md +499 -0
- package/docs/{GetWaitListForEvent200Response.md → WaitListListResponse.md} +5 -5
- package/docs/{GetUserPosition200Response.md → WaitListPositionResponse.md} +5 -5
- package/docs/WaitListResponse.md +12 -6
- package/docs/WaitListStaffApi.md +331 -0
- package/package.json +1 -1
- package/docs/EventsWaitListApi.md +0 -175
- package/docs/EventsWaitListStaffApi.md +0 -115
- package/docs/JoinWaitListRequest.md +0 -22
package/dist/esm/api.d.ts
CHANGED
|
@@ -6235,44 +6235,6 @@ export interface GetSlotsByClubById200Response {
|
|
|
6235
6235
|
*/
|
|
6236
6236
|
'slots': Array<any>;
|
|
6237
6237
|
}
|
|
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
6238
|
/**
|
|
6277
6239
|
*
|
|
6278
6240
|
* @export
|
|
@@ -7237,6 +7199,25 @@ export interface JoinEventResponseOnsitePaymentsInner {
|
|
|
7237
7199
|
*/
|
|
7238
7200
|
'playerId': string;
|
|
7239
7201
|
}
|
|
7202
|
+
/**
|
|
7203
|
+
*
|
|
7204
|
+
* @export
|
|
7205
|
+
* @interface JoinEventWaitList200Response
|
|
7206
|
+
*/
|
|
7207
|
+
export interface JoinEventWaitList200Response {
|
|
7208
|
+
/**
|
|
7209
|
+
*
|
|
7210
|
+
* @type {WaitListResponse}
|
|
7211
|
+
* @memberof JoinEventWaitList200Response
|
|
7212
|
+
*/
|
|
7213
|
+
'waitList': WaitListResponse;
|
|
7214
|
+
/**
|
|
7215
|
+
*
|
|
7216
|
+
* @type {string}
|
|
7217
|
+
* @memberof JoinEventWaitList200Response
|
|
7218
|
+
*/
|
|
7219
|
+
'message': string;
|
|
7220
|
+
}
|
|
7240
7221
|
/**
|
|
7241
7222
|
*
|
|
7242
7223
|
* @export
|
|
@@ -7334,56 +7315,6 @@ export interface JoinOpenEventResponse {
|
|
|
7334
7315
|
*/
|
|
7335
7316
|
'invoices'?: Array<CheckInEventParticipants200ResponseInvoicesInner>;
|
|
7336
7317
|
}
|
|
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
7318
|
/**
|
|
7388
7319
|
*
|
|
7389
7320
|
* @export
|
|
@@ -7490,6 +7421,19 @@ export interface LeastBookedWeekdayResponse {
|
|
|
7490
7421
|
*/
|
|
7491
7422
|
'weekdayAverages': Array<WeekdayAverageItem>;
|
|
7492
7423
|
}
|
|
7424
|
+
/**
|
|
7425
|
+
*
|
|
7426
|
+
* @export
|
|
7427
|
+
* @interface LeaveEventWaitList200Response
|
|
7428
|
+
*/
|
|
7429
|
+
export interface LeaveEventWaitList200Response {
|
|
7430
|
+
/**
|
|
7431
|
+
*
|
|
7432
|
+
* @type {string}
|
|
7433
|
+
* @memberof LeaveEventWaitList200Response
|
|
7434
|
+
*/
|
|
7435
|
+
'message': string;
|
|
7436
|
+
}
|
|
7493
7437
|
/**
|
|
7494
7438
|
*
|
|
7495
7439
|
* @export
|
|
@@ -9536,19 +9480,6 @@ export interface RequestEmailCodeResponse {
|
|
|
9536
9480
|
*/
|
|
9537
9481
|
'alreadyVerified'?: boolean;
|
|
9538
9482
|
}
|
|
9539
|
-
/**
|
|
9540
|
-
*
|
|
9541
|
-
* @export
|
|
9542
|
-
* @interface RequestPasswordReset200Response
|
|
9543
|
-
*/
|
|
9544
|
-
export interface RequestPasswordReset200Response {
|
|
9545
|
-
/**
|
|
9546
|
-
*
|
|
9547
|
-
* @type {string}
|
|
9548
|
-
* @memberof RequestPasswordReset200Response
|
|
9549
|
-
*/
|
|
9550
|
-
'message': string;
|
|
9551
|
-
}
|
|
9552
9483
|
/**
|
|
9553
9484
|
*
|
|
9554
9485
|
* @export
|
|
@@ -12970,6 +12901,44 @@ export declare const VisibilityType: {
|
|
|
12970
12901
|
readonly Invitation: "invitation";
|
|
12971
12902
|
};
|
|
12972
12903
|
export type VisibilityType = typeof VisibilityType[keyof typeof VisibilityType];
|
|
12904
|
+
/**
|
|
12905
|
+
*
|
|
12906
|
+
* @export
|
|
12907
|
+
* @interface WaitListListResponse
|
|
12908
|
+
*/
|
|
12909
|
+
export interface WaitListListResponse {
|
|
12910
|
+
/**
|
|
12911
|
+
*
|
|
12912
|
+
* @type {Array<WaitListResponse>}
|
|
12913
|
+
* @memberof WaitListListResponse
|
|
12914
|
+
*/
|
|
12915
|
+
'waitList': Array<WaitListResponse>;
|
|
12916
|
+
/**
|
|
12917
|
+
*
|
|
12918
|
+
* @type {number}
|
|
12919
|
+
* @memberof WaitListListResponse
|
|
12920
|
+
*/
|
|
12921
|
+
'total': number;
|
|
12922
|
+
}
|
|
12923
|
+
/**
|
|
12924
|
+
*
|
|
12925
|
+
* @export
|
|
12926
|
+
* @interface WaitListPositionResponse
|
|
12927
|
+
*/
|
|
12928
|
+
export interface WaitListPositionResponse {
|
|
12929
|
+
/**
|
|
12930
|
+
*
|
|
12931
|
+
* @type {number}
|
|
12932
|
+
* @memberof WaitListPositionResponse
|
|
12933
|
+
*/
|
|
12934
|
+
'position': number | null;
|
|
12935
|
+
/**
|
|
12936
|
+
*
|
|
12937
|
+
* @type {string}
|
|
12938
|
+
* @memberof WaitListPositionResponse
|
|
12939
|
+
*/
|
|
12940
|
+
'message'?: string;
|
|
12941
|
+
}
|
|
12973
12942
|
/**
|
|
12974
12943
|
*
|
|
12975
12944
|
* @export
|
|
@@ -12987,13 +12956,25 @@ export interface WaitListResponse {
|
|
|
12987
12956
|
* @type {string}
|
|
12988
12957
|
* @memberof WaitListResponse
|
|
12989
12958
|
*/
|
|
12990
|
-
'
|
|
12959
|
+
'userId': string;
|
|
12991
12960
|
/**
|
|
12992
12961
|
*
|
|
12993
12962
|
* @type {string}
|
|
12994
12963
|
* @memberof WaitListResponse
|
|
12995
12964
|
*/
|
|
12996
|
-
'
|
|
12965
|
+
'clubId': string;
|
|
12966
|
+
/**
|
|
12967
|
+
*
|
|
12968
|
+
* @type {string}
|
|
12969
|
+
* @memberof WaitListResponse
|
|
12970
|
+
*/
|
|
12971
|
+
'targetType': WaitListResponseTargetTypeEnum;
|
|
12972
|
+
/**
|
|
12973
|
+
*
|
|
12974
|
+
* @type {string}
|
|
12975
|
+
* @memberof WaitListResponse
|
|
12976
|
+
*/
|
|
12977
|
+
'targetId': string;
|
|
12997
12978
|
/**
|
|
12998
12979
|
*
|
|
12999
12980
|
* @type {string}
|
|
@@ -13014,22 +12995,28 @@ export interface WaitListResponse {
|
|
|
13014
12995
|
'priceInCents': number;
|
|
13015
12996
|
/**
|
|
13016
12997
|
*
|
|
13017
|
-
* @type {
|
|
12998
|
+
* @type {string}
|
|
13018
12999
|
* @memberof WaitListResponse
|
|
13019
13000
|
*/
|
|
13020
|
-
'
|
|
13001
|
+
'joinedAt': string;
|
|
13021
13002
|
/**
|
|
13022
13003
|
*
|
|
13023
13004
|
* @type {string}
|
|
13024
13005
|
* @memberof WaitListResponse
|
|
13025
13006
|
*/
|
|
13026
|
-
'
|
|
13007
|
+
'notifiedAt'?: string;
|
|
13027
13008
|
/**
|
|
13028
13009
|
*
|
|
13029
13010
|
* @type {string}
|
|
13030
13011
|
* @memberof WaitListResponse
|
|
13031
13012
|
*/
|
|
13032
|
-
'
|
|
13013
|
+
'paymentExpiresAt'?: string;
|
|
13014
|
+
/**
|
|
13015
|
+
*
|
|
13016
|
+
* @type {string}
|
|
13017
|
+
* @memberof WaitListResponse
|
|
13018
|
+
*/
|
|
13019
|
+
'confirmedAt'?: string;
|
|
13033
13020
|
/**
|
|
13034
13021
|
*
|
|
13035
13022
|
* @type {string}
|
|
@@ -13037,6 +13024,12 @@ export interface WaitListResponse {
|
|
|
13037
13024
|
*/
|
|
13038
13025
|
'paymentLink'?: string;
|
|
13039
13026
|
}
|
|
13027
|
+
export declare const WaitListResponseTargetTypeEnum: {
|
|
13028
|
+
readonly Event: "event";
|
|
13029
|
+
readonly Booking: "booking";
|
|
13030
|
+
readonly EventBooking: "event_booking";
|
|
13031
|
+
};
|
|
13032
|
+
export type WaitListResponseTargetTypeEnum = typeof WaitListResponseTargetTypeEnum[keyof typeof WaitListResponseTargetTypeEnum];
|
|
13040
13033
|
/**
|
|
13041
13034
|
*
|
|
13042
13035
|
* @export
|
|
@@ -13294,7 +13287,7 @@ export declare const BookingsApiFp: (configuration?: Configuration) => {
|
|
|
13294
13287
|
* @param {*} [options] Override http request option.
|
|
13295
13288
|
* @throws {RequiredError}
|
|
13296
13289
|
*/
|
|
13297
|
-
leaveOpenBooking(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13290
|
+
leaveOpenBooking(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
13298
13291
|
};
|
|
13299
13292
|
/**
|
|
13300
13293
|
* BookingsApi - factory interface
|
|
@@ -13370,7 +13363,7 @@ export declare const BookingsApiFactory: (configuration?: Configuration, basePat
|
|
|
13370
13363
|
* @param {*} [options] Override http request option.
|
|
13371
13364
|
* @throws {RequiredError}
|
|
13372
13365
|
*/
|
|
13373
|
-
leaveOpenBooking(requestParameters: BookingsApiLeaveOpenBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13366
|
+
leaveOpenBooking(requestParameters: BookingsApiLeaveOpenBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
13374
13367
|
};
|
|
13375
13368
|
/**
|
|
13376
13369
|
* Request parameters for createGuestBooking operation in BookingsApi.
|
|
@@ -13660,7 +13653,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
13660
13653
|
* @throws {RequiredError}
|
|
13661
13654
|
* @memberof BookingsApi
|
|
13662
13655
|
*/
|
|
13663
|
-
leaveOpenBooking(requestParameters: BookingsApiLeaveOpenBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13656
|
+
leaveOpenBooking(requestParameters: BookingsApiLeaveOpenBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
13664
13657
|
}
|
|
13665
13658
|
/**
|
|
13666
13659
|
* BookingsManagerApi - axios parameter creator
|
|
@@ -17354,7 +17347,7 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
|
|
|
17354
17347
|
* @param {*} [options] Override http request option.
|
|
17355
17348
|
* @throws {RequiredError}
|
|
17356
17349
|
*/
|
|
17357
|
-
deleteActuality(actualityId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
17350
|
+
deleteActuality(actualityId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
17358
17351
|
/**
|
|
17359
17352
|
* Supprime un membre d\'un club
|
|
17360
17353
|
* @param {string} userId
|
|
@@ -17374,7 +17367,7 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
|
|
|
17374
17367
|
* @param {*} [options] Override http request option.
|
|
17375
17368
|
* @throws {RequiredError}
|
|
17376
17369
|
*/
|
|
17377
|
-
deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
17370
|
+
deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
17378
17371
|
/**
|
|
17379
17372
|
*
|
|
17380
17373
|
* @param {string} productId
|
|
@@ -17395,7 +17388,7 @@ export declare const ClubsManagerApiFp: (configuration?: Configuration) => {
|
|
|
17395
17388
|
* @param {*} [options] Override http request option.
|
|
17396
17389
|
* @throws {RequiredError}
|
|
17397
17390
|
*/
|
|
17398
|
-
restoreSubscriptionPlanForClub(productId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
17391
|
+
restoreSubscriptionPlanForClub(productId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
17399
17392
|
/**
|
|
17400
17393
|
*
|
|
17401
17394
|
* @param {string} priceId
|
|
@@ -17510,7 +17503,7 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
|
|
|
17510
17503
|
* @param {*} [options] Override http request option.
|
|
17511
17504
|
* @throws {RequiredError}
|
|
17512
17505
|
*/
|
|
17513
|
-
deleteActuality(requestParameters: ClubsManagerApiDeleteActualityRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
17506
|
+
deleteActuality(requestParameters: ClubsManagerApiDeleteActualityRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
17514
17507
|
/**
|
|
17515
17508
|
* Supprime un membre d\'un club
|
|
17516
17509
|
* @param {ClubsManagerApiDeleteClubMemberRequest} requestParameters Request parameters.
|
|
@@ -17530,7 +17523,7 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
|
|
|
17530
17523
|
* @param {*} [options] Override http request option.
|
|
17531
17524
|
* @throws {RequiredError}
|
|
17532
17525
|
*/
|
|
17533
|
-
deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
17526
|
+
deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
17534
17527
|
/**
|
|
17535
17528
|
*
|
|
17536
17529
|
* @param {ClubsManagerApiDeleteSubscriptionPlanForClubRequest} requestParameters Request parameters.
|
|
@@ -17551,7 +17544,7 @@ export declare const ClubsManagerApiFactory: (configuration?: Configuration, bas
|
|
|
17551
17544
|
* @param {*} [options] Override http request option.
|
|
17552
17545
|
* @throws {RequiredError}
|
|
17553
17546
|
*/
|
|
17554
|
-
restoreSubscriptionPlanForClub(requestParameters: ClubsManagerApiRestoreSubscriptionPlanForClubRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
17547
|
+
restoreSubscriptionPlanForClub(requestParameters: ClubsManagerApiRestoreSubscriptionPlanForClubRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
17555
17548
|
/**
|
|
17556
17549
|
*
|
|
17557
17550
|
* @param {ClubsManagerApiRestoreSubscriptionPriceForClubRequest} requestParameters Request parameters.
|
|
@@ -17961,7 +17954,7 @@ export declare class ClubsManagerApi extends BaseAPI {
|
|
|
17961
17954
|
* @throws {RequiredError}
|
|
17962
17955
|
* @memberof ClubsManagerApi
|
|
17963
17956
|
*/
|
|
17964
|
-
deleteActuality(requestParameters: ClubsManagerApiDeleteActualityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17957
|
+
deleteActuality(requestParameters: ClubsManagerApiDeleteActualityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
17965
17958
|
/**
|
|
17966
17959
|
* Supprime un membre d\'un club
|
|
17967
17960
|
* @param {ClubsManagerApiDeleteClubMemberRequest} requestParameters Request parameters.
|
|
@@ -17984,7 +17977,7 @@ export declare class ClubsManagerApi extends BaseAPI {
|
|
|
17984
17977
|
* @throws {RequiredError}
|
|
17985
17978
|
* @memberof ClubsManagerApi
|
|
17986
17979
|
*/
|
|
17987
|
-
deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17980
|
+
deleteSlotsByClubInRange(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
17988
17981
|
/**
|
|
17989
17982
|
*
|
|
17990
17983
|
* @param {ClubsManagerApiDeleteSubscriptionPlanForClubRequest} requestParameters Request parameters.
|
|
@@ -18008,7 +18001,7 @@ export declare class ClubsManagerApi extends BaseAPI {
|
|
|
18008
18001
|
* @throws {RequiredError}
|
|
18009
18002
|
* @memberof ClubsManagerApi
|
|
18010
18003
|
*/
|
|
18011
|
-
restoreSubscriptionPlanForClub(requestParameters: ClubsManagerApiRestoreSubscriptionPlanForClubRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
18004
|
+
restoreSubscriptionPlanForClub(requestParameters: ClubsManagerApiRestoreSubscriptionPlanForClubRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
18012
18005
|
/**
|
|
18013
18006
|
*
|
|
18014
18007
|
* @param {ClubsManagerApiRestoreSubscriptionPriceForClubRequest} requestParameters Request parameters.
|
|
@@ -18827,7 +18820,7 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
|
18827
18820
|
* @param {*} [options] Override http request option.
|
|
18828
18821
|
* @throws {RequiredError}
|
|
18829
18822
|
*/
|
|
18830
|
-
leaveOpenEventBooking(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
18823
|
+
leaveOpenEventBooking(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
18831
18824
|
};
|
|
18832
18825
|
/**
|
|
18833
18826
|
* EventsApi - factory interface
|
|
@@ -18910,7 +18903,7 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
|
18910
18903
|
* @param {*} [options] Override http request option.
|
|
18911
18904
|
* @throws {RequiredError}
|
|
18912
18905
|
*/
|
|
18913
|
-
leaveOpenEventBooking(requestParameters: EventsApiLeaveOpenEventBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
18906
|
+
leaveOpenEventBooking(requestParameters: EventsApiLeaveOpenEventBookingRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
18914
18907
|
};
|
|
18915
18908
|
/**
|
|
18916
18909
|
* Request parameters for checkTeamNameAvailability operation in EventsApi.
|
|
@@ -19209,7 +19202,7 @@ export declare class EventsApi extends BaseAPI {
|
|
|
19209
19202
|
* @throws {RequiredError}
|
|
19210
19203
|
* @memberof EventsApi
|
|
19211
19204
|
*/
|
|
19212
|
-
leaveOpenEventBooking(requestParameters: EventsApiLeaveOpenEventBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19205
|
+
leaveOpenEventBooking(requestParameters: EventsApiLeaveOpenEventBookingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
19213
19206
|
}
|
|
19214
19207
|
/**
|
|
19215
19208
|
* @export
|
|
@@ -20073,385 +20066,115 @@ export declare const GetWeeklyEventsTypeEnum: {
|
|
|
20073
20066
|
};
|
|
20074
20067
|
export type GetWeeklyEventsTypeEnum = typeof GetWeeklyEventsTypeEnum[keyof typeof GetWeeklyEventsTypeEnum];
|
|
20075
20068
|
/**
|
|
20076
|
-
*
|
|
20069
|
+
* ImagesApi - axios parameter creator
|
|
20077
20070
|
* @export
|
|
20078
20071
|
*/
|
|
20079
|
-
export declare const
|
|
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>;
|
|
20072
|
+
export declare const ImagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20095
20073
|
/**
|
|
20096
|
-
*
|
|
20097
|
-
* @param {
|
|
20074
|
+
*
|
|
20075
|
+
* @param {ImageCleanupRequestBody} imageCleanupRequestBody
|
|
20098
20076
|
* @param {*} [options] Override http request option.
|
|
20099
20077
|
* @throws {RequiredError}
|
|
20100
20078
|
*/
|
|
20101
|
-
|
|
20079
|
+
cleanupImages: (imageCleanupRequestBody: ImageCleanupRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20102
20080
|
};
|
|
20103
20081
|
/**
|
|
20104
|
-
*
|
|
20082
|
+
* ImagesApi - functional programming interface
|
|
20105
20083
|
* @export
|
|
20106
20084
|
*/
|
|
20107
|
-
export declare const
|
|
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>>;
|
|
20085
|
+
export declare const ImagesApiFp: (configuration?: Configuration) => {
|
|
20123
20086
|
/**
|
|
20124
|
-
*
|
|
20125
|
-
* @param {
|
|
20087
|
+
*
|
|
20088
|
+
* @param {ImageCleanupRequestBody} imageCleanupRequestBody
|
|
20126
20089
|
* @param {*} [options] Override http request option.
|
|
20127
20090
|
* @throws {RequiredError}
|
|
20128
20091
|
*/
|
|
20129
|
-
|
|
20092
|
+
cleanupImages(imageCleanupRequestBody: ImageCleanupRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImageCleanupResponse>>;
|
|
20130
20093
|
};
|
|
20131
20094
|
/**
|
|
20132
|
-
*
|
|
20095
|
+
* ImagesApi - factory interface
|
|
20133
20096
|
* @export
|
|
20134
20097
|
*/
|
|
20135
|
-
export declare const
|
|
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>;
|
|
20098
|
+
export declare const ImagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
20150
20099
|
/**
|
|
20151
|
-
*
|
|
20152
|
-
* @param {
|
|
20100
|
+
*
|
|
20101
|
+
* @param {ImagesApiCleanupImagesRequest} requestParameters Request parameters.
|
|
20153
20102
|
* @param {*} [options] Override http request option.
|
|
20154
20103
|
* @throws {RequiredError}
|
|
20155
20104
|
*/
|
|
20156
|
-
|
|
20105
|
+
cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImageCleanupResponse>;
|
|
20157
20106
|
};
|
|
20158
20107
|
/**
|
|
20159
|
-
* Request parameters for
|
|
20108
|
+
* Request parameters for cleanupImages operation in ImagesApi.
|
|
20160
20109
|
* @export
|
|
20161
|
-
* @interface
|
|
20110
|
+
* @interface ImagesApiCleanupImagesRequest
|
|
20162
20111
|
*/
|
|
20163
|
-
export interface
|
|
20112
|
+
export interface ImagesApiCleanupImagesRequest {
|
|
20164
20113
|
/**
|
|
20165
20114
|
*
|
|
20166
|
-
* @type {
|
|
20167
|
-
* @memberof
|
|
20115
|
+
* @type {ImageCleanupRequestBody}
|
|
20116
|
+
* @memberof ImagesApiCleanupImages
|
|
20168
20117
|
*/
|
|
20169
|
-
readonly
|
|
20118
|
+
readonly imageCleanupRequestBody: ImageCleanupRequestBody;
|
|
20170
20119
|
}
|
|
20171
20120
|
/**
|
|
20172
|
-
*
|
|
20121
|
+
* ImagesApi - object-oriented interface
|
|
20173
20122
|
* @export
|
|
20174
|
-
* @
|
|
20123
|
+
* @class ImagesApi
|
|
20124
|
+
* @extends {BaseAPI}
|
|
20175
20125
|
*/
|
|
20176
|
-
export
|
|
20177
|
-
/**
|
|
20178
|
-
*
|
|
20179
|
-
* @type {string}
|
|
20180
|
-
* @memberof EventsWaitListApiJoinWaitList
|
|
20181
|
-
*/
|
|
20182
|
-
readonly eventId: string;
|
|
20126
|
+
export declare class ImagesApi extends BaseAPI {
|
|
20183
20127
|
/**
|
|
20184
20128
|
*
|
|
20185
|
-
* @
|
|
20186
|
-
* @
|
|
20129
|
+
* @param {ImagesApiCleanupImagesRequest} requestParameters Request parameters.
|
|
20130
|
+
* @param {*} [options] Override http request option.
|
|
20131
|
+
* @throws {RequiredError}
|
|
20132
|
+
* @memberof ImagesApi
|
|
20187
20133
|
*/
|
|
20188
|
-
|
|
20134
|
+
cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageCleanupResponse, any, {}>>;
|
|
20189
20135
|
}
|
|
20190
20136
|
/**
|
|
20191
|
-
*
|
|
20137
|
+
* PublicEmailApi - axios parameter creator
|
|
20192
20138
|
* @export
|
|
20193
|
-
* @interface EventsWaitListApiLeaveWaitListRequest
|
|
20194
20139
|
*/
|
|
20195
|
-
export
|
|
20140
|
+
export declare const PublicEmailApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20196
20141
|
/**
|
|
20197
20142
|
*
|
|
20198
|
-
* @
|
|
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.
|
|
20143
|
+
* @param {EmailExistsRequestBody} emailExistsRequestBody
|
|
20213
20144
|
* @param {*} [options] Override http request option.
|
|
20214
20145
|
* @throws {RequiredError}
|
|
20215
|
-
* @memberof EventsWaitListApi
|
|
20216
20146
|
*/
|
|
20217
|
-
|
|
20147
|
+
authEmailExists: (emailExistsRequestBody: EmailExistsRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20218
20148
|
/**
|
|
20219
|
-
*
|
|
20220
|
-
* @param {
|
|
20149
|
+
*
|
|
20150
|
+
* @param {RequestEmailCodeBody} requestEmailCodeBody
|
|
20221
20151
|
* @param {*} [options] Override http request option.
|
|
20222
20152
|
* @throws {RequiredError}
|
|
20223
|
-
* @memberof EventsWaitListApi
|
|
20224
20153
|
*/
|
|
20225
|
-
|
|
20154
|
+
requestVerificationCode: (requestEmailCodeBody: RequestEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20226
20155
|
/**
|
|
20227
|
-
*
|
|
20228
|
-
* @param {
|
|
20156
|
+
*
|
|
20157
|
+
* @param {VerifyEmailCodeBody} verifyEmailCodeBody
|
|
20229
20158
|
* @param {*} [options] Override http request option.
|
|
20230
20159
|
* @throws {RequiredError}
|
|
20231
|
-
* @memberof EventsWaitListApi
|
|
20232
20160
|
*/
|
|
20233
|
-
|
|
20234
|
-
}
|
|
20161
|
+
verifyCode: (verifyEmailCodeBody: VerifyEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20162
|
+
};
|
|
20235
20163
|
/**
|
|
20236
|
-
*
|
|
20164
|
+
* PublicEmailApi - functional programming interface
|
|
20237
20165
|
* @export
|
|
20238
20166
|
*/
|
|
20239
|
-
export declare const
|
|
20167
|
+
export declare const PublicEmailApiFp: (configuration?: Configuration) => {
|
|
20240
20168
|
/**
|
|
20241
|
-
*
|
|
20242
|
-
* @param {
|
|
20169
|
+
*
|
|
20170
|
+
* @param {EmailExistsRequestBody} emailExistsRequestBody
|
|
20243
20171
|
* @param {*} [options] Override http request option.
|
|
20244
20172
|
* @throws {RequiredError}
|
|
20245
20173
|
*/
|
|
20246
|
-
|
|
20174
|
+
authEmailExists(emailExistsRequestBody: EmailExistsRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailExistsResponse>>;
|
|
20247
20175
|
/**
|
|
20248
|
-
*
|
|
20249
|
-
* @param {
|
|
20250
|
-
* @param {*} [options] Override http request option.
|
|
20251
|
-
* @throws {RequiredError}
|
|
20252
|
-
*/
|
|
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) => {
|
|
20260
|
-
/**
|
|
20261
|
-
* Obtenir la liste complète de la file d\'attente (staff only)
|
|
20262
|
-
* @param {string} eventId
|
|
20263
|
-
* @param {*} [options] Override http request option.
|
|
20264
|
-
* @throws {RequiredError}
|
|
20265
|
-
*/
|
|
20266
|
-
getWaitListForEvent(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetWaitListForEvent200Response>>;
|
|
20267
|
-
/**
|
|
20268
|
-
* Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
|
|
20269
|
-
* @param {string} eventId
|
|
20270
|
-
* @param {*} [options] Override http request option.
|
|
20271
|
-
* @throws {RequiredError}
|
|
20272
|
-
*/
|
|
20273
|
-
processWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
|
|
20274
|
-
};
|
|
20275
|
-
/**
|
|
20276
|
-
* EventsWaitListStaffApi - factory interface
|
|
20277
|
-
* @export
|
|
20278
|
-
*/
|
|
20279
|
-
export declare const EventsWaitListStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
20280
|
-
/**
|
|
20281
|
-
* Obtenir la liste complète de la file d\'attente (staff only)
|
|
20282
|
-
* @param {EventsWaitListStaffApiGetWaitListForEventRequest} requestParameters Request parameters.
|
|
20283
|
-
* @param {*} [options] Override http request option.
|
|
20284
|
-
* @throws {RequiredError}
|
|
20285
|
-
*/
|
|
20286
|
-
getWaitListForEvent(requestParameters: EventsWaitListStaffApiGetWaitListForEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetWaitListForEvent200Response>;
|
|
20287
|
-
/**
|
|
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.
|
|
20290
|
-
* @param {*} [options] Override http request option.
|
|
20291
|
-
* @throws {RequiredError}
|
|
20292
|
-
*/
|
|
20293
|
-
processWaitList(requestParameters: EventsWaitListStaffApiProcessWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
|
|
20294
|
-
};
|
|
20295
|
-
/**
|
|
20296
|
-
* Request parameters for getWaitListForEvent operation in EventsWaitListStaffApi.
|
|
20297
|
-
* @export
|
|
20298
|
-
* @interface EventsWaitListStaffApiGetWaitListForEventRequest
|
|
20299
|
-
*/
|
|
20300
|
-
export interface EventsWaitListStaffApiGetWaitListForEventRequest {
|
|
20301
|
-
/**
|
|
20302
|
-
*
|
|
20303
|
-
* @type {string}
|
|
20304
|
-
* @memberof EventsWaitListStaffApiGetWaitListForEvent
|
|
20305
|
-
*/
|
|
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
|
|
20176
|
+
*
|
|
20177
|
+
* @param {RequestEmailCodeBody} requestEmailCodeBody
|
|
20455
20178
|
* @param {*} [options] Override http request option.
|
|
20456
20179
|
* @throws {RequiredError}
|
|
20457
20180
|
*/
|
|
@@ -21710,7 +21433,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
21710
21433
|
* @param {*} [options] Override http request option.
|
|
21711
21434
|
* @throws {RequiredError}
|
|
21712
21435
|
*/
|
|
21713
|
-
addOrganization(addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21436
|
+
addOrganization(addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
21714
21437
|
/**
|
|
21715
21438
|
*
|
|
21716
21439
|
* @param {ChangePasswordRequestBody} changePasswordRequestBody
|
|
@@ -21918,27 +21641,27 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
21918
21641
|
* @param {*} [options] Override http request option.
|
|
21919
21642
|
* @throws {RequiredError}
|
|
21920
21643
|
*/
|
|
21921
|
-
removeOrganization(addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21644
|
+
removeOrganization(addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
21922
21645
|
/**
|
|
21923
21646
|
*
|
|
21924
21647
|
* @param {*} [options] Override http request option.
|
|
21925
21648
|
* @throws {RequiredError}
|
|
21926
21649
|
*/
|
|
21927
|
-
requestEmailVerification(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21650
|
+
requestEmailVerification(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
21928
21651
|
/**
|
|
21929
21652
|
*
|
|
21930
21653
|
* @param {PasswordResetRequestBody} passwordResetRequestBody
|
|
21931
21654
|
* @param {*} [options] Override http request option.
|
|
21932
21655
|
* @throws {RequiredError}
|
|
21933
21656
|
*/
|
|
21934
|
-
requestPasswordReset(passwordResetRequestBody: PasswordResetRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21657
|
+
requestPasswordReset(passwordResetRequestBody: PasswordResetRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
21935
21658
|
/**
|
|
21936
21659
|
*
|
|
21937
21660
|
* @param {ResetPasswordRequest} resetPasswordRequest
|
|
21938
21661
|
* @param {*} [options] Override http request option.
|
|
21939
21662
|
* @throws {RequiredError}
|
|
21940
21663
|
*/
|
|
21941
|
-
resetPassword(resetPasswordRequest: ResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21664
|
+
resetPassword(resetPasswordRequest: ResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
21942
21665
|
/**
|
|
21943
21666
|
*
|
|
21944
21667
|
* @param {GoogleAuthRequestBody} googleAuthRequestBody
|
|
@@ -21980,14 +21703,14 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
21980
21703
|
* @param {*} [options] Override http request option.
|
|
21981
21704
|
* @throws {RequiredError}
|
|
21982
21705
|
*/
|
|
21983
|
-
verifyEmail(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21706
|
+
verifyEmail(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
21984
21707
|
/**
|
|
21985
21708
|
*
|
|
21986
21709
|
* @param {VerifyEmailRequest} verifyEmailRequest
|
|
21987
21710
|
* @param {*} [options] Override http request option.
|
|
21988
21711
|
* @throws {RequiredError}
|
|
21989
21712
|
*/
|
|
21990
|
-
verifyOrganization(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21713
|
+
verifyOrganization(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
21991
21714
|
};
|
|
21992
21715
|
/**
|
|
21993
21716
|
* UsersApi - factory interface
|
|
@@ -22014,7 +21737,7 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
22014
21737
|
* @param {*} [options] Override http request option.
|
|
22015
21738
|
* @throws {RequiredError}
|
|
22016
21739
|
*/
|
|
22017
|
-
addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21740
|
+
addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
22018
21741
|
/**
|
|
22019
21742
|
*
|
|
22020
21743
|
* @param {UsersApiChangePasswordRequest} requestParameters Request parameters.
|
|
@@ -22203,27 +21926,27 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
22203
21926
|
* @param {*} [options] Override http request option.
|
|
22204
21927
|
* @throws {RequiredError}
|
|
22205
21928
|
*/
|
|
22206
|
-
removeOrganization(requestParameters: UsersApiRemoveOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21929
|
+
removeOrganization(requestParameters: UsersApiRemoveOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
22207
21930
|
/**
|
|
22208
21931
|
*
|
|
22209
21932
|
* @param {*} [options] Override http request option.
|
|
22210
21933
|
* @throws {RequiredError}
|
|
22211
21934
|
*/
|
|
22212
|
-
requestEmailVerification(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21935
|
+
requestEmailVerification(options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
22213
21936
|
/**
|
|
22214
21937
|
*
|
|
22215
21938
|
* @param {UsersApiRequestPasswordResetRequest} requestParameters Request parameters.
|
|
22216
21939
|
* @param {*} [options] Override http request option.
|
|
22217
21940
|
* @throws {RequiredError}
|
|
22218
21941
|
*/
|
|
22219
|
-
requestPasswordReset(requestParameters: UsersApiRequestPasswordResetRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21942
|
+
requestPasswordReset(requestParameters: UsersApiRequestPasswordResetRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
22220
21943
|
/**
|
|
22221
21944
|
*
|
|
22222
21945
|
* @param {UsersApiResetPasswordRequest} requestParameters Request parameters.
|
|
22223
21946
|
* @param {*} [options] Override http request option.
|
|
22224
21947
|
* @throws {RequiredError}
|
|
22225
21948
|
*/
|
|
22226
|
-
resetPassword(requestParameters: UsersApiResetPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21949
|
+
resetPassword(requestParameters: UsersApiResetPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
22227
21950
|
/**
|
|
22228
21951
|
*
|
|
22229
21952
|
* @param {UsersApiSignInOrSignUpWithGoogleRequest} requestParameters Request parameters.
|
|
@@ -22265,14 +21988,14 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
22265
21988
|
* @param {*} [options] Override http request option.
|
|
22266
21989
|
* @throws {RequiredError}
|
|
22267
21990
|
*/
|
|
22268
|
-
verifyEmail(requestParameters: UsersApiVerifyEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21991
|
+
verifyEmail(requestParameters: UsersApiVerifyEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
22269
21992
|
/**
|
|
22270
21993
|
*
|
|
22271
21994
|
* @param {UsersApiVerifyOrganizationRequest} requestParameters Request parameters.
|
|
22272
21995
|
* @param {*} [options] Override http request option.
|
|
22273
21996
|
* @throws {RequiredError}
|
|
22274
21997
|
*/
|
|
22275
|
-
verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21998
|
+
verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
22276
21999
|
};
|
|
22277
22000
|
/**
|
|
22278
22001
|
* Request parameters for addFavoriteClub operation in UsersApi.
|
|
@@ -22821,7 +22544,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
22821
22544
|
* @throws {RequiredError}
|
|
22822
22545
|
* @memberof UsersApi
|
|
22823
22546
|
*/
|
|
22824
|
-
addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
22547
|
+
addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
22825
22548
|
/**
|
|
22826
22549
|
*
|
|
22827
22550
|
* @param {UsersApiChangePasswordRequest} requestParameters Request parameters.
|
|
@@ -23037,14 +22760,14 @@ export declare class UsersApi extends BaseAPI {
|
|
|
23037
22760
|
* @throws {RequiredError}
|
|
23038
22761
|
* @memberof UsersApi
|
|
23039
22762
|
*/
|
|
23040
|
-
removeOrganization(requestParameters: UsersApiRemoveOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
22763
|
+
removeOrganization(requestParameters: UsersApiRemoveOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23041
22764
|
/**
|
|
23042
22765
|
*
|
|
23043
22766
|
* @param {*} [options] Override http request option.
|
|
23044
22767
|
* @throws {RequiredError}
|
|
23045
22768
|
* @memberof UsersApi
|
|
23046
22769
|
*/
|
|
23047
|
-
requestEmailVerification(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
22770
|
+
requestEmailVerification(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23048
22771
|
/**
|
|
23049
22772
|
*
|
|
23050
22773
|
* @param {UsersApiRequestPasswordResetRequest} requestParameters Request parameters.
|
|
@@ -23052,7 +22775,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
23052
22775
|
* @throws {RequiredError}
|
|
23053
22776
|
* @memberof UsersApi
|
|
23054
22777
|
*/
|
|
23055
|
-
requestPasswordReset(requestParameters: UsersApiRequestPasswordResetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
22778
|
+
requestPasswordReset(requestParameters: UsersApiRequestPasswordResetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23056
22779
|
/**
|
|
23057
22780
|
*
|
|
23058
22781
|
* @param {UsersApiResetPasswordRequest} requestParameters Request parameters.
|
|
@@ -23060,7 +22783,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
23060
22783
|
* @throws {RequiredError}
|
|
23061
22784
|
* @memberof UsersApi
|
|
23062
22785
|
*/
|
|
23063
|
-
resetPassword(requestParameters: UsersApiResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
22786
|
+
resetPassword(requestParameters: UsersApiResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23064
22787
|
/**
|
|
23065
22788
|
*
|
|
23066
22789
|
* @param {UsersApiSignInOrSignUpWithGoogleRequest} requestParameters Request parameters.
|
|
@@ -23108,7 +22831,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
23108
22831
|
* @throws {RequiredError}
|
|
23109
22832
|
* @memberof UsersApi
|
|
23110
22833
|
*/
|
|
23111
|
-
verifyEmail(requestParameters: UsersApiVerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
22834
|
+
verifyEmail(requestParameters: UsersApiVerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23112
22835
|
/**
|
|
23113
22836
|
*
|
|
23114
22837
|
* @param {UsersApiVerifyOrganizationRequest} requestParameters Request parameters.
|
|
@@ -23116,5 +22839,687 @@ export declare class UsersApi extends BaseAPI {
|
|
|
23116
22839
|
* @throws {RequiredError}
|
|
23117
22840
|
* @memberof UsersApi
|
|
23118
22841
|
*/
|
|
23119
|
-
verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
22842
|
+
verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
22843
|
+
}
|
|
22844
|
+
/**
|
|
22845
|
+
* WaitListApi - axios parameter creator
|
|
22846
|
+
* @export
|
|
22847
|
+
*/
|
|
22848
|
+
export declare const WaitListApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22849
|
+
/**
|
|
22850
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un booking
|
|
22851
|
+
* @param {string} bookingId
|
|
22852
|
+
* @param {*} [options] Override http request option.
|
|
22853
|
+
* @throws {RequiredError}
|
|
22854
|
+
*/
|
|
22855
|
+
getBookingPosition: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22856
|
+
/**
|
|
22857
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un eventBooking
|
|
22858
|
+
* @param {string} eventBookingId
|
|
22859
|
+
* @param {*} [options] Override http request option.
|
|
22860
|
+
* @throws {RequiredError}
|
|
22861
|
+
*/
|
|
22862
|
+
getEventBookingPosition: (eventBookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22863
|
+
/**
|
|
22864
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un event
|
|
22865
|
+
* @param {string} eventId
|
|
22866
|
+
* @param {*} [options] Override http request option.
|
|
22867
|
+
* @throws {RequiredError}
|
|
22868
|
+
*/
|
|
22869
|
+
getEventPosition: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22870
|
+
/**
|
|
22871
|
+
* Rejoindre la file d\'attente pour un booking (créneau ouvert)
|
|
22872
|
+
* @param {string} bookingId
|
|
22873
|
+
* @param {*} [options] Override http request option.
|
|
22874
|
+
* @throws {RequiredError}
|
|
22875
|
+
*/
|
|
22876
|
+
joinBookingWaitList: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22877
|
+
/**
|
|
22878
|
+
* Rejoindre la file d\'attente pour un eventBooking (event en équipe avec créneau ouvert)
|
|
22879
|
+
* @param {string} eventBookingId
|
|
22880
|
+
* @param {*} [options] Override http request option.
|
|
22881
|
+
* @throws {RequiredError}
|
|
22882
|
+
*/
|
|
22883
|
+
joinEventBookingWaitList: (eventBookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22884
|
+
/**
|
|
22885
|
+
* Rejoindre la file d\'attente pour un event (participation solo)
|
|
22886
|
+
* @param {string} eventId
|
|
22887
|
+
* @param {*} [options] Override http request option.
|
|
22888
|
+
* @throws {RequiredError}
|
|
22889
|
+
*/
|
|
22890
|
+
joinEventWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22891
|
+
/**
|
|
22892
|
+
* Quitter la file d\'attente d\'un booking
|
|
22893
|
+
* @param {string} bookingId
|
|
22894
|
+
* @param {*} [options] Override http request option.
|
|
22895
|
+
* @throws {RequiredError}
|
|
22896
|
+
*/
|
|
22897
|
+
leaveBookingWaitList: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22898
|
+
/**
|
|
22899
|
+
* Quitter la file d\'attente d\'un eventBooking
|
|
22900
|
+
* @param {string} eventBookingId
|
|
22901
|
+
* @param {*} [options] Override http request option.
|
|
22902
|
+
* @throws {RequiredError}
|
|
22903
|
+
*/
|
|
22904
|
+
leaveEventBookingWaitList: (eventBookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22905
|
+
/**
|
|
22906
|
+
* Quitter la file d\'attente d\'un event
|
|
22907
|
+
* @param {string} eventId
|
|
22908
|
+
* @param {*} [options] Override http request option.
|
|
22909
|
+
* @throws {RequiredError}
|
|
22910
|
+
*/
|
|
22911
|
+
leaveEventWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22912
|
+
};
|
|
22913
|
+
/**
|
|
22914
|
+
* WaitListApi - functional programming interface
|
|
22915
|
+
* @export
|
|
22916
|
+
*/
|
|
22917
|
+
export declare const WaitListApiFp: (configuration?: Configuration) => {
|
|
22918
|
+
/**
|
|
22919
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un booking
|
|
22920
|
+
* @param {string} bookingId
|
|
22921
|
+
* @param {*} [options] Override http request option.
|
|
22922
|
+
* @throws {RequiredError}
|
|
22923
|
+
*/
|
|
22924
|
+
getBookingPosition(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListPositionResponse>>;
|
|
22925
|
+
/**
|
|
22926
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un eventBooking
|
|
22927
|
+
* @param {string} eventBookingId
|
|
22928
|
+
* @param {*} [options] Override http request option.
|
|
22929
|
+
* @throws {RequiredError}
|
|
22930
|
+
*/
|
|
22931
|
+
getEventBookingPosition(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListPositionResponse>>;
|
|
22932
|
+
/**
|
|
22933
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un event
|
|
22934
|
+
* @param {string} eventId
|
|
22935
|
+
* @param {*} [options] Override http request option.
|
|
22936
|
+
* @throws {RequiredError}
|
|
22937
|
+
*/
|
|
22938
|
+
getEventPosition(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListPositionResponse>>;
|
|
22939
|
+
/**
|
|
22940
|
+
* Rejoindre la file d\'attente pour un booking (créneau ouvert)
|
|
22941
|
+
* @param {string} bookingId
|
|
22942
|
+
* @param {*} [options] Override http request option.
|
|
22943
|
+
* @throws {RequiredError}
|
|
22944
|
+
*/
|
|
22945
|
+
joinBookingWaitList(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinEventWaitList200Response>>;
|
|
22946
|
+
/**
|
|
22947
|
+
* Rejoindre la file d\'attente pour un eventBooking (event en équipe avec créneau ouvert)
|
|
22948
|
+
* @param {string} eventBookingId
|
|
22949
|
+
* @param {*} [options] Override http request option.
|
|
22950
|
+
* @throws {RequiredError}
|
|
22951
|
+
*/
|
|
22952
|
+
joinEventBookingWaitList(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinEventWaitList200Response>>;
|
|
22953
|
+
/**
|
|
22954
|
+
* Rejoindre la file d\'attente pour un event (participation solo)
|
|
22955
|
+
* @param {string} eventId
|
|
22956
|
+
* @param {*} [options] Override http request option.
|
|
22957
|
+
* @throws {RequiredError}
|
|
22958
|
+
*/
|
|
22959
|
+
joinEventWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinEventWaitList200Response>>;
|
|
22960
|
+
/**
|
|
22961
|
+
* Quitter la file d\'attente d\'un booking
|
|
22962
|
+
* @param {string} bookingId
|
|
22963
|
+
* @param {*} [options] Override http request option.
|
|
22964
|
+
* @throws {RequiredError}
|
|
22965
|
+
*/
|
|
22966
|
+
leaveBookingWaitList(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
22967
|
+
/**
|
|
22968
|
+
* Quitter la file d\'attente d\'un eventBooking
|
|
22969
|
+
* @param {string} eventBookingId
|
|
22970
|
+
* @param {*} [options] Override http request option.
|
|
22971
|
+
* @throws {RequiredError}
|
|
22972
|
+
*/
|
|
22973
|
+
leaveEventBookingWaitList(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
22974
|
+
/**
|
|
22975
|
+
* Quitter la file d\'attente d\'un event
|
|
22976
|
+
* @param {string} eventId
|
|
22977
|
+
* @param {*} [options] Override http request option.
|
|
22978
|
+
* @throws {RequiredError}
|
|
22979
|
+
*/
|
|
22980
|
+
leaveEventWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
22981
|
+
};
|
|
22982
|
+
/**
|
|
22983
|
+
* WaitListApi - factory interface
|
|
22984
|
+
* @export
|
|
22985
|
+
*/
|
|
22986
|
+
export declare const WaitListApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
22987
|
+
/**
|
|
22988
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un booking
|
|
22989
|
+
* @param {WaitListApiGetBookingPositionRequest} requestParameters Request parameters.
|
|
22990
|
+
* @param {*} [options] Override http request option.
|
|
22991
|
+
* @throws {RequiredError}
|
|
22992
|
+
*/
|
|
22993
|
+
getBookingPosition(requestParameters: WaitListApiGetBookingPositionRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListPositionResponse>;
|
|
22994
|
+
/**
|
|
22995
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un eventBooking
|
|
22996
|
+
* @param {WaitListApiGetEventBookingPositionRequest} requestParameters Request parameters.
|
|
22997
|
+
* @param {*} [options] Override http request option.
|
|
22998
|
+
* @throws {RequiredError}
|
|
22999
|
+
*/
|
|
23000
|
+
getEventBookingPosition(requestParameters: WaitListApiGetEventBookingPositionRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListPositionResponse>;
|
|
23001
|
+
/**
|
|
23002
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un event
|
|
23003
|
+
* @param {WaitListApiGetEventPositionRequest} requestParameters Request parameters.
|
|
23004
|
+
* @param {*} [options] Override http request option.
|
|
23005
|
+
* @throws {RequiredError}
|
|
23006
|
+
*/
|
|
23007
|
+
getEventPosition(requestParameters: WaitListApiGetEventPositionRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListPositionResponse>;
|
|
23008
|
+
/**
|
|
23009
|
+
* Rejoindre la file d\'attente pour un booking (créneau ouvert)
|
|
23010
|
+
* @param {WaitListApiJoinBookingWaitListRequest} requestParameters Request parameters.
|
|
23011
|
+
* @param {*} [options] Override http request option.
|
|
23012
|
+
* @throws {RequiredError}
|
|
23013
|
+
*/
|
|
23014
|
+
joinBookingWaitList(requestParameters: WaitListApiJoinBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JoinEventWaitList200Response>;
|
|
23015
|
+
/**
|
|
23016
|
+
* Rejoindre la file d\'attente pour un eventBooking (event en équipe avec créneau ouvert)
|
|
23017
|
+
* @param {WaitListApiJoinEventBookingWaitListRequest} requestParameters Request parameters.
|
|
23018
|
+
* @param {*} [options] Override http request option.
|
|
23019
|
+
* @throws {RequiredError}
|
|
23020
|
+
*/
|
|
23021
|
+
joinEventBookingWaitList(requestParameters: WaitListApiJoinEventBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JoinEventWaitList200Response>;
|
|
23022
|
+
/**
|
|
23023
|
+
* Rejoindre la file d\'attente pour un event (participation solo)
|
|
23024
|
+
* @param {WaitListApiJoinEventWaitListRequest} requestParameters Request parameters.
|
|
23025
|
+
* @param {*} [options] Override http request option.
|
|
23026
|
+
* @throws {RequiredError}
|
|
23027
|
+
*/
|
|
23028
|
+
joinEventWaitList(requestParameters: WaitListApiJoinEventWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JoinEventWaitList200Response>;
|
|
23029
|
+
/**
|
|
23030
|
+
* Quitter la file d\'attente d\'un booking
|
|
23031
|
+
* @param {WaitListApiLeaveBookingWaitListRequest} requestParameters Request parameters.
|
|
23032
|
+
* @param {*} [options] Override http request option.
|
|
23033
|
+
* @throws {RequiredError}
|
|
23034
|
+
*/
|
|
23035
|
+
leaveBookingWaitList(requestParameters: WaitListApiLeaveBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
23036
|
+
/**
|
|
23037
|
+
* Quitter la file d\'attente d\'un eventBooking
|
|
23038
|
+
* @param {WaitListApiLeaveEventBookingWaitListRequest} requestParameters Request parameters.
|
|
23039
|
+
* @param {*} [options] Override http request option.
|
|
23040
|
+
* @throws {RequiredError}
|
|
23041
|
+
*/
|
|
23042
|
+
leaveEventBookingWaitList(requestParameters: WaitListApiLeaveEventBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
23043
|
+
/**
|
|
23044
|
+
* Quitter la file d\'attente d\'un event
|
|
23045
|
+
* @param {WaitListApiLeaveEventWaitListRequest} requestParameters Request parameters.
|
|
23046
|
+
* @param {*} [options] Override http request option.
|
|
23047
|
+
* @throws {RequiredError}
|
|
23048
|
+
*/
|
|
23049
|
+
leaveEventWaitList(requestParameters: WaitListApiLeaveEventWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
23050
|
+
};
|
|
23051
|
+
/**
|
|
23052
|
+
* Request parameters for getBookingPosition operation in WaitListApi.
|
|
23053
|
+
* @export
|
|
23054
|
+
* @interface WaitListApiGetBookingPositionRequest
|
|
23055
|
+
*/
|
|
23056
|
+
export interface WaitListApiGetBookingPositionRequest {
|
|
23057
|
+
/**
|
|
23058
|
+
*
|
|
23059
|
+
* @type {string}
|
|
23060
|
+
* @memberof WaitListApiGetBookingPosition
|
|
23061
|
+
*/
|
|
23062
|
+
readonly bookingId: string;
|
|
23063
|
+
}
|
|
23064
|
+
/**
|
|
23065
|
+
* Request parameters for getEventBookingPosition operation in WaitListApi.
|
|
23066
|
+
* @export
|
|
23067
|
+
* @interface WaitListApiGetEventBookingPositionRequest
|
|
23068
|
+
*/
|
|
23069
|
+
export interface WaitListApiGetEventBookingPositionRequest {
|
|
23070
|
+
/**
|
|
23071
|
+
*
|
|
23072
|
+
* @type {string}
|
|
23073
|
+
* @memberof WaitListApiGetEventBookingPosition
|
|
23074
|
+
*/
|
|
23075
|
+
readonly eventBookingId: string;
|
|
23076
|
+
}
|
|
23077
|
+
/**
|
|
23078
|
+
* Request parameters for getEventPosition operation in WaitListApi.
|
|
23079
|
+
* @export
|
|
23080
|
+
* @interface WaitListApiGetEventPositionRequest
|
|
23081
|
+
*/
|
|
23082
|
+
export interface WaitListApiGetEventPositionRequest {
|
|
23083
|
+
/**
|
|
23084
|
+
*
|
|
23085
|
+
* @type {string}
|
|
23086
|
+
* @memberof WaitListApiGetEventPosition
|
|
23087
|
+
*/
|
|
23088
|
+
readonly eventId: string;
|
|
23089
|
+
}
|
|
23090
|
+
/**
|
|
23091
|
+
* Request parameters for joinBookingWaitList operation in WaitListApi.
|
|
23092
|
+
* @export
|
|
23093
|
+
* @interface WaitListApiJoinBookingWaitListRequest
|
|
23094
|
+
*/
|
|
23095
|
+
export interface WaitListApiJoinBookingWaitListRequest {
|
|
23096
|
+
/**
|
|
23097
|
+
*
|
|
23098
|
+
* @type {string}
|
|
23099
|
+
* @memberof WaitListApiJoinBookingWaitList
|
|
23100
|
+
*/
|
|
23101
|
+
readonly bookingId: string;
|
|
23102
|
+
}
|
|
23103
|
+
/**
|
|
23104
|
+
* Request parameters for joinEventBookingWaitList operation in WaitListApi.
|
|
23105
|
+
* @export
|
|
23106
|
+
* @interface WaitListApiJoinEventBookingWaitListRequest
|
|
23107
|
+
*/
|
|
23108
|
+
export interface WaitListApiJoinEventBookingWaitListRequest {
|
|
23109
|
+
/**
|
|
23110
|
+
*
|
|
23111
|
+
* @type {string}
|
|
23112
|
+
* @memberof WaitListApiJoinEventBookingWaitList
|
|
23113
|
+
*/
|
|
23114
|
+
readonly eventBookingId: string;
|
|
23115
|
+
}
|
|
23116
|
+
/**
|
|
23117
|
+
* Request parameters for joinEventWaitList operation in WaitListApi.
|
|
23118
|
+
* @export
|
|
23119
|
+
* @interface WaitListApiJoinEventWaitListRequest
|
|
23120
|
+
*/
|
|
23121
|
+
export interface WaitListApiJoinEventWaitListRequest {
|
|
23122
|
+
/**
|
|
23123
|
+
*
|
|
23124
|
+
* @type {string}
|
|
23125
|
+
* @memberof WaitListApiJoinEventWaitList
|
|
23126
|
+
*/
|
|
23127
|
+
readonly eventId: string;
|
|
23128
|
+
}
|
|
23129
|
+
/**
|
|
23130
|
+
* Request parameters for leaveBookingWaitList operation in WaitListApi.
|
|
23131
|
+
* @export
|
|
23132
|
+
* @interface WaitListApiLeaveBookingWaitListRequest
|
|
23133
|
+
*/
|
|
23134
|
+
export interface WaitListApiLeaveBookingWaitListRequest {
|
|
23135
|
+
/**
|
|
23136
|
+
*
|
|
23137
|
+
* @type {string}
|
|
23138
|
+
* @memberof WaitListApiLeaveBookingWaitList
|
|
23139
|
+
*/
|
|
23140
|
+
readonly bookingId: string;
|
|
23141
|
+
}
|
|
23142
|
+
/**
|
|
23143
|
+
* Request parameters for leaveEventBookingWaitList operation in WaitListApi.
|
|
23144
|
+
* @export
|
|
23145
|
+
* @interface WaitListApiLeaveEventBookingWaitListRequest
|
|
23146
|
+
*/
|
|
23147
|
+
export interface WaitListApiLeaveEventBookingWaitListRequest {
|
|
23148
|
+
/**
|
|
23149
|
+
*
|
|
23150
|
+
* @type {string}
|
|
23151
|
+
* @memberof WaitListApiLeaveEventBookingWaitList
|
|
23152
|
+
*/
|
|
23153
|
+
readonly eventBookingId: string;
|
|
23154
|
+
}
|
|
23155
|
+
/**
|
|
23156
|
+
* Request parameters for leaveEventWaitList operation in WaitListApi.
|
|
23157
|
+
* @export
|
|
23158
|
+
* @interface WaitListApiLeaveEventWaitListRequest
|
|
23159
|
+
*/
|
|
23160
|
+
export interface WaitListApiLeaveEventWaitListRequest {
|
|
23161
|
+
/**
|
|
23162
|
+
*
|
|
23163
|
+
* @type {string}
|
|
23164
|
+
* @memberof WaitListApiLeaveEventWaitList
|
|
23165
|
+
*/
|
|
23166
|
+
readonly eventId: string;
|
|
23167
|
+
}
|
|
23168
|
+
/**
|
|
23169
|
+
* WaitListApi - object-oriented interface
|
|
23170
|
+
* @export
|
|
23171
|
+
* @class WaitListApi
|
|
23172
|
+
* @extends {BaseAPI}
|
|
23173
|
+
*/
|
|
23174
|
+
export declare class WaitListApi extends BaseAPI {
|
|
23175
|
+
/**
|
|
23176
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un booking
|
|
23177
|
+
* @param {WaitListApiGetBookingPositionRequest} requestParameters Request parameters.
|
|
23178
|
+
* @param {*} [options] Override http request option.
|
|
23179
|
+
* @throws {RequiredError}
|
|
23180
|
+
* @memberof WaitListApi
|
|
23181
|
+
*/
|
|
23182
|
+
getBookingPosition(requestParameters: WaitListApiGetBookingPositionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListPositionResponse, any, {}>>;
|
|
23183
|
+
/**
|
|
23184
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un eventBooking
|
|
23185
|
+
* @param {WaitListApiGetEventBookingPositionRequest} requestParameters Request parameters.
|
|
23186
|
+
* @param {*} [options] Override http request option.
|
|
23187
|
+
* @throws {RequiredError}
|
|
23188
|
+
* @memberof WaitListApi
|
|
23189
|
+
*/
|
|
23190
|
+
getEventBookingPosition(requestParameters: WaitListApiGetEventBookingPositionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListPositionResponse, any, {}>>;
|
|
23191
|
+
/**
|
|
23192
|
+
* Obtenir la position actuelle dans la file d\'attente d\'un event
|
|
23193
|
+
* @param {WaitListApiGetEventPositionRequest} requestParameters Request parameters.
|
|
23194
|
+
* @param {*} [options] Override http request option.
|
|
23195
|
+
* @throws {RequiredError}
|
|
23196
|
+
* @memberof WaitListApi
|
|
23197
|
+
*/
|
|
23198
|
+
getEventPosition(requestParameters: WaitListApiGetEventPositionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListPositionResponse, any, {}>>;
|
|
23199
|
+
/**
|
|
23200
|
+
* Rejoindre la file d\'attente pour un booking (créneau ouvert)
|
|
23201
|
+
* @param {WaitListApiJoinBookingWaitListRequest} requestParameters Request parameters.
|
|
23202
|
+
* @param {*} [options] Override http request option.
|
|
23203
|
+
* @throws {RequiredError}
|
|
23204
|
+
* @memberof WaitListApi
|
|
23205
|
+
*/
|
|
23206
|
+
joinBookingWaitList(requestParameters: WaitListApiJoinBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JoinEventWaitList200Response, any, {}>>;
|
|
23207
|
+
/**
|
|
23208
|
+
* Rejoindre la file d\'attente pour un eventBooking (event en équipe avec créneau ouvert)
|
|
23209
|
+
* @param {WaitListApiJoinEventBookingWaitListRequest} requestParameters Request parameters.
|
|
23210
|
+
* @param {*} [options] Override http request option.
|
|
23211
|
+
* @throws {RequiredError}
|
|
23212
|
+
* @memberof WaitListApi
|
|
23213
|
+
*/
|
|
23214
|
+
joinEventBookingWaitList(requestParameters: WaitListApiJoinEventBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JoinEventWaitList200Response, any, {}>>;
|
|
23215
|
+
/**
|
|
23216
|
+
* Rejoindre la file d\'attente pour un event (participation solo)
|
|
23217
|
+
* @param {WaitListApiJoinEventWaitListRequest} requestParameters Request parameters.
|
|
23218
|
+
* @param {*} [options] Override http request option.
|
|
23219
|
+
* @throws {RequiredError}
|
|
23220
|
+
* @memberof WaitListApi
|
|
23221
|
+
*/
|
|
23222
|
+
joinEventWaitList(requestParameters: WaitListApiJoinEventWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JoinEventWaitList200Response, any, {}>>;
|
|
23223
|
+
/**
|
|
23224
|
+
* Quitter la file d\'attente d\'un booking
|
|
23225
|
+
* @param {WaitListApiLeaveBookingWaitListRequest} requestParameters Request parameters.
|
|
23226
|
+
* @param {*} [options] Override http request option.
|
|
23227
|
+
* @throws {RequiredError}
|
|
23228
|
+
* @memberof WaitListApi
|
|
23229
|
+
*/
|
|
23230
|
+
leaveBookingWaitList(requestParameters: WaitListApiLeaveBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23231
|
+
/**
|
|
23232
|
+
* Quitter la file d\'attente d\'un eventBooking
|
|
23233
|
+
* @param {WaitListApiLeaveEventBookingWaitListRequest} requestParameters Request parameters.
|
|
23234
|
+
* @param {*} [options] Override http request option.
|
|
23235
|
+
* @throws {RequiredError}
|
|
23236
|
+
* @memberof WaitListApi
|
|
23237
|
+
*/
|
|
23238
|
+
leaveEventBookingWaitList(requestParameters: WaitListApiLeaveEventBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23239
|
+
/**
|
|
23240
|
+
* Quitter la file d\'attente d\'un event
|
|
23241
|
+
* @param {WaitListApiLeaveEventWaitListRequest} requestParameters Request parameters.
|
|
23242
|
+
* @param {*} [options] Override http request option.
|
|
23243
|
+
* @throws {RequiredError}
|
|
23244
|
+
* @memberof WaitListApi
|
|
23245
|
+
*/
|
|
23246
|
+
leaveEventWaitList(requestParameters: WaitListApiLeaveEventWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23247
|
+
}
|
|
23248
|
+
/**
|
|
23249
|
+
* WaitListStaffApi - axios parameter creator
|
|
23250
|
+
* @export
|
|
23251
|
+
*/
|
|
23252
|
+
export declare const WaitListStaffApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23253
|
+
/**
|
|
23254
|
+
* Obtenir la liste complète de la file d\'attente pour un booking (staff only)
|
|
23255
|
+
* @param {string} bookingId
|
|
23256
|
+
* @param {*} [options] Override http request option.
|
|
23257
|
+
* @throws {RequiredError}
|
|
23258
|
+
*/
|
|
23259
|
+
getBookingWaitList: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23260
|
+
/**
|
|
23261
|
+
* Obtenir la liste complète de la file d\'attente pour un eventBooking (staff only)
|
|
23262
|
+
* @param {string} eventBookingId
|
|
23263
|
+
* @param {*} [options] Override http request option.
|
|
23264
|
+
* @throws {RequiredError}
|
|
23265
|
+
*/
|
|
23266
|
+
getEventBookingWaitList: (eventBookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23267
|
+
/**
|
|
23268
|
+
* Obtenir la liste complète de la file d\'attente pour un event (staff only)
|
|
23269
|
+
* @param {string} eventId
|
|
23270
|
+
* @param {*} [options] Override http request option.
|
|
23271
|
+
* @throws {RequiredError}
|
|
23272
|
+
*/
|
|
23273
|
+
getEventWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23274
|
+
/**
|
|
23275
|
+
* Forcer le traitement de la waitlist pour un booking (staff only)
|
|
23276
|
+
* @param {string} bookingId
|
|
23277
|
+
* @param {*} [options] Override http request option.
|
|
23278
|
+
* @throws {RequiredError}
|
|
23279
|
+
*/
|
|
23280
|
+
processBookingWaitList: (bookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23281
|
+
/**
|
|
23282
|
+
* Forcer le traitement de la waitlist pour un eventBooking (staff only)
|
|
23283
|
+
* @param {string} eventBookingId
|
|
23284
|
+
* @param {*} [options] Override http request option.
|
|
23285
|
+
* @throws {RequiredError}
|
|
23286
|
+
*/
|
|
23287
|
+
processEventBookingWaitList: (eventBookingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23288
|
+
/**
|
|
23289
|
+
* Forcer le traitement de la waitlist pour un event (staff only)
|
|
23290
|
+
* @param {string} eventId
|
|
23291
|
+
* @param {*} [options] Override http request option.
|
|
23292
|
+
* @throws {RequiredError}
|
|
23293
|
+
*/
|
|
23294
|
+
processEventWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23295
|
+
};
|
|
23296
|
+
/**
|
|
23297
|
+
* WaitListStaffApi - functional programming interface
|
|
23298
|
+
* @export
|
|
23299
|
+
*/
|
|
23300
|
+
export declare const WaitListStaffApiFp: (configuration?: Configuration) => {
|
|
23301
|
+
/**
|
|
23302
|
+
* Obtenir la liste complète de la file d\'attente pour un booking (staff only)
|
|
23303
|
+
* @param {string} bookingId
|
|
23304
|
+
* @param {*} [options] Override http request option.
|
|
23305
|
+
* @throws {RequiredError}
|
|
23306
|
+
*/
|
|
23307
|
+
getBookingWaitList(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListListResponse>>;
|
|
23308
|
+
/**
|
|
23309
|
+
* Obtenir la liste complète de la file d\'attente pour un eventBooking (staff only)
|
|
23310
|
+
* @param {string} eventBookingId
|
|
23311
|
+
* @param {*} [options] Override http request option.
|
|
23312
|
+
* @throws {RequiredError}
|
|
23313
|
+
*/
|
|
23314
|
+
getEventBookingWaitList(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListListResponse>>;
|
|
23315
|
+
/**
|
|
23316
|
+
* Obtenir la liste complète de la file d\'attente pour un event (staff only)
|
|
23317
|
+
* @param {string} eventId
|
|
23318
|
+
* @param {*} [options] Override http request option.
|
|
23319
|
+
* @throws {RequiredError}
|
|
23320
|
+
*/
|
|
23321
|
+
getEventWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WaitListListResponse>>;
|
|
23322
|
+
/**
|
|
23323
|
+
* Forcer le traitement de la waitlist pour un booking (staff only)
|
|
23324
|
+
* @param {string} bookingId
|
|
23325
|
+
* @param {*} [options] Override http request option.
|
|
23326
|
+
* @throws {RequiredError}
|
|
23327
|
+
*/
|
|
23328
|
+
processBookingWaitList(bookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
23329
|
+
/**
|
|
23330
|
+
* Forcer le traitement de la waitlist pour un eventBooking (staff only)
|
|
23331
|
+
* @param {string} eventBookingId
|
|
23332
|
+
* @param {*} [options] Override http request option.
|
|
23333
|
+
* @throws {RequiredError}
|
|
23334
|
+
*/
|
|
23335
|
+
processEventBookingWaitList(eventBookingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
23336
|
+
/**
|
|
23337
|
+
* Forcer le traitement de la waitlist pour un event (staff only)
|
|
23338
|
+
* @param {string} eventId
|
|
23339
|
+
* @param {*} [options] Override http request option.
|
|
23340
|
+
* @throws {RequiredError}
|
|
23341
|
+
*/
|
|
23342
|
+
processEventWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
23343
|
+
};
|
|
23344
|
+
/**
|
|
23345
|
+
* WaitListStaffApi - factory interface
|
|
23346
|
+
* @export
|
|
23347
|
+
*/
|
|
23348
|
+
export declare const WaitListStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
23349
|
+
/**
|
|
23350
|
+
* Obtenir la liste complète de la file d\'attente pour un booking (staff only)
|
|
23351
|
+
* @param {WaitListStaffApiGetBookingWaitListRequest} requestParameters Request parameters.
|
|
23352
|
+
* @param {*} [options] Override http request option.
|
|
23353
|
+
* @throws {RequiredError}
|
|
23354
|
+
*/
|
|
23355
|
+
getBookingWaitList(requestParameters: WaitListStaffApiGetBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListListResponse>;
|
|
23356
|
+
/**
|
|
23357
|
+
* Obtenir la liste complète de la file d\'attente pour un eventBooking (staff only)
|
|
23358
|
+
* @param {WaitListStaffApiGetEventBookingWaitListRequest} requestParameters Request parameters.
|
|
23359
|
+
* @param {*} [options] Override http request option.
|
|
23360
|
+
* @throws {RequiredError}
|
|
23361
|
+
*/
|
|
23362
|
+
getEventBookingWaitList(requestParameters: WaitListStaffApiGetEventBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListListResponse>;
|
|
23363
|
+
/**
|
|
23364
|
+
* Obtenir la liste complète de la file d\'attente pour un event (staff only)
|
|
23365
|
+
* @param {WaitListStaffApiGetEventWaitListRequest} requestParameters Request parameters.
|
|
23366
|
+
* @param {*} [options] Override http request option.
|
|
23367
|
+
* @throws {RequiredError}
|
|
23368
|
+
*/
|
|
23369
|
+
getEventWaitList(requestParameters: WaitListStaffApiGetEventWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<WaitListListResponse>;
|
|
23370
|
+
/**
|
|
23371
|
+
* Forcer le traitement de la waitlist pour un booking (staff only)
|
|
23372
|
+
* @param {WaitListStaffApiProcessBookingWaitListRequest} requestParameters Request parameters.
|
|
23373
|
+
* @param {*} [options] Override http request option.
|
|
23374
|
+
* @throws {RequiredError}
|
|
23375
|
+
*/
|
|
23376
|
+
processBookingWaitList(requestParameters: WaitListStaffApiProcessBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
23377
|
+
/**
|
|
23378
|
+
* Forcer le traitement de la waitlist pour un eventBooking (staff only)
|
|
23379
|
+
* @param {WaitListStaffApiProcessEventBookingWaitListRequest} requestParameters Request parameters.
|
|
23380
|
+
* @param {*} [options] Override http request option.
|
|
23381
|
+
* @throws {RequiredError}
|
|
23382
|
+
*/
|
|
23383
|
+
processEventBookingWaitList(requestParameters: WaitListStaffApiProcessEventBookingWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
23384
|
+
/**
|
|
23385
|
+
* Forcer le traitement de la waitlist pour un event (staff only)
|
|
23386
|
+
* @param {WaitListStaffApiProcessEventWaitListRequest} requestParameters Request parameters.
|
|
23387
|
+
* @param {*} [options] Override http request option.
|
|
23388
|
+
* @throws {RequiredError}
|
|
23389
|
+
*/
|
|
23390
|
+
processEventWaitList(requestParameters: WaitListStaffApiProcessEventWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
23391
|
+
};
|
|
23392
|
+
/**
|
|
23393
|
+
* Request parameters for getBookingWaitList operation in WaitListStaffApi.
|
|
23394
|
+
* @export
|
|
23395
|
+
* @interface WaitListStaffApiGetBookingWaitListRequest
|
|
23396
|
+
*/
|
|
23397
|
+
export interface WaitListStaffApiGetBookingWaitListRequest {
|
|
23398
|
+
/**
|
|
23399
|
+
*
|
|
23400
|
+
* @type {string}
|
|
23401
|
+
* @memberof WaitListStaffApiGetBookingWaitList
|
|
23402
|
+
*/
|
|
23403
|
+
readonly bookingId: string;
|
|
23404
|
+
}
|
|
23405
|
+
/**
|
|
23406
|
+
* Request parameters for getEventBookingWaitList operation in WaitListStaffApi.
|
|
23407
|
+
* @export
|
|
23408
|
+
* @interface WaitListStaffApiGetEventBookingWaitListRequest
|
|
23409
|
+
*/
|
|
23410
|
+
export interface WaitListStaffApiGetEventBookingWaitListRequest {
|
|
23411
|
+
/**
|
|
23412
|
+
*
|
|
23413
|
+
* @type {string}
|
|
23414
|
+
* @memberof WaitListStaffApiGetEventBookingWaitList
|
|
23415
|
+
*/
|
|
23416
|
+
readonly eventBookingId: string;
|
|
23417
|
+
}
|
|
23418
|
+
/**
|
|
23419
|
+
* Request parameters for getEventWaitList operation in WaitListStaffApi.
|
|
23420
|
+
* @export
|
|
23421
|
+
* @interface WaitListStaffApiGetEventWaitListRequest
|
|
23422
|
+
*/
|
|
23423
|
+
export interface WaitListStaffApiGetEventWaitListRequest {
|
|
23424
|
+
/**
|
|
23425
|
+
*
|
|
23426
|
+
* @type {string}
|
|
23427
|
+
* @memberof WaitListStaffApiGetEventWaitList
|
|
23428
|
+
*/
|
|
23429
|
+
readonly eventId: string;
|
|
23430
|
+
}
|
|
23431
|
+
/**
|
|
23432
|
+
* Request parameters for processBookingWaitList operation in WaitListStaffApi.
|
|
23433
|
+
* @export
|
|
23434
|
+
* @interface WaitListStaffApiProcessBookingWaitListRequest
|
|
23435
|
+
*/
|
|
23436
|
+
export interface WaitListStaffApiProcessBookingWaitListRequest {
|
|
23437
|
+
/**
|
|
23438
|
+
*
|
|
23439
|
+
* @type {string}
|
|
23440
|
+
* @memberof WaitListStaffApiProcessBookingWaitList
|
|
23441
|
+
*/
|
|
23442
|
+
readonly bookingId: string;
|
|
23443
|
+
}
|
|
23444
|
+
/**
|
|
23445
|
+
* Request parameters for processEventBookingWaitList operation in WaitListStaffApi.
|
|
23446
|
+
* @export
|
|
23447
|
+
* @interface WaitListStaffApiProcessEventBookingWaitListRequest
|
|
23448
|
+
*/
|
|
23449
|
+
export interface WaitListStaffApiProcessEventBookingWaitListRequest {
|
|
23450
|
+
/**
|
|
23451
|
+
*
|
|
23452
|
+
* @type {string}
|
|
23453
|
+
* @memberof WaitListStaffApiProcessEventBookingWaitList
|
|
23454
|
+
*/
|
|
23455
|
+
readonly eventBookingId: string;
|
|
23456
|
+
}
|
|
23457
|
+
/**
|
|
23458
|
+
* Request parameters for processEventWaitList operation in WaitListStaffApi.
|
|
23459
|
+
* @export
|
|
23460
|
+
* @interface WaitListStaffApiProcessEventWaitListRequest
|
|
23461
|
+
*/
|
|
23462
|
+
export interface WaitListStaffApiProcessEventWaitListRequest {
|
|
23463
|
+
/**
|
|
23464
|
+
*
|
|
23465
|
+
* @type {string}
|
|
23466
|
+
* @memberof WaitListStaffApiProcessEventWaitList
|
|
23467
|
+
*/
|
|
23468
|
+
readonly eventId: string;
|
|
23469
|
+
}
|
|
23470
|
+
/**
|
|
23471
|
+
* WaitListStaffApi - object-oriented interface
|
|
23472
|
+
* @export
|
|
23473
|
+
* @class WaitListStaffApi
|
|
23474
|
+
* @extends {BaseAPI}
|
|
23475
|
+
*/
|
|
23476
|
+
export declare class WaitListStaffApi extends BaseAPI {
|
|
23477
|
+
/**
|
|
23478
|
+
* Obtenir la liste complète de la file d\'attente pour un booking (staff only)
|
|
23479
|
+
* @param {WaitListStaffApiGetBookingWaitListRequest} requestParameters Request parameters.
|
|
23480
|
+
* @param {*} [options] Override http request option.
|
|
23481
|
+
* @throws {RequiredError}
|
|
23482
|
+
* @memberof WaitListStaffApi
|
|
23483
|
+
*/
|
|
23484
|
+
getBookingWaitList(requestParameters: WaitListStaffApiGetBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListListResponse, any, {}>>;
|
|
23485
|
+
/**
|
|
23486
|
+
* Obtenir la liste complète de la file d\'attente pour un eventBooking (staff only)
|
|
23487
|
+
* @param {WaitListStaffApiGetEventBookingWaitListRequest} requestParameters Request parameters.
|
|
23488
|
+
* @param {*} [options] Override http request option.
|
|
23489
|
+
* @throws {RequiredError}
|
|
23490
|
+
* @memberof WaitListStaffApi
|
|
23491
|
+
*/
|
|
23492
|
+
getEventBookingWaitList(requestParameters: WaitListStaffApiGetEventBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListListResponse, any, {}>>;
|
|
23493
|
+
/**
|
|
23494
|
+
* Obtenir la liste complète de la file d\'attente pour un event (staff only)
|
|
23495
|
+
* @param {WaitListStaffApiGetEventWaitListRequest} requestParameters Request parameters.
|
|
23496
|
+
* @param {*} [options] Override http request option.
|
|
23497
|
+
* @throws {RequiredError}
|
|
23498
|
+
* @memberof WaitListStaffApi
|
|
23499
|
+
*/
|
|
23500
|
+
getEventWaitList(requestParameters: WaitListStaffApiGetEventWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WaitListListResponse, any, {}>>;
|
|
23501
|
+
/**
|
|
23502
|
+
* Forcer le traitement de la waitlist pour un booking (staff only)
|
|
23503
|
+
* @param {WaitListStaffApiProcessBookingWaitListRequest} requestParameters Request parameters.
|
|
23504
|
+
* @param {*} [options] Override http request option.
|
|
23505
|
+
* @throws {RequiredError}
|
|
23506
|
+
* @memberof WaitListStaffApi
|
|
23507
|
+
*/
|
|
23508
|
+
processBookingWaitList(requestParameters: WaitListStaffApiProcessBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23509
|
+
/**
|
|
23510
|
+
* Forcer le traitement de la waitlist pour un eventBooking (staff only)
|
|
23511
|
+
* @param {WaitListStaffApiProcessEventBookingWaitListRequest} requestParameters Request parameters.
|
|
23512
|
+
* @param {*} [options] Override http request option.
|
|
23513
|
+
* @throws {RequiredError}
|
|
23514
|
+
* @memberof WaitListStaffApi
|
|
23515
|
+
*/
|
|
23516
|
+
processEventBookingWaitList(requestParameters: WaitListStaffApiProcessEventBookingWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23517
|
+
/**
|
|
23518
|
+
* Forcer le traitement de la waitlist pour un event (staff only)
|
|
23519
|
+
* @param {WaitListStaffApiProcessEventWaitListRequest} requestParameters Request parameters.
|
|
23520
|
+
* @param {*} [options] Override http request option.
|
|
23521
|
+
* @throws {RequiredError}
|
|
23522
|
+
* @memberof WaitListStaffApi
|
|
23523
|
+
*/
|
|
23524
|
+
processEventWaitList(requestParameters: WaitListStaffApiProcessEventWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23120
23525
|
}
|