ch-admin-api-client-typescript 2.7.5 → 2.7.8
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.d.ts +226 -56
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +76 -64
- package/package.json +1 -1
- package/src/api.ts +263 -87
package/lib/api.js
CHANGED
|
@@ -16697,7 +16697,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
16697
16697
|
* @summary Get all Hospitals.
|
|
16698
16698
|
* @param {string} [hospitalId]
|
|
16699
16699
|
* @param {string} [name]
|
|
16700
|
-
* @param {string} [description]
|
|
16701
16700
|
* @param {string} [countryId]
|
|
16702
16701
|
* @param {Date} [created]
|
|
16703
16702
|
* @param {MarketingType} [marketingType]
|
|
@@ -16715,7 +16714,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
16715
16714
|
* @param {*} [options] Override http request option.
|
|
16716
16715
|
* @throws {RequiredError}
|
|
16717
16716
|
*/
|
|
16718
|
-
apiV1HospitalsGet: function (hospitalId, name,
|
|
16717
|
+
apiV1HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
16719
16718
|
if (options === void 0) { options = {}; }
|
|
16720
16719
|
return __awaiter(_this, void 0, void 0, function () {
|
|
16721
16720
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -16743,9 +16742,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
16743
16742
|
if (name !== undefined) {
|
|
16744
16743
|
localVarQueryParameter['Name'] = name;
|
|
16745
16744
|
}
|
|
16746
|
-
if (description !== undefined) {
|
|
16747
|
-
localVarQueryParameter['Description'] = description;
|
|
16748
|
-
}
|
|
16749
16745
|
if (countryId !== undefined) {
|
|
16750
16746
|
localVarQueryParameter['CountryId'] = countryId;
|
|
16751
16747
|
}
|
|
@@ -18224,15 +18220,18 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18224
18220
|
* @param {string} [specialtyId]
|
|
18225
18221
|
* @param {string} [specialtyName]
|
|
18226
18222
|
* @param {string} [specialtyTypeId]
|
|
18223
|
+
* @param {string} [title]
|
|
18227
18224
|
* @param {MarketingType} [marketingType]
|
|
18228
|
-
* @param {
|
|
18225
|
+
* @param {string} [languageCode]
|
|
18226
|
+
* @param {boolean} [showHidden]
|
|
18227
|
+
* @param {boolean} [returnDefaultValue]
|
|
18229
18228
|
* @param {number} [page]
|
|
18230
18229
|
* @param {number} [limit]
|
|
18231
18230
|
* @param {Date} [lastRetrieved]
|
|
18232
18231
|
* @param {*} [options] Override http request option.
|
|
18233
18232
|
* @throws {RequiredError}
|
|
18234
18233
|
*/
|
|
18235
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType,
|
|
18234
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
18236
18235
|
if (options === void 0) { options = {}; }
|
|
18237
18236
|
return __awaiter(_this, void 0, void 0, function () {
|
|
18238
18237
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -18272,13 +18271,20 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18272
18271
|
if (specialtyTypeId !== undefined) {
|
|
18273
18272
|
localVarQueryParameter['SpecialtyTypeId'] = specialtyTypeId;
|
|
18274
18273
|
}
|
|
18274
|
+
if (title !== undefined) {
|
|
18275
|
+
localVarQueryParameter['Title'] = title;
|
|
18276
|
+
}
|
|
18275
18277
|
if (marketingType !== undefined) {
|
|
18276
18278
|
localVarQueryParameter['MarketingType'] = marketingType;
|
|
18277
18279
|
}
|
|
18278
|
-
if (
|
|
18279
|
-
localVarQueryParameter['
|
|
18280
|
-
|
|
18281
|
-
|
|
18280
|
+
if (languageCode !== undefined) {
|
|
18281
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
18282
|
+
}
|
|
18283
|
+
if (showHidden !== undefined) {
|
|
18284
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
18285
|
+
}
|
|
18286
|
+
if (returnDefaultValue !== undefined) {
|
|
18287
|
+
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
18282
18288
|
}
|
|
18283
18289
|
if (page !== undefined) {
|
|
18284
18290
|
localVarQueryParameter['page'] = page;
|
|
@@ -18400,10 +18406,12 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18400
18406
|
* @summary Get HospitalSpecialty.
|
|
18401
18407
|
* @param {string} hospitalId
|
|
18402
18408
|
* @param {string} specialtyId
|
|
18409
|
+
* @param {string} [languageCode]
|
|
18410
|
+
* @param {boolean} [returnDefaultValue]
|
|
18403
18411
|
* @param {*} [options] Override http request option.
|
|
18404
18412
|
* @throws {RequiredError}
|
|
18405
18413
|
*/
|
|
18406
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, options) {
|
|
18414
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, returnDefaultValue, options) {
|
|
18407
18415
|
if (options === void 0) { options = {}; }
|
|
18408
18416
|
return __awaiter(_this, void 0, void 0, function () {
|
|
18409
18417
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -18431,6 +18439,12 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
18431
18439
|
// authentication oauth2 required
|
|
18432
18440
|
// oauth required
|
|
18433
18441
|
_a.sent();
|
|
18442
|
+
if (languageCode !== undefined) {
|
|
18443
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
18444
|
+
}
|
|
18445
|
+
if (returnDefaultValue !== undefined) {
|
|
18446
|
+
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
18447
|
+
}
|
|
18434
18448
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
18435
18449
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
18436
18450
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -19165,7 +19179,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
19165
19179
|
* @summary Get all Hospitals.
|
|
19166
19180
|
* @param {string} [hospitalId]
|
|
19167
19181
|
* @param {string} [name]
|
|
19168
|
-
* @param {string} [description]
|
|
19169
19182
|
* @param {string} [countryId]
|
|
19170
19183
|
* @param {Date} [created]
|
|
19171
19184
|
* @param {MarketingType} [marketingType]
|
|
@@ -19183,7 +19196,7 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
19183
19196
|
* @param {*} [options] Override http request option.
|
|
19184
19197
|
* @throws {RequiredError}
|
|
19185
19198
|
*/
|
|
19186
|
-
apiV1HospitalsSimpleGet: function (hospitalId, name,
|
|
19199
|
+
apiV1HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
19187
19200
|
if (options === void 0) { options = {}; }
|
|
19188
19201
|
return __awaiter(_this, void 0, void 0, function () {
|
|
19189
19202
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -19211,9 +19224,6 @@ exports.HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
19211
19224
|
if (name !== undefined) {
|
|
19212
19225
|
localVarQueryParameter['Name'] = name;
|
|
19213
19226
|
}
|
|
19214
|
-
if (description !== undefined) {
|
|
19215
|
-
localVarQueryParameter['Description'] = description;
|
|
19216
|
-
}
|
|
19217
19227
|
if (countryId !== undefined) {
|
|
19218
19228
|
localVarQueryParameter['CountryId'] = countryId;
|
|
19219
19229
|
}
|
|
@@ -19335,7 +19345,6 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
19335
19345
|
* @summary Get all Hospitals.
|
|
19336
19346
|
* @param {string} [hospitalId]
|
|
19337
19347
|
* @param {string} [name]
|
|
19338
|
-
* @param {string} [description]
|
|
19339
19348
|
* @param {string} [countryId]
|
|
19340
19349
|
* @param {Date} [created]
|
|
19341
19350
|
* @param {MarketingType} [marketingType]
|
|
@@ -19353,12 +19362,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
19353
19362
|
* @param {*} [options] Override http request option.
|
|
19354
19363
|
* @throws {RequiredError}
|
|
19355
19364
|
*/
|
|
19356
|
-
apiV1HospitalsGet: function (hospitalId, name,
|
|
19365
|
+
apiV1HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
19357
19366
|
return __awaiter(this, void 0, void 0, function () {
|
|
19358
19367
|
var localVarAxiosArgs;
|
|
19359
19368
|
return __generator(this, function (_a) {
|
|
19360
19369
|
switch (_a.label) {
|
|
19361
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsGet(hospitalId, name,
|
|
19370
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options)];
|
|
19362
19371
|
case 1:
|
|
19363
19372
|
localVarAxiosArgs = _a.sent();
|
|
19364
19373
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -19977,20 +19986,23 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
19977
19986
|
* @param {string} [specialtyId]
|
|
19978
19987
|
* @param {string} [specialtyName]
|
|
19979
19988
|
* @param {string} [specialtyTypeId]
|
|
19989
|
+
* @param {string} [title]
|
|
19980
19990
|
* @param {MarketingType} [marketingType]
|
|
19981
|
-
* @param {
|
|
19991
|
+
* @param {string} [languageCode]
|
|
19992
|
+
* @param {boolean} [showHidden]
|
|
19993
|
+
* @param {boolean} [returnDefaultValue]
|
|
19982
19994
|
* @param {number} [page]
|
|
19983
19995
|
* @param {number} [limit]
|
|
19984
19996
|
* @param {Date} [lastRetrieved]
|
|
19985
19997
|
* @param {*} [options] Override http request option.
|
|
19986
19998
|
* @throws {RequiredError}
|
|
19987
19999
|
*/
|
|
19988
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType,
|
|
20000
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
19989
20001
|
return __awaiter(this, void 0, void 0, function () {
|
|
19990
20002
|
var localVarAxiosArgs;
|
|
19991
20003
|
return __generator(this, function (_a) {
|
|
19992
20004
|
switch (_a.label) {
|
|
19993
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType,
|
|
20005
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options)];
|
|
19994
20006
|
case 1:
|
|
19995
20007
|
localVarAxiosArgs = _a.sent();
|
|
19996
20008
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -20045,15 +20057,17 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20045
20057
|
* @summary Get HospitalSpecialty.
|
|
20046
20058
|
* @param {string} hospitalId
|
|
20047
20059
|
* @param {string} specialtyId
|
|
20060
|
+
* @param {string} [languageCode]
|
|
20061
|
+
* @param {boolean} [returnDefaultValue]
|
|
20048
20062
|
* @param {*} [options] Override http request option.
|
|
20049
20063
|
* @throws {RequiredError}
|
|
20050
20064
|
*/
|
|
20051
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, options) {
|
|
20065
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, returnDefaultValue, options) {
|
|
20052
20066
|
return __awaiter(this, void 0, void 0, function () {
|
|
20053
20067
|
var localVarAxiosArgs;
|
|
20054
20068
|
return __generator(this, function (_a) {
|
|
20055
20069
|
switch (_a.label) {
|
|
20056
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, options)];
|
|
20070
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, options)];
|
|
20057
20071
|
case 1:
|
|
20058
20072
|
localVarAxiosArgs = _a.sent();
|
|
20059
20073
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -20355,7 +20369,6 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20355
20369
|
* @summary Get all Hospitals.
|
|
20356
20370
|
* @param {string} [hospitalId]
|
|
20357
20371
|
* @param {string} [name]
|
|
20358
|
-
* @param {string} [description]
|
|
20359
20372
|
* @param {string} [countryId]
|
|
20360
20373
|
* @param {Date} [created]
|
|
20361
20374
|
* @param {MarketingType} [marketingType]
|
|
@@ -20373,12 +20386,12 @@ exports.HospitalsApiFp = function (configuration) {
|
|
|
20373
20386
|
* @param {*} [options] Override http request option.
|
|
20374
20387
|
* @throws {RequiredError}
|
|
20375
20388
|
*/
|
|
20376
|
-
apiV1HospitalsSimpleGet: function (hospitalId, name,
|
|
20389
|
+
apiV1HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
20377
20390
|
return __awaiter(this, void 0, void 0, function () {
|
|
20378
20391
|
var localVarAxiosArgs;
|
|
20379
20392
|
return __generator(this, function (_a) {
|
|
20380
20393
|
switch (_a.label) {
|
|
20381
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsSimpleGet(hospitalId, name,
|
|
20394
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options)];
|
|
20382
20395
|
case 1:
|
|
20383
20396
|
localVarAxiosArgs = _a.sent();
|
|
20384
20397
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -20421,7 +20434,6 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
20421
20434
|
* @summary Get all Hospitals.
|
|
20422
20435
|
* @param {string} [hospitalId]
|
|
20423
20436
|
* @param {string} [name]
|
|
20424
|
-
* @param {string} [description]
|
|
20425
20437
|
* @param {string} [countryId]
|
|
20426
20438
|
* @param {Date} [created]
|
|
20427
20439
|
* @param {MarketingType} [marketingType]
|
|
@@ -20439,8 +20451,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
20439
20451
|
* @param {*} [options] Override http request option.
|
|
20440
20452
|
* @throws {RequiredError}
|
|
20441
20453
|
*/
|
|
20442
|
-
apiV1HospitalsGet: function (hospitalId, name,
|
|
20443
|
-
return localVarFp.apiV1HospitalsGet(hospitalId, name,
|
|
20454
|
+
apiV1HospitalsGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
20455
|
+
return localVarFp.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
20444
20456
|
},
|
|
20445
20457
|
/**
|
|
20446
20458
|
*
|
|
@@ -20783,16 +20795,19 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
20783
20795
|
* @param {string} [specialtyId]
|
|
20784
20796
|
* @param {string} [specialtyName]
|
|
20785
20797
|
* @param {string} [specialtyTypeId]
|
|
20798
|
+
* @param {string} [title]
|
|
20786
20799
|
* @param {MarketingType} [marketingType]
|
|
20787
|
-
* @param {
|
|
20800
|
+
* @param {string} [languageCode]
|
|
20801
|
+
* @param {boolean} [showHidden]
|
|
20802
|
+
* @param {boolean} [returnDefaultValue]
|
|
20788
20803
|
* @param {number} [page]
|
|
20789
20804
|
* @param {number} [limit]
|
|
20790
20805
|
* @param {Date} [lastRetrieved]
|
|
20791
20806
|
* @param {*} [options] Override http request option.
|
|
20792
20807
|
* @throws {RequiredError}
|
|
20793
20808
|
*/
|
|
20794
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType,
|
|
20795
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType,
|
|
20809
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
20810
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
20796
20811
|
},
|
|
20797
20812
|
/**
|
|
20798
20813
|
*
|
|
@@ -20821,11 +20836,13 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
20821
20836
|
* @summary Get HospitalSpecialty.
|
|
20822
20837
|
* @param {string} hospitalId
|
|
20823
20838
|
* @param {string} specialtyId
|
|
20839
|
+
* @param {string} [languageCode]
|
|
20840
|
+
* @param {boolean} [returnDefaultValue]
|
|
20824
20841
|
* @param {*} [options] Override http request option.
|
|
20825
20842
|
* @throws {RequiredError}
|
|
20826
20843
|
*/
|
|
20827
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, options) {
|
|
20828
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, options).then(function (request) { return request(axios, basePath); });
|
|
20844
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: function (hospitalId, specialtyId, languageCode, returnDefaultValue, options) {
|
|
20845
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
20829
20846
|
},
|
|
20830
20847
|
/**
|
|
20831
20848
|
*
|
|
@@ -21001,7 +21018,6 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
21001
21018
|
* @summary Get all Hospitals.
|
|
21002
21019
|
* @param {string} [hospitalId]
|
|
21003
21020
|
* @param {string} [name]
|
|
21004
|
-
* @param {string} [description]
|
|
21005
21021
|
* @param {string} [countryId]
|
|
21006
21022
|
* @param {Date} [created]
|
|
21007
21023
|
* @param {MarketingType} [marketingType]
|
|
@@ -21019,8 +21035,8 @@ exports.HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
21019
21035
|
* @param {*} [options] Override http request option.
|
|
21020
21036
|
* @throws {RequiredError}
|
|
21021
21037
|
*/
|
|
21022
|
-
apiV1HospitalsSimpleGet: function (hospitalId, name,
|
|
21023
|
-
return localVarFp.apiV1HospitalsSimpleGet(hospitalId, name,
|
|
21038
|
+
apiV1HospitalsSimpleGet: function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
21039
|
+
return localVarFp.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
21024
21040
|
},
|
|
21025
21041
|
/**
|
|
21026
21042
|
*
|
|
@@ -21051,7 +21067,6 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
21051
21067
|
* @summary Get all Hospitals.
|
|
21052
21068
|
* @param {string} [hospitalId]
|
|
21053
21069
|
* @param {string} [name]
|
|
21054
|
-
* @param {string} [description]
|
|
21055
21070
|
* @param {string} [countryId]
|
|
21056
21071
|
* @param {Date} [created]
|
|
21057
21072
|
* @param {MarketingType} [marketingType]
|
|
@@ -21070,9 +21085,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
21070
21085
|
* @throws {RequiredError}
|
|
21071
21086
|
* @memberof HospitalsApi
|
|
21072
21087
|
*/
|
|
21073
|
-
HospitalsApi.prototype.apiV1HospitalsGet = function (hospitalId, name,
|
|
21088
|
+
HospitalsApi.prototype.apiV1HospitalsGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
21074
21089
|
var _this = this;
|
|
21075
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsGet(hospitalId, name,
|
|
21090
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21076
21091
|
};
|
|
21077
21092
|
/**
|
|
21078
21093
|
*
|
|
@@ -21469,8 +21484,11 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
21469
21484
|
* @param {string} [specialtyId]
|
|
21470
21485
|
* @param {string} [specialtyName]
|
|
21471
21486
|
* @param {string} [specialtyTypeId]
|
|
21487
|
+
* @param {string} [title]
|
|
21472
21488
|
* @param {MarketingType} [marketingType]
|
|
21473
|
-
* @param {
|
|
21489
|
+
* @param {string} [languageCode]
|
|
21490
|
+
* @param {boolean} [showHidden]
|
|
21491
|
+
* @param {boolean} [returnDefaultValue]
|
|
21474
21492
|
* @param {number} [page]
|
|
21475
21493
|
* @param {number} [limit]
|
|
21476
21494
|
* @param {Date} [lastRetrieved]
|
|
@@ -21478,9 +21496,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
21478
21496
|
* @throws {RequiredError}
|
|
21479
21497
|
* @memberof HospitalsApi
|
|
21480
21498
|
*/
|
|
21481
|
-
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType,
|
|
21499
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesGet = function (hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
21482
21500
|
var _this = this;
|
|
21483
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, marketingType,
|
|
21501
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, title, marketingType, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21484
21502
|
};
|
|
21485
21503
|
/**
|
|
21486
21504
|
*
|
|
@@ -21513,13 +21531,15 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
21513
21531
|
* @summary Get HospitalSpecialty.
|
|
21514
21532
|
* @param {string} hospitalId
|
|
21515
21533
|
* @param {string} specialtyId
|
|
21534
|
+
* @param {string} [languageCode]
|
|
21535
|
+
* @param {boolean} [returnDefaultValue]
|
|
21516
21536
|
* @param {*} [options] Override http request option.
|
|
21517
21537
|
* @throws {RequiredError}
|
|
21518
21538
|
* @memberof HospitalsApi
|
|
21519
21539
|
*/
|
|
21520
|
-
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet = function (hospitalId, specialtyId, options) {
|
|
21540
|
+
HospitalsApi.prototype.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet = function (hospitalId, specialtyId, languageCode, returnDefaultValue, options) {
|
|
21521
21541
|
var _this = this;
|
|
21522
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21542
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21523
21543
|
};
|
|
21524
21544
|
/**
|
|
21525
21545
|
*
|
|
@@ -21719,7 +21739,6 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
21719
21739
|
* @summary Get all Hospitals.
|
|
21720
21740
|
* @param {string} [hospitalId]
|
|
21721
21741
|
* @param {string} [name]
|
|
21722
|
-
* @param {string} [description]
|
|
21723
21742
|
* @param {string} [countryId]
|
|
21724
21743
|
* @param {Date} [created]
|
|
21725
21744
|
* @param {MarketingType} [marketingType]
|
|
@@ -21738,9 +21757,9 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
21738
21757
|
* @throws {RequiredError}
|
|
21739
21758
|
* @memberof HospitalsApi
|
|
21740
21759
|
*/
|
|
21741
|
-
HospitalsApi.prototype.apiV1HospitalsSimpleGet = function (hospitalId, name,
|
|
21760
|
+
HospitalsApi.prototype.apiV1HospitalsSimpleGet = function (hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
21742
21761
|
var _this = this;
|
|
21743
|
-
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsSimpleGet(hospitalId, name,
|
|
21762
|
+
return exports.HospitalsApiFp(this.configuration).apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, serviceId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21744
21763
|
};
|
|
21745
21764
|
/**
|
|
21746
21765
|
*
|
|
@@ -28813,14 +28832,13 @@ exports.ServicesCategoriesApiAxiosParamCreator = function (configuration) {
|
|
|
28813
28832
|
* @summary Get all ServiceCategories.
|
|
28814
28833
|
* @param {string} [id]
|
|
28815
28834
|
* @param {string} [name]
|
|
28816
|
-
* @param {string} [description]
|
|
28817
28835
|
* @param {number} [page]
|
|
28818
28836
|
* @param {number} [limit]
|
|
28819
28837
|
* @param {Date} [lastRetrieved]
|
|
28820
28838
|
* @param {*} [options] Override http request option.
|
|
28821
28839
|
* @throws {RequiredError}
|
|
28822
28840
|
*/
|
|
28823
|
-
apiV1ServicescategoriesGet: function (id, name,
|
|
28841
|
+
apiV1ServicescategoriesGet: function (id, name, page, limit, lastRetrieved, options) {
|
|
28824
28842
|
if (options === void 0) { options = {}; }
|
|
28825
28843
|
return __awaiter(_this, void 0, void 0, function () {
|
|
28826
28844
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -28848,9 +28866,6 @@ exports.ServicesCategoriesApiAxiosParamCreator = function (configuration) {
|
|
|
28848
28866
|
if (name !== undefined) {
|
|
28849
28867
|
localVarQueryParameter['Name'] = name;
|
|
28850
28868
|
}
|
|
28851
|
-
if (description !== undefined) {
|
|
28852
|
-
localVarQueryParameter['Description'] = description;
|
|
28853
|
-
}
|
|
28854
28869
|
if (page !== undefined) {
|
|
28855
28870
|
localVarQueryParameter['page'] = page;
|
|
28856
28871
|
}
|
|
@@ -29060,19 +29075,18 @@ exports.ServicesCategoriesApiFp = function (configuration) {
|
|
|
29060
29075
|
* @summary Get all ServiceCategories.
|
|
29061
29076
|
* @param {string} [id]
|
|
29062
29077
|
* @param {string} [name]
|
|
29063
|
-
* @param {string} [description]
|
|
29064
29078
|
* @param {number} [page]
|
|
29065
29079
|
* @param {number} [limit]
|
|
29066
29080
|
* @param {Date} [lastRetrieved]
|
|
29067
29081
|
* @param {*} [options] Override http request option.
|
|
29068
29082
|
* @throws {RequiredError}
|
|
29069
29083
|
*/
|
|
29070
|
-
apiV1ServicescategoriesGet: function (id, name,
|
|
29084
|
+
apiV1ServicescategoriesGet: function (id, name, page, limit, lastRetrieved, options) {
|
|
29071
29085
|
return __awaiter(this, void 0, void 0, function () {
|
|
29072
29086
|
var localVarAxiosArgs;
|
|
29073
29087
|
return __generator(this, function (_a) {
|
|
29074
29088
|
switch (_a.label) {
|
|
29075
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ServicescategoriesGet(id, name,
|
|
29089
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ServicescategoriesGet(id, name, page, limit, lastRetrieved, options)];
|
|
29076
29090
|
case 1:
|
|
29077
29091
|
localVarAxiosArgs = _a.sent();
|
|
29078
29092
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -29174,15 +29188,14 @@ exports.ServicesCategoriesApiFactory = function (configuration, basePath, axios)
|
|
|
29174
29188
|
* @summary Get all ServiceCategories.
|
|
29175
29189
|
* @param {string} [id]
|
|
29176
29190
|
* @param {string} [name]
|
|
29177
|
-
* @param {string} [description]
|
|
29178
29191
|
* @param {number} [page]
|
|
29179
29192
|
* @param {number} [limit]
|
|
29180
29193
|
* @param {Date} [lastRetrieved]
|
|
29181
29194
|
* @param {*} [options] Override http request option.
|
|
29182
29195
|
* @throws {RequiredError}
|
|
29183
29196
|
*/
|
|
29184
|
-
apiV1ServicescategoriesGet: function (id, name,
|
|
29185
|
-
return localVarFp.apiV1ServicescategoriesGet(id, name,
|
|
29197
|
+
apiV1ServicescategoriesGet: function (id, name, page, limit, lastRetrieved, options) {
|
|
29198
|
+
return localVarFp.apiV1ServicescategoriesGet(id, name, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
29186
29199
|
},
|
|
29187
29200
|
/**
|
|
29188
29201
|
*
|
|
@@ -29242,7 +29255,6 @@ var ServicesCategoriesApi = /** @class */ (function (_super) {
|
|
|
29242
29255
|
* @summary Get all ServiceCategories.
|
|
29243
29256
|
* @param {string} [id]
|
|
29244
29257
|
* @param {string} [name]
|
|
29245
|
-
* @param {string} [description]
|
|
29246
29258
|
* @param {number} [page]
|
|
29247
29259
|
* @param {number} [limit]
|
|
29248
29260
|
* @param {Date} [lastRetrieved]
|
|
@@ -29250,9 +29262,9 @@ var ServicesCategoriesApi = /** @class */ (function (_super) {
|
|
|
29250
29262
|
* @throws {RequiredError}
|
|
29251
29263
|
* @memberof ServicesCategoriesApi
|
|
29252
29264
|
*/
|
|
29253
|
-
ServicesCategoriesApi.prototype.apiV1ServicescategoriesGet = function (id, name,
|
|
29265
|
+
ServicesCategoriesApi.prototype.apiV1ServicescategoriesGet = function (id, name, page, limit, lastRetrieved, options) {
|
|
29254
29266
|
var _this = this;
|
|
29255
|
-
return exports.ServicesCategoriesApiFp(this.configuration).apiV1ServicescategoriesGet(id, name,
|
|
29267
|
+
return exports.ServicesCategoriesApiFp(this.configuration).apiV1ServicescategoriesGet(id, name, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
29256
29268
|
};
|
|
29257
29269
|
/**
|
|
29258
29270
|
*
|