@tennac-booking/sdk 1.0.169 → 1.0.171
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 +394 -380
- package/README.md +21 -2
- package/api.ts +1082 -34
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +680 -1
- package/dist/api.js +637 -3
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +680 -1
- package/dist/esm/api.js +623 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/EmailExistsRequestBody.md +20 -0
- package/docs/EmailExistsResponse.md +20 -0
- package/docs/EventBookingDetailSummary.md +2 -0
- package/docs/EventsWaitListApi.md +175 -0
- package/docs/EventsWaitListStaffApi.md +115 -0
- package/docs/GetUserPosition200Response.md +22 -0
- package/docs/GetWaitListForEvent200Response.md +22 -0
- package/docs/JoinWaitList200Response.md +26 -0
- package/docs/JoinWaitListRequest.md +22 -0
- package/docs/PublicEmailApi.md +167 -0
- package/docs/RequestEmailCodeBody.md +20 -0
- package/docs/RequestEmailCodeResponse.md +22 -0
- package/docs/VerifyEmailCodeBody.md +22 -0
- package/docs/VerifyEmailCodeResponse.md +22 -0
- package/docs/WaitListResponse.md +38 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* openapi.json
|
|
3
3
|
* Pandook API Documentation
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.171
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4785,6 +4785,32 @@ export interface DuplicateClubDayScheduleRequest {
|
|
|
4785
4785
|
*/
|
|
4786
4786
|
'toDay': WeekdayKey;
|
|
4787
4787
|
}
|
|
4788
|
+
/**
|
|
4789
|
+
*
|
|
4790
|
+
* @export
|
|
4791
|
+
* @interface EmailExistsRequestBody
|
|
4792
|
+
*/
|
|
4793
|
+
export interface EmailExistsRequestBody {
|
|
4794
|
+
/**
|
|
4795
|
+
*
|
|
4796
|
+
* @type {string}
|
|
4797
|
+
* @memberof EmailExistsRequestBody
|
|
4798
|
+
*/
|
|
4799
|
+
'email': string;
|
|
4800
|
+
}
|
|
4801
|
+
/**
|
|
4802
|
+
*
|
|
4803
|
+
* @export
|
|
4804
|
+
* @interface EmailExistsResponse
|
|
4805
|
+
*/
|
|
4806
|
+
export interface EmailExistsResponse {
|
|
4807
|
+
/**
|
|
4808
|
+
*
|
|
4809
|
+
* @type {boolean}
|
|
4810
|
+
* @memberof EmailExistsResponse
|
|
4811
|
+
*/
|
|
4812
|
+
'exists': boolean;
|
|
4813
|
+
}
|
|
4788
4814
|
/**
|
|
4789
4815
|
*
|
|
4790
4816
|
* @export
|
|
@@ -5004,6 +5030,12 @@ export interface EventBookingDetailSummary {
|
|
|
5004
5030
|
* @memberof EventBookingDetailSummary
|
|
5005
5031
|
*/
|
|
5006
5032
|
'limitCancellationDate'?: string | null;
|
|
5033
|
+
/**
|
|
5034
|
+
* Position dans la file d\'attente si l\'utilisateur est en waitlist pour cet événement
|
|
5035
|
+
* @type {number}
|
|
5036
|
+
* @memberof EventBookingDetailSummary
|
|
5037
|
+
*/
|
|
5038
|
+
'waitListPosition'?: number | null;
|
|
5007
5039
|
/**
|
|
5008
5040
|
*
|
|
5009
5041
|
* @type {string}
|
|
@@ -6110,6 +6142,44 @@ export interface GetSlotsByClubById200Response {
|
|
|
6110
6142
|
*/
|
|
6111
6143
|
'slots': Array<any>;
|
|
6112
6144
|
}
|
|
6145
|
+
/**
|
|
6146
|
+
*
|
|
6147
|
+
* @export
|
|
6148
|
+
* @interface GetUserPosition200Response
|
|
6149
|
+
*/
|
|
6150
|
+
export interface GetUserPosition200Response {
|
|
6151
|
+
/**
|
|
6152
|
+
*
|
|
6153
|
+
* @type {string}
|
|
6154
|
+
* @memberof GetUserPosition200Response
|
|
6155
|
+
*/
|
|
6156
|
+
'message'?: string;
|
|
6157
|
+
/**
|
|
6158
|
+
*
|
|
6159
|
+
* @type {number}
|
|
6160
|
+
* @memberof GetUserPosition200Response
|
|
6161
|
+
*/
|
|
6162
|
+
'position': number | null;
|
|
6163
|
+
}
|
|
6164
|
+
/**
|
|
6165
|
+
*
|
|
6166
|
+
* @export
|
|
6167
|
+
* @interface GetWaitListForEvent200Response
|
|
6168
|
+
*/
|
|
6169
|
+
export interface GetWaitListForEvent200Response {
|
|
6170
|
+
/**
|
|
6171
|
+
*
|
|
6172
|
+
* @type {number}
|
|
6173
|
+
* @memberof GetWaitListForEvent200Response
|
|
6174
|
+
*/
|
|
6175
|
+
'total': number;
|
|
6176
|
+
/**
|
|
6177
|
+
*
|
|
6178
|
+
* @type {Array<WaitListResponse>}
|
|
6179
|
+
* @memberof GetWaitListForEvent200Response
|
|
6180
|
+
*/
|
|
6181
|
+
'waitList': Array<WaitListResponse>;
|
|
6182
|
+
}
|
|
6113
6183
|
/**
|
|
6114
6184
|
*
|
|
6115
6185
|
* @export
|
|
@@ -7148,6 +7218,56 @@ export interface JoinOpenEventResponse {
|
|
|
7148
7218
|
*/
|
|
7149
7219
|
'invoices'?: Array<CheckInEventParticipants200ResponseInvoicesInner>;
|
|
7150
7220
|
}
|
|
7221
|
+
/**
|
|
7222
|
+
*
|
|
7223
|
+
* @export
|
|
7224
|
+
* @interface JoinWaitList200Response
|
|
7225
|
+
*/
|
|
7226
|
+
export interface JoinWaitList200Response {
|
|
7227
|
+
/**
|
|
7228
|
+
*
|
|
7229
|
+
* @type {boolean}
|
|
7230
|
+
* @memberof JoinWaitList200Response
|
|
7231
|
+
*/
|
|
7232
|
+
'requiresSetup'?: boolean;
|
|
7233
|
+
/**
|
|
7234
|
+
*
|
|
7235
|
+
* @type {string}
|
|
7236
|
+
* @memberof JoinWaitList200Response
|
|
7237
|
+
*/
|
|
7238
|
+
'paymentLink'?: string;
|
|
7239
|
+
/**
|
|
7240
|
+
*
|
|
7241
|
+
* @type {WaitListResponse}
|
|
7242
|
+
* @memberof JoinWaitList200Response
|
|
7243
|
+
*/
|
|
7244
|
+
'waitList': WaitListResponse;
|
|
7245
|
+
/**
|
|
7246
|
+
*
|
|
7247
|
+
* @type {string}
|
|
7248
|
+
* @memberof JoinWaitList200Response
|
|
7249
|
+
*/
|
|
7250
|
+
'message': string;
|
|
7251
|
+
}
|
|
7252
|
+
/**
|
|
7253
|
+
*
|
|
7254
|
+
* @export
|
|
7255
|
+
* @interface JoinWaitListRequest
|
|
7256
|
+
*/
|
|
7257
|
+
export interface JoinWaitListRequest {
|
|
7258
|
+
/**
|
|
7259
|
+
*
|
|
7260
|
+
* @type {PaymentMethod}
|
|
7261
|
+
* @memberof JoinWaitListRequest
|
|
7262
|
+
*/
|
|
7263
|
+
'paymentMethod'?: PaymentMethod;
|
|
7264
|
+
/**
|
|
7265
|
+
*
|
|
7266
|
+
* @type {boolean}
|
|
7267
|
+
* @memberof JoinWaitListRequest
|
|
7268
|
+
*/
|
|
7269
|
+
'useDefaultPaymentMethod'?: boolean;
|
|
7270
|
+
}
|
|
7151
7271
|
/**
|
|
7152
7272
|
*
|
|
7153
7273
|
* @export
|
|
@@ -9262,6 +9382,38 @@ export declare const RegisterRequestBodyLocationTypeEnum: {
|
|
|
9262
9382
|
readonly Point: "Point";
|
|
9263
9383
|
};
|
|
9264
9384
|
export type RegisterRequestBodyLocationTypeEnum = typeof RegisterRequestBodyLocationTypeEnum[keyof typeof RegisterRequestBodyLocationTypeEnum];
|
|
9385
|
+
/**
|
|
9386
|
+
*
|
|
9387
|
+
* @export
|
|
9388
|
+
* @interface RequestEmailCodeBody
|
|
9389
|
+
*/
|
|
9390
|
+
export interface RequestEmailCodeBody {
|
|
9391
|
+
/**
|
|
9392
|
+
*
|
|
9393
|
+
* @type {string}
|
|
9394
|
+
* @memberof RequestEmailCodeBody
|
|
9395
|
+
*/
|
|
9396
|
+
'email': string;
|
|
9397
|
+
}
|
|
9398
|
+
/**
|
|
9399
|
+
*
|
|
9400
|
+
* @export
|
|
9401
|
+
* @interface RequestEmailCodeResponse
|
|
9402
|
+
*/
|
|
9403
|
+
export interface RequestEmailCodeResponse {
|
|
9404
|
+
/**
|
|
9405
|
+
*
|
|
9406
|
+
* @type {boolean}
|
|
9407
|
+
* @memberof RequestEmailCodeResponse
|
|
9408
|
+
*/
|
|
9409
|
+
'sent': boolean;
|
|
9410
|
+
/**
|
|
9411
|
+
*
|
|
9412
|
+
* @type {boolean}
|
|
9413
|
+
* @memberof RequestEmailCodeResponse
|
|
9414
|
+
*/
|
|
9415
|
+
'alreadyVerified'?: boolean;
|
|
9416
|
+
}
|
|
9265
9417
|
/**
|
|
9266
9418
|
*
|
|
9267
9419
|
* @export
|
|
@@ -12478,6 +12630,44 @@ export interface UserSubscriptionsResponse {
|
|
|
12478
12630
|
*/
|
|
12479
12631
|
'subscriptions': Array<ClubSubscriptions>;
|
|
12480
12632
|
}
|
|
12633
|
+
/**
|
|
12634
|
+
*
|
|
12635
|
+
* @export
|
|
12636
|
+
* @interface VerifyEmailCodeBody
|
|
12637
|
+
*/
|
|
12638
|
+
export interface VerifyEmailCodeBody {
|
|
12639
|
+
/**
|
|
12640
|
+
*
|
|
12641
|
+
* @type {string}
|
|
12642
|
+
* @memberof VerifyEmailCodeBody
|
|
12643
|
+
*/
|
|
12644
|
+
'email': string;
|
|
12645
|
+
/**
|
|
12646
|
+
*
|
|
12647
|
+
* @type {string}
|
|
12648
|
+
* @memberof VerifyEmailCodeBody
|
|
12649
|
+
*/
|
|
12650
|
+
'code': string;
|
|
12651
|
+
}
|
|
12652
|
+
/**
|
|
12653
|
+
*
|
|
12654
|
+
* @export
|
|
12655
|
+
* @interface VerifyEmailCodeResponse
|
|
12656
|
+
*/
|
|
12657
|
+
export interface VerifyEmailCodeResponse {
|
|
12658
|
+
/**
|
|
12659
|
+
*
|
|
12660
|
+
* @type {boolean}
|
|
12661
|
+
* @memberof VerifyEmailCodeResponse
|
|
12662
|
+
*/
|
|
12663
|
+
'verified': boolean;
|
|
12664
|
+
/**
|
|
12665
|
+
*
|
|
12666
|
+
* @type {boolean}
|
|
12667
|
+
* @memberof VerifyEmailCodeResponse
|
|
12668
|
+
*/
|
|
12669
|
+
'alreadyVerified'?: boolean;
|
|
12670
|
+
}
|
|
12481
12671
|
/**
|
|
12482
12672
|
*
|
|
12483
12673
|
* @export
|
|
@@ -12502,6 +12692,73 @@ export declare const VisibilityType: {
|
|
|
12502
12692
|
readonly Invitation: "invitation";
|
|
12503
12693
|
};
|
|
12504
12694
|
export type VisibilityType = typeof VisibilityType[keyof typeof VisibilityType];
|
|
12695
|
+
/**
|
|
12696
|
+
*
|
|
12697
|
+
* @export
|
|
12698
|
+
* @interface WaitListResponse
|
|
12699
|
+
*/
|
|
12700
|
+
export interface WaitListResponse {
|
|
12701
|
+
/**
|
|
12702
|
+
*
|
|
12703
|
+
* @type {string}
|
|
12704
|
+
* @memberof WaitListResponse
|
|
12705
|
+
*/
|
|
12706
|
+
'id': string;
|
|
12707
|
+
/**
|
|
12708
|
+
*
|
|
12709
|
+
* @type {string}
|
|
12710
|
+
* @memberof WaitListResponse
|
|
12711
|
+
*/
|
|
12712
|
+
'eventId': string;
|
|
12713
|
+
/**
|
|
12714
|
+
*
|
|
12715
|
+
* @type {string}
|
|
12716
|
+
* @memberof WaitListResponse
|
|
12717
|
+
*/
|
|
12718
|
+
'userId': string;
|
|
12719
|
+
/**
|
|
12720
|
+
*
|
|
12721
|
+
* @type {string}
|
|
12722
|
+
* @memberof WaitListResponse
|
|
12723
|
+
*/
|
|
12724
|
+
'status': string;
|
|
12725
|
+
/**
|
|
12726
|
+
*
|
|
12727
|
+
* @type {number}
|
|
12728
|
+
* @memberof WaitListResponse
|
|
12729
|
+
*/
|
|
12730
|
+
'position': number;
|
|
12731
|
+
/**
|
|
12732
|
+
*
|
|
12733
|
+
* @type {number}
|
|
12734
|
+
* @memberof WaitListResponse
|
|
12735
|
+
*/
|
|
12736
|
+
'priceInCents': number;
|
|
12737
|
+
/**
|
|
12738
|
+
*
|
|
12739
|
+
* @type {boolean}
|
|
12740
|
+
* @memberof WaitListResponse
|
|
12741
|
+
*/
|
|
12742
|
+
'paymentAuthorized': boolean;
|
|
12743
|
+
/**
|
|
12744
|
+
*
|
|
12745
|
+
* @type {string}
|
|
12746
|
+
* @memberof WaitListResponse
|
|
12747
|
+
*/
|
|
12748
|
+
'joinedAt': string;
|
|
12749
|
+
/**
|
|
12750
|
+
*
|
|
12751
|
+
* @type {string}
|
|
12752
|
+
* @memberof WaitListResponse
|
|
12753
|
+
*/
|
|
12754
|
+
'expiresAt'?: string;
|
|
12755
|
+
/**
|
|
12756
|
+
*
|
|
12757
|
+
* @type {string}
|
|
12758
|
+
* @memberof WaitListResponse
|
|
12759
|
+
*/
|
|
12760
|
+
'paymentLink'?: string;
|
|
12761
|
+
}
|
|
12505
12762
|
/**
|
|
12506
12763
|
*
|
|
12507
12764
|
* @export
|
|
@@ -19495,6 +19752,276 @@ export declare const GetWeeklyEventsTypeEnum: {
|
|
|
19495
19752
|
readonly Closure: "closure";
|
|
19496
19753
|
};
|
|
19497
19754
|
export type GetWeeklyEventsTypeEnum = typeof GetWeeklyEventsTypeEnum[keyof typeof GetWeeklyEventsTypeEnum];
|
|
19755
|
+
/**
|
|
19756
|
+
* EventsWaitListApi - axios parameter creator
|
|
19757
|
+
* @export
|
|
19758
|
+
*/
|
|
19759
|
+
export declare const EventsWaitListApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
19760
|
+
/**
|
|
19761
|
+
* Obtenir la position actuelle dans la file d\'attente
|
|
19762
|
+
* @param {string} eventId
|
|
19763
|
+
* @param {*} [options] Override http request option.
|
|
19764
|
+
* @throws {RequiredError}
|
|
19765
|
+
*/
|
|
19766
|
+
getUserPosition: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19767
|
+
/**
|
|
19768
|
+
* Rejoindre la file d\'attente pour un événement
|
|
19769
|
+
* @param {string} eventId
|
|
19770
|
+
* @param {JoinWaitListRequest} joinWaitListRequest
|
|
19771
|
+
* @param {*} [options] Override http request option.
|
|
19772
|
+
* @throws {RequiredError}
|
|
19773
|
+
*/
|
|
19774
|
+
joinWaitList: (eventId: string, joinWaitListRequest: JoinWaitListRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19775
|
+
/**
|
|
19776
|
+
* Quitter la file d\'attente
|
|
19777
|
+
* @param {string} eventId
|
|
19778
|
+
* @param {*} [options] Override http request option.
|
|
19779
|
+
* @throws {RequiredError}
|
|
19780
|
+
*/
|
|
19781
|
+
leaveWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19782
|
+
};
|
|
19783
|
+
/**
|
|
19784
|
+
* EventsWaitListApi - functional programming interface
|
|
19785
|
+
* @export
|
|
19786
|
+
*/
|
|
19787
|
+
export declare const EventsWaitListApiFp: (configuration?: Configuration) => {
|
|
19788
|
+
/**
|
|
19789
|
+
* Obtenir la position actuelle dans la file d\'attente
|
|
19790
|
+
* @param {string} eventId
|
|
19791
|
+
* @param {*} [options] Override http request option.
|
|
19792
|
+
* @throws {RequiredError}
|
|
19793
|
+
*/
|
|
19794
|
+
getUserPosition(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetUserPosition200Response>>;
|
|
19795
|
+
/**
|
|
19796
|
+
* Rejoindre la file d\'attente pour un événement
|
|
19797
|
+
* @param {string} eventId
|
|
19798
|
+
* @param {JoinWaitListRequest} joinWaitListRequest
|
|
19799
|
+
* @param {*} [options] Override http request option.
|
|
19800
|
+
* @throws {RequiredError}
|
|
19801
|
+
*/
|
|
19802
|
+
joinWaitList(eventId: string, joinWaitListRequest: JoinWaitListRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinWaitList200Response>>;
|
|
19803
|
+
/**
|
|
19804
|
+
* Quitter la file d\'attente
|
|
19805
|
+
* @param {string} eventId
|
|
19806
|
+
* @param {*} [options] Override http request option.
|
|
19807
|
+
* @throws {RequiredError}
|
|
19808
|
+
*/
|
|
19809
|
+
leaveWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
|
|
19810
|
+
};
|
|
19811
|
+
/**
|
|
19812
|
+
* EventsWaitListApi - factory interface
|
|
19813
|
+
* @export
|
|
19814
|
+
*/
|
|
19815
|
+
export declare const EventsWaitListApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19816
|
+
/**
|
|
19817
|
+
* Obtenir la position actuelle dans la file d\'attente
|
|
19818
|
+
* @param {EventsWaitListApiGetUserPositionRequest} requestParameters Request parameters.
|
|
19819
|
+
* @param {*} [options] Override http request option.
|
|
19820
|
+
* @throws {RequiredError}
|
|
19821
|
+
*/
|
|
19822
|
+
getUserPosition(requestParameters: EventsWaitListApiGetUserPositionRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetUserPosition200Response>;
|
|
19823
|
+
/**
|
|
19824
|
+
* Rejoindre la file d\'attente pour un événement
|
|
19825
|
+
* @param {EventsWaitListApiJoinWaitListRequest} requestParameters Request parameters.
|
|
19826
|
+
* @param {*} [options] Override http request option.
|
|
19827
|
+
* @throws {RequiredError}
|
|
19828
|
+
*/
|
|
19829
|
+
joinWaitList(requestParameters: EventsWaitListApiJoinWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JoinWaitList200Response>;
|
|
19830
|
+
/**
|
|
19831
|
+
* Quitter la file d\'attente
|
|
19832
|
+
* @param {EventsWaitListApiLeaveWaitListRequest} requestParameters Request parameters.
|
|
19833
|
+
* @param {*} [options] Override http request option.
|
|
19834
|
+
* @throws {RequiredError}
|
|
19835
|
+
*/
|
|
19836
|
+
leaveWaitList(requestParameters: EventsWaitListApiLeaveWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
|
|
19837
|
+
};
|
|
19838
|
+
/**
|
|
19839
|
+
* Request parameters for getUserPosition operation in EventsWaitListApi.
|
|
19840
|
+
* @export
|
|
19841
|
+
* @interface EventsWaitListApiGetUserPositionRequest
|
|
19842
|
+
*/
|
|
19843
|
+
export interface EventsWaitListApiGetUserPositionRequest {
|
|
19844
|
+
/**
|
|
19845
|
+
*
|
|
19846
|
+
* @type {string}
|
|
19847
|
+
* @memberof EventsWaitListApiGetUserPosition
|
|
19848
|
+
*/
|
|
19849
|
+
readonly eventId: string;
|
|
19850
|
+
}
|
|
19851
|
+
/**
|
|
19852
|
+
* Request parameters for joinWaitList operation in EventsWaitListApi.
|
|
19853
|
+
* @export
|
|
19854
|
+
* @interface EventsWaitListApiJoinWaitListRequest
|
|
19855
|
+
*/
|
|
19856
|
+
export interface EventsWaitListApiJoinWaitListRequest {
|
|
19857
|
+
/**
|
|
19858
|
+
*
|
|
19859
|
+
* @type {string}
|
|
19860
|
+
* @memberof EventsWaitListApiJoinWaitList
|
|
19861
|
+
*/
|
|
19862
|
+
readonly eventId: string;
|
|
19863
|
+
/**
|
|
19864
|
+
*
|
|
19865
|
+
* @type {JoinWaitListRequest}
|
|
19866
|
+
* @memberof EventsWaitListApiJoinWaitList
|
|
19867
|
+
*/
|
|
19868
|
+
readonly joinWaitListRequest: JoinWaitListRequest;
|
|
19869
|
+
}
|
|
19870
|
+
/**
|
|
19871
|
+
* Request parameters for leaveWaitList operation in EventsWaitListApi.
|
|
19872
|
+
* @export
|
|
19873
|
+
* @interface EventsWaitListApiLeaveWaitListRequest
|
|
19874
|
+
*/
|
|
19875
|
+
export interface EventsWaitListApiLeaveWaitListRequest {
|
|
19876
|
+
/**
|
|
19877
|
+
*
|
|
19878
|
+
* @type {string}
|
|
19879
|
+
* @memberof EventsWaitListApiLeaveWaitList
|
|
19880
|
+
*/
|
|
19881
|
+
readonly eventId: string;
|
|
19882
|
+
}
|
|
19883
|
+
/**
|
|
19884
|
+
* EventsWaitListApi - object-oriented interface
|
|
19885
|
+
* @export
|
|
19886
|
+
* @class EventsWaitListApi
|
|
19887
|
+
* @extends {BaseAPI}
|
|
19888
|
+
*/
|
|
19889
|
+
export declare class EventsWaitListApi extends BaseAPI {
|
|
19890
|
+
/**
|
|
19891
|
+
* Obtenir la position actuelle dans la file d\'attente
|
|
19892
|
+
* @param {EventsWaitListApiGetUserPositionRequest} requestParameters Request parameters.
|
|
19893
|
+
* @param {*} [options] Override http request option.
|
|
19894
|
+
* @throws {RequiredError}
|
|
19895
|
+
* @memberof EventsWaitListApi
|
|
19896
|
+
*/
|
|
19897
|
+
getUserPosition(requestParameters: EventsWaitListApiGetUserPositionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetUserPosition200Response, any, {}>>;
|
|
19898
|
+
/**
|
|
19899
|
+
* Rejoindre la file d\'attente pour un événement
|
|
19900
|
+
* @param {EventsWaitListApiJoinWaitListRequest} requestParameters Request parameters.
|
|
19901
|
+
* @param {*} [options] Override http request option.
|
|
19902
|
+
* @throws {RequiredError}
|
|
19903
|
+
* @memberof EventsWaitListApi
|
|
19904
|
+
*/
|
|
19905
|
+
joinWaitList(requestParameters: EventsWaitListApiJoinWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JoinWaitList200Response, any, {}>>;
|
|
19906
|
+
/**
|
|
19907
|
+
* Quitter la file d\'attente
|
|
19908
|
+
* @param {EventsWaitListApiLeaveWaitListRequest} requestParameters Request parameters.
|
|
19909
|
+
* @param {*} [options] Override http request option.
|
|
19910
|
+
* @throws {RequiredError}
|
|
19911
|
+
* @memberof EventsWaitListApi
|
|
19912
|
+
*/
|
|
19913
|
+
leaveWaitList(requestParameters: EventsWaitListApiLeaveWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
|
|
19914
|
+
}
|
|
19915
|
+
/**
|
|
19916
|
+
* EventsWaitListStaffApi - axios parameter creator
|
|
19917
|
+
* @export
|
|
19918
|
+
*/
|
|
19919
|
+
export declare const EventsWaitListStaffApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
19920
|
+
/**
|
|
19921
|
+
* Obtenir la liste complète de la file d\'attente (staff only)
|
|
19922
|
+
* @param {string} eventId
|
|
19923
|
+
* @param {*} [options] Override http request option.
|
|
19924
|
+
* @throws {RequiredError}
|
|
19925
|
+
*/
|
|
19926
|
+
getWaitListForEvent: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19927
|
+
/**
|
|
19928
|
+
* Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
|
|
19929
|
+
* @param {string} eventId
|
|
19930
|
+
* @param {*} [options] Override http request option.
|
|
19931
|
+
* @throws {RequiredError}
|
|
19932
|
+
*/
|
|
19933
|
+
processWaitList: (eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19934
|
+
};
|
|
19935
|
+
/**
|
|
19936
|
+
* EventsWaitListStaffApi - functional programming interface
|
|
19937
|
+
* @export
|
|
19938
|
+
*/
|
|
19939
|
+
export declare const EventsWaitListStaffApiFp: (configuration?: Configuration) => {
|
|
19940
|
+
/**
|
|
19941
|
+
* Obtenir la liste complète de la file d\'attente (staff only)
|
|
19942
|
+
* @param {string} eventId
|
|
19943
|
+
* @param {*} [options] Override http request option.
|
|
19944
|
+
* @throws {RequiredError}
|
|
19945
|
+
*/
|
|
19946
|
+
getWaitListForEvent(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetWaitListForEvent200Response>>;
|
|
19947
|
+
/**
|
|
19948
|
+
* Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
|
|
19949
|
+
* @param {string} eventId
|
|
19950
|
+
* @param {*} [options] Override http request option.
|
|
19951
|
+
* @throws {RequiredError}
|
|
19952
|
+
*/
|
|
19953
|
+
processWaitList(eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
|
|
19954
|
+
};
|
|
19955
|
+
/**
|
|
19956
|
+
* EventsWaitListStaffApi - factory interface
|
|
19957
|
+
* @export
|
|
19958
|
+
*/
|
|
19959
|
+
export declare const EventsWaitListStaffApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19960
|
+
/**
|
|
19961
|
+
* Obtenir la liste complète de la file d\'attente (staff only)
|
|
19962
|
+
* @param {EventsWaitListStaffApiGetWaitListForEventRequest} requestParameters Request parameters.
|
|
19963
|
+
* @param {*} [options] Override http request option.
|
|
19964
|
+
* @throws {RequiredError}
|
|
19965
|
+
*/
|
|
19966
|
+
getWaitListForEvent(requestParameters: EventsWaitListStaffApiGetWaitListForEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetWaitListForEvent200Response>;
|
|
19967
|
+
/**
|
|
19968
|
+
* Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
|
|
19969
|
+
* @param {EventsWaitListStaffApiProcessWaitListRequest} requestParameters Request parameters.
|
|
19970
|
+
* @param {*} [options] Override http request option.
|
|
19971
|
+
* @throws {RequiredError}
|
|
19972
|
+
*/
|
|
19973
|
+
processWaitList(requestParameters: EventsWaitListStaffApiProcessWaitListRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
|
|
19974
|
+
};
|
|
19975
|
+
/**
|
|
19976
|
+
* Request parameters for getWaitListForEvent operation in EventsWaitListStaffApi.
|
|
19977
|
+
* @export
|
|
19978
|
+
* @interface EventsWaitListStaffApiGetWaitListForEventRequest
|
|
19979
|
+
*/
|
|
19980
|
+
export interface EventsWaitListStaffApiGetWaitListForEventRequest {
|
|
19981
|
+
/**
|
|
19982
|
+
*
|
|
19983
|
+
* @type {string}
|
|
19984
|
+
* @memberof EventsWaitListStaffApiGetWaitListForEvent
|
|
19985
|
+
*/
|
|
19986
|
+
readonly eventId: string;
|
|
19987
|
+
}
|
|
19988
|
+
/**
|
|
19989
|
+
* Request parameters for processWaitList operation in EventsWaitListStaffApi.
|
|
19990
|
+
* @export
|
|
19991
|
+
* @interface EventsWaitListStaffApiProcessWaitListRequest
|
|
19992
|
+
*/
|
|
19993
|
+
export interface EventsWaitListStaffApiProcessWaitListRequest {
|
|
19994
|
+
/**
|
|
19995
|
+
*
|
|
19996
|
+
* @type {string}
|
|
19997
|
+
* @memberof EventsWaitListStaffApiProcessWaitList
|
|
19998
|
+
*/
|
|
19999
|
+
readonly eventId: string;
|
|
20000
|
+
}
|
|
20001
|
+
/**
|
|
20002
|
+
* EventsWaitListStaffApi - object-oriented interface
|
|
20003
|
+
* @export
|
|
20004
|
+
* @class EventsWaitListStaffApi
|
|
20005
|
+
* @extends {BaseAPI}
|
|
20006
|
+
*/
|
|
20007
|
+
export declare class EventsWaitListStaffApi extends BaseAPI {
|
|
20008
|
+
/**
|
|
20009
|
+
* Obtenir la liste complète de la file d\'attente (staff only)
|
|
20010
|
+
* @param {EventsWaitListStaffApiGetWaitListForEventRequest} requestParameters Request parameters.
|
|
20011
|
+
* @param {*} [options] Override http request option.
|
|
20012
|
+
* @throws {RequiredError}
|
|
20013
|
+
* @memberof EventsWaitListStaffApi
|
|
20014
|
+
*/
|
|
20015
|
+
getWaitListForEvent(requestParameters: EventsWaitListStaffApiGetWaitListForEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetWaitListForEvent200Response, any, {}>>;
|
|
20016
|
+
/**
|
|
20017
|
+
* Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
|
|
20018
|
+
* @param {EventsWaitListStaffApiProcessWaitListRequest} requestParameters Request parameters.
|
|
20019
|
+
* @param {*} [options] Override http request option.
|
|
20020
|
+
* @throws {RequiredError}
|
|
20021
|
+
* @memberof EventsWaitListStaffApi
|
|
20022
|
+
*/
|
|
20023
|
+
processWaitList(requestParameters: EventsWaitListStaffApiProcessWaitListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
|
|
20024
|
+
}
|
|
19498
20025
|
/**
|
|
19499
20026
|
* ImagesApi - axios parameter creator
|
|
19500
20027
|
* @export
|
|
@@ -19563,6 +20090,158 @@ export declare class ImagesApi extends BaseAPI {
|
|
|
19563
20090
|
*/
|
|
19564
20091
|
cleanupImages(requestParameters: ImagesApiCleanupImagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageCleanupResponse, any, {}>>;
|
|
19565
20092
|
}
|
|
20093
|
+
/**
|
|
20094
|
+
* PublicEmailApi - axios parameter creator
|
|
20095
|
+
* @export
|
|
20096
|
+
*/
|
|
20097
|
+
export declare const PublicEmailApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20098
|
+
/**
|
|
20099
|
+
*
|
|
20100
|
+
* @param {EmailExistsRequestBody} emailExistsRequestBody
|
|
20101
|
+
* @param {*} [options] Override http request option.
|
|
20102
|
+
* @throws {RequiredError}
|
|
20103
|
+
*/
|
|
20104
|
+
authEmailExists: (emailExistsRequestBody: EmailExistsRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20105
|
+
/**
|
|
20106
|
+
*
|
|
20107
|
+
* @param {RequestEmailCodeBody} requestEmailCodeBody
|
|
20108
|
+
* @param {*} [options] Override http request option.
|
|
20109
|
+
* @throws {RequiredError}
|
|
20110
|
+
*/
|
|
20111
|
+
requestVerificationCode: (requestEmailCodeBody: RequestEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20112
|
+
/**
|
|
20113
|
+
*
|
|
20114
|
+
* @param {VerifyEmailCodeBody} verifyEmailCodeBody
|
|
20115
|
+
* @param {*} [options] Override http request option.
|
|
20116
|
+
* @throws {RequiredError}
|
|
20117
|
+
*/
|
|
20118
|
+
verifyCode: (verifyEmailCodeBody: VerifyEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20119
|
+
};
|
|
20120
|
+
/**
|
|
20121
|
+
* PublicEmailApi - functional programming interface
|
|
20122
|
+
* @export
|
|
20123
|
+
*/
|
|
20124
|
+
export declare const PublicEmailApiFp: (configuration?: Configuration) => {
|
|
20125
|
+
/**
|
|
20126
|
+
*
|
|
20127
|
+
* @param {EmailExistsRequestBody} emailExistsRequestBody
|
|
20128
|
+
* @param {*} [options] Override http request option.
|
|
20129
|
+
* @throws {RequiredError}
|
|
20130
|
+
*/
|
|
20131
|
+
authEmailExists(emailExistsRequestBody: EmailExistsRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailExistsResponse>>;
|
|
20132
|
+
/**
|
|
20133
|
+
*
|
|
20134
|
+
* @param {RequestEmailCodeBody} requestEmailCodeBody
|
|
20135
|
+
* @param {*} [options] Override http request option.
|
|
20136
|
+
* @throws {RequiredError}
|
|
20137
|
+
*/
|
|
20138
|
+
requestVerificationCode(requestEmailCodeBody: RequestEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestEmailCodeResponse>>;
|
|
20139
|
+
/**
|
|
20140
|
+
*
|
|
20141
|
+
* @param {VerifyEmailCodeBody} verifyEmailCodeBody
|
|
20142
|
+
* @param {*} [options] Override http request option.
|
|
20143
|
+
* @throws {RequiredError}
|
|
20144
|
+
*/
|
|
20145
|
+
verifyCode(verifyEmailCodeBody: VerifyEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VerifyEmailCodeResponse>>;
|
|
20146
|
+
};
|
|
20147
|
+
/**
|
|
20148
|
+
* PublicEmailApi - factory interface
|
|
20149
|
+
* @export
|
|
20150
|
+
*/
|
|
20151
|
+
export declare const PublicEmailApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
20152
|
+
/**
|
|
20153
|
+
*
|
|
20154
|
+
* @param {PublicEmailApiAuthEmailExistsRequest} requestParameters Request parameters.
|
|
20155
|
+
* @param {*} [options] Override http request option.
|
|
20156
|
+
* @throws {RequiredError}
|
|
20157
|
+
*/
|
|
20158
|
+
authEmailExists(requestParameters: PublicEmailApiAuthEmailExistsRequest, options?: RawAxiosRequestConfig): AxiosPromise<EmailExistsResponse>;
|
|
20159
|
+
/**
|
|
20160
|
+
*
|
|
20161
|
+
* @param {PublicEmailApiRequestVerificationCodeRequest} requestParameters Request parameters.
|
|
20162
|
+
* @param {*} [options] Override http request option.
|
|
20163
|
+
* @throws {RequiredError}
|
|
20164
|
+
*/
|
|
20165
|
+
requestVerificationCode(requestParameters: PublicEmailApiRequestVerificationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestEmailCodeResponse>;
|
|
20166
|
+
/**
|
|
20167
|
+
*
|
|
20168
|
+
* @param {PublicEmailApiVerifyCodeRequest} requestParameters Request parameters.
|
|
20169
|
+
* @param {*} [options] Override http request option.
|
|
20170
|
+
* @throws {RequiredError}
|
|
20171
|
+
*/
|
|
20172
|
+
verifyCode(requestParameters: PublicEmailApiVerifyCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<VerifyEmailCodeResponse>;
|
|
20173
|
+
};
|
|
20174
|
+
/**
|
|
20175
|
+
* Request parameters for authEmailExists operation in PublicEmailApi.
|
|
20176
|
+
* @export
|
|
20177
|
+
* @interface PublicEmailApiAuthEmailExistsRequest
|
|
20178
|
+
*/
|
|
20179
|
+
export interface PublicEmailApiAuthEmailExistsRequest {
|
|
20180
|
+
/**
|
|
20181
|
+
*
|
|
20182
|
+
* @type {EmailExistsRequestBody}
|
|
20183
|
+
* @memberof PublicEmailApiAuthEmailExists
|
|
20184
|
+
*/
|
|
20185
|
+
readonly emailExistsRequestBody: EmailExistsRequestBody;
|
|
20186
|
+
}
|
|
20187
|
+
/**
|
|
20188
|
+
* Request parameters for requestVerificationCode operation in PublicEmailApi.
|
|
20189
|
+
* @export
|
|
20190
|
+
* @interface PublicEmailApiRequestVerificationCodeRequest
|
|
20191
|
+
*/
|
|
20192
|
+
export interface PublicEmailApiRequestVerificationCodeRequest {
|
|
20193
|
+
/**
|
|
20194
|
+
*
|
|
20195
|
+
* @type {RequestEmailCodeBody}
|
|
20196
|
+
* @memberof PublicEmailApiRequestVerificationCode
|
|
20197
|
+
*/
|
|
20198
|
+
readonly requestEmailCodeBody: RequestEmailCodeBody;
|
|
20199
|
+
}
|
|
20200
|
+
/**
|
|
20201
|
+
* Request parameters for verifyCode operation in PublicEmailApi.
|
|
20202
|
+
* @export
|
|
20203
|
+
* @interface PublicEmailApiVerifyCodeRequest
|
|
20204
|
+
*/
|
|
20205
|
+
export interface PublicEmailApiVerifyCodeRequest {
|
|
20206
|
+
/**
|
|
20207
|
+
*
|
|
20208
|
+
* @type {VerifyEmailCodeBody}
|
|
20209
|
+
* @memberof PublicEmailApiVerifyCode
|
|
20210
|
+
*/
|
|
20211
|
+
readonly verifyEmailCodeBody: VerifyEmailCodeBody;
|
|
20212
|
+
}
|
|
20213
|
+
/**
|
|
20214
|
+
* PublicEmailApi - object-oriented interface
|
|
20215
|
+
* @export
|
|
20216
|
+
* @class PublicEmailApi
|
|
20217
|
+
* @extends {BaseAPI}
|
|
20218
|
+
*/
|
|
20219
|
+
export declare class PublicEmailApi extends BaseAPI {
|
|
20220
|
+
/**
|
|
20221
|
+
*
|
|
20222
|
+
* @param {PublicEmailApiAuthEmailExistsRequest} requestParameters Request parameters.
|
|
20223
|
+
* @param {*} [options] Override http request option.
|
|
20224
|
+
* @throws {RequiredError}
|
|
20225
|
+
* @memberof PublicEmailApi
|
|
20226
|
+
*/
|
|
20227
|
+
authEmailExists(requestParameters: PublicEmailApiAuthEmailExistsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailExistsResponse, any, {}>>;
|
|
20228
|
+
/**
|
|
20229
|
+
*
|
|
20230
|
+
* @param {PublicEmailApiRequestVerificationCodeRequest} requestParameters Request parameters.
|
|
20231
|
+
* @param {*} [options] Override http request option.
|
|
20232
|
+
* @throws {RequiredError}
|
|
20233
|
+
* @memberof PublicEmailApi
|
|
20234
|
+
*/
|
|
20235
|
+
requestVerificationCode(requestParameters: PublicEmailApiRequestVerificationCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestEmailCodeResponse, any, {}>>;
|
|
20236
|
+
/**
|
|
20237
|
+
*
|
|
20238
|
+
* @param {PublicEmailApiVerifyCodeRequest} requestParameters Request parameters.
|
|
20239
|
+
* @param {*} [options] Override http request option.
|
|
20240
|
+
* @throws {RequiredError}
|
|
20241
|
+
* @memberof PublicEmailApi
|
|
20242
|
+
*/
|
|
20243
|
+
verifyCode(requestParameters: PublicEmailApiVerifyCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VerifyEmailCodeResponse, any, {}>>;
|
|
20244
|
+
}
|
|
19566
20245
|
/**
|
|
19567
20246
|
* SportsManagerApi - axios parameter creator
|
|
19568
20247
|
* @export
|