ch-admin-api-client-typescript 5.5.2 → 5.5.4
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/dev-supports-api.d.ts +125 -0
- package/lib/api/dev-supports-api.d.ts.map +1 -0
- package/lib/api/dev-supports-api.js +244 -0
- package/lib/api/hospitals-api.d.ts +139 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +198 -0
- package/lib/api/search-curations-api.d.ts +309 -0
- package/lib/api/search-curations-api.d.ts.map +1 -0
- package/lib/api/search-curations-api.js +579 -0
- package/lib/api/specialties-api.d.ts +56 -0
- package/lib/api/specialties-api.d.ts.map +1 -1
- package/lib/api/specialties-api.js +90 -0
- package/lib/api/specialty-types-api.d.ts +56 -0
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +90 -0
- package/lib/api.d.ts +2 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +2 -0
- package/lib/models/call-statistics-model.d.ts +1 -1
- package/lib/models/call-statistics-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +10 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +10 -0
- package/lib/models/save-search-curations-command.d.ts +26 -0
- package/lib/models/save-search-curations-command.d.ts.map +1 -0
- package/lib/models/save-search-curations-command.js +15 -0
- package/lib/models/search-curation-item-input-model.d.ts +73 -0
- package/lib/models/search-curation-item-input-model.d.ts.map +1 -0
- package/lib/models/search-curation-item-input-model.js +15 -0
- package/lib/models/search-curation-item-model.d.ts +79 -0
- package/lib/models/search-curation-item-model.d.ts.map +1 -0
- package/lib/models/search-curation-item-model.js +15 -0
- package/lib/models/translate-doctor-affiliation-command.d.ts +6 -0
- package/lib/models/translate-doctor-affiliation-command.d.ts.map +1 -1
- package/lib/models/translate-hospital-command.d.ts +6 -0
- package/lib/models/translate-hospital-command.d.ts.map +1 -1
- package/lib/models/translate-hospital-service-command.d.ts +44 -0
- package/lib/models/translate-hospital-service-command.d.ts.map +1 -0
- package/lib/models/translate-hospital-service-command.js +15 -0
- package/lib/models/translate-hospital-specialty-command.d.ts +44 -0
- package/lib/models/translate-hospital-specialty-command.d.ts.map +1 -0
- package/lib/models/translate-hospital-specialty-command.js +15 -0
- package/lib/models/translate-specialty-command.d.ts +44 -0
- package/lib/models/translate-specialty-command.d.ts.map +1 -0
- package/lib/models/translate-specialty-command.js +15 -0
- package/lib/models/translate-specialty-type-command.d.ts +44 -0
- package/lib/models/translate-specialty-type-command.d.ts.map +1 -0
- package/lib/models/translate-specialty-type-command.js +15 -0
- package/lib/models/translation-contents-model.d.ts +56 -0
- package/lib/models/translation-contents-model.d.ts.map +1 -0
- package/lib/models/translation-contents-model.js +15 -0
- package/lib/models/translation-contents-target-model.d.ts +43 -0
- package/lib/models/translation-contents-target-model.d.ts.map +1 -0
- package/lib/models/translation-contents-target-model.js +15 -0
- package/lib/models/translation-target-entities.d.ts +24 -0
- package/lib/models/translation-target-entities.d.ts.map +1 -0
- package/lib/models/translation-target-entities.js +27 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +12 -0
- package/src/api/dev-supports-api.ts +208 -0
- package/src/api/hospitals-api.ts +239 -0
- package/src/api/search-curations-api.ts +539 -0
- package/src/api/specialties-api.ts +100 -0
- package/src/api/specialty-types-api.ts +100 -0
- package/src/api.ts +2 -0
- package/src/models/call-statistics-model.ts +1 -1
- package/src/models/index.ts +10 -0
- package/src/models/save-search-curations-command.ts +33 -0
- package/src/models/search-curation-item-input-model.ts +78 -0
- package/src/models/search-curation-item-model.ts +84 -0
- package/src/models/translate-doctor-affiliation-command.ts +6 -0
- package/src/models/translate-hospital-command.ts +6 -0
- package/src/models/translate-hospital-service-command.ts +51 -0
- package/src/models/translate-hospital-specialty-command.ts +51 -0
- package/src/models/translate-specialty-command.ts +51 -0
- package/src/models/translate-specialty-type-command.ts +51 -0
- package/src/models/translation-contents-model.ts +63 -0
- package/src/models/translation-contents-target-model.ts +48 -0
- package/src/models/translation-target-entities.ts +33 -0
package/lib/api/hospitals-api.js
CHANGED
|
@@ -5039,6 +5039,56 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
5039
5039
|
});
|
|
5040
5040
|
});
|
|
5041
5041
|
},
|
|
5042
|
+
/**
|
|
5043
|
+
*
|
|
5044
|
+
* @summary Translate hospitalSpecialty
|
|
5045
|
+
* @param {string} hospitalId
|
|
5046
|
+
* @param {string} hospitalSpecialtyId
|
|
5047
|
+
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
5048
|
+
* @param {*} [options] Override http request option.
|
|
5049
|
+
* @throws {RequiredError}
|
|
5050
|
+
*/
|
|
5051
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost: function (hospitalId, hospitalSpecialtyId, translateHospitalSpecialtyCommand, options) {
|
|
5052
|
+
if (options === void 0) { options = {}; }
|
|
5053
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
5054
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
5055
|
+
return __generator(this, function (_a) {
|
|
5056
|
+
switch (_a.label) {
|
|
5057
|
+
case 0:
|
|
5058
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
5059
|
+
(0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost', 'hospitalId', hospitalId);
|
|
5060
|
+
// verify required parameter 'hospitalSpecialtyId' is not null or undefined
|
|
5061
|
+
(0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost', 'hospitalSpecialtyId', hospitalSpecialtyId);
|
|
5062
|
+
localVarPath = "/api/v1/hospitals/{hospitalId}/specialties/{hospitalSpecialtyId}/translate"
|
|
5063
|
+
.replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)))
|
|
5064
|
+
.replace("{".concat("hospitalSpecialtyId", "}"), encodeURIComponent(String(hospitalSpecialtyId)));
|
|
5065
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
5066
|
+
if (configuration) {
|
|
5067
|
+
baseOptions = configuration.baseOptions;
|
|
5068
|
+
}
|
|
5069
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
5070
|
+
localVarHeaderParameter = {};
|
|
5071
|
+
localVarQueryParameter = {};
|
|
5072
|
+
// authentication oauth2 required
|
|
5073
|
+
// oauth required
|
|
5074
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
|
|
5075
|
+
case 1:
|
|
5076
|
+
// authentication oauth2 required
|
|
5077
|
+
// oauth required
|
|
5078
|
+
_a.sent();
|
|
5079
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5080
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
5081
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5082
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5083
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(translateHospitalSpecialtyCommand, localVarRequestOptions, configuration);
|
|
5084
|
+
return [2 /*return*/, {
|
|
5085
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
5086
|
+
options: localVarRequestOptions,
|
|
5087
|
+
}];
|
|
5088
|
+
}
|
|
5089
|
+
});
|
|
5090
|
+
});
|
|
5091
|
+
},
|
|
5042
5092
|
/**
|
|
5043
5093
|
*
|
|
5044
5094
|
* @summary Create HospitalSpecialty.
|
|
@@ -6275,6 +6325,60 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
6275
6325
|
});
|
|
6276
6326
|
});
|
|
6277
6327
|
},
|
|
6328
|
+
/**
|
|
6329
|
+
*
|
|
6330
|
+
* @summary Translate service
|
|
6331
|
+
* @param {string} hospitalId
|
|
6332
|
+
* @param {string} specialtyId
|
|
6333
|
+
* @param {string} serviceId
|
|
6334
|
+
* @param {TranslateHospitalServiceCommand} [translateHospitalServiceCommand]
|
|
6335
|
+
* @param {*} [options] Override http request option.
|
|
6336
|
+
* @throws {RequiredError}
|
|
6337
|
+
*/
|
|
6338
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost: function (hospitalId, specialtyId, serviceId, translateHospitalServiceCommand, options) {
|
|
6339
|
+
if (options === void 0) { options = {}; }
|
|
6340
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
6341
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
6342
|
+
return __generator(this, function (_a) {
|
|
6343
|
+
switch (_a.label) {
|
|
6344
|
+
case 0:
|
|
6345
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
6346
|
+
(0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost', 'hospitalId', hospitalId);
|
|
6347
|
+
// verify required parameter 'specialtyId' is not null or undefined
|
|
6348
|
+
(0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost', 'specialtyId', specialtyId);
|
|
6349
|
+
// verify required parameter 'serviceId' is not null or undefined
|
|
6350
|
+
(0, common_1.assertParamExists)('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost', 'serviceId', serviceId);
|
|
6351
|
+
localVarPath = "/api/v1/hospitals/{hospitalId}/specialties/{specialtyId}/services/{serviceId}/translate"
|
|
6352
|
+
.replace("{".concat("hospitalId", "}"), encodeURIComponent(String(hospitalId)))
|
|
6353
|
+
.replace("{".concat("specialtyId", "}"), encodeURIComponent(String(specialtyId)))
|
|
6354
|
+
.replace("{".concat("serviceId", "}"), encodeURIComponent(String(serviceId)));
|
|
6355
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
6356
|
+
if (configuration) {
|
|
6357
|
+
baseOptions = configuration.baseOptions;
|
|
6358
|
+
}
|
|
6359
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
6360
|
+
localVarHeaderParameter = {};
|
|
6361
|
+
localVarQueryParameter = {};
|
|
6362
|
+
// authentication oauth2 required
|
|
6363
|
+
// oauth required
|
|
6364
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
|
|
6365
|
+
case 1:
|
|
6366
|
+
// authentication oauth2 required
|
|
6367
|
+
// oauth required
|
|
6368
|
+
_a.sent();
|
|
6369
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6370
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
6371
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6372
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6373
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(translateHospitalServiceCommand, localVarRequestOptions, configuration);
|
|
6374
|
+
return [2 /*return*/, {
|
|
6375
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
6376
|
+
options: localVarRequestOptions,
|
|
6377
|
+
}];
|
|
6378
|
+
}
|
|
6379
|
+
});
|
|
6380
|
+
});
|
|
6381
|
+
},
|
|
6278
6382
|
/**
|
|
6279
6383
|
*
|
|
6280
6384
|
* @summary Translate hospital at once
|
|
@@ -8924,6 +9028,28 @@ var HospitalsApiFp = function (configuration) {
|
|
|
8924
9028
|
});
|
|
8925
9029
|
});
|
|
8926
9030
|
},
|
|
9031
|
+
/**
|
|
9032
|
+
*
|
|
9033
|
+
* @summary Translate hospitalSpecialty
|
|
9034
|
+
* @param {string} hospitalId
|
|
9035
|
+
* @param {string} hospitalSpecialtyId
|
|
9036
|
+
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
9037
|
+
* @param {*} [options] Override http request option.
|
|
9038
|
+
* @throws {RequiredError}
|
|
9039
|
+
*/
|
|
9040
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost: function (hospitalId, hospitalSpecialtyId, translateHospitalSpecialtyCommand, options) {
|
|
9041
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
9042
|
+
var localVarAxiosArgs;
|
|
9043
|
+
return __generator(this, function (_a) {
|
|
9044
|
+
switch (_a.label) {
|
|
9045
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(hospitalId, hospitalSpecialtyId, translateHospitalSpecialtyCommand, options)];
|
|
9046
|
+
case 1:
|
|
9047
|
+
localVarAxiosArgs = _a.sent();
|
|
9048
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
9049
|
+
}
|
|
9050
|
+
});
|
|
9051
|
+
});
|
|
9052
|
+
},
|
|
8927
9053
|
/**
|
|
8928
9054
|
*
|
|
8929
9055
|
* @summary Create HospitalSpecialty.
|
|
@@ -9416,6 +9542,29 @@ var HospitalsApiFp = function (configuration) {
|
|
|
9416
9542
|
});
|
|
9417
9543
|
});
|
|
9418
9544
|
},
|
|
9545
|
+
/**
|
|
9546
|
+
*
|
|
9547
|
+
* @summary Translate service
|
|
9548
|
+
* @param {string} hospitalId
|
|
9549
|
+
* @param {string} specialtyId
|
|
9550
|
+
* @param {string} serviceId
|
|
9551
|
+
* @param {TranslateHospitalServiceCommand} [translateHospitalServiceCommand]
|
|
9552
|
+
* @param {*} [options] Override http request option.
|
|
9553
|
+
* @throws {RequiredError}
|
|
9554
|
+
*/
|
|
9555
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost: function (hospitalId, specialtyId, serviceId, translateHospitalServiceCommand, options) {
|
|
9556
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
9557
|
+
var localVarAxiosArgs;
|
|
9558
|
+
return __generator(this, function (_a) {
|
|
9559
|
+
switch (_a.label) {
|
|
9560
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(hospitalId, specialtyId, serviceId, translateHospitalServiceCommand, options)];
|
|
9561
|
+
case 1:
|
|
9562
|
+
localVarAxiosArgs = _a.sent();
|
|
9563
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
9564
|
+
}
|
|
9565
|
+
});
|
|
9566
|
+
});
|
|
9567
|
+
},
|
|
9419
9568
|
/**
|
|
9420
9569
|
*
|
|
9421
9570
|
* @summary Translate hospital at once
|
|
@@ -10819,6 +10968,18 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
10819
10968
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost: function (hospitalId, hospitalSpecialtyId, includeCurrent, options) {
|
|
10820
10969
|
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(hospitalId, hospitalSpecialtyId, includeCurrent, options).then(function (request) { return request(axios, basePath); });
|
|
10821
10970
|
},
|
|
10971
|
+
/**
|
|
10972
|
+
*
|
|
10973
|
+
* @summary Translate hospitalSpecialty
|
|
10974
|
+
* @param {string} hospitalId
|
|
10975
|
+
* @param {string} hospitalSpecialtyId
|
|
10976
|
+
* @param {TranslateHospitalSpecialtyCommand} [translateHospitalSpecialtyCommand]
|
|
10977
|
+
* @param {*} [options] Override http request option.
|
|
10978
|
+
* @throws {RequiredError}
|
|
10979
|
+
*/
|
|
10980
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost: function (hospitalId, hospitalSpecialtyId, translateHospitalSpecialtyCommand, options) {
|
|
10981
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(hospitalId, hospitalSpecialtyId, translateHospitalSpecialtyCommand, options).then(function (request) { return request(axios, basePath); });
|
|
10982
|
+
},
|
|
10822
10983
|
/**
|
|
10823
10984
|
*
|
|
10824
10985
|
* @summary Create HospitalSpecialty.
|
|
@@ -11111,6 +11272,19 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
11111
11272
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost: function (hospitalId, specialtyId, serviceId, includeCurrent, options) {
|
|
11112
11273
|
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(hospitalId, specialtyId, serviceId, includeCurrent, options).then(function (request) { return request(axios, basePath); });
|
|
11113
11274
|
},
|
|
11275
|
+
/**
|
|
11276
|
+
*
|
|
11277
|
+
* @summary Translate service
|
|
11278
|
+
* @param {string} hospitalId
|
|
11279
|
+
* @param {string} specialtyId
|
|
11280
|
+
* @param {string} serviceId
|
|
11281
|
+
* @param {TranslateHospitalServiceCommand} [translateHospitalServiceCommand]
|
|
11282
|
+
* @param {*} [options] Override http request option.
|
|
11283
|
+
* @throws {RequiredError}
|
|
11284
|
+
*/
|
|
11285
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost: function (hospitalId, specialtyId, serviceId, translateHospitalServiceCommand, options) {
|
|
11286
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(hospitalId, specialtyId, serviceId, translateHospitalServiceCommand, options).then(function (request) { return request(axios, basePath); });
|
|
11287
|
+
},
|
|
11114
11288
|
/**
|
|
11115
11289
|
*
|
|
11116
11290
|
* @summary Translate hospital at once
|
|
@@ -12360,6 +12534,18 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
12360
12534
|
var _this = this;
|
|
12361
12535
|
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdRevalidatePost(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.includeCurrent, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
12362
12536
|
};
|
|
12537
|
+
/**
|
|
12538
|
+
*
|
|
12539
|
+
* @summary Translate hospitalSpecialty
|
|
12540
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePostRequest} requestParameters Request parameters.
|
|
12541
|
+
* @param {*} [options] Override http request option.
|
|
12542
|
+
* @throws {RequiredError}
|
|
12543
|
+
* @memberof HospitalsApi
|
|
12544
|
+
*/
|
|
12545
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost = function (requestParameters, options) {
|
|
12546
|
+
var _this = this;
|
|
12547
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdTranslatePost(requestParameters.hospitalId, requestParameters.hospitalSpecialtyId, requestParameters.translateHospitalSpecialtyCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
12548
|
+
};
|
|
12363
12549
|
/**
|
|
12364
12550
|
*
|
|
12365
12551
|
* @summary Create HospitalSpecialty.
|
|
@@ -12600,6 +12786,18 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
12600
12786
|
var _this = this;
|
|
12601
12787
|
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdRevalidatePost(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.includeCurrent, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
12602
12788
|
};
|
|
12789
|
+
/**
|
|
12790
|
+
*
|
|
12791
|
+
* @summary Translate service
|
|
12792
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePostRequest} requestParameters Request parameters.
|
|
12793
|
+
* @param {*} [options] Override http request option.
|
|
12794
|
+
* @throws {RequiredError}
|
|
12795
|
+
* @memberof HospitalsApi
|
|
12796
|
+
*/
|
|
12797
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost = function (requestParameters, options) {
|
|
12798
|
+
var _this = this;
|
|
12799
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdTranslatePost(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.translateHospitalServiceCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
12800
|
+
};
|
|
12603
12801
|
/**
|
|
12604
12802
|
*
|
|
12605
12803
|
* @summary Translate hospital at once
|
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: hyounoosung@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 { SaveSearchCurationsCommand } from '../models';
|
|
16
|
+
import { SearchCurationItemModel } from '../models';
|
|
17
|
+
/**
|
|
18
|
+
* SearchCurationsApi - axios parameter creator
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
export declare const SearchCurationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @summary Get all SearchCurationItems
|
|
25
|
+
* @param {string} languageCode
|
|
26
|
+
* @param {*} [options] Override http request option.
|
|
27
|
+
* @throws {RequiredError}
|
|
28
|
+
*/
|
|
29
|
+
apiV1SearchcurationsLanguageCodeGet: (languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @summary Delete SearchCurationItem
|
|
33
|
+
* @param {string} languageCode
|
|
34
|
+
* @param {string} id
|
|
35
|
+
* @param {*} [options] Override http request option.
|
|
36
|
+
* @throws {RequiredError}
|
|
37
|
+
*/
|
|
38
|
+
apiV1SearchcurationsLanguageCodeIdDelete: (languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @summary Get SearchCurationItem by id
|
|
42
|
+
* @param {string} languageCode
|
|
43
|
+
* @param {string} id
|
|
44
|
+
* @param {*} [options] Override http request option.
|
|
45
|
+
* @throws {RequiredError}
|
|
46
|
+
*/
|
|
47
|
+
apiV1SearchcurationsLanguageCodeIdGet: (languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @summary Get SearchCurationItems by parent id
|
|
51
|
+
* @param {string} languageCode
|
|
52
|
+
* @param {string} parentId
|
|
53
|
+
* @param {*} [options] Override http request option.
|
|
54
|
+
* @throws {RequiredError}
|
|
55
|
+
*/
|
|
56
|
+
apiV1SearchcurationsLanguageCodeParentIdSubitemsGet: (languageCode: string, parentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @summary Save SearchCurationItem
|
|
60
|
+
* @param {string} languageCode
|
|
61
|
+
* @param {SaveSearchCurationsCommand} [saveSearchCurationsCommand]
|
|
62
|
+
* @param {*} [options] Override http request option.
|
|
63
|
+
* @throws {RequiredError}
|
|
64
|
+
*/
|
|
65
|
+
apiV1SearchcurationsLanguageCodePost: (languageCode: string, saveSearchCurationsCommand?: SaveSearchCurationsCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* SearchCurationsApi - functional programming interface
|
|
69
|
+
* @export
|
|
70
|
+
*/
|
|
71
|
+
export declare const SearchCurationsApiFp: (configuration?: Configuration) => {
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @summary Get all SearchCurationItems
|
|
75
|
+
* @param {string} languageCode
|
|
76
|
+
* @param {*} [options] Override http request option.
|
|
77
|
+
* @throws {RequiredError}
|
|
78
|
+
*/
|
|
79
|
+
apiV1SearchcurationsLanguageCodeGet(languageCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchCurationItemModel>>>;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @summary Delete SearchCurationItem
|
|
83
|
+
* @param {string} languageCode
|
|
84
|
+
* @param {string} id
|
|
85
|
+
* @param {*} [options] Override http request option.
|
|
86
|
+
* @throws {RequiredError}
|
|
87
|
+
*/
|
|
88
|
+
apiV1SearchcurationsLanguageCodeIdDelete(languageCode: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @summary Get SearchCurationItem by id
|
|
92
|
+
* @param {string} languageCode
|
|
93
|
+
* @param {string} id
|
|
94
|
+
* @param {*} [options] Override http request option.
|
|
95
|
+
* @throws {RequiredError}
|
|
96
|
+
*/
|
|
97
|
+
apiV1SearchcurationsLanguageCodeIdGet(languageCode: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchCurationItemModel>>;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @summary Get SearchCurationItems by parent id
|
|
101
|
+
* @param {string} languageCode
|
|
102
|
+
* @param {string} parentId
|
|
103
|
+
* @param {*} [options] Override http request option.
|
|
104
|
+
* @throws {RequiredError}
|
|
105
|
+
*/
|
|
106
|
+
apiV1SearchcurationsLanguageCodeParentIdSubitemsGet(languageCode: string, parentId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchCurationItemModel>>>;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @summary Save SearchCurationItem
|
|
110
|
+
* @param {string} languageCode
|
|
111
|
+
* @param {SaveSearchCurationsCommand} [saveSearchCurationsCommand]
|
|
112
|
+
* @param {*} [options] Override http request option.
|
|
113
|
+
* @throws {RequiredError}
|
|
114
|
+
*/
|
|
115
|
+
apiV1SearchcurationsLanguageCodePost(languageCode: string, saveSearchCurationsCommand?: SaveSearchCurationsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchCurationItemModel>>;
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* SearchCurationsApi - factory interface
|
|
119
|
+
* @export
|
|
120
|
+
*/
|
|
121
|
+
export declare const SearchCurationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @summary Get all SearchCurationItems
|
|
125
|
+
* @param {string} languageCode
|
|
126
|
+
* @param {*} [options] Override http request option.
|
|
127
|
+
* @throws {RequiredError}
|
|
128
|
+
*/
|
|
129
|
+
apiV1SearchcurationsLanguageCodeGet(languageCode: string, options?: any): AxiosPromise<Array<SearchCurationItemModel>>;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @summary Delete SearchCurationItem
|
|
133
|
+
* @param {string} languageCode
|
|
134
|
+
* @param {string} id
|
|
135
|
+
* @param {*} [options] Override http request option.
|
|
136
|
+
* @throws {RequiredError}
|
|
137
|
+
*/
|
|
138
|
+
apiV1SearchcurationsLanguageCodeIdDelete(languageCode: string, id: string, options?: any): AxiosPromise<boolean>;
|
|
139
|
+
/**
|
|
140
|
+
*
|
|
141
|
+
* @summary Get SearchCurationItem by id
|
|
142
|
+
* @param {string} languageCode
|
|
143
|
+
* @param {string} id
|
|
144
|
+
* @param {*} [options] Override http request option.
|
|
145
|
+
* @throws {RequiredError}
|
|
146
|
+
*/
|
|
147
|
+
apiV1SearchcurationsLanguageCodeIdGet(languageCode: string, id: string, options?: any): AxiosPromise<SearchCurationItemModel>;
|
|
148
|
+
/**
|
|
149
|
+
*
|
|
150
|
+
* @summary Get SearchCurationItems by parent id
|
|
151
|
+
* @param {string} languageCode
|
|
152
|
+
* @param {string} parentId
|
|
153
|
+
* @param {*} [options] Override http request option.
|
|
154
|
+
* @throws {RequiredError}
|
|
155
|
+
*/
|
|
156
|
+
apiV1SearchcurationsLanguageCodeParentIdSubitemsGet(languageCode: string, parentId: string, options?: any): AxiosPromise<Array<SearchCurationItemModel>>;
|
|
157
|
+
/**
|
|
158
|
+
*
|
|
159
|
+
* @summary Save SearchCurationItem
|
|
160
|
+
* @param {string} languageCode
|
|
161
|
+
* @param {SaveSearchCurationsCommand} [saveSearchCurationsCommand]
|
|
162
|
+
* @param {*} [options] Override http request option.
|
|
163
|
+
* @throws {RequiredError}
|
|
164
|
+
*/
|
|
165
|
+
apiV1SearchcurationsLanguageCodePost(languageCode: string, saveSearchCurationsCommand?: SaveSearchCurationsCommand, options?: any): AxiosPromise<SearchCurationItemModel>;
|
|
166
|
+
};
|
|
167
|
+
/**
|
|
168
|
+
* Request parameters for apiV1SearchcurationsLanguageCodeGet operation in SearchCurationsApi.
|
|
169
|
+
* @export
|
|
170
|
+
* @interface SearchCurationsApiApiV1SearchcurationsLanguageCodeGetRequest
|
|
171
|
+
*/
|
|
172
|
+
export interface SearchCurationsApiApiV1SearchcurationsLanguageCodeGetRequest {
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @type {string}
|
|
176
|
+
* @memberof SearchCurationsApiApiV1SearchcurationsLanguageCodeGet
|
|
177
|
+
*/
|
|
178
|
+
readonly languageCode: string;
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* Request parameters for apiV1SearchcurationsLanguageCodeIdDelete operation in SearchCurationsApi.
|
|
182
|
+
* @export
|
|
183
|
+
* @interface SearchCurationsApiApiV1SearchcurationsLanguageCodeIdDeleteRequest
|
|
184
|
+
*/
|
|
185
|
+
export interface SearchCurationsApiApiV1SearchcurationsLanguageCodeIdDeleteRequest {
|
|
186
|
+
/**
|
|
187
|
+
*
|
|
188
|
+
* @type {string}
|
|
189
|
+
* @memberof SearchCurationsApiApiV1SearchcurationsLanguageCodeIdDelete
|
|
190
|
+
*/
|
|
191
|
+
readonly languageCode: string;
|
|
192
|
+
/**
|
|
193
|
+
*
|
|
194
|
+
* @type {string}
|
|
195
|
+
* @memberof SearchCurationsApiApiV1SearchcurationsLanguageCodeIdDelete
|
|
196
|
+
*/
|
|
197
|
+
readonly id: string;
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* Request parameters for apiV1SearchcurationsLanguageCodeIdGet operation in SearchCurationsApi.
|
|
201
|
+
* @export
|
|
202
|
+
* @interface SearchCurationsApiApiV1SearchcurationsLanguageCodeIdGetRequest
|
|
203
|
+
*/
|
|
204
|
+
export interface SearchCurationsApiApiV1SearchcurationsLanguageCodeIdGetRequest {
|
|
205
|
+
/**
|
|
206
|
+
*
|
|
207
|
+
* @type {string}
|
|
208
|
+
* @memberof SearchCurationsApiApiV1SearchcurationsLanguageCodeIdGet
|
|
209
|
+
*/
|
|
210
|
+
readonly languageCode: string;
|
|
211
|
+
/**
|
|
212
|
+
*
|
|
213
|
+
* @type {string}
|
|
214
|
+
* @memberof SearchCurationsApiApiV1SearchcurationsLanguageCodeIdGet
|
|
215
|
+
*/
|
|
216
|
+
readonly id: string;
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* Request parameters for apiV1SearchcurationsLanguageCodeParentIdSubitemsGet operation in SearchCurationsApi.
|
|
220
|
+
* @export
|
|
221
|
+
* @interface SearchCurationsApiApiV1SearchcurationsLanguageCodeParentIdSubitemsGetRequest
|
|
222
|
+
*/
|
|
223
|
+
export interface SearchCurationsApiApiV1SearchcurationsLanguageCodeParentIdSubitemsGetRequest {
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @type {string}
|
|
227
|
+
* @memberof SearchCurationsApiApiV1SearchcurationsLanguageCodeParentIdSubitemsGet
|
|
228
|
+
*/
|
|
229
|
+
readonly languageCode: string;
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @type {string}
|
|
233
|
+
* @memberof SearchCurationsApiApiV1SearchcurationsLanguageCodeParentIdSubitemsGet
|
|
234
|
+
*/
|
|
235
|
+
readonly parentId: string;
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* Request parameters for apiV1SearchcurationsLanguageCodePost operation in SearchCurationsApi.
|
|
239
|
+
* @export
|
|
240
|
+
* @interface SearchCurationsApiApiV1SearchcurationsLanguageCodePostRequest
|
|
241
|
+
*/
|
|
242
|
+
export interface SearchCurationsApiApiV1SearchcurationsLanguageCodePostRequest {
|
|
243
|
+
/**
|
|
244
|
+
*
|
|
245
|
+
* @type {string}
|
|
246
|
+
* @memberof SearchCurationsApiApiV1SearchcurationsLanguageCodePost
|
|
247
|
+
*/
|
|
248
|
+
readonly languageCode: string;
|
|
249
|
+
/**
|
|
250
|
+
*
|
|
251
|
+
* @type {SaveSearchCurationsCommand}
|
|
252
|
+
* @memberof SearchCurationsApiApiV1SearchcurationsLanguageCodePost
|
|
253
|
+
*/
|
|
254
|
+
readonly saveSearchCurationsCommand?: SaveSearchCurationsCommand;
|
|
255
|
+
}
|
|
256
|
+
/**
|
|
257
|
+
* SearchCurationsApi - object-oriented interface
|
|
258
|
+
* @export
|
|
259
|
+
* @class SearchCurationsApi
|
|
260
|
+
* @extends {BaseAPI}
|
|
261
|
+
*/
|
|
262
|
+
export declare class SearchCurationsApi extends BaseAPI {
|
|
263
|
+
/**
|
|
264
|
+
*
|
|
265
|
+
* @summary Get all SearchCurationItems
|
|
266
|
+
* @param {SearchCurationsApiApiV1SearchcurationsLanguageCodeGetRequest} requestParameters Request parameters.
|
|
267
|
+
* @param {*} [options] Override http request option.
|
|
268
|
+
* @throws {RequiredError}
|
|
269
|
+
* @memberof SearchCurationsApi
|
|
270
|
+
*/
|
|
271
|
+
apiV1SearchcurationsLanguageCodeGet(requestParameters: SearchCurationsApiApiV1SearchcurationsLanguageCodeGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchCurationItemModel[], any>>;
|
|
272
|
+
/**
|
|
273
|
+
*
|
|
274
|
+
* @summary Delete SearchCurationItem
|
|
275
|
+
* @param {SearchCurationsApiApiV1SearchcurationsLanguageCodeIdDeleteRequest} requestParameters Request parameters.
|
|
276
|
+
* @param {*} [options] Override http request option.
|
|
277
|
+
* @throws {RequiredError}
|
|
278
|
+
* @memberof SearchCurationsApi
|
|
279
|
+
*/
|
|
280
|
+
apiV1SearchcurationsLanguageCodeIdDelete(requestParameters: SearchCurationsApiApiV1SearchcurationsLanguageCodeIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
281
|
+
/**
|
|
282
|
+
*
|
|
283
|
+
* @summary Get SearchCurationItem by id
|
|
284
|
+
* @param {SearchCurationsApiApiV1SearchcurationsLanguageCodeIdGetRequest} requestParameters Request parameters.
|
|
285
|
+
* @param {*} [options] Override http request option.
|
|
286
|
+
* @throws {RequiredError}
|
|
287
|
+
* @memberof SearchCurationsApi
|
|
288
|
+
*/
|
|
289
|
+
apiV1SearchcurationsLanguageCodeIdGet(requestParameters: SearchCurationsApiApiV1SearchcurationsLanguageCodeIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchCurationItemModel, any>>;
|
|
290
|
+
/**
|
|
291
|
+
*
|
|
292
|
+
* @summary Get SearchCurationItems by parent id
|
|
293
|
+
* @param {SearchCurationsApiApiV1SearchcurationsLanguageCodeParentIdSubitemsGetRequest} requestParameters Request parameters.
|
|
294
|
+
* @param {*} [options] Override http request option.
|
|
295
|
+
* @throws {RequiredError}
|
|
296
|
+
* @memberof SearchCurationsApi
|
|
297
|
+
*/
|
|
298
|
+
apiV1SearchcurationsLanguageCodeParentIdSubitemsGet(requestParameters: SearchCurationsApiApiV1SearchcurationsLanguageCodeParentIdSubitemsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchCurationItemModel[], any>>;
|
|
299
|
+
/**
|
|
300
|
+
*
|
|
301
|
+
* @summary Save SearchCurationItem
|
|
302
|
+
* @param {SearchCurationsApiApiV1SearchcurationsLanguageCodePostRequest} requestParameters Request parameters.
|
|
303
|
+
* @param {*} [options] Override http request option.
|
|
304
|
+
* @throws {RequiredError}
|
|
305
|
+
* @memberof SearchCurationsApi
|
|
306
|
+
*/
|
|
307
|
+
apiV1SearchcurationsLanguageCodePost(requestParameters: SearchCurationsApiApiV1SearchcurationsLanguageCodePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchCurationItemModel, any>>;
|
|
308
|
+
}
|
|
309
|
+
//# sourceMappingURL=search-curations-api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-curations-api.d.ts","sourceRoot":"","sources":["../../src/api/search-curations-api.ts"],"names":[],"mappings":"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"}
|