@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.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* openapi.json
|
|
5
5
|
* Pandook API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.171
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -10943,6 +10943,405 @@ export const GetWeeklyEventsTypeEnum = {
|
|
|
10943
10943
|
Event: 'event',
|
|
10944
10944
|
Closure: 'closure'
|
|
10945
10945
|
};
|
|
10946
|
+
/**
|
|
10947
|
+
* EventsWaitListApi - axios parameter creator
|
|
10948
|
+
* @export
|
|
10949
|
+
*/
|
|
10950
|
+
export const EventsWaitListApiAxiosParamCreator = function (configuration) {
|
|
10951
|
+
return {
|
|
10952
|
+
/**
|
|
10953
|
+
* Obtenir la position actuelle dans la file d\'attente
|
|
10954
|
+
* @param {string} eventId
|
|
10955
|
+
* @param {*} [options] Override http request option.
|
|
10956
|
+
* @throws {RequiredError}
|
|
10957
|
+
*/
|
|
10958
|
+
getUserPosition: (eventId_1, ...args_1) => __awaiter(this, [eventId_1, ...args_1], void 0, function* (eventId, options = {}) {
|
|
10959
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
10960
|
+
assertParamExists('getUserPosition', 'eventId', eventId);
|
|
10961
|
+
const localVarPath = `/api/events/waitlist/{eventId}/position`
|
|
10962
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)));
|
|
10963
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10964
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10965
|
+
let baseOptions;
|
|
10966
|
+
if (configuration) {
|
|
10967
|
+
baseOptions = configuration.baseOptions;
|
|
10968
|
+
}
|
|
10969
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
10970
|
+
const localVarHeaderParameter = {};
|
|
10971
|
+
const localVarQueryParameter = {};
|
|
10972
|
+
// authentication bearerAuth required
|
|
10973
|
+
// http bearer authentication required
|
|
10974
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
10975
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10976
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10977
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
10978
|
+
return {
|
|
10979
|
+
url: toPathString(localVarUrlObj),
|
|
10980
|
+
options: localVarRequestOptions,
|
|
10981
|
+
};
|
|
10982
|
+
}),
|
|
10983
|
+
/**
|
|
10984
|
+
* Rejoindre la file d\'attente pour un événement
|
|
10985
|
+
* @param {string} eventId
|
|
10986
|
+
* @param {JoinWaitListRequest} joinWaitListRequest
|
|
10987
|
+
* @param {*} [options] Override http request option.
|
|
10988
|
+
* @throws {RequiredError}
|
|
10989
|
+
*/
|
|
10990
|
+
joinWaitList: (eventId_1, joinWaitListRequest_1, ...args_1) => __awaiter(this, [eventId_1, joinWaitListRequest_1, ...args_1], void 0, function* (eventId, joinWaitListRequest, options = {}) {
|
|
10991
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
10992
|
+
assertParamExists('joinWaitList', 'eventId', eventId);
|
|
10993
|
+
// verify required parameter 'joinWaitListRequest' is not null or undefined
|
|
10994
|
+
assertParamExists('joinWaitList', 'joinWaitListRequest', joinWaitListRequest);
|
|
10995
|
+
const localVarPath = `/api/events/waitlist/{eventId}/join`
|
|
10996
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)));
|
|
10997
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10998
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10999
|
+
let baseOptions;
|
|
11000
|
+
if (configuration) {
|
|
11001
|
+
baseOptions = configuration.baseOptions;
|
|
11002
|
+
}
|
|
11003
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
11004
|
+
const localVarHeaderParameter = {};
|
|
11005
|
+
const localVarQueryParameter = {};
|
|
11006
|
+
// authentication bearerAuth required
|
|
11007
|
+
// http bearer authentication required
|
|
11008
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
11009
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11010
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11011
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11012
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11013
|
+
localVarRequestOptions.data = serializeDataIfNeeded(joinWaitListRequest, localVarRequestOptions, configuration);
|
|
11014
|
+
return {
|
|
11015
|
+
url: toPathString(localVarUrlObj),
|
|
11016
|
+
options: localVarRequestOptions,
|
|
11017
|
+
};
|
|
11018
|
+
}),
|
|
11019
|
+
/**
|
|
11020
|
+
* Quitter la file d\'attente
|
|
11021
|
+
* @param {string} eventId
|
|
11022
|
+
* @param {*} [options] Override http request option.
|
|
11023
|
+
* @throws {RequiredError}
|
|
11024
|
+
*/
|
|
11025
|
+
leaveWaitList: (eventId_1, ...args_1) => __awaiter(this, [eventId_1, ...args_1], void 0, function* (eventId, options = {}) {
|
|
11026
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
11027
|
+
assertParamExists('leaveWaitList', 'eventId', eventId);
|
|
11028
|
+
const localVarPath = `/api/events/waitlist/{eventId}/leave`
|
|
11029
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)));
|
|
11030
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11031
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11032
|
+
let baseOptions;
|
|
11033
|
+
if (configuration) {
|
|
11034
|
+
baseOptions = configuration.baseOptions;
|
|
11035
|
+
}
|
|
11036
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
11037
|
+
const localVarHeaderParameter = {};
|
|
11038
|
+
const localVarQueryParameter = {};
|
|
11039
|
+
// authentication bearerAuth required
|
|
11040
|
+
// http bearer authentication required
|
|
11041
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
11042
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11043
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11044
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11045
|
+
return {
|
|
11046
|
+
url: toPathString(localVarUrlObj),
|
|
11047
|
+
options: localVarRequestOptions,
|
|
11048
|
+
};
|
|
11049
|
+
}),
|
|
11050
|
+
};
|
|
11051
|
+
};
|
|
11052
|
+
/**
|
|
11053
|
+
* EventsWaitListApi - functional programming interface
|
|
11054
|
+
* @export
|
|
11055
|
+
*/
|
|
11056
|
+
export const EventsWaitListApiFp = function (configuration) {
|
|
11057
|
+
const localVarAxiosParamCreator = EventsWaitListApiAxiosParamCreator(configuration);
|
|
11058
|
+
return {
|
|
11059
|
+
/**
|
|
11060
|
+
* Obtenir la position actuelle dans la file d\'attente
|
|
11061
|
+
* @param {string} eventId
|
|
11062
|
+
* @param {*} [options] Override http request option.
|
|
11063
|
+
* @throws {RequiredError}
|
|
11064
|
+
*/
|
|
11065
|
+
getUserPosition(eventId, options) {
|
|
11066
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11067
|
+
var _a, _b, _c;
|
|
11068
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getUserPosition(eventId, options);
|
|
11069
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11070
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EventsWaitListApi.getUserPosition']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11071
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11072
|
+
});
|
|
11073
|
+
},
|
|
11074
|
+
/**
|
|
11075
|
+
* Rejoindre la file d\'attente pour un événement
|
|
11076
|
+
* @param {string} eventId
|
|
11077
|
+
* @param {JoinWaitListRequest} joinWaitListRequest
|
|
11078
|
+
* @param {*} [options] Override http request option.
|
|
11079
|
+
* @throws {RequiredError}
|
|
11080
|
+
*/
|
|
11081
|
+
joinWaitList(eventId, joinWaitListRequest, options) {
|
|
11082
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11083
|
+
var _a, _b, _c;
|
|
11084
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.joinWaitList(eventId, joinWaitListRequest, options);
|
|
11085
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11086
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EventsWaitListApi.joinWaitList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11087
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11088
|
+
});
|
|
11089
|
+
},
|
|
11090
|
+
/**
|
|
11091
|
+
* Quitter la file d\'attente
|
|
11092
|
+
* @param {string} eventId
|
|
11093
|
+
* @param {*} [options] Override http request option.
|
|
11094
|
+
* @throws {RequiredError}
|
|
11095
|
+
*/
|
|
11096
|
+
leaveWaitList(eventId, options) {
|
|
11097
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11098
|
+
var _a, _b, _c;
|
|
11099
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.leaveWaitList(eventId, options);
|
|
11100
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11101
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EventsWaitListApi.leaveWaitList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11102
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11103
|
+
});
|
|
11104
|
+
},
|
|
11105
|
+
};
|
|
11106
|
+
};
|
|
11107
|
+
/**
|
|
11108
|
+
* EventsWaitListApi - factory interface
|
|
11109
|
+
* @export
|
|
11110
|
+
*/
|
|
11111
|
+
export const EventsWaitListApiFactory = function (configuration, basePath, axios) {
|
|
11112
|
+
const localVarFp = EventsWaitListApiFp(configuration);
|
|
11113
|
+
return {
|
|
11114
|
+
/**
|
|
11115
|
+
* Obtenir la position actuelle dans la file d\'attente
|
|
11116
|
+
* @param {EventsWaitListApiGetUserPositionRequest} requestParameters Request parameters.
|
|
11117
|
+
* @param {*} [options] Override http request option.
|
|
11118
|
+
* @throws {RequiredError}
|
|
11119
|
+
*/
|
|
11120
|
+
getUserPosition(requestParameters, options) {
|
|
11121
|
+
return localVarFp.getUserPosition(requestParameters.eventId, options).then((request) => request(axios, basePath));
|
|
11122
|
+
},
|
|
11123
|
+
/**
|
|
11124
|
+
* Rejoindre la file d\'attente pour un événement
|
|
11125
|
+
* @param {EventsWaitListApiJoinWaitListRequest} requestParameters Request parameters.
|
|
11126
|
+
* @param {*} [options] Override http request option.
|
|
11127
|
+
* @throws {RequiredError}
|
|
11128
|
+
*/
|
|
11129
|
+
joinWaitList(requestParameters, options) {
|
|
11130
|
+
return localVarFp.joinWaitList(requestParameters.eventId, requestParameters.joinWaitListRequest, options).then((request) => request(axios, basePath));
|
|
11131
|
+
},
|
|
11132
|
+
/**
|
|
11133
|
+
* Quitter la file d\'attente
|
|
11134
|
+
* @param {EventsWaitListApiLeaveWaitListRequest} requestParameters Request parameters.
|
|
11135
|
+
* @param {*} [options] Override http request option.
|
|
11136
|
+
* @throws {RequiredError}
|
|
11137
|
+
*/
|
|
11138
|
+
leaveWaitList(requestParameters, options) {
|
|
11139
|
+
return localVarFp.leaveWaitList(requestParameters.eventId, options).then((request) => request(axios, basePath));
|
|
11140
|
+
},
|
|
11141
|
+
};
|
|
11142
|
+
};
|
|
11143
|
+
/**
|
|
11144
|
+
* EventsWaitListApi - object-oriented interface
|
|
11145
|
+
* @export
|
|
11146
|
+
* @class EventsWaitListApi
|
|
11147
|
+
* @extends {BaseAPI}
|
|
11148
|
+
*/
|
|
11149
|
+
export class EventsWaitListApi extends BaseAPI {
|
|
11150
|
+
/**
|
|
11151
|
+
* Obtenir la position actuelle dans la file d\'attente
|
|
11152
|
+
* @param {EventsWaitListApiGetUserPositionRequest} requestParameters Request parameters.
|
|
11153
|
+
* @param {*} [options] Override http request option.
|
|
11154
|
+
* @throws {RequiredError}
|
|
11155
|
+
* @memberof EventsWaitListApi
|
|
11156
|
+
*/
|
|
11157
|
+
getUserPosition(requestParameters, options) {
|
|
11158
|
+
return EventsWaitListApiFp(this.configuration).getUserPosition(requestParameters.eventId, options).then((request) => request(this.axios, this.basePath));
|
|
11159
|
+
}
|
|
11160
|
+
/**
|
|
11161
|
+
* Rejoindre la file d\'attente pour un événement
|
|
11162
|
+
* @param {EventsWaitListApiJoinWaitListRequest} requestParameters Request parameters.
|
|
11163
|
+
* @param {*} [options] Override http request option.
|
|
11164
|
+
* @throws {RequiredError}
|
|
11165
|
+
* @memberof EventsWaitListApi
|
|
11166
|
+
*/
|
|
11167
|
+
joinWaitList(requestParameters, options) {
|
|
11168
|
+
return EventsWaitListApiFp(this.configuration).joinWaitList(requestParameters.eventId, requestParameters.joinWaitListRequest, options).then((request) => request(this.axios, this.basePath));
|
|
11169
|
+
}
|
|
11170
|
+
/**
|
|
11171
|
+
* Quitter la file d\'attente
|
|
11172
|
+
* @param {EventsWaitListApiLeaveWaitListRequest} requestParameters Request parameters.
|
|
11173
|
+
* @param {*} [options] Override http request option.
|
|
11174
|
+
* @throws {RequiredError}
|
|
11175
|
+
* @memberof EventsWaitListApi
|
|
11176
|
+
*/
|
|
11177
|
+
leaveWaitList(requestParameters, options) {
|
|
11178
|
+
return EventsWaitListApiFp(this.configuration).leaveWaitList(requestParameters.eventId, options).then((request) => request(this.axios, this.basePath));
|
|
11179
|
+
}
|
|
11180
|
+
}
|
|
11181
|
+
/**
|
|
11182
|
+
* EventsWaitListStaffApi - axios parameter creator
|
|
11183
|
+
* @export
|
|
11184
|
+
*/
|
|
11185
|
+
export const EventsWaitListStaffApiAxiosParamCreator = function (configuration) {
|
|
11186
|
+
return {
|
|
11187
|
+
/**
|
|
11188
|
+
* Obtenir la liste complète de la file d\'attente (staff only)
|
|
11189
|
+
* @param {string} eventId
|
|
11190
|
+
* @param {*} [options] Override http request option.
|
|
11191
|
+
* @throws {RequiredError}
|
|
11192
|
+
*/
|
|
11193
|
+
getWaitListForEvent: (eventId_1, ...args_1) => __awaiter(this, [eventId_1, ...args_1], void 0, function* (eventId, options = {}) {
|
|
11194
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
11195
|
+
assertParamExists('getWaitListForEvent', 'eventId', eventId);
|
|
11196
|
+
const localVarPath = `/api/events/waitlist/{eventId}`
|
|
11197
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)));
|
|
11198
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11199
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11200
|
+
let baseOptions;
|
|
11201
|
+
if (configuration) {
|
|
11202
|
+
baseOptions = configuration.baseOptions;
|
|
11203
|
+
}
|
|
11204
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
11205
|
+
const localVarHeaderParameter = {};
|
|
11206
|
+
const localVarQueryParameter = {};
|
|
11207
|
+
// authentication bearerAuth required
|
|
11208
|
+
// http bearer authentication required
|
|
11209
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
11210
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11211
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11212
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11213
|
+
return {
|
|
11214
|
+
url: toPathString(localVarUrlObj),
|
|
11215
|
+
options: localVarRequestOptions,
|
|
11216
|
+
};
|
|
11217
|
+
}),
|
|
11218
|
+
/**
|
|
11219
|
+
* Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
|
|
11220
|
+
* @param {string} eventId
|
|
11221
|
+
* @param {*} [options] Override http request option.
|
|
11222
|
+
* @throws {RequiredError}
|
|
11223
|
+
*/
|
|
11224
|
+
processWaitList: (eventId_1, ...args_1) => __awaiter(this, [eventId_1, ...args_1], void 0, function* (eventId, options = {}) {
|
|
11225
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
11226
|
+
assertParamExists('processWaitList', 'eventId', eventId);
|
|
11227
|
+
const localVarPath = `/api/events/waitlist/{eventId}/process`
|
|
11228
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)));
|
|
11229
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11230
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11231
|
+
let baseOptions;
|
|
11232
|
+
if (configuration) {
|
|
11233
|
+
baseOptions = configuration.baseOptions;
|
|
11234
|
+
}
|
|
11235
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
11236
|
+
const localVarHeaderParameter = {};
|
|
11237
|
+
const localVarQueryParameter = {};
|
|
11238
|
+
// authentication bearerAuth required
|
|
11239
|
+
// http bearer authentication required
|
|
11240
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
11241
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11242
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11243
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11244
|
+
return {
|
|
11245
|
+
url: toPathString(localVarUrlObj),
|
|
11246
|
+
options: localVarRequestOptions,
|
|
11247
|
+
};
|
|
11248
|
+
}),
|
|
11249
|
+
};
|
|
11250
|
+
};
|
|
11251
|
+
/**
|
|
11252
|
+
* EventsWaitListStaffApi - functional programming interface
|
|
11253
|
+
* @export
|
|
11254
|
+
*/
|
|
11255
|
+
export const EventsWaitListStaffApiFp = function (configuration) {
|
|
11256
|
+
const localVarAxiosParamCreator = EventsWaitListStaffApiAxiosParamCreator(configuration);
|
|
11257
|
+
return {
|
|
11258
|
+
/**
|
|
11259
|
+
* Obtenir la liste complète de la file d\'attente (staff only)
|
|
11260
|
+
* @param {string} eventId
|
|
11261
|
+
* @param {*} [options] Override http request option.
|
|
11262
|
+
* @throws {RequiredError}
|
|
11263
|
+
*/
|
|
11264
|
+
getWaitListForEvent(eventId, options) {
|
|
11265
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11266
|
+
var _a, _b, _c;
|
|
11267
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getWaitListForEvent(eventId, options);
|
|
11268
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11269
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EventsWaitListStaffApi.getWaitListForEvent']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11270
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11271
|
+
});
|
|
11272
|
+
},
|
|
11273
|
+
/**
|
|
11274
|
+
* Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
|
|
11275
|
+
* @param {string} eventId
|
|
11276
|
+
* @param {*} [options] Override http request option.
|
|
11277
|
+
* @throws {RequiredError}
|
|
11278
|
+
*/
|
|
11279
|
+
processWaitList(eventId, options) {
|
|
11280
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11281
|
+
var _a, _b, _c;
|
|
11282
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.processWaitList(eventId, options);
|
|
11283
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11284
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EventsWaitListStaffApi.processWaitList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11285
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11286
|
+
});
|
|
11287
|
+
},
|
|
11288
|
+
};
|
|
11289
|
+
};
|
|
11290
|
+
/**
|
|
11291
|
+
* EventsWaitListStaffApi - factory interface
|
|
11292
|
+
* @export
|
|
11293
|
+
*/
|
|
11294
|
+
export const EventsWaitListStaffApiFactory = function (configuration, basePath, axios) {
|
|
11295
|
+
const localVarFp = EventsWaitListStaffApiFp(configuration);
|
|
11296
|
+
return {
|
|
11297
|
+
/**
|
|
11298
|
+
* Obtenir la liste complète de la file d\'attente (staff only)
|
|
11299
|
+
* @param {EventsWaitListStaffApiGetWaitListForEventRequest} requestParameters Request parameters.
|
|
11300
|
+
* @param {*} [options] Override http request option.
|
|
11301
|
+
* @throws {RequiredError}
|
|
11302
|
+
*/
|
|
11303
|
+
getWaitListForEvent(requestParameters, options) {
|
|
11304
|
+
return localVarFp.getWaitListForEvent(requestParameters.eventId, options).then((request) => request(axios, basePath));
|
|
11305
|
+
},
|
|
11306
|
+
/**
|
|
11307
|
+
* Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
|
|
11308
|
+
* @param {EventsWaitListStaffApiProcessWaitListRequest} requestParameters Request parameters.
|
|
11309
|
+
* @param {*} [options] Override http request option.
|
|
11310
|
+
* @throws {RequiredError}
|
|
11311
|
+
*/
|
|
11312
|
+
processWaitList(requestParameters, options) {
|
|
11313
|
+
return localVarFp.processWaitList(requestParameters.eventId, options).then((request) => request(axios, basePath));
|
|
11314
|
+
},
|
|
11315
|
+
};
|
|
11316
|
+
};
|
|
11317
|
+
/**
|
|
11318
|
+
* EventsWaitListStaffApi - object-oriented interface
|
|
11319
|
+
* @export
|
|
11320
|
+
* @class EventsWaitListStaffApi
|
|
11321
|
+
* @extends {BaseAPI}
|
|
11322
|
+
*/
|
|
11323
|
+
export class EventsWaitListStaffApi extends BaseAPI {
|
|
11324
|
+
/**
|
|
11325
|
+
* Obtenir la liste complète de la file d\'attente (staff only)
|
|
11326
|
+
* @param {EventsWaitListStaffApiGetWaitListForEventRequest} requestParameters Request parameters.
|
|
11327
|
+
* @param {*} [options] Override http request option.
|
|
11328
|
+
* @throws {RequiredError}
|
|
11329
|
+
* @memberof EventsWaitListStaffApi
|
|
11330
|
+
*/
|
|
11331
|
+
getWaitListForEvent(requestParameters, options) {
|
|
11332
|
+
return EventsWaitListStaffApiFp(this.configuration).getWaitListForEvent(requestParameters.eventId, options).then((request) => request(this.axios, this.basePath));
|
|
11333
|
+
}
|
|
11334
|
+
/**
|
|
11335
|
+
* Forcer le traitement de la waitlist (staff only) Utile pour tester ou forcer la promotion des utilisateurs en attente
|
|
11336
|
+
* @param {EventsWaitListStaffApiProcessWaitListRequest} requestParameters Request parameters.
|
|
11337
|
+
* @param {*} [options] Override http request option.
|
|
11338
|
+
* @throws {RequiredError}
|
|
11339
|
+
* @memberof EventsWaitListStaffApi
|
|
11340
|
+
*/
|
|
11341
|
+
processWaitList(requestParameters, options) {
|
|
11342
|
+
return EventsWaitListStaffApiFp(this.configuration).processWaitList(requestParameters.eventId, options).then((request) => request(this.axios, this.basePath));
|
|
11343
|
+
}
|
|
11344
|
+
}
|
|
10946
11345
|
/**
|
|
10947
11346
|
* ImagesApi - axios parameter creator
|
|
10948
11347
|
* @export
|
|
@@ -11043,6 +11442,229 @@ export class ImagesApi extends BaseAPI {
|
|
|
11043
11442
|
return ImagesApiFp(this.configuration).cleanupImages(requestParameters.imageCleanupRequestBody, options).then((request) => request(this.axios, this.basePath));
|
|
11044
11443
|
}
|
|
11045
11444
|
}
|
|
11445
|
+
/**
|
|
11446
|
+
* PublicEmailApi - axios parameter creator
|
|
11447
|
+
* @export
|
|
11448
|
+
*/
|
|
11449
|
+
export const PublicEmailApiAxiosParamCreator = function (configuration) {
|
|
11450
|
+
return {
|
|
11451
|
+
/**
|
|
11452
|
+
*
|
|
11453
|
+
* @param {EmailExistsRequestBody} emailExistsRequestBody
|
|
11454
|
+
* @param {*} [options] Override http request option.
|
|
11455
|
+
* @throws {RequiredError}
|
|
11456
|
+
*/
|
|
11457
|
+
authEmailExists: (emailExistsRequestBody_1, ...args_1) => __awaiter(this, [emailExistsRequestBody_1, ...args_1], void 0, function* (emailExistsRequestBody, options = {}) {
|
|
11458
|
+
// verify required parameter 'emailExistsRequestBody' is not null or undefined
|
|
11459
|
+
assertParamExists('authEmailExists', 'emailExistsRequestBody', emailExistsRequestBody);
|
|
11460
|
+
const localVarPath = `/api/public-email/auth-email-exists`;
|
|
11461
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11462
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11463
|
+
let baseOptions;
|
|
11464
|
+
if (configuration) {
|
|
11465
|
+
baseOptions = configuration.baseOptions;
|
|
11466
|
+
}
|
|
11467
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
11468
|
+
const localVarHeaderParameter = {};
|
|
11469
|
+
const localVarQueryParameter = {};
|
|
11470
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11471
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11472
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11473
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11474
|
+
localVarRequestOptions.data = serializeDataIfNeeded(emailExistsRequestBody, localVarRequestOptions, configuration);
|
|
11475
|
+
return {
|
|
11476
|
+
url: toPathString(localVarUrlObj),
|
|
11477
|
+
options: localVarRequestOptions,
|
|
11478
|
+
};
|
|
11479
|
+
}),
|
|
11480
|
+
/**
|
|
11481
|
+
*
|
|
11482
|
+
* @param {RequestEmailCodeBody} requestEmailCodeBody
|
|
11483
|
+
* @param {*} [options] Override http request option.
|
|
11484
|
+
* @throws {RequiredError}
|
|
11485
|
+
*/
|
|
11486
|
+
requestVerificationCode: (requestEmailCodeBody_1, ...args_1) => __awaiter(this, [requestEmailCodeBody_1, ...args_1], void 0, function* (requestEmailCodeBody, options = {}) {
|
|
11487
|
+
// verify required parameter 'requestEmailCodeBody' is not null or undefined
|
|
11488
|
+
assertParamExists('requestVerificationCode', 'requestEmailCodeBody', requestEmailCodeBody);
|
|
11489
|
+
const localVarPath = `/api/public-email/request-verification-code`;
|
|
11490
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11491
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11492
|
+
let baseOptions;
|
|
11493
|
+
if (configuration) {
|
|
11494
|
+
baseOptions = configuration.baseOptions;
|
|
11495
|
+
}
|
|
11496
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
11497
|
+
const localVarHeaderParameter = {};
|
|
11498
|
+
const localVarQueryParameter = {};
|
|
11499
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11500
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11501
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11502
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11503
|
+
localVarRequestOptions.data = serializeDataIfNeeded(requestEmailCodeBody, localVarRequestOptions, configuration);
|
|
11504
|
+
return {
|
|
11505
|
+
url: toPathString(localVarUrlObj),
|
|
11506
|
+
options: localVarRequestOptions,
|
|
11507
|
+
};
|
|
11508
|
+
}),
|
|
11509
|
+
/**
|
|
11510
|
+
*
|
|
11511
|
+
* @param {VerifyEmailCodeBody} verifyEmailCodeBody
|
|
11512
|
+
* @param {*} [options] Override http request option.
|
|
11513
|
+
* @throws {RequiredError}
|
|
11514
|
+
*/
|
|
11515
|
+
verifyCode: (verifyEmailCodeBody_1, ...args_1) => __awaiter(this, [verifyEmailCodeBody_1, ...args_1], void 0, function* (verifyEmailCodeBody, options = {}) {
|
|
11516
|
+
// verify required parameter 'verifyEmailCodeBody' is not null or undefined
|
|
11517
|
+
assertParamExists('verifyCode', 'verifyEmailCodeBody', verifyEmailCodeBody);
|
|
11518
|
+
const localVarPath = `/api/public-email/verify-code`;
|
|
11519
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11520
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
11521
|
+
let baseOptions;
|
|
11522
|
+
if (configuration) {
|
|
11523
|
+
baseOptions = configuration.baseOptions;
|
|
11524
|
+
}
|
|
11525
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
11526
|
+
const localVarHeaderParameter = {};
|
|
11527
|
+
const localVarQueryParameter = {};
|
|
11528
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11529
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11530
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11531
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11532
|
+
localVarRequestOptions.data = serializeDataIfNeeded(verifyEmailCodeBody, localVarRequestOptions, configuration);
|
|
11533
|
+
return {
|
|
11534
|
+
url: toPathString(localVarUrlObj),
|
|
11535
|
+
options: localVarRequestOptions,
|
|
11536
|
+
};
|
|
11537
|
+
}),
|
|
11538
|
+
};
|
|
11539
|
+
};
|
|
11540
|
+
/**
|
|
11541
|
+
* PublicEmailApi - functional programming interface
|
|
11542
|
+
* @export
|
|
11543
|
+
*/
|
|
11544
|
+
export const PublicEmailApiFp = function (configuration) {
|
|
11545
|
+
const localVarAxiosParamCreator = PublicEmailApiAxiosParamCreator(configuration);
|
|
11546
|
+
return {
|
|
11547
|
+
/**
|
|
11548
|
+
*
|
|
11549
|
+
* @param {EmailExistsRequestBody} emailExistsRequestBody
|
|
11550
|
+
* @param {*} [options] Override http request option.
|
|
11551
|
+
* @throws {RequiredError}
|
|
11552
|
+
*/
|
|
11553
|
+
authEmailExists(emailExistsRequestBody, options) {
|
|
11554
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11555
|
+
var _a, _b, _c;
|
|
11556
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.authEmailExists(emailExistsRequestBody, options);
|
|
11557
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11558
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PublicEmailApi.authEmailExists']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11559
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11560
|
+
});
|
|
11561
|
+
},
|
|
11562
|
+
/**
|
|
11563
|
+
*
|
|
11564
|
+
* @param {RequestEmailCodeBody} requestEmailCodeBody
|
|
11565
|
+
* @param {*} [options] Override http request option.
|
|
11566
|
+
* @throws {RequiredError}
|
|
11567
|
+
*/
|
|
11568
|
+
requestVerificationCode(requestEmailCodeBody, options) {
|
|
11569
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11570
|
+
var _a, _b, _c;
|
|
11571
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.requestVerificationCode(requestEmailCodeBody, options);
|
|
11572
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11573
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PublicEmailApi.requestVerificationCode']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11574
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11575
|
+
});
|
|
11576
|
+
},
|
|
11577
|
+
/**
|
|
11578
|
+
*
|
|
11579
|
+
* @param {VerifyEmailCodeBody} verifyEmailCodeBody
|
|
11580
|
+
* @param {*} [options] Override http request option.
|
|
11581
|
+
* @throws {RequiredError}
|
|
11582
|
+
*/
|
|
11583
|
+
verifyCode(verifyEmailCodeBody, options) {
|
|
11584
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
11585
|
+
var _a, _b, _c;
|
|
11586
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.verifyCode(verifyEmailCodeBody, options);
|
|
11587
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11588
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PublicEmailApi.verifyCode']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11589
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11590
|
+
});
|
|
11591
|
+
},
|
|
11592
|
+
};
|
|
11593
|
+
};
|
|
11594
|
+
/**
|
|
11595
|
+
* PublicEmailApi - factory interface
|
|
11596
|
+
* @export
|
|
11597
|
+
*/
|
|
11598
|
+
export const PublicEmailApiFactory = function (configuration, basePath, axios) {
|
|
11599
|
+
const localVarFp = PublicEmailApiFp(configuration);
|
|
11600
|
+
return {
|
|
11601
|
+
/**
|
|
11602
|
+
*
|
|
11603
|
+
* @param {PublicEmailApiAuthEmailExistsRequest} requestParameters Request parameters.
|
|
11604
|
+
* @param {*} [options] Override http request option.
|
|
11605
|
+
* @throws {RequiredError}
|
|
11606
|
+
*/
|
|
11607
|
+
authEmailExists(requestParameters, options) {
|
|
11608
|
+
return localVarFp.authEmailExists(requestParameters.emailExistsRequestBody, options).then((request) => request(axios, basePath));
|
|
11609
|
+
},
|
|
11610
|
+
/**
|
|
11611
|
+
*
|
|
11612
|
+
* @param {PublicEmailApiRequestVerificationCodeRequest} requestParameters Request parameters.
|
|
11613
|
+
* @param {*} [options] Override http request option.
|
|
11614
|
+
* @throws {RequiredError}
|
|
11615
|
+
*/
|
|
11616
|
+
requestVerificationCode(requestParameters, options) {
|
|
11617
|
+
return localVarFp.requestVerificationCode(requestParameters.requestEmailCodeBody, options).then((request) => request(axios, basePath));
|
|
11618
|
+
},
|
|
11619
|
+
/**
|
|
11620
|
+
*
|
|
11621
|
+
* @param {PublicEmailApiVerifyCodeRequest} requestParameters Request parameters.
|
|
11622
|
+
* @param {*} [options] Override http request option.
|
|
11623
|
+
* @throws {RequiredError}
|
|
11624
|
+
*/
|
|
11625
|
+
verifyCode(requestParameters, options) {
|
|
11626
|
+
return localVarFp.verifyCode(requestParameters.verifyEmailCodeBody, options).then((request) => request(axios, basePath));
|
|
11627
|
+
},
|
|
11628
|
+
};
|
|
11629
|
+
};
|
|
11630
|
+
/**
|
|
11631
|
+
* PublicEmailApi - object-oriented interface
|
|
11632
|
+
* @export
|
|
11633
|
+
* @class PublicEmailApi
|
|
11634
|
+
* @extends {BaseAPI}
|
|
11635
|
+
*/
|
|
11636
|
+
export class PublicEmailApi extends BaseAPI {
|
|
11637
|
+
/**
|
|
11638
|
+
*
|
|
11639
|
+
* @param {PublicEmailApiAuthEmailExistsRequest} requestParameters Request parameters.
|
|
11640
|
+
* @param {*} [options] Override http request option.
|
|
11641
|
+
* @throws {RequiredError}
|
|
11642
|
+
* @memberof PublicEmailApi
|
|
11643
|
+
*/
|
|
11644
|
+
authEmailExists(requestParameters, options) {
|
|
11645
|
+
return PublicEmailApiFp(this.configuration).authEmailExists(requestParameters.emailExistsRequestBody, options).then((request) => request(this.axios, this.basePath));
|
|
11646
|
+
}
|
|
11647
|
+
/**
|
|
11648
|
+
*
|
|
11649
|
+
* @param {PublicEmailApiRequestVerificationCodeRequest} requestParameters Request parameters.
|
|
11650
|
+
* @param {*} [options] Override http request option.
|
|
11651
|
+
* @throws {RequiredError}
|
|
11652
|
+
* @memberof PublicEmailApi
|
|
11653
|
+
*/
|
|
11654
|
+
requestVerificationCode(requestParameters, options) {
|
|
11655
|
+
return PublicEmailApiFp(this.configuration).requestVerificationCode(requestParameters.requestEmailCodeBody, options).then((request) => request(this.axios, this.basePath));
|
|
11656
|
+
}
|
|
11657
|
+
/**
|
|
11658
|
+
*
|
|
11659
|
+
* @param {PublicEmailApiVerifyCodeRequest} requestParameters Request parameters.
|
|
11660
|
+
* @param {*} [options] Override http request option.
|
|
11661
|
+
* @throws {RequiredError}
|
|
11662
|
+
* @memberof PublicEmailApi
|
|
11663
|
+
*/
|
|
11664
|
+
verifyCode(requestParameters, options) {
|
|
11665
|
+
return PublicEmailApiFp(this.configuration).verifyCode(requestParameters.verifyEmailCodeBody, options).then((request) => request(this.axios, this.basePath));
|
|
11666
|
+
}
|
|
11667
|
+
}
|
|
11046
11668
|
/**
|
|
11047
11669
|
* SportsManagerApi - axios parameter creator
|
|
11048
11670
|
* @export
|
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED