ch-api-client-typescript2 5.90.72 → 5.90.78
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/lib/api/hospitals-api.d.ts +173 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +212 -0
- package/lib/api/signup-verifications-api.d.ts +265 -0
- package/lib/api/signup-verifications-api.d.ts.map +1 -0
- package/lib/api/signup-verifications-api.js +480 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/confirm-signup-identity-email-command.d.ts +31 -0
- package/lib/models/confirm-signup-identity-email-command.d.ts.map +1 -0
- package/lib/models/confirm-signup-identity-email-command.js +15 -0
- package/lib/models/confirm-signup-phone-number-command.d.ts +31 -0
- package/lib/models/confirm-signup-phone-number-command.d.ts.map +1 -0
- package/lib/models/confirm-signup-phone-number-command.js +15 -0
- package/lib/models/index.d.ts +4 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +4 -0
- package/lib/models/send-signup-verification-email-command.d.ts +37 -0
- package/lib/models/send-signup-verification-email-command.d.ts.map +1 -0
- package/lib/models/send-signup-verification-email-command.js +15 -0
- package/lib/models/send-signup-verification-sms-command.d.ts +31 -0
- package/lib/models/send-signup-verification-sms-command.d.ts.map +1 -0
- package/lib/models/send-signup-verification-sms-command.js +15 -0
- package/package.json +1 -1
package/lib/api/hospitals-api.js
CHANGED
|
@@ -2496,6 +2496,116 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
2496
2496
|
});
|
|
2497
2497
|
});
|
|
2498
2498
|
},
|
|
2499
|
+
/**
|
|
2500
|
+
*
|
|
2501
|
+
* @summary Get HospitalService by serviceId with hospital scope.
|
|
2502
|
+
* @param {string} hospitalId
|
|
2503
|
+
* @param {string} serviceId
|
|
2504
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
2505
|
+
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2506
|
+
* @param {boolean} [returnDefaultValue]
|
|
2507
|
+
* @param {*} [options] Override http request option.
|
|
2508
|
+
* @throws {RequiredError}
|
|
2509
|
+
*/
|
|
2510
|
+
apiV2HospitalsHospitalIdServicesServiceIdGet: function (hospitalId_1, serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1) {
|
|
2511
|
+
var args_1 = [];
|
|
2512
|
+
for (var _i = 5; _i < arguments.length; _i++) {
|
|
2513
|
+
args_1[_i - 5] = arguments[_i];
|
|
2514
|
+
}
|
|
2515
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, serviceId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
2516
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
2517
|
+
if (options === void 0) { options = {}; }
|
|
2518
|
+
return __generator(this, function (_a) {
|
|
2519
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
2520
|
+
(0, common_1.assertParamExists)('apiV2HospitalsHospitalIdServicesServiceIdGet', 'hospitalId', hospitalId);
|
|
2521
|
+
// verify required parameter 'serviceId' is not null or undefined
|
|
2522
|
+
(0, common_1.assertParamExists)('apiV2HospitalsHospitalIdServicesServiceIdGet', 'serviceId', serviceId);
|
|
2523
|
+
localVarPath = "/api/v2/hospitals/{hospitalId}/services/{serviceId}"
|
|
2524
|
+
.replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)))
|
|
2525
|
+
.replace("{".concat("serviceId", "}"), encodeURIComponent(String(serviceId)));
|
|
2526
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2527
|
+
if (configuration) {
|
|
2528
|
+
baseOptions = configuration.baseOptions;
|
|
2529
|
+
}
|
|
2530
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
2531
|
+
localVarHeaderParameter = {};
|
|
2532
|
+
localVarQueryParameter = {};
|
|
2533
|
+
if (languageCode !== undefined) {
|
|
2534
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
2535
|
+
}
|
|
2536
|
+
if (returnDefaultValue !== undefined) {
|
|
2537
|
+
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
2538
|
+
}
|
|
2539
|
+
if (xCloudhospitalPlatform != null) {
|
|
2540
|
+
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
2541
|
+
}
|
|
2542
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2543
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2544
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2545
|
+
return [2 /*return*/, {
|
|
2546
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
2547
|
+
options: localVarRequestOptions,
|
|
2548
|
+
}];
|
|
2549
|
+
});
|
|
2550
|
+
});
|
|
2551
|
+
},
|
|
2552
|
+
/**
|
|
2553
|
+
*
|
|
2554
|
+
* @summary Get HospitalService by slug with hospital scope.
|
|
2555
|
+
* @param {string} hospitalId
|
|
2556
|
+
* @param {string} slug
|
|
2557
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
2558
|
+
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
2559
|
+
* @param {boolean} [returnDefaultValue]
|
|
2560
|
+
* @param {string} [previewSecret]
|
|
2561
|
+
* @param {*} [options] Override http request option.
|
|
2562
|
+
* @throws {RequiredError}
|
|
2563
|
+
*/
|
|
2564
|
+
apiV2HospitalsHospitalIdServicesSlugGet: function (hospitalId_1, slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1) {
|
|
2565
|
+
var args_1 = [];
|
|
2566
|
+
for (var _i = 6; _i < arguments.length; _i++) {
|
|
2567
|
+
args_1[_i - 6] = arguments[_i];
|
|
2568
|
+
}
|
|
2569
|
+
return __awaiter(_this, __spreadArray([hospitalId_1, slug_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1, previewSecret_1], args_1, true), void 0, function (hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, options) {
|
|
2570
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
2571
|
+
if (options === void 0) { options = {}; }
|
|
2572
|
+
return __generator(this, function (_a) {
|
|
2573
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
2574
|
+
(0, common_1.assertParamExists)('apiV2HospitalsHospitalIdServicesSlugGet', 'hospitalId', hospitalId);
|
|
2575
|
+
// verify required parameter 'slug' is not null or undefined
|
|
2576
|
+
(0, common_1.assertParamExists)('apiV2HospitalsHospitalIdServicesSlugGet', 'slug', slug);
|
|
2577
|
+
localVarPath = "/api/v2/hospitals/{hospitalId}/services/{slug}"
|
|
2578
|
+
.replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)))
|
|
2579
|
+
.replace("{".concat("slug", "}"), encodeURIComponent(String(slug)));
|
|
2580
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2581
|
+
if (configuration) {
|
|
2582
|
+
baseOptions = configuration.baseOptions;
|
|
2583
|
+
}
|
|
2584
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
2585
|
+
localVarHeaderParameter = {};
|
|
2586
|
+
localVarQueryParameter = {};
|
|
2587
|
+
if (languageCode !== undefined) {
|
|
2588
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
2589
|
+
}
|
|
2590
|
+
if (returnDefaultValue !== undefined) {
|
|
2591
|
+
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
2592
|
+
}
|
|
2593
|
+
if (previewSecret !== undefined) {
|
|
2594
|
+
localVarQueryParameter['previewSecret'] = previewSecret;
|
|
2595
|
+
}
|
|
2596
|
+
if (xCloudhospitalPlatform != null) {
|
|
2597
|
+
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
2598
|
+
}
|
|
2599
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2600
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2601
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2602
|
+
return [2 /*return*/, {
|
|
2603
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
2604
|
+
options: localVarRequestOptions,
|
|
2605
|
+
}];
|
|
2606
|
+
});
|
|
2607
|
+
});
|
|
2608
|
+
},
|
|
2499
2609
|
/**
|
|
2500
2610
|
*
|
|
2501
2611
|
* @summary Get all HospitalSpecialties.
|
|
@@ -4995,6 +5105,55 @@ var HospitalsApiFp = function (configuration) {
|
|
|
4995
5105
|
});
|
|
4996
5106
|
});
|
|
4997
5107
|
},
|
|
5108
|
+
/**
|
|
5109
|
+
*
|
|
5110
|
+
* @summary Get HospitalService by serviceId with hospital scope.
|
|
5111
|
+
* @param {string} hospitalId
|
|
5112
|
+
* @param {string} serviceId
|
|
5113
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
5114
|
+
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
5115
|
+
* @param {boolean} [returnDefaultValue]
|
|
5116
|
+
* @param {*} [options] Override http request option.
|
|
5117
|
+
* @throws {RequiredError}
|
|
5118
|
+
*/
|
|
5119
|
+
apiV2HospitalsHospitalIdServicesServiceIdGet: function (hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
5120
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5121
|
+
var localVarAxiosArgs;
|
|
5122
|
+
return __generator(this, function (_a) {
|
|
5123
|
+
switch (_a.label) {
|
|
5124
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdServicesServiceIdGet(hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options)];
|
|
5125
|
+
case 1:
|
|
5126
|
+
localVarAxiosArgs = _a.sent();
|
|
5127
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
5128
|
+
}
|
|
5129
|
+
});
|
|
5130
|
+
});
|
|
5131
|
+
},
|
|
5132
|
+
/**
|
|
5133
|
+
*
|
|
5134
|
+
* @summary Get HospitalService by slug with hospital scope.
|
|
5135
|
+
* @param {string} hospitalId
|
|
5136
|
+
* @param {string} slug
|
|
5137
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
5138
|
+
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
5139
|
+
* @param {boolean} [returnDefaultValue]
|
|
5140
|
+
* @param {string} [previewSecret]
|
|
5141
|
+
* @param {*} [options] Override http request option.
|
|
5142
|
+
* @throws {RequiredError}
|
|
5143
|
+
*/
|
|
5144
|
+
apiV2HospitalsHospitalIdServicesSlugGet: function (hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, options) {
|
|
5145
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
5146
|
+
var localVarAxiosArgs;
|
|
5147
|
+
return __generator(this, function (_a) {
|
|
5148
|
+
switch (_a.label) {
|
|
5149
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2HospitalsHospitalIdServicesSlugGet(hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, options)];
|
|
5150
|
+
case 1:
|
|
5151
|
+
localVarAxiosArgs = _a.sent();
|
|
5152
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
5153
|
+
}
|
|
5154
|
+
});
|
|
5155
|
+
});
|
|
5156
|
+
},
|
|
4998
5157
|
/**
|
|
4999
5158
|
*
|
|
5000
5159
|
* @summary Get all HospitalSpecialties.
|
|
@@ -6215,6 +6374,35 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
6215
6374
|
apiV2HospitalsHospitalIdServicesGet: function (hospitalId, xCloudhospitalPlatform, id, name, slug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
6216
6375
|
return localVarFp.apiV2HospitalsHospitalIdServicesGet(hospitalId, xCloudhospitalPlatform, id, name, slug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, appointmentEnabled, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
6217
6376
|
},
|
|
6377
|
+
/**
|
|
6378
|
+
*
|
|
6379
|
+
* @summary Get HospitalService by serviceId with hospital scope.
|
|
6380
|
+
* @param {string} hospitalId
|
|
6381
|
+
* @param {string} serviceId
|
|
6382
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
6383
|
+
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
6384
|
+
* @param {boolean} [returnDefaultValue]
|
|
6385
|
+
* @param {*} [options] Override http request option.
|
|
6386
|
+
* @throws {RequiredError}
|
|
6387
|
+
*/
|
|
6388
|
+
apiV2HospitalsHospitalIdServicesServiceIdGet: function (hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
6389
|
+
return localVarFp.apiV2HospitalsHospitalIdServicesServiceIdGet(hospitalId, serviceId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
6390
|
+
},
|
|
6391
|
+
/**
|
|
6392
|
+
*
|
|
6393
|
+
* @summary Get HospitalService by slug with hospital scope.
|
|
6394
|
+
* @param {string} hospitalId
|
|
6395
|
+
* @param {string} slug
|
|
6396
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
6397
|
+
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
6398
|
+
* @param {boolean} [returnDefaultValue]
|
|
6399
|
+
* @param {string} [previewSecret]
|
|
6400
|
+
* @param {*} [options] Override http request option.
|
|
6401
|
+
* @throws {RequiredError}
|
|
6402
|
+
*/
|
|
6403
|
+
apiV2HospitalsHospitalIdServicesSlugGet: function (hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, options) {
|
|
6404
|
+
return localVarFp.apiV2HospitalsHospitalIdServicesSlugGet(hospitalId, slug, xCloudhospitalPlatform, languageCode, returnDefaultValue, previewSecret, options).then(function (request) { return request(axios, basePath); });
|
|
6405
|
+
},
|
|
6218
6406
|
/**
|
|
6219
6407
|
*
|
|
6220
6408
|
* @summary Get all HospitalSpecialties.
|
|
@@ -7102,6 +7290,30 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
7102
7290
|
var _this = this;
|
|
7103
7291
|
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdServicesGet(requestParameters.hospitalId, requestParameters.xCloudhospitalPlatform, requestParameters.id, requestParameters.name, requestParameters.slug, requestParameters.specialtyId, requestParameters.specialtyName, requestParameters.specialtyTypeId, requestParameters.specialtyTypeName, requestParameters.serviceCategoryId, requestParameters.appointmentEnabled, requestParameters.marketingType, requestParameters.procedure, requestParameters.created, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7104
7292
|
};
|
|
7293
|
+
/**
|
|
7294
|
+
*
|
|
7295
|
+
* @summary Get HospitalService by serviceId with hospital scope.
|
|
7296
|
+
* @param {HospitalsApiApiV2HospitalsHospitalIdServicesServiceIdGetRequest} requestParameters Request parameters.
|
|
7297
|
+
* @param {*} [options] Override http request option.
|
|
7298
|
+
* @throws {RequiredError}
|
|
7299
|
+
* @memberof HospitalsApi
|
|
7300
|
+
*/
|
|
7301
|
+
HospitalsApi.prototype.apiV2HospitalsHospitalIdServicesServiceIdGet = function (requestParameters, options) {
|
|
7302
|
+
var _this = this;
|
|
7303
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdServicesServiceIdGet(requestParameters.hospitalId, requestParameters.serviceId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7304
|
+
};
|
|
7305
|
+
/**
|
|
7306
|
+
*
|
|
7307
|
+
* @summary Get HospitalService by slug with hospital scope.
|
|
7308
|
+
* @param {HospitalsApiApiV2HospitalsHospitalIdServicesSlugGetRequest} requestParameters Request parameters.
|
|
7309
|
+
* @param {*} [options] Override http request option.
|
|
7310
|
+
* @throws {RequiredError}
|
|
7311
|
+
* @memberof HospitalsApi
|
|
7312
|
+
*/
|
|
7313
|
+
HospitalsApi.prototype.apiV2HospitalsHospitalIdServicesSlugGet = function (requestParameters, options) {
|
|
7314
|
+
var _this = this;
|
|
7315
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV2HospitalsHospitalIdServicesSlugGet(requestParameters.hospitalId, requestParameters.slug, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7316
|
+
};
|
|
7105
7317
|
/**
|
|
7106
7318
|
*
|
|
7107
7319
|
* @summary Get all HospitalSpecialties.
|
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { ConfirmSignupIdentityEmailCommand } from '../models';
|
|
16
|
+
import { ConfirmSignupPhoneNumberCommand } from '../models';
|
|
17
|
+
import { SendSignupVerificationEmailCommand } from '../models';
|
|
18
|
+
import { SendSignupVerificationSmsCommand } from '../models';
|
|
19
|
+
/**
|
|
20
|
+
* SignupVerificationsApi - axios parameter creator
|
|
21
|
+
* @export
|
|
22
|
+
*/
|
|
23
|
+
export declare const SignupVerificationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @summary Confirm sign-up email verification via IdentityAdmin.
|
|
27
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
28
|
+
* @param {ConfirmSignupIdentityEmailCommand} [confirmSignupIdentityEmailCommand]
|
|
29
|
+
* @param {*} [options] Override http request option.
|
|
30
|
+
* @throws {RequiredError}
|
|
31
|
+
*/
|
|
32
|
+
apiV2SignupVerificationsConfirmidentityemailPost: (xCloudhospitalPlatform?: string, confirmSignupIdentityEmailCommand?: ConfirmSignupIdentityEmailCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @summary Confirm sign-up phone number verification via IdentityAdmin.
|
|
36
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
37
|
+
* @param {ConfirmSignupPhoneNumberCommand} [confirmSignupPhoneNumberCommand]
|
|
38
|
+
* @param {*} [options] Override http request option.
|
|
39
|
+
* @throws {RequiredError}
|
|
40
|
+
*/
|
|
41
|
+
apiV2SignupVerificationsConfirmphonenumberPost: (xCloudhospitalPlatform?: string, confirmSignupPhoneNumberCommand?: ConfirmSignupPhoneNumberCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @summary Send a sign-up verification email via IdentityAdmin.
|
|
45
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
46
|
+
* @param {SendSignupVerificationEmailCommand} [sendSignupVerificationEmailCommand]
|
|
47
|
+
* @param {*} [options] Override http request option.
|
|
48
|
+
* @throws {RequiredError}
|
|
49
|
+
*/
|
|
50
|
+
apiV2SignupVerificationsSendverificationemailPost: (xCloudhospitalPlatform?: string, sendSignupVerificationEmailCommand?: SendSignupVerificationEmailCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @summary Send a sign-up verification SMS via IdentityAdmin.
|
|
54
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
55
|
+
* @param {SendSignupVerificationSmsCommand} [sendSignupVerificationSmsCommand]
|
|
56
|
+
* @param {*} [options] Override http request option.
|
|
57
|
+
* @throws {RequiredError}
|
|
58
|
+
*/
|
|
59
|
+
apiV2SignupVerificationsSendverificationsmsPost: (xCloudhospitalPlatform?: string, sendSignupVerificationSmsCommand?: SendSignupVerificationSmsCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* SignupVerificationsApi - functional programming interface
|
|
63
|
+
* @export
|
|
64
|
+
*/
|
|
65
|
+
export declare const SignupVerificationsApiFp: (configuration?: Configuration) => {
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @summary Confirm sign-up email verification via IdentityAdmin.
|
|
69
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
70
|
+
* @param {ConfirmSignupIdentityEmailCommand} [confirmSignupIdentityEmailCommand]
|
|
71
|
+
* @param {*} [options] Override http request option.
|
|
72
|
+
* @throws {RequiredError}
|
|
73
|
+
*/
|
|
74
|
+
apiV2SignupVerificationsConfirmidentityemailPost(xCloudhospitalPlatform?: string, confirmSignupIdentityEmailCommand?: ConfirmSignupIdentityEmailCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
75
|
+
/**
|
|
76
|
+
*
|
|
77
|
+
* @summary Confirm sign-up phone number verification via IdentityAdmin.
|
|
78
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
79
|
+
* @param {ConfirmSignupPhoneNumberCommand} [confirmSignupPhoneNumberCommand]
|
|
80
|
+
* @param {*} [options] Override http request option.
|
|
81
|
+
* @throws {RequiredError}
|
|
82
|
+
*/
|
|
83
|
+
apiV2SignupVerificationsConfirmphonenumberPost(xCloudhospitalPlatform?: string, confirmSignupPhoneNumberCommand?: ConfirmSignupPhoneNumberCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @summary Send a sign-up verification email via IdentityAdmin.
|
|
87
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
88
|
+
* @param {SendSignupVerificationEmailCommand} [sendSignupVerificationEmailCommand]
|
|
89
|
+
* @param {*} [options] Override http request option.
|
|
90
|
+
* @throws {RequiredError}
|
|
91
|
+
*/
|
|
92
|
+
apiV2SignupVerificationsSendverificationemailPost(xCloudhospitalPlatform?: string, sendSignupVerificationEmailCommand?: SendSignupVerificationEmailCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* @summary Send a sign-up verification SMS via IdentityAdmin.
|
|
96
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
97
|
+
* @param {SendSignupVerificationSmsCommand} [sendSignupVerificationSmsCommand]
|
|
98
|
+
* @param {*} [options] Override http request option.
|
|
99
|
+
* @throws {RequiredError}
|
|
100
|
+
*/
|
|
101
|
+
apiV2SignupVerificationsSendverificationsmsPost(xCloudhospitalPlatform?: string, sendSignupVerificationSmsCommand?: SendSignupVerificationSmsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* SignupVerificationsApi - factory interface
|
|
105
|
+
* @export
|
|
106
|
+
*/
|
|
107
|
+
export declare const SignupVerificationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @summary Confirm sign-up email verification via IdentityAdmin.
|
|
111
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
112
|
+
* @param {ConfirmSignupIdentityEmailCommand} [confirmSignupIdentityEmailCommand]
|
|
113
|
+
* @param {*} [options] Override http request option.
|
|
114
|
+
* @throws {RequiredError}
|
|
115
|
+
*/
|
|
116
|
+
apiV2SignupVerificationsConfirmidentityemailPost(xCloudhospitalPlatform?: string, confirmSignupIdentityEmailCommand?: ConfirmSignupIdentityEmailCommand, options?: any): AxiosPromise<boolean>;
|
|
117
|
+
/**
|
|
118
|
+
*
|
|
119
|
+
* @summary Confirm sign-up phone number verification via IdentityAdmin.
|
|
120
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
121
|
+
* @param {ConfirmSignupPhoneNumberCommand} [confirmSignupPhoneNumberCommand]
|
|
122
|
+
* @param {*} [options] Override http request option.
|
|
123
|
+
* @throws {RequiredError}
|
|
124
|
+
*/
|
|
125
|
+
apiV2SignupVerificationsConfirmphonenumberPost(xCloudhospitalPlatform?: string, confirmSignupPhoneNumberCommand?: ConfirmSignupPhoneNumberCommand, options?: any): AxiosPromise<boolean>;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @summary Send a sign-up verification email via IdentityAdmin.
|
|
129
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
130
|
+
* @param {SendSignupVerificationEmailCommand} [sendSignupVerificationEmailCommand]
|
|
131
|
+
* @param {*} [options] Override http request option.
|
|
132
|
+
* @throws {RequiredError}
|
|
133
|
+
*/
|
|
134
|
+
apiV2SignupVerificationsSendverificationemailPost(xCloudhospitalPlatform?: string, sendSignupVerificationEmailCommand?: SendSignupVerificationEmailCommand, options?: any): AxiosPromise<boolean>;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @summary Send a sign-up verification SMS via IdentityAdmin.
|
|
138
|
+
* @param {string} [xCloudhospitalPlatform]
|
|
139
|
+
* @param {SendSignupVerificationSmsCommand} [sendSignupVerificationSmsCommand]
|
|
140
|
+
* @param {*} [options] Override http request option.
|
|
141
|
+
* @throws {RequiredError}
|
|
142
|
+
*/
|
|
143
|
+
apiV2SignupVerificationsSendverificationsmsPost(xCloudhospitalPlatform?: string, sendSignupVerificationSmsCommand?: SendSignupVerificationSmsCommand, options?: any): AxiosPromise<boolean>;
|
|
144
|
+
};
|
|
145
|
+
/**
|
|
146
|
+
* Request parameters for apiV2SignupVerificationsConfirmidentityemailPost operation in SignupVerificationsApi.
|
|
147
|
+
* @export
|
|
148
|
+
* @interface SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPostRequest
|
|
149
|
+
*/
|
|
150
|
+
export interface SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPostRequest {
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* @type {string}
|
|
154
|
+
* @memberof SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPost
|
|
155
|
+
*/
|
|
156
|
+
readonly xCloudhospitalPlatform?: string;
|
|
157
|
+
/**
|
|
158
|
+
*
|
|
159
|
+
* @type {ConfirmSignupIdentityEmailCommand}
|
|
160
|
+
* @memberof SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPost
|
|
161
|
+
*/
|
|
162
|
+
readonly confirmSignupIdentityEmailCommand?: ConfirmSignupIdentityEmailCommand;
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* Request parameters for apiV2SignupVerificationsConfirmphonenumberPost operation in SignupVerificationsApi.
|
|
166
|
+
* @export
|
|
167
|
+
* @interface SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPostRequest
|
|
168
|
+
*/
|
|
169
|
+
export interface SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPostRequest {
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {string}
|
|
173
|
+
* @memberof SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPost
|
|
174
|
+
*/
|
|
175
|
+
readonly xCloudhospitalPlatform?: string;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @type {ConfirmSignupPhoneNumberCommand}
|
|
179
|
+
* @memberof SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPost
|
|
180
|
+
*/
|
|
181
|
+
readonly confirmSignupPhoneNumberCommand?: ConfirmSignupPhoneNumberCommand;
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
* Request parameters for apiV2SignupVerificationsSendverificationemailPost operation in SignupVerificationsApi.
|
|
185
|
+
* @export
|
|
186
|
+
* @interface SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPostRequest
|
|
187
|
+
*/
|
|
188
|
+
export interface SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPostRequest {
|
|
189
|
+
/**
|
|
190
|
+
*
|
|
191
|
+
* @type {string}
|
|
192
|
+
* @memberof SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPost
|
|
193
|
+
*/
|
|
194
|
+
readonly xCloudhospitalPlatform?: string;
|
|
195
|
+
/**
|
|
196
|
+
*
|
|
197
|
+
* @type {SendSignupVerificationEmailCommand}
|
|
198
|
+
* @memberof SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPost
|
|
199
|
+
*/
|
|
200
|
+
readonly sendSignupVerificationEmailCommand?: SendSignupVerificationEmailCommand;
|
|
201
|
+
}
|
|
202
|
+
/**
|
|
203
|
+
* Request parameters for apiV2SignupVerificationsSendverificationsmsPost operation in SignupVerificationsApi.
|
|
204
|
+
* @export
|
|
205
|
+
* @interface SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPostRequest
|
|
206
|
+
*/
|
|
207
|
+
export interface SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPostRequest {
|
|
208
|
+
/**
|
|
209
|
+
*
|
|
210
|
+
* @type {string}
|
|
211
|
+
* @memberof SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPost
|
|
212
|
+
*/
|
|
213
|
+
readonly xCloudhospitalPlatform?: string;
|
|
214
|
+
/**
|
|
215
|
+
*
|
|
216
|
+
* @type {SendSignupVerificationSmsCommand}
|
|
217
|
+
* @memberof SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPost
|
|
218
|
+
*/
|
|
219
|
+
readonly sendSignupVerificationSmsCommand?: SendSignupVerificationSmsCommand;
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* SignupVerificationsApi - object-oriented interface
|
|
223
|
+
* @export
|
|
224
|
+
* @class SignupVerificationsApi
|
|
225
|
+
* @extends {BaseAPI}
|
|
226
|
+
*/
|
|
227
|
+
export declare class SignupVerificationsApi extends BaseAPI {
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* @summary Confirm sign-up email verification via IdentityAdmin.
|
|
231
|
+
* @param {SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPostRequest} requestParameters Request parameters.
|
|
232
|
+
* @param {*} [options] Override http request option.
|
|
233
|
+
* @throws {RequiredError}
|
|
234
|
+
* @memberof SignupVerificationsApi
|
|
235
|
+
*/
|
|
236
|
+
apiV2SignupVerificationsConfirmidentityemailPost(requestParameters?: SignupVerificationsApiApiV2SignupVerificationsConfirmidentityemailPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
237
|
+
/**
|
|
238
|
+
*
|
|
239
|
+
* @summary Confirm sign-up phone number verification via IdentityAdmin.
|
|
240
|
+
* @param {SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPostRequest} requestParameters Request parameters.
|
|
241
|
+
* @param {*} [options] Override http request option.
|
|
242
|
+
* @throws {RequiredError}
|
|
243
|
+
* @memberof SignupVerificationsApi
|
|
244
|
+
*/
|
|
245
|
+
apiV2SignupVerificationsConfirmphonenumberPost(requestParameters?: SignupVerificationsApiApiV2SignupVerificationsConfirmphonenumberPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
246
|
+
/**
|
|
247
|
+
*
|
|
248
|
+
* @summary Send a sign-up verification email via IdentityAdmin.
|
|
249
|
+
* @param {SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPostRequest} requestParameters Request parameters.
|
|
250
|
+
* @param {*} [options] Override http request option.
|
|
251
|
+
* @throws {RequiredError}
|
|
252
|
+
* @memberof SignupVerificationsApi
|
|
253
|
+
*/
|
|
254
|
+
apiV2SignupVerificationsSendverificationemailPost(requestParameters?: SignupVerificationsApiApiV2SignupVerificationsSendverificationemailPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
255
|
+
/**
|
|
256
|
+
*
|
|
257
|
+
* @summary Send a sign-up verification SMS via IdentityAdmin.
|
|
258
|
+
* @param {SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPostRequest} requestParameters Request parameters.
|
|
259
|
+
* @param {*} [options] Override http request option.
|
|
260
|
+
* @throws {RequiredError}
|
|
261
|
+
* @memberof SignupVerificationsApi
|
|
262
|
+
*/
|
|
263
|
+
apiV2SignupVerificationsSendverificationsmsPost(requestParameters?: SignupVerificationsApiApiV2SignupVerificationsSendverificationsmsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
264
|
+
}
|
|
265
|
+
//# sourceMappingURL=signup-verifications-api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"signup-verifications-api.d.ts","sourceRoot":"","sources":["../../src/api/signup-verifications-api.ts"],"names":[],"mappings":"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"}
|