@tennac-booking/sdk 1.0.186 → 1.0.188
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 +11 -0
- package/README.md +15 -1
- package/api.ts +639 -15
- package/dist/api.d.ts +451 -10
- package/dist/api.js +320 -15
- package/dist/esm/api.d.ts +451 -10
- package/dist/esm/api.js +312 -11
- package/docs/AuthApi.md +113 -0
- package/docs/ClubSummary.md +6 -0
- package/docs/PublicEmailApi.md +4 -4
- package/docs/RequestOrganizationEmailCodeBody.md +22 -0
- package/docs/RequestOrganizationEmailCodeResponse.md +22 -0
- package/docs/RequestVerificationCodeBody.md +26 -0
- package/docs/RequestVerificationCodeResponse.md +20 -0
- package/docs/SportResponse.md +2 -0
- package/docs/SupportedLanguage.md +10 -0
- package/docs/UserNextBookingSummary.md +26 -0
- package/docs/UserProfileResponse.md +6 -0
- package/docs/UsersApi.md +104 -0
- package/docs/VerifyOrganizationEmailCodeBody.md +24 -0
- package/docs/VerifyOrganizationEmailCodeResponse.md +22 -0
- package/docs/VerifyVerificationCodeBody.md +24 -0
- package/docs/VerifyVerificationCodeResponse.md +20 -0
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -3738,6 +3738,24 @@ export interface ClubSummary {
|
|
|
3738
3738
|
* @memberof ClubSummary
|
|
3739
3739
|
*/
|
|
3740
3740
|
'visitCount'?: number;
|
|
3741
|
+
/**
|
|
3742
|
+
*
|
|
3743
|
+
* @type {string}
|
|
3744
|
+
* @memberof ClubSummary
|
|
3745
|
+
*/
|
|
3746
|
+
'lastPlayedAt'?: string | null;
|
|
3747
|
+
/**
|
|
3748
|
+
*
|
|
3749
|
+
* @type {number}
|
|
3750
|
+
* @memberof ClubSummary
|
|
3751
|
+
*/
|
|
3752
|
+
'distanceInMeters'?: number;
|
|
3753
|
+
/**
|
|
3754
|
+
*
|
|
3755
|
+
* @type {number}
|
|
3756
|
+
* @memberof ClubSummary
|
|
3757
|
+
*/
|
|
3758
|
+
'distanceInKm'?: number;
|
|
3741
3759
|
/**
|
|
3742
3760
|
*
|
|
3743
3761
|
* @type {Array<string>}
|
|
@@ -10004,6 +10022,88 @@ export interface RequestEmailCodeResponse {
|
|
|
10004
10022
|
*/
|
|
10005
10023
|
'alreadyVerified'?: boolean;
|
|
10006
10024
|
}
|
|
10025
|
+
/**
|
|
10026
|
+
*
|
|
10027
|
+
* @export
|
|
10028
|
+
* @interface RequestOrganizationEmailCodeBody
|
|
10029
|
+
*/
|
|
10030
|
+
export interface RequestOrganizationEmailCodeBody {
|
|
10031
|
+
/**
|
|
10032
|
+
*
|
|
10033
|
+
* @type {string}
|
|
10034
|
+
* @memberof RequestOrganizationEmailCodeBody
|
|
10035
|
+
*/
|
|
10036
|
+
'organizationId': string;
|
|
10037
|
+
/**
|
|
10038
|
+
*
|
|
10039
|
+
* @type {string}
|
|
10040
|
+
* @memberof RequestOrganizationEmailCodeBody
|
|
10041
|
+
*/
|
|
10042
|
+
'organizationEmail': string;
|
|
10043
|
+
}
|
|
10044
|
+
/**
|
|
10045
|
+
*
|
|
10046
|
+
* @export
|
|
10047
|
+
* @interface RequestOrganizationEmailCodeResponse
|
|
10048
|
+
*/
|
|
10049
|
+
export interface RequestOrganizationEmailCodeResponse {
|
|
10050
|
+
/**
|
|
10051
|
+
*
|
|
10052
|
+
* @type {boolean}
|
|
10053
|
+
* @memberof RequestOrganizationEmailCodeResponse
|
|
10054
|
+
*/
|
|
10055
|
+
'sent': boolean;
|
|
10056
|
+
/**
|
|
10057
|
+
*
|
|
10058
|
+
* @type {boolean}
|
|
10059
|
+
* @memberof RequestOrganizationEmailCodeResponse
|
|
10060
|
+
*/
|
|
10061
|
+
'alreadyVerified'?: boolean;
|
|
10062
|
+
}
|
|
10063
|
+
/**
|
|
10064
|
+
*
|
|
10065
|
+
* @export
|
|
10066
|
+
* @interface RequestVerificationCodeBody
|
|
10067
|
+
*/
|
|
10068
|
+
export interface RequestVerificationCodeBody {
|
|
10069
|
+
/**
|
|
10070
|
+
*
|
|
10071
|
+
* @type {string}
|
|
10072
|
+
* @memberof RequestVerificationCodeBody
|
|
10073
|
+
*/
|
|
10074
|
+
'email': string;
|
|
10075
|
+
/**
|
|
10076
|
+
*
|
|
10077
|
+
* @type {string}
|
|
10078
|
+
* @memberof RequestVerificationCodeBody
|
|
10079
|
+
*/
|
|
10080
|
+
'context'?: string;
|
|
10081
|
+
/**
|
|
10082
|
+
*
|
|
10083
|
+
* @type {SupportedLanguage}
|
|
10084
|
+
* @memberof RequestVerificationCodeBody
|
|
10085
|
+
*/
|
|
10086
|
+
'lang'?: SupportedLanguage;
|
|
10087
|
+
/**
|
|
10088
|
+
*
|
|
10089
|
+
* @type {string}
|
|
10090
|
+
* @memberof RequestVerificationCodeBody
|
|
10091
|
+
*/
|
|
10092
|
+
'requestId'?: string;
|
|
10093
|
+
}
|
|
10094
|
+
/**
|
|
10095
|
+
*
|
|
10096
|
+
* @export
|
|
10097
|
+
* @interface RequestVerificationCodeResponse
|
|
10098
|
+
*/
|
|
10099
|
+
export interface RequestVerificationCodeResponse {
|
|
10100
|
+
/**
|
|
10101
|
+
*
|
|
10102
|
+
* @type {boolean}
|
|
10103
|
+
* @memberof RequestVerificationCodeResponse
|
|
10104
|
+
*/
|
|
10105
|
+
'sent': boolean;
|
|
10106
|
+
}
|
|
10007
10107
|
/**
|
|
10008
10108
|
*
|
|
10009
10109
|
* @export
|
|
@@ -10345,6 +10445,12 @@ export interface SportResponse {
|
|
|
10345
10445
|
* @memberof SportResponse
|
|
10346
10446
|
*/
|
|
10347
10447
|
'maxPlayers'?: number;
|
|
10448
|
+
/**
|
|
10449
|
+
* Durées de créneaux disponibles sur les terrains de ce sport (en minutes)
|
|
10450
|
+
* @type {Array<number>}
|
|
10451
|
+
* @memberof SportResponse
|
|
10452
|
+
*/
|
|
10453
|
+
'slotDurations'?: Array<number>;
|
|
10348
10454
|
/**
|
|
10349
10455
|
* Types de surface pour le sport
|
|
10350
10456
|
* @type {Array<string>}
|
|
@@ -11502,6 +11608,16 @@ export interface SubscriptionPlanResponse {
|
|
|
11502
11608
|
*/
|
|
11503
11609
|
'discount'?: SubscriptionPlanDiscountResponse;
|
|
11504
11610
|
}
|
|
11611
|
+
/**
|
|
11612
|
+
*
|
|
11613
|
+
* @export
|
|
11614
|
+
* @enum {string}
|
|
11615
|
+
*/
|
|
11616
|
+
export declare const SupportedLanguage: {
|
|
11617
|
+
readonly Fr: "fr";
|
|
11618
|
+
readonly En: "en";
|
|
11619
|
+
};
|
|
11620
|
+
export type SupportedLanguage = typeof SupportedLanguage[keyof typeof SupportedLanguage];
|
|
11505
11621
|
/**
|
|
11506
11622
|
*
|
|
11507
11623
|
* @export
|
|
@@ -13129,6 +13245,37 @@ export declare const UserLocationSummaryTypeEnum: {
|
|
|
13129
13245
|
readonly Point: "Point";
|
|
13130
13246
|
};
|
|
13131
13247
|
export type UserLocationSummaryTypeEnum = typeof UserLocationSummaryTypeEnum[keyof typeof UserLocationSummaryTypeEnum];
|
|
13248
|
+
/**
|
|
13249
|
+
*
|
|
13250
|
+
* @export
|
|
13251
|
+
* @interface UserNextBookingSummary
|
|
13252
|
+
*/
|
|
13253
|
+
export interface UserNextBookingSummary {
|
|
13254
|
+
/**
|
|
13255
|
+
*
|
|
13256
|
+
* @type {string}
|
|
13257
|
+
* @memberof UserNextBookingSummary
|
|
13258
|
+
*/
|
|
13259
|
+
'id': string;
|
|
13260
|
+
/**
|
|
13261
|
+
*
|
|
13262
|
+
* @type {string}
|
|
13263
|
+
* @memberof UserNextBookingSummary
|
|
13264
|
+
*/
|
|
13265
|
+
'date': string | null;
|
|
13266
|
+
/**
|
|
13267
|
+
*
|
|
13268
|
+
* @type {Array<BookingSlotInfo>}
|
|
13269
|
+
* @memberof UserNextBookingSummary
|
|
13270
|
+
*/
|
|
13271
|
+
'slots': Array<BookingSlotInfo>;
|
|
13272
|
+
/**
|
|
13273
|
+
*
|
|
13274
|
+
* @type {BookingClubInfo}
|
|
13275
|
+
* @memberof UserNextBookingSummary
|
|
13276
|
+
*/
|
|
13277
|
+
'club': BookingClubInfo | null;
|
|
13278
|
+
}
|
|
13132
13279
|
/**
|
|
13133
13280
|
*
|
|
13134
13281
|
* @export
|
|
@@ -13341,6 +13488,12 @@ export interface UserProfileResponse {
|
|
|
13341
13488
|
* @memberof UserProfileResponse
|
|
13342
13489
|
*/
|
|
13343
13490
|
'upcomingBookingsCount'?: number;
|
|
13491
|
+
/**
|
|
13492
|
+
*
|
|
13493
|
+
* @type {UserNextBookingSummary}
|
|
13494
|
+
* @memberof UserProfileResponse
|
|
13495
|
+
*/
|
|
13496
|
+
'nextBooking'?: UserNextBookingSummary | null;
|
|
13344
13497
|
/**
|
|
13345
13498
|
*
|
|
13346
13499
|
* @type {number}
|
|
@@ -13371,6 +13524,18 @@ export interface UserProfileResponse {
|
|
|
13371
13524
|
* @memberof UserProfileResponse
|
|
13372
13525
|
*/
|
|
13373
13526
|
'frequentlyVisitedClubs'?: Array<ClubSummary>;
|
|
13527
|
+
/**
|
|
13528
|
+
*
|
|
13529
|
+
* @type {Array<ClubSummary>}
|
|
13530
|
+
* @memberof UserProfileResponse
|
|
13531
|
+
*/
|
|
13532
|
+
'recentlyPlayedClubs'?: Array<ClubSummary>;
|
|
13533
|
+
/**
|
|
13534
|
+
*
|
|
13535
|
+
* @type {Array<ClubSummary>}
|
|
13536
|
+
* @memberof UserProfileResponse
|
|
13537
|
+
*/
|
|
13538
|
+
'nearbyCityClubs'?: Array<ClubSummary>;
|
|
13374
13539
|
/**
|
|
13375
13540
|
*
|
|
13376
13541
|
* @type {Array<PlayerSummary>}
|
|
@@ -13482,6 +13647,88 @@ export interface VerifyEmailRequest {
|
|
|
13482
13647
|
*/
|
|
13483
13648
|
'token'?: string;
|
|
13484
13649
|
}
|
|
13650
|
+
/**
|
|
13651
|
+
*
|
|
13652
|
+
* @export
|
|
13653
|
+
* @interface VerifyOrganizationEmailCodeBody
|
|
13654
|
+
*/
|
|
13655
|
+
export interface VerifyOrganizationEmailCodeBody {
|
|
13656
|
+
/**
|
|
13657
|
+
*
|
|
13658
|
+
* @type {string}
|
|
13659
|
+
* @memberof VerifyOrganizationEmailCodeBody
|
|
13660
|
+
*/
|
|
13661
|
+
'organizationId': string;
|
|
13662
|
+
/**
|
|
13663
|
+
*
|
|
13664
|
+
* @type {string}
|
|
13665
|
+
* @memberof VerifyOrganizationEmailCodeBody
|
|
13666
|
+
*/
|
|
13667
|
+
'organizationEmail': string;
|
|
13668
|
+
/**
|
|
13669
|
+
*
|
|
13670
|
+
* @type {string}
|
|
13671
|
+
* @memberof VerifyOrganizationEmailCodeBody
|
|
13672
|
+
*/
|
|
13673
|
+
'code': string;
|
|
13674
|
+
}
|
|
13675
|
+
/**
|
|
13676
|
+
*
|
|
13677
|
+
* @export
|
|
13678
|
+
* @interface VerifyOrganizationEmailCodeResponse
|
|
13679
|
+
*/
|
|
13680
|
+
export interface VerifyOrganizationEmailCodeResponse {
|
|
13681
|
+
/**
|
|
13682
|
+
*
|
|
13683
|
+
* @type {boolean}
|
|
13684
|
+
* @memberof VerifyOrganizationEmailCodeResponse
|
|
13685
|
+
*/
|
|
13686
|
+
'verified': boolean;
|
|
13687
|
+
/**
|
|
13688
|
+
*
|
|
13689
|
+
* @type {boolean}
|
|
13690
|
+
* @memberof VerifyOrganizationEmailCodeResponse
|
|
13691
|
+
*/
|
|
13692
|
+
'alreadyVerified'?: boolean;
|
|
13693
|
+
}
|
|
13694
|
+
/**
|
|
13695
|
+
*
|
|
13696
|
+
* @export
|
|
13697
|
+
* @interface VerifyVerificationCodeBody
|
|
13698
|
+
*/
|
|
13699
|
+
export interface VerifyVerificationCodeBody {
|
|
13700
|
+
/**
|
|
13701
|
+
*
|
|
13702
|
+
* @type {string}
|
|
13703
|
+
* @memberof VerifyVerificationCodeBody
|
|
13704
|
+
*/
|
|
13705
|
+
'email': string;
|
|
13706
|
+
/**
|
|
13707
|
+
*
|
|
13708
|
+
* @type {string}
|
|
13709
|
+
* @memberof VerifyVerificationCodeBody
|
|
13710
|
+
*/
|
|
13711
|
+
'code': string;
|
|
13712
|
+
/**
|
|
13713
|
+
*
|
|
13714
|
+
* @type {string}
|
|
13715
|
+
* @memberof VerifyVerificationCodeBody
|
|
13716
|
+
*/
|
|
13717
|
+
'context'?: string;
|
|
13718
|
+
}
|
|
13719
|
+
/**
|
|
13720
|
+
*
|
|
13721
|
+
* @export
|
|
13722
|
+
* @interface VerifyVerificationCodeResponse
|
|
13723
|
+
*/
|
|
13724
|
+
export interface VerifyVerificationCodeResponse {
|
|
13725
|
+
/**
|
|
13726
|
+
*
|
|
13727
|
+
* @type {boolean}
|
|
13728
|
+
* @memberof VerifyVerificationCodeResponse
|
|
13729
|
+
*/
|
|
13730
|
+
'verified': boolean;
|
|
13731
|
+
}
|
|
13485
13732
|
/**
|
|
13486
13733
|
*
|
|
13487
13734
|
* @export
|
|
@@ -13705,6 +13952,116 @@ export interface YearlyTurnoverResponse {
|
|
|
13705
13952
|
*/
|
|
13706
13953
|
'monthlyBreakdown': Array<MonthlyBreakdown>;
|
|
13707
13954
|
}
|
|
13955
|
+
/**
|
|
13956
|
+
* AuthApi - axios parameter creator
|
|
13957
|
+
* @export
|
|
13958
|
+
*/
|
|
13959
|
+
export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
13960
|
+
/**
|
|
13961
|
+
*
|
|
13962
|
+
* @param {RequestVerificationCodeBody} requestVerificationCodeBody
|
|
13963
|
+
* @param {*} [options] Override http request option.
|
|
13964
|
+
* @throws {RequiredError}
|
|
13965
|
+
*/
|
|
13966
|
+
requestVerificationCode: (requestVerificationCodeBody: RequestVerificationCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13967
|
+
/**
|
|
13968
|
+
*
|
|
13969
|
+
* @param {VerifyVerificationCodeBody} verifyVerificationCodeBody
|
|
13970
|
+
* @param {*} [options] Override http request option.
|
|
13971
|
+
* @throws {RequiredError}
|
|
13972
|
+
*/
|
|
13973
|
+
verifyVerificationCode: (verifyVerificationCodeBody: VerifyVerificationCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13974
|
+
};
|
|
13975
|
+
/**
|
|
13976
|
+
* AuthApi - functional programming interface
|
|
13977
|
+
* @export
|
|
13978
|
+
*/
|
|
13979
|
+
export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
13980
|
+
/**
|
|
13981
|
+
*
|
|
13982
|
+
* @param {RequestVerificationCodeBody} requestVerificationCodeBody
|
|
13983
|
+
* @param {*} [options] Override http request option.
|
|
13984
|
+
* @throws {RequiredError}
|
|
13985
|
+
*/
|
|
13986
|
+
requestVerificationCode(requestVerificationCodeBody: RequestVerificationCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestVerificationCodeResponse>>;
|
|
13987
|
+
/**
|
|
13988
|
+
*
|
|
13989
|
+
* @param {VerifyVerificationCodeBody} verifyVerificationCodeBody
|
|
13990
|
+
* @param {*} [options] Override http request option.
|
|
13991
|
+
* @throws {RequiredError}
|
|
13992
|
+
*/
|
|
13993
|
+
verifyVerificationCode(verifyVerificationCodeBody: VerifyVerificationCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VerifyVerificationCodeResponse>>;
|
|
13994
|
+
};
|
|
13995
|
+
/**
|
|
13996
|
+
* AuthApi - factory interface
|
|
13997
|
+
* @export
|
|
13998
|
+
*/
|
|
13999
|
+
export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14000
|
+
/**
|
|
14001
|
+
*
|
|
14002
|
+
* @param {AuthApiRequestVerificationCodeRequest} requestParameters Request parameters.
|
|
14003
|
+
* @param {*} [options] Override http request option.
|
|
14004
|
+
* @throws {RequiredError}
|
|
14005
|
+
*/
|
|
14006
|
+
requestVerificationCode(requestParameters: AuthApiRequestVerificationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestVerificationCodeResponse>;
|
|
14007
|
+
/**
|
|
14008
|
+
*
|
|
14009
|
+
* @param {AuthApiVerifyVerificationCodeRequest} requestParameters Request parameters.
|
|
14010
|
+
* @param {*} [options] Override http request option.
|
|
14011
|
+
* @throws {RequiredError}
|
|
14012
|
+
*/
|
|
14013
|
+
verifyVerificationCode(requestParameters: AuthApiVerifyVerificationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<VerifyVerificationCodeResponse>;
|
|
14014
|
+
};
|
|
14015
|
+
/**
|
|
14016
|
+
* Request parameters for requestVerificationCode operation in AuthApi.
|
|
14017
|
+
* @export
|
|
14018
|
+
* @interface AuthApiRequestVerificationCodeRequest
|
|
14019
|
+
*/
|
|
14020
|
+
export interface AuthApiRequestVerificationCodeRequest {
|
|
14021
|
+
/**
|
|
14022
|
+
*
|
|
14023
|
+
* @type {RequestVerificationCodeBody}
|
|
14024
|
+
* @memberof AuthApiRequestVerificationCode
|
|
14025
|
+
*/
|
|
14026
|
+
readonly requestVerificationCodeBody: RequestVerificationCodeBody;
|
|
14027
|
+
}
|
|
14028
|
+
/**
|
|
14029
|
+
* Request parameters for verifyVerificationCode operation in AuthApi.
|
|
14030
|
+
* @export
|
|
14031
|
+
* @interface AuthApiVerifyVerificationCodeRequest
|
|
14032
|
+
*/
|
|
14033
|
+
export interface AuthApiVerifyVerificationCodeRequest {
|
|
14034
|
+
/**
|
|
14035
|
+
*
|
|
14036
|
+
* @type {VerifyVerificationCodeBody}
|
|
14037
|
+
* @memberof AuthApiVerifyVerificationCode
|
|
14038
|
+
*/
|
|
14039
|
+
readonly verifyVerificationCodeBody: VerifyVerificationCodeBody;
|
|
14040
|
+
}
|
|
14041
|
+
/**
|
|
14042
|
+
* AuthApi - object-oriented interface
|
|
14043
|
+
* @export
|
|
14044
|
+
* @class AuthApi
|
|
14045
|
+
* @extends {BaseAPI}
|
|
14046
|
+
*/
|
|
14047
|
+
export declare class AuthApi extends BaseAPI {
|
|
14048
|
+
/**
|
|
14049
|
+
*
|
|
14050
|
+
* @param {AuthApiRequestVerificationCodeRequest} requestParameters Request parameters.
|
|
14051
|
+
* @param {*} [options] Override http request option.
|
|
14052
|
+
* @throws {RequiredError}
|
|
14053
|
+
* @memberof AuthApi
|
|
14054
|
+
*/
|
|
14055
|
+
requestVerificationCode(requestParameters: AuthApiRequestVerificationCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestVerificationCodeResponse, any, {}>>;
|
|
14056
|
+
/**
|
|
14057
|
+
*
|
|
14058
|
+
* @param {AuthApiVerifyVerificationCodeRequest} requestParameters Request parameters.
|
|
14059
|
+
* @param {*} [options] Override http request option.
|
|
14060
|
+
* @throws {RequiredError}
|
|
14061
|
+
* @memberof AuthApi
|
|
14062
|
+
*/
|
|
14063
|
+
verifyVerificationCode(requestParameters: AuthApiVerifyVerificationCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VerifyVerificationCodeResponse, any, {}>>;
|
|
14064
|
+
}
|
|
13708
14065
|
/**
|
|
13709
14066
|
* BookingsApi - axios parameter creator
|
|
13710
14067
|
* @export
|
|
@@ -20935,7 +21292,7 @@ export declare const PublicEmailApiAxiosParamCreator: (configuration?: Configura
|
|
|
20935
21292
|
* @param {*} [options] Override http request option.
|
|
20936
21293
|
* @throws {RequiredError}
|
|
20937
21294
|
*/
|
|
20938
|
-
|
|
21295
|
+
requestPublicEmailVerificationCode: (requestEmailCodeBody: RequestEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20939
21296
|
/**
|
|
20940
21297
|
*
|
|
20941
21298
|
* @param {VerifyEmailCodeBody} verifyEmailCodeBody
|
|
@@ -20962,7 +21319,7 @@ export declare const PublicEmailApiFp: (configuration?: Configuration) => {
|
|
|
20962
21319
|
* @param {*} [options] Override http request option.
|
|
20963
21320
|
* @throws {RequiredError}
|
|
20964
21321
|
*/
|
|
20965
|
-
|
|
21322
|
+
requestPublicEmailVerificationCode(requestEmailCodeBody: RequestEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestEmailCodeResponse>>;
|
|
20966
21323
|
/**
|
|
20967
21324
|
*
|
|
20968
21325
|
* @param {VerifyEmailCodeBody} verifyEmailCodeBody
|
|
@@ -20985,11 +21342,11 @@ export declare const PublicEmailApiFactory: (configuration?: Configuration, base
|
|
|
20985
21342
|
authEmailExists(requestParameters: PublicEmailApiAuthEmailExistsRequest, options?: RawAxiosRequestConfig): AxiosPromise<EmailExistsResponse>;
|
|
20986
21343
|
/**
|
|
20987
21344
|
*
|
|
20988
|
-
* @param {
|
|
21345
|
+
* @param {PublicEmailApiRequestPublicEmailVerificationCodeRequest} requestParameters Request parameters.
|
|
20989
21346
|
* @param {*} [options] Override http request option.
|
|
20990
21347
|
* @throws {RequiredError}
|
|
20991
21348
|
*/
|
|
20992
|
-
|
|
21349
|
+
requestPublicEmailVerificationCode(requestParameters: PublicEmailApiRequestPublicEmailVerificationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestEmailCodeResponse>;
|
|
20993
21350
|
/**
|
|
20994
21351
|
*
|
|
20995
21352
|
* @param {PublicEmailApiVerifyCodeRequest} requestParameters Request parameters.
|
|
@@ -21012,15 +21369,15 @@ export interface PublicEmailApiAuthEmailExistsRequest {
|
|
|
21012
21369
|
readonly emailExistsRequestBody: EmailExistsRequestBody;
|
|
21013
21370
|
}
|
|
21014
21371
|
/**
|
|
21015
|
-
* Request parameters for
|
|
21372
|
+
* Request parameters for requestPublicEmailVerificationCode operation in PublicEmailApi.
|
|
21016
21373
|
* @export
|
|
21017
|
-
* @interface
|
|
21374
|
+
* @interface PublicEmailApiRequestPublicEmailVerificationCodeRequest
|
|
21018
21375
|
*/
|
|
21019
|
-
export interface
|
|
21376
|
+
export interface PublicEmailApiRequestPublicEmailVerificationCodeRequest {
|
|
21020
21377
|
/**
|
|
21021
21378
|
*
|
|
21022
21379
|
* @type {RequestEmailCodeBody}
|
|
21023
|
-
* @memberof
|
|
21380
|
+
* @memberof PublicEmailApiRequestPublicEmailVerificationCode
|
|
21024
21381
|
*/
|
|
21025
21382
|
readonly requestEmailCodeBody: RequestEmailCodeBody;
|
|
21026
21383
|
}
|
|
@@ -21054,12 +21411,12 @@ export declare class PublicEmailApi extends BaseAPI {
|
|
|
21054
21411
|
authEmailExists(requestParameters: PublicEmailApiAuthEmailExistsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailExistsResponse, any, {}>>;
|
|
21055
21412
|
/**
|
|
21056
21413
|
*
|
|
21057
|
-
* @param {
|
|
21414
|
+
* @param {PublicEmailApiRequestPublicEmailVerificationCodeRequest} requestParameters Request parameters.
|
|
21058
21415
|
* @param {*} [options] Override http request option.
|
|
21059
21416
|
* @throws {RequiredError}
|
|
21060
21417
|
* @memberof PublicEmailApi
|
|
21061
21418
|
*/
|
|
21062
|
-
|
|
21419
|
+
requestPublicEmailVerificationCode(requestParameters: PublicEmailApiRequestPublicEmailVerificationCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestEmailCodeResponse, any, {}>>;
|
|
21063
21420
|
/**
|
|
21064
21421
|
*
|
|
21065
21422
|
* @param {PublicEmailApiVerifyCodeRequest} requestParameters Request parameters.
|
|
@@ -22135,6 +22492,13 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
22135
22492
|
* @throws {RequiredError}
|
|
22136
22493
|
*/
|
|
22137
22494
|
requestEmailVerification: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22495
|
+
/**
|
|
22496
|
+
*
|
|
22497
|
+
* @param {RequestOrganizationEmailCodeBody} requestOrganizationEmailCodeBody
|
|
22498
|
+
* @param {*} [options] Override http request option.
|
|
22499
|
+
* @throws {RequiredError}
|
|
22500
|
+
*/
|
|
22501
|
+
requestOrganizationCode: (requestOrganizationEmailCodeBody: RequestOrganizationEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22138
22502
|
/**
|
|
22139
22503
|
*
|
|
22140
22504
|
* @param {PasswordResetRequestBody} passwordResetRequestBody
|
|
@@ -22198,6 +22562,13 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
22198
22562
|
* @throws {RequiredError}
|
|
22199
22563
|
*/
|
|
22200
22564
|
verifyOrganization: (verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22565
|
+
/**
|
|
22566
|
+
*
|
|
22567
|
+
* @param {VerifyOrganizationEmailCodeBody} verifyOrganizationEmailCodeBody
|
|
22568
|
+
* @param {*} [options] Override http request option.
|
|
22569
|
+
* @throws {RequiredError}
|
|
22570
|
+
*/
|
|
22571
|
+
verifyOrganizationCode: (verifyOrganizationEmailCodeBody: VerifyOrganizationEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22201
22572
|
};
|
|
22202
22573
|
/**
|
|
22203
22574
|
* UsersApi - functional programming interface
|
|
@@ -22446,6 +22817,13 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
22446
22817
|
* @throws {RequiredError}
|
|
22447
22818
|
*/
|
|
22448
22819
|
requestEmailVerification(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
22820
|
+
/**
|
|
22821
|
+
*
|
|
22822
|
+
* @param {RequestOrganizationEmailCodeBody} requestOrganizationEmailCodeBody
|
|
22823
|
+
* @param {*} [options] Override http request option.
|
|
22824
|
+
* @throws {RequiredError}
|
|
22825
|
+
*/
|
|
22826
|
+
requestOrganizationCode(requestOrganizationEmailCodeBody: RequestOrganizationEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestOrganizationEmailCodeResponse>>;
|
|
22449
22827
|
/**
|
|
22450
22828
|
*
|
|
22451
22829
|
* @param {PasswordResetRequestBody} passwordResetRequestBody
|
|
@@ -22509,6 +22887,13 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
22509
22887
|
* @throws {RequiredError}
|
|
22510
22888
|
*/
|
|
22511
22889
|
verifyOrganization(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
22890
|
+
/**
|
|
22891
|
+
*
|
|
22892
|
+
* @param {VerifyOrganizationEmailCodeBody} verifyOrganizationEmailCodeBody
|
|
22893
|
+
* @param {*} [options] Override http request option.
|
|
22894
|
+
* @throws {RequiredError}
|
|
22895
|
+
*/
|
|
22896
|
+
verifyOrganizationCode(verifyOrganizationEmailCodeBody: VerifyOrganizationEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VerifyOrganizationEmailCodeResponse>>;
|
|
22512
22897
|
};
|
|
22513
22898
|
/**
|
|
22514
22899
|
* UsersApi - factory interface
|
|
@@ -22738,6 +23123,13 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
22738
23123
|
* @throws {RequiredError}
|
|
22739
23124
|
*/
|
|
22740
23125
|
requestEmailVerification(options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
23126
|
+
/**
|
|
23127
|
+
*
|
|
23128
|
+
* @param {UsersApiRequestOrganizationCodeRequest} requestParameters Request parameters.
|
|
23129
|
+
* @param {*} [options] Override http request option.
|
|
23130
|
+
* @throws {RequiredError}
|
|
23131
|
+
*/
|
|
23132
|
+
requestOrganizationCode(requestParameters: UsersApiRequestOrganizationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestOrganizationEmailCodeResponse>;
|
|
22741
23133
|
/**
|
|
22742
23134
|
*
|
|
22743
23135
|
* @param {UsersApiRequestPasswordResetRequest} requestParameters Request parameters.
|
|
@@ -22801,6 +23193,13 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
22801
23193
|
* @throws {RequiredError}
|
|
22802
23194
|
*/
|
|
22803
23195
|
verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
23196
|
+
/**
|
|
23197
|
+
*
|
|
23198
|
+
* @param {UsersApiVerifyOrganizationCodeRequest} requestParameters Request parameters.
|
|
23199
|
+
* @param {*} [options] Override http request option.
|
|
23200
|
+
* @throws {RequiredError}
|
|
23201
|
+
*/
|
|
23202
|
+
verifyOrganizationCode(requestParameters: UsersApiVerifyOrganizationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<VerifyOrganizationEmailCodeResponse>;
|
|
22804
23203
|
};
|
|
22805
23204
|
/**
|
|
22806
23205
|
* Request parameters for addFavoriteClub operation in UsersApi.
|
|
@@ -23215,6 +23614,19 @@ export interface UsersApiRemoveOrganizationRequest {
|
|
|
23215
23614
|
*/
|
|
23216
23615
|
readonly addOrganizationRequest: AddOrganizationRequest;
|
|
23217
23616
|
}
|
|
23617
|
+
/**
|
|
23618
|
+
* Request parameters for requestOrganizationCode operation in UsersApi.
|
|
23619
|
+
* @export
|
|
23620
|
+
* @interface UsersApiRequestOrganizationCodeRequest
|
|
23621
|
+
*/
|
|
23622
|
+
export interface UsersApiRequestOrganizationCodeRequest {
|
|
23623
|
+
/**
|
|
23624
|
+
*
|
|
23625
|
+
* @type {RequestOrganizationEmailCodeBody}
|
|
23626
|
+
* @memberof UsersApiRequestOrganizationCode
|
|
23627
|
+
*/
|
|
23628
|
+
readonly requestOrganizationEmailCodeBody: RequestOrganizationEmailCodeBody;
|
|
23629
|
+
}
|
|
23218
23630
|
/**
|
|
23219
23631
|
* Request parameters for requestPasswordReset operation in UsersApi.
|
|
23220
23632
|
* @export
|
|
@@ -23332,6 +23744,19 @@ export interface UsersApiVerifyOrganizationRequest {
|
|
|
23332
23744
|
*/
|
|
23333
23745
|
readonly verifyEmailRequest: VerifyEmailRequest;
|
|
23334
23746
|
}
|
|
23747
|
+
/**
|
|
23748
|
+
* Request parameters for verifyOrganizationCode operation in UsersApi.
|
|
23749
|
+
* @export
|
|
23750
|
+
* @interface UsersApiVerifyOrganizationCodeRequest
|
|
23751
|
+
*/
|
|
23752
|
+
export interface UsersApiVerifyOrganizationCodeRequest {
|
|
23753
|
+
/**
|
|
23754
|
+
*
|
|
23755
|
+
* @type {VerifyOrganizationEmailCodeBody}
|
|
23756
|
+
* @memberof UsersApiVerifyOrganizationCode
|
|
23757
|
+
*/
|
|
23758
|
+
readonly verifyOrganizationEmailCodeBody: VerifyOrganizationEmailCodeBody;
|
|
23759
|
+
}
|
|
23335
23760
|
/**
|
|
23336
23761
|
* UsersApi - object-oriented interface
|
|
23337
23762
|
* @export
|
|
@@ -23594,6 +24019,14 @@ export declare class UsersApi extends BaseAPI {
|
|
|
23594
24019
|
* @memberof UsersApi
|
|
23595
24020
|
*/
|
|
23596
24021
|
requestEmailVerification(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
24022
|
+
/**
|
|
24023
|
+
*
|
|
24024
|
+
* @param {UsersApiRequestOrganizationCodeRequest} requestParameters Request parameters.
|
|
24025
|
+
* @param {*} [options] Override http request option.
|
|
24026
|
+
* @throws {RequiredError}
|
|
24027
|
+
* @memberof UsersApi
|
|
24028
|
+
*/
|
|
24029
|
+
requestOrganizationCode(requestParameters: UsersApiRequestOrganizationCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestOrganizationEmailCodeResponse, any, {}>>;
|
|
23597
24030
|
/**
|
|
23598
24031
|
*
|
|
23599
24032
|
* @param {UsersApiRequestPasswordResetRequest} requestParameters Request parameters.
|
|
@@ -23666,6 +24099,14 @@ export declare class UsersApi extends BaseAPI {
|
|
|
23666
24099
|
* @memberof UsersApi
|
|
23667
24100
|
*/
|
|
23668
24101
|
verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
24102
|
+
/**
|
|
24103
|
+
*
|
|
24104
|
+
* @param {UsersApiVerifyOrganizationCodeRequest} requestParameters Request parameters.
|
|
24105
|
+
* @param {*} [options] Override http request option.
|
|
24106
|
+
* @throws {RequiredError}
|
|
24107
|
+
* @memberof UsersApi
|
|
24108
|
+
*/
|
|
24109
|
+
verifyOrganizationCode(requestParameters: UsersApiVerifyOrganizationCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VerifyOrganizationEmailCodeResponse, any, {}>>;
|
|
23669
24110
|
}
|
|
23670
24111
|
/**
|
|
23671
24112
|
* WaitListApi - axios parameter creator
|