@tennac-booking/sdk 1.0.186 → 1.0.187
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 +603 -15
- package/dist/api.d.ts +415 -10
- package/dist/api.js +320 -15
- package/dist/esm/api.d.ts +415 -10
- package/dist/esm/api.js +312 -11
- package/docs/AuthApi.md +113 -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/SupportedLanguage.md +10 -0
- package/docs/UserNextBookingSummary.md +26 -0
- package/docs/UserProfileResponse.md +2 -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/api.d.ts
CHANGED
|
@@ -10004,6 +10004,88 @@ export interface RequestEmailCodeResponse {
|
|
|
10004
10004
|
*/
|
|
10005
10005
|
'alreadyVerified'?: boolean;
|
|
10006
10006
|
}
|
|
10007
|
+
/**
|
|
10008
|
+
*
|
|
10009
|
+
* @export
|
|
10010
|
+
* @interface RequestOrganizationEmailCodeBody
|
|
10011
|
+
*/
|
|
10012
|
+
export interface RequestOrganizationEmailCodeBody {
|
|
10013
|
+
/**
|
|
10014
|
+
*
|
|
10015
|
+
* @type {string}
|
|
10016
|
+
* @memberof RequestOrganizationEmailCodeBody
|
|
10017
|
+
*/
|
|
10018
|
+
'organizationId': string;
|
|
10019
|
+
/**
|
|
10020
|
+
*
|
|
10021
|
+
* @type {string}
|
|
10022
|
+
* @memberof RequestOrganizationEmailCodeBody
|
|
10023
|
+
*/
|
|
10024
|
+
'organizationEmail': string;
|
|
10025
|
+
}
|
|
10026
|
+
/**
|
|
10027
|
+
*
|
|
10028
|
+
* @export
|
|
10029
|
+
* @interface RequestOrganizationEmailCodeResponse
|
|
10030
|
+
*/
|
|
10031
|
+
export interface RequestOrganizationEmailCodeResponse {
|
|
10032
|
+
/**
|
|
10033
|
+
*
|
|
10034
|
+
* @type {boolean}
|
|
10035
|
+
* @memberof RequestOrganizationEmailCodeResponse
|
|
10036
|
+
*/
|
|
10037
|
+
'sent': boolean;
|
|
10038
|
+
/**
|
|
10039
|
+
*
|
|
10040
|
+
* @type {boolean}
|
|
10041
|
+
* @memberof RequestOrganizationEmailCodeResponse
|
|
10042
|
+
*/
|
|
10043
|
+
'alreadyVerified'?: boolean;
|
|
10044
|
+
}
|
|
10045
|
+
/**
|
|
10046
|
+
*
|
|
10047
|
+
* @export
|
|
10048
|
+
* @interface RequestVerificationCodeBody
|
|
10049
|
+
*/
|
|
10050
|
+
export interface RequestVerificationCodeBody {
|
|
10051
|
+
/**
|
|
10052
|
+
*
|
|
10053
|
+
* @type {string}
|
|
10054
|
+
* @memberof RequestVerificationCodeBody
|
|
10055
|
+
*/
|
|
10056
|
+
'email': string;
|
|
10057
|
+
/**
|
|
10058
|
+
*
|
|
10059
|
+
* @type {string}
|
|
10060
|
+
* @memberof RequestVerificationCodeBody
|
|
10061
|
+
*/
|
|
10062
|
+
'context'?: string;
|
|
10063
|
+
/**
|
|
10064
|
+
*
|
|
10065
|
+
* @type {SupportedLanguage}
|
|
10066
|
+
* @memberof RequestVerificationCodeBody
|
|
10067
|
+
*/
|
|
10068
|
+
'lang'?: SupportedLanguage;
|
|
10069
|
+
/**
|
|
10070
|
+
*
|
|
10071
|
+
* @type {string}
|
|
10072
|
+
* @memberof RequestVerificationCodeBody
|
|
10073
|
+
*/
|
|
10074
|
+
'requestId'?: string;
|
|
10075
|
+
}
|
|
10076
|
+
/**
|
|
10077
|
+
*
|
|
10078
|
+
* @export
|
|
10079
|
+
* @interface RequestVerificationCodeResponse
|
|
10080
|
+
*/
|
|
10081
|
+
export interface RequestVerificationCodeResponse {
|
|
10082
|
+
/**
|
|
10083
|
+
*
|
|
10084
|
+
* @type {boolean}
|
|
10085
|
+
* @memberof RequestVerificationCodeResponse
|
|
10086
|
+
*/
|
|
10087
|
+
'sent': boolean;
|
|
10088
|
+
}
|
|
10007
10089
|
/**
|
|
10008
10090
|
*
|
|
10009
10091
|
* @export
|
|
@@ -11502,6 +11584,16 @@ export interface SubscriptionPlanResponse {
|
|
|
11502
11584
|
*/
|
|
11503
11585
|
'discount'?: SubscriptionPlanDiscountResponse;
|
|
11504
11586
|
}
|
|
11587
|
+
/**
|
|
11588
|
+
*
|
|
11589
|
+
* @export
|
|
11590
|
+
* @enum {string}
|
|
11591
|
+
*/
|
|
11592
|
+
export declare const SupportedLanguage: {
|
|
11593
|
+
readonly Fr: "fr";
|
|
11594
|
+
readonly En: "en";
|
|
11595
|
+
};
|
|
11596
|
+
export type SupportedLanguage = typeof SupportedLanguage[keyof typeof SupportedLanguage];
|
|
11505
11597
|
/**
|
|
11506
11598
|
*
|
|
11507
11599
|
* @export
|
|
@@ -13129,6 +13221,37 @@ export declare const UserLocationSummaryTypeEnum: {
|
|
|
13129
13221
|
readonly Point: "Point";
|
|
13130
13222
|
};
|
|
13131
13223
|
export type UserLocationSummaryTypeEnum = typeof UserLocationSummaryTypeEnum[keyof typeof UserLocationSummaryTypeEnum];
|
|
13224
|
+
/**
|
|
13225
|
+
*
|
|
13226
|
+
* @export
|
|
13227
|
+
* @interface UserNextBookingSummary
|
|
13228
|
+
*/
|
|
13229
|
+
export interface UserNextBookingSummary {
|
|
13230
|
+
/**
|
|
13231
|
+
*
|
|
13232
|
+
* @type {string}
|
|
13233
|
+
* @memberof UserNextBookingSummary
|
|
13234
|
+
*/
|
|
13235
|
+
'id': string;
|
|
13236
|
+
/**
|
|
13237
|
+
*
|
|
13238
|
+
* @type {string}
|
|
13239
|
+
* @memberof UserNextBookingSummary
|
|
13240
|
+
*/
|
|
13241
|
+
'date': string | null;
|
|
13242
|
+
/**
|
|
13243
|
+
*
|
|
13244
|
+
* @type {Array<BookingSlotInfo>}
|
|
13245
|
+
* @memberof UserNextBookingSummary
|
|
13246
|
+
*/
|
|
13247
|
+
'slots': Array<BookingSlotInfo>;
|
|
13248
|
+
/**
|
|
13249
|
+
*
|
|
13250
|
+
* @type {BookingClubInfo}
|
|
13251
|
+
* @memberof UserNextBookingSummary
|
|
13252
|
+
*/
|
|
13253
|
+
'club': BookingClubInfo | null;
|
|
13254
|
+
}
|
|
13132
13255
|
/**
|
|
13133
13256
|
*
|
|
13134
13257
|
* @export
|
|
@@ -13341,6 +13464,12 @@ export interface UserProfileResponse {
|
|
|
13341
13464
|
* @memberof UserProfileResponse
|
|
13342
13465
|
*/
|
|
13343
13466
|
'upcomingBookingsCount'?: number;
|
|
13467
|
+
/**
|
|
13468
|
+
*
|
|
13469
|
+
* @type {UserNextBookingSummary}
|
|
13470
|
+
* @memberof UserProfileResponse
|
|
13471
|
+
*/
|
|
13472
|
+
'nextBooking'?: UserNextBookingSummary | null;
|
|
13344
13473
|
/**
|
|
13345
13474
|
*
|
|
13346
13475
|
* @type {number}
|
|
@@ -13482,6 +13611,88 @@ export interface VerifyEmailRequest {
|
|
|
13482
13611
|
*/
|
|
13483
13612
|
'token'?: string;
|
|
13484
13613
|
}
|
|
13614
|
+
/**
|
|
13615
|
+
*
|
|
13616
|
+
* @export
|
|
13617
|
+
* @interface VerifyOrganizationEmailCodeBody
|
|
13618
|
+
*/
|
|
13619
|
+
export interface VerifyOrganizationEmailCodeBody {
|
|
13620
|
+
/**
|
|
13621
|
+
*
|
|
13622
|
+
* @type {string}
|
|
13623
|
+
* @memberof VerifyOrganizationEmailCodeBody
|
|
13624
|
+
*/
|
|
13625
|
+
'organizationId': string;
|
|
13626
|
+
/**
|
|
13627
|
+
*
|
|
13628
|
+
* @type {string}
|
|
13629
|
+
* @memberof VerifyOrganizationEmailCodeBody
|
|
13630
|
+
*/
|
|
13631
|
+
'organizationEmail': string;
|
|
13632
|
+
/**
|
|
13633
|
+
*
|
|
13634
|
+
* @type {string}
|
|
13635
|
+
* @memberof VerifyOrganizationEmailCodeBody
|
|
13636
|
+
*/
|
|
13637
|
+
'code': string;
|
|
13638
|
+
}
|
|
13639
|
+
/**
|
|
13640
|
+
*
|
|
13641
|
+
* @export
|
|
13642
|
+
* @interface VerifyOrganizationEmailCodeResponse
|
|
13643
|
+
*/
|
|
13644
|
+
export interface VerifyOrganizationEmailCodeResponse {
|
|
13645
|
+
/**
|
|
13646
|
+
*
|
|
13647
|
+
* @type {boolean}
|
|
13648
|
+
* @memberof VerifyOrganizationEmailCodeResponse
|
|
13649
|
+
*/
|
|
13650
|
+
'verified': boolean;
|
|
13651
|
+
/**
|
|
13652
|
+
*
|
|
13653
|
+
* @type {boolean}
|
|
13654
|
+
* @memberof VerifyOrganizationEmailCodeResponse
|
|
13655
|
+
*/
|
|
13656
|
+
'alreadyVerified'?: boolean;
|
|
13657
|
+
}
|
|
13658
|
+
/**
|
|
13659
|
+
*
|
|
13660
|
+
* @export
|
|
13661
|
+
* @interface VerifyVerificationCodeBody
|
|
13662
|
+
*/
|
|
13663
|
+
export interface VerifyVerificationCodeBody {
|
|
13664
|
+
/**
|
|
13665
|
+
*
|
|
13666
|
+
* @type {string}
|
|
13667
|
+
* @memberof VerifyVerificationCodeBody
|
|
13668
|
+
*/
|
|
13669
|
+
'email': string;
|
|
13670
|
+
/**
|
|
13671
|
+
*
|
|
13672
|
+
* @type {string}
|
|
13673
|
+
* @memberof VerifyVerificationCodeBody
|
|
13674
|
+
*/
|
|
13675
|
+
'code': string;
|
|
13676
|
+
/**
|
|
13677
|
+
*
|
|
13678
|
+
* @type {string}
|
|
13679
|
+
* @memberof VerifyVerificationCodeBody
|
|
13680
|
+
*/
|
|
13681
|
+
'context'?: string;
|
|
13682
|
+
}
|
|
13683
|
+
/**
|
|
13684
|
+
*
|
|
13685
|
+
* @export
|
|
13686
|
+
* @interface VerifyVerificationCodeResponse
|
|
13687
|
+
*/
|
|
13688
|
+
export interface VerifyVerificationCodeResponse {
|
|
13689
|
+
/**
|
|
13690
|
+
*
|
|
13691
|
+
* @type {boolean}
|
|
13692
|
+
* @memberof VerifyVerificationCodeResponse
|
|
13693
|
+
*/
|
|
13694
|
+
'verified': boolean;
|
|
13695
|
+
}
|
|
13485
13696
|
/**
|
|
13486
13697
|
*
|
|
13487
13698
|
* @export
|
|
@@ -13705,6 +13916,116 @@ export interface YearlyTurnoverResponse {
|
|
|
13705
13916
|
*/
|
|
13706
13917
|
'monthlyBreakdown': Array<MonthlyBreakdown>;
|
|
13707
13918
|
}
|
|
13919
|
+
/**
|
|
13920
|
+
* AuthApi - axios parameter creator
|
|
13921
|
+
* @export
|
|
13922
|
+
*/
|
|
13923
|
+
export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
13924
|
+
/**
|
|
13925
|
+
*
|
|
13926
|
+
* @param {RequestVerificationCodeBody} requestVerificationCodeBody
|
|
13927
|
+
* @param {*} [options] Override http request option.
|
|
13928
|
+
* @throws {RequiredError}
|
|
13929
|
+
*/
|
|
13930
|
+
requestVerificationCode: (requestVerificationCodeBody: RequestVerificationCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13931
|
+
/**
|
|
13932
|
+
*
|
|
13933
|
+
* @param {VerifyVerificationCodeBody} verifyVerificationCodeBody
|
|
13934
|
+
* @param {*} [options] Override http request option.
|
|
13935
|
+
* @throws {RequiredError}
|
|
13936
|
+
*/
|
|
13937
|
+
verifyVerificationCode: (verifyVerificationCodeBody: VerifyVerificationCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13938
|
+
};
|
|
13939
|
+
/**
|
|
13940
|
+
* AuthApi - functional programming interface
|
|
13941
|
+
* @export
|
|
13942
|
+
*/
|
|
13943
|
+
export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
13944
|
+
/**
|
|
13945
|
+
*
|
|
13946
|
+
* @param {RequestVerificationCodeBody} requestVerificationCodeBody
|
|
13947
|
+
* @param {*} [options] Override http request option.
|
|
13948
|
+
* @throws {RequiredError}
|
|
13949
|
+
*/
|
|
13950
|
+
requestVerificationCode(requestVerificationCodeBody: RequestVerificationCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestVerificationCodeResponse>>;
|
|
13951
|
+
/**
|
|
13952
|
+
*
|
|
13953
|
+
* @param {VerifyVerificationCodeBody} verifyVerificationCodeBody
|
|
13954
|
+
* @param {*} [options] Override http request option.
|
|
13955
|
+
* @throws {RequiredError}
|
|
13956
|
+
*/
|
|
13957
|
+
verifyVerificationCode(verifyVerificationCodeBody: VerifyVerificationCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VerifyVerificationCodeResponse>>;
|
|
13958
|
+
};
|
|
13959
|
+
/**
|
|
13960
|
+
* AuthApi - factory interface
|
|
13961
|
+
* @export
|
|
13962
|
+
*/
|
|
13963
|
+
export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13964
|
+
/**
|
|
13965
|
+
*
|
|
13966
|
+
* @param {AuthApiRequestVerificationCodeRequest} requestParameters Request parameters.
|
|
13967
|
+
* @param {*} [options] Override http request option.
|
|
13968
|
+
* @throws {RequiredError}
|
|
13969
|
+
*/
|
|
13970
|
+
requestVerificationCode(requestParameters: AuthApiRequestVerificationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestVerificationCodeResponse>;
|
|
13971
|
+
/**
|
|
13972
|
+
*
|
|
13973
|
+
* @param {AuthApiVerifyVerificationCodeRequest} requestParameters Request parameters.
|
|
13974
|
+
* @param {*} [options] Override http request option.
|
|
13975
|
+
* @throws {RequiredError}
|
|
13976
|
+
*/
|
|
13977
|
+
verifyVerificationCode(requestParameters: AuthApiVerifyVerificationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<VerifyVerificationCodeResponse>;
|
|
13978
|
+
};
|
|
13979
|
+
/**
|
|
13980
|
+
* Request parameters for requestVerificationCode operation in AuthApi.
|
|
13981
|
+
* @export
|
|
13982
|
+
* @interface AuthApiRequestVerificationCodeRequest
|
|
13983
|
+
*/
|
|
13984
|
+
export interface AuthApiRequestVerificationCodeRequest {
|
|
13985
|
+
/**
|
|
13986
|
+
*
|
|
13987
|
+
* @type {RequestVerificationCodeBody}
|
|
13988
|
+
* @memberof AuthApiRequestVerificationCode
|
|
13989
|
+
*/
|
|
13990
|
+
readonly requestVerificationCodeBody: RequestVerificationCodeBody;
|
|
13991
|
+
}
|
|
13992
|
+
/**
|
|
13993
|
+
* Request parameters for verifyVerificationCode operation in AuthApi.
|
|
13994
|
+
* @export
|
|
13995
|
+
* @interface AuthApiVerifyVerificationCodeRequest
|
|
13996
|
+
*/
|
|
13997
|
+
export interface AuthApiVerifyVerificationCodeRequest {
|
|
13998
|
+
/**
|
|
13999
|
+
*
|
|
14000
|
+
* @type {VerifyVerificationCodeBody}
|
|
14001
|
+
* @memberof AuthApiVerifyVerificationCode
|
|
14002
|
+
*/
|
|
14003
|
+
readonly verifyVerificationCodeBody: VerifyVerificationCodeBody;
|
|
14004
|
+
}
|
|
14005
|
+
/**
|
|
14006
|
+
* AuthApi - object-oriented interface
|
|
14007
|
+
* @export
|
|
14008
|
+
* @class AuthApi
|
|
14009
|
+
* @extends {BaseAPI}
|
|
14010
|
+
*/
|
|
14011
|
+
export declare class AuthApi extends BaseAPI {
|
|
14012
|
+
/**
|
|
14013
|
+
*
|
|
14014
|
+
* @param {AuthApiRequestVerificationCodeRequest} requestParameters Request parameters.
|
|
14015
|
+
* @param {*} [options] Override http request option.
|
|
14016
|
+
* @throws {RequiredError}
|
|
14017
|
+
* @memberof AuthApi
|
|
14018
|
+
*/
|
|
14019
|
+
requestVerificationCode(requestParameters: AuthApiRequestVerificationCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestVerificationCodeResponse, any, {}>>;
|
|
14020
|
+
/**
|
|
14021
|
+
*
|
|
14022
|
+
* @param {AuthApiVerifyVerificationCodeRequest} requestParameters Request parameters.
|
|
14023
|
+
* @param {*} [options] Override http request option.
|
|
14024
|
+
* @throws {RequiredError}
|
|
14025
|
+
* @memberof AuthApi
|
|
14026
|
+
*/
|
|
14027
|
+
verifyVerificationCode(requestParameters: AuthApiVerifyVerificationCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VerifyVerificationCodeResponse, any, {}>>;
|
|
14028
|
+
}
|
|
13708
14029
|
/**
|
|
13709
14030
|
* BookingsApi - axios parameter creator
|
|
13710
14031
|
* @export
|
|
@@ -20935,7 +21256,7 @@ export declare const PublicEmailApiAxiosParamCreator: (configuration?: Configura
|
|
|
20935
21256
|
* @param {*} [options] Override http request option.
|
|
20936
21257
|
* @throws {RequiredError}
|
|
20937
21258
|
*/
|
|
20938
|
-
|
|
21259
|
+
requestPublicEmailVerificationCode: (requestEmailCodeBody: RequestEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20939
21260
|
/**
|
|
20940
21261
|
*
|
|
20941
21262
|
* @param {VerifyEmailCodeBody} verifyEmailCodeBody
|
|
@@ -20962,7 +21283,7 @@ export declare const PublicEmailApiFp: (configuration?: Configuration) => {
|
|
|
20962
21283
|
* @param {*} [options] Override http request option.
|
|
20963
21284
|
* @throws {RequiredError}
|
|
20964
21285
|
*/
|
|
20965
|
-
|
|
21286
|
+
requestPublicEmailVerificationCode(requestEmailCodeBody: RequestEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestEmailCodeResponse>>;
|
|
20966
21287
|
/**
|
|
20967
21288
|
*
|
|
20968
21289
|
* @param {VerifyEmailCodeBody} verifyEmailCodeBody
|
|
@@ -20985,11 +21306,11 @@ export declare const PublicEmailApiFactory: (configuration?: Configuration, base
|
|
|
20985
21306
|
authEmailExists(requestParameters: PublicEmailApiAuthEmailExistsRequest, options?: RawAxiosRequestConfig): AxiosPromise<EmailExistsResponse>;
|
|
20986
21307
|
/**
|
|
20987
21308
|
*
|
|
20988
|
-
* @param {
|
|
21309
|
+
* @param {PublicEmailApiRequestPublicEmailVerificationCodeRequest} requestParameters Request parameters.
|
|
20989
21310
|
* @param {*} [options] Override http request option.
|
|
20990
21311
|
* @throws {RequiredError}
|
|
20991
21312
|
*/
|
|
20992
|
-
|
|
21313
|
+
requestPublicEmailVerificationCode(requestParameters: PublicEmailApiRequestPublicEmailVerificationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestEmailCodeResponse>;
|
|
20993
21314
|
/**
|
|
20994
21315
|
*
|
|
20995
21316
|
* @param {PublicEmailApiVerifyCodeRequest} requestParameters Request parameters.
|
|
@@ -21012,15 +21333,15 @@ export interface PublicEmailApiAuthEmailExistsRequest {
|
|
|
21012
21333
|
readonly emailExistsRequestBody: EmailExistsRequestBody;
|
|
21013
21334
|
}
|
|
21014
21335
|
/**
|
|
21015
|
-
* Request parameters for
|
|
21336
|
+
* Request parameters for requestPublicEmailVerificationCode operation in PublicEmailApi.
|
|
21016
21337
|
* @export
|
|
21017
|
-
* @interface
|
|
21338
|
+
* @interface PublicEmailApiRequestPublicEmailVerificationCodeRequest
|
|
21018
21339
|
*/
|
|
21019
|
-
export interface
|
|
21340
|
+
export interface PublicEmailApiRequestPublicEmailVerificationCodeRequest {
|
|
21020
21341
|
/**
|
|
21021
21342
|
*
|
|
21022
21343
|
* @type {RequestEmailCodeBody}
|
|
21023
|
-
* @memberof
|
|
21344
|
+
* @memberof PublicEmailApiRequestPublicEmailVerificationCode
|
|
21024
21345
|
*/
|
|
21025
21346
|
readonly requestEmailCodeBody: RequestEmailCodeBody;
|
|
21026
21347
|
}
|
|
@@ -21054,12 +21375,12 @@ export declare class PublicEmailApi extends BaseAPI {
|
|
|
21054
21375
|
authEmailExists(requestParameters: PublicEmailApiAuthEmailExistsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailExistsResponse, any, {}>>;
|
|
21055
21376
|
/**
|
|
21056
21377
|
*
|
|
21057
|
-
* @param {
|
|
21378
|
+
* @param {PublicEmailApiRequestPublicEmailVerificationCodeRequest} requestParameters Request parameters.
|
|
21058
21379
|
* @param {*} [options] Override http request option.
|
|
21059
21380
|
* @throws {RequiredError}
|
|
21060
21381
|
* @memberof PublicEmailApi
|
|
21061
21382
|
*/
|
|
21062
|
-
|
|
21383
|
+
requestPublicEmailVerificationCode(requestParameters: PublicEmailApiRequestPublicEmailVerificationCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestEmailCodeResponse, any, {}>>;
|
|
21063
21384
|
/**
|
|
21064
21385
|
*
|
|
21065
21386
|
* @param {PublicEmailApiVerifyCodeRequest} requestParameters Request parameters.
|
|
@@ -22135,6 +22456,13 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
22135
22456
|
* @throws {RequiredError}
|
|
22136
22457
|
*/
|
|
22137
22458
|
requestEmailVerification: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22459
|
+
/**
|
|
22460
|
+
*
|
|
22461
|
+
* @param {RequestOrganizationEmailCodeBody} requestOrganizationEmailCodeBody
|
|
22462
|
+
* @param {*} [options] Override http request option.
|
|
22463
|
+
* @throws {RequiredError}
|
|
22464
|
+
*/
|
|
22465
|
+
requestOrganizationCode: (requestOrganizationEmailCodeBody: RequestOrganizationEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22138
22466
|
/**
|
|
22139
22467
|
*
|
|
22140
22468
|
* @param {PasswordResetRequestBody} passwordResetRequestBody
|
|
@@ -22198,6 +22526,13 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
22198
22526
|
* @throws {RequiredError}
|
|
22199
22527
|
*/
|
|
22200
22528
|
verifyOrganization: (verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22529
|
+
/**
|
|
22530
|
+
*
|
|
22531
|
+
* @param {VerifyOrganizationEmailCodeBody} verifyOrganizationEmailCodeBody
|
|
22532
|
+
* @param {*} [options] Override http request option.
|
|
22533
|
+
* @throws {RequiredError}
|
|
22534
|
+
*/
|
|
22535
|
+
verifyOrganizationCode: (verifyOrganizationEmailCodeBody: VerifyOrganizationEmailCodeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22201
22536
|
};
|
|
22202
22537
|
/**
|
|
22203
22538
|
* UsersApi - functional programming interface
|
|
@@ -22446,6 +22781,13 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
22446
22781
|
* @throws {RequiredError}
|
|
22447
22782
|
*/
|
|
22448
22783
|
requestEmailVerification(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
22784
|
+
/**
|
|
22785
|
+
*
|
|
22786
|
+
* @param {RequestOrganizationEmailCodeBody} requestOrganizationEmailCodeBody
|
|
22787
|
+
* @param {*} [options] Override http request option.
|
|
22788
|
+
* @throws {RequiredError}
|
|
22789
|
+
*/
|
|
22790
|
+
requestOrganizationCode(requestOrganizationEmailCodeBody: RequestOrganizationEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestOrganizationEmailCodeResponse>>;
|
|
22449
22791
|
/**
|
|
22450
22792
|
*
|
|
22451
22793
|
* @param {PasswordResetRequestBody} passwordResetRequestBody
|
|
@@ -22509,6 +22851,13 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
22509
22851
|
* @throws {RequiredError}
|
|
22510
22852
|
*/
|
|
22511
22853
|
verifyOrganization(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeaveEventWaitList200Response>>;
|
|
22854
|
+
/**
|
|
22855
|
+
*
|
|
22856
|
+
* @param {VerifyOrganizationEmailCodeBody} verifyOrganizationEmailCodeBody
|
|
22857
|
+
* @param {*} [options] Override http request option.
|
|
22858
|
+
* @throws {RequiredError}
|
|
22859
|
+
*/
|
|
22860
|
+
verifyOrganizationCode(verifyOrganizationEmailCodeBody: VerifyOrganizationEmailCodeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VerifyOrganizationEmailCodeResponse>>;
|
|
22512
22861
|
};
|
|
22513
22862
|
/**
|
|
22514
22863
|
* UsersApi - factory interface
|
|
@@ -22738,6 +23087,13 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
22738
23087
|
* @throws {RequiredError}
|
|
22739
23088
|
*/
|
|
22740
23089
|
requestEmailVerification(options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
23090
|
+
/**
|
|
23091
|
+
*
|
|
23092
|
+
* @param {UsersApiRequestOrganizationCodeRequest} requestParameters Request parameters.
|
|
23093
|
+
* @param {*} [options] Override http request option.
|
|
23094
|
+
* @throws {RequiredError}
|
|
23095
|
+
*/
|
|
23096
|
+
requestOrganizationCode(requestParameters: UsersApiRequestOrganizationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestOrganizationEmailCodeResponse>;
|
|
22741
23097
|
/**
|
|
22742
23098
|
*
|
|
22743
23099
|
* @param {UsersApiRequestPasswordResetRequest} requestParameters Request parameters.
|
|
@@ -22801,6 +23157,13 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
22801
23157
|
* @throws {RequiredError}
|
|
22802
23158
|
*/
|
|
22803
23159
|
verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<LeaveEventWaitList200Response>;
|
|
23160
|
+
/**
|
|
23161
|
+
*
|
|
23162
|
+
* @param {UsersApiVerifyOrganizationCodeRequest} requestParameters Request parameters.
|
|
23163
|
+
* @param {*} [options] Override http request option.
|
|
23164
|
+
* @throws {RequiredError}
|
|
23165
|
+
*/
|
|
23166
|
+
verifyOrganizationCode(requestParameters: UsersApiVerifyOrganizationCodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<VerifyOrganizationEmailCodeResponse>;
|
|
22804
23167
|
};
|
|
22805
23168
|
/**
|
|
22806
23169
|
* Request parameters for addFavoriteClub operation in UsersApi.
|
|
@@ -23215,6 +23578,19 @@ export interface UsersApiRemoveOrganizationRequest {
|
|
|
23215
23578
|
*/
|
|
23216
23579
|
readonly addOrganizationRequest: AddOrganizationRequest;
|
|
23217
23580
|
}
|
|
23581
|
+
/**
|
|
23582
|
+
* Request parameters for requestOrganizationCode operation in UsersApi.
|
|
23583
|
+
* @export
|
|
23584
|
+
* @interface UsersApiRequestOrganizationCodeRequest
|
|
23585
|
+
*/
|
|
23586
|
+
export interface UsersApiRequestOrganizationCodeRequest {
|
|
23587
|
+
/**
|
|
23588
|
+
*
|
|
23589
|
+
* @type {RequestOrganizationEmailCodeBody}
|
|
23590
|
+
* @memberof UsersApiRequestOrganizationCode
|
|
23591
|
+
*/
|
|
23592
|
+
readonly requestOrganizationEmailCodeBody: RequestOrganizationEmailCodeBody;
|
|
23593
|
+
}
|
|
23218
23594
|
/**
|
|
23219
23595
|
* Request parameters for requestPasswordReset operation in UsersApi.
|
|
23220
23596
|
* @export
|
|
@@ -23332,6 +23708,19 @@ export interface UsersApiVerifyOrganizationRequest {
|
|
|
23332
23708
|
*/
|
|
23333
23709
|
readonly verifyEmailRequest: VerifyEmailRequest;
|
|
23334
23710
|
}
|
|
23711
|
+
/**
|
|
23712
|
+
* Request parameters for verifyOrganizationCode operation in UsersApi.
|
|
23713
|
+
* @export
|
|
23714
|
+
* @interface UsersApiVerifyOrganizationCodeRequest
|
|
23715
|
+
*/
|
|
23716
|
+
export interface UsersApiVerifyOrganizationCodeRequest {
|
|
23717
|
+
/**
|
|
23718
|
+
*
|
|
23719
|
+
* @type {VerifyOrganizationEmailCodeBody}
|
|
23720
|
+
* @memberof UsersApiVerifyOrganizationCode
|
|
23721
|
+
*/
|
|
23722
|
+
readonly verifyOrganizationEmailCodeBody: VerifyOrganizationEmailCodeBody;
|
|
23723
|
+
}
|
|
23335
23724
|
/**
|
|
23336
23725
|
* UsersApi - object-oriented interface
|
|
23337
23726
|
* @export
|
|
@@ -23594,6 +23983,14 @@ export declare class UsersApi extends BaseAPI {
|
|
|
23594
23983
|
* @memberof UsersApi
|
|
23595
23984
|
*/
|
|
23596
23985
|
requestEmailVerification(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
23986
|
+
/**
|
|
23987
|
+
*
|
|
23988
|
+
* @param {UsersApiRequestOrganizationCodeRequest} requestParameters Request parameters.
|
|
23989
|
+
* @param {*} [options] Override http request option.
|
|
23990
|
+
* @throws {RequiredError}
|
|
23991
|
+
* @memberof UsersApi
|
|
23992
|
+
*/
|
|
23993
|
+
requestOrganizationCode(requestParameters: UsersApiRequestOrganizationCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestOrganizationEmailCodeResponse, any, {}>>;
|
|
23597
23994
|
/**
|
|
23598
23995
|
*
|
|
23599
23996
|
* @param {UsersApiRequestPasswordResetRequest} requestParameters Request parameters.
|
|
@@ -23666,6 +24063,14 @@ export declare class UsersApi extends BaseAPI {
|
|
|
23666
24063
|
* @memberof UsersApi
|
|
23667
24064
|
*/
|
|
23668
24065
|
verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LeaveEventWaitList200Response, any, {}>>;
|
|
24066
|
+
/**
|
|
24067
|
+
*
|
|
24068
|
+
* @param {UsersApiVerifyOrganizationCodeRequest} requestParameters Request parameters.
|
|
24069
|
+
* @param {*} [options] Override http request option.
|
|
24070
|
+
* @throws {RequiredError}
|
|
24071
|
+
* @memberof UsersApi
|
|
24072
|
+
*/
|
|
24073
|
+
verifyOrganizationCode(requestParameters: UsersApiVerifyOrganizationCodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VerifyOrganizationEmailCodeResponse, any, {}>>;
|
|
23669
24074
|
}
|
|
23670
24075
|
/**
|
|
23671
24076
|
* WaitListApi - axios parameter creator
|