ch-api-client-typescript2 5.79.13 → 5.79.16
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/articles-api.d.ts +36 -9
- package/lib/api/articles-api.d.ts.map +1 -1
- package/lib/api/articles-api.js +45 -27
- package/lib/api/deals-api.d.ts +39 -30
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +52 -46
- package/lib/api/doctor-affiliations-api.d.ts +36 -9
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +45 -27
- package/lib/api/doctors-api.d.ts +40 -13
- package/lib/api/doctors-api.d.ts.map +1 -1
- package/lib/api/doctors-api.js +49 -31
- package/lib/api/hospitals-api.d.ts +96 -29
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +115 -69
- package/lib/api/service-reviews-api.d.ts +12 -3
- package/lib/api/service-reviews-api.d.ts.map +1 -1
- package/lib/api/service-reviews-api.js +15 -9
- package/lib/api/services-api.d.ts +36 -9
- package/lib/api/services-api.d.ts.map +1 -1
- package/lib/api/services-api.js +45 -27
- package/lib/api/specialties-api.d.ts +24 -6
- package/lib/api/specialties-api.d.ts.map +1 -1
- package/lib/api/specialties-api.js +30 -18
- package/lib/api/specialty-types-api.d.ts +28 -10
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +34 -22
- package/lib/models/article-type.d.ts +1 -0
- package/lib/models/article-type.d.ts.map +1 -1
- package/lib/models/article-type.js +2 -1
- package/package.json +1 -1
package/lib/api/doctors-api.js
CHANGED
|
@@ -333,19 +333,20 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
333
333
|
},
|
|
334
334
|
/**
|
|
335
335
|
*
|
|
336
|
-
* @summary
|
|
336
|
+
* @summary Get doctor
|
|
337
337
|
* @param {string} doctorId
|
|
338
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
338
339
|
* @param {string} [languageCode]
|
|
339
340
|
* @param {boolean} [returnDefaultValue]
|
|
340
341
|
* @param {*} [options] Override http request option.
|
|
341
342
|
* @throws {RequiredError}
|
|
342
343
|
*/
|
|
343
|
-
apiV2DoctorsDoctorIdGet: function (doctorId_1, languageCode_1, returnDefaultValue_1) {
|
|
344
|
+
apiV2DoctorsDoctorIdGet: function (doctorId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1) {
|
|
344
345
|
var args_1 = [];
|
|
345
|
-
for (var _i =
|
|
346
|
-
args_1[_i -
|
|
346
|
+
for (var _i = 4; _i < arguments.length; _i++) {
|
|
347
|
+
args_1[_i - 4] = arguments[_i];
|
|
347
348
|
}
|
|
348
|
-
return __awaiter(_this, __spreadArray([doctorId_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (doctorId, languageCode, returnDefaultValue, options) {
|
|
349
|
+
return __awaiter(_this, __spreadArray([doctorId_1, xCloudhospitalPlatform_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (doctorId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
349
350
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
350
351
|
if (options === void 0) { options = {}; }
|
|
351
352
|
return __generator(this, function (_a) {
|
|
@@ -366,6 +367,9 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
366
367
|
if (returnDefaultValue !== undefined) {
|
|
367
368
|
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
368
369
|
}
|
|
370
|
+
if (xCloudhospitalPlatform != null) {
|
|
371
|
+
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
372
|
+
}
|
|
369
373
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
370
374
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
371
375
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -791,6 +795,7 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
791
795
|
/**
|
|
792
796
|
*
|
|
793
797
|
* @summary Get all Doctors.
|
|
798
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
794
799
|
* @param {string} [hospitalId]
|
|
795
800
|
* @param {string} [hospitalName]
|
|
796
801
|
* @param {Array<string>} [ids]
|
|
@@ -809,12 +814,12 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
809
814
|
* @param {*} [options] Override http request option.
|
|
810
815
|
* @throws {RequiredError}
|
|
811
816
|
*/
|
|
812
|
-
apiV2DoctorsGet: function (hospitalId_1, hospitalName_1, ids_1, specialtyId_1, consultationEnabled_1, languageCode_1, id_1, fullname_1, email_1, gender_1, dateOfBirth_1, created_1, page_1, limit_1, lastRetrieved_1) {
|
|
817
|
+
apiV2DoctorsGet: function (xCloudhospitalPlatform_1, hospitalId_1, hospitalName_1, ids_1, specialtyId_1, consultationEnabled_1, languageCode_1, id_1, fullname_1, email_1, gender_1, dateOfBirth_1, created_1, page_1, limit_1, lastRetrieved_1) {
|
|
813
818
|
var args_1 = [];
|
|
814
|
-
for (var _i =
|
|
815
|
-
args_1[_i -
|
|
819
|
+
for (var _i = 16; _i < arguments.length; _i++) {
|
|
820
|
+
args_1[_i - 16] = arguments[_i];
|
|
816
821
|
}
|
|
817
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, hospitalName_1, ids_1, specialtyId_1, consultationEnabled_1, languageCode_1, id_1, fullname_1, email_1, gender_1, dateOfBirth_1, created_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
822
|
+
return __awaiter(_this, __spreadArray([xCloudhospitalPlatform_1, hospitalId_1, hospitalName_1, ids_1, specialtyId_1, consultationEnabled_1, languageCode_1, id_1, fullname_1, email_1, gender_1, dateOfBirth_1, created_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (xCloudhospitalPlatform, hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
818
823
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
819
824
|
if (options === void 0) { options = {}; }
|
|
820
825
|
return __generator(this, function (_a) {
|
|
@@ -877,6 +882,9 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
877
882
|
lastRetrieved.toISOString() :
|
|
878
883
|
lastRetrieved;
|
|
879
884
|
}
|
|
885
|
+
if (xCloudhospitalPlatform != null) {
|
|
886
|
+
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
887
|
+
}
|
|
880
888
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
881
889
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
882
890
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -890,6 +898,7 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
890
898
|
/**
|
|
891
899
|
*
|
|
892
900
|
* @summary Get all Doctors.
|
|
901
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
893
902
|
* @param {string} [hospitalId]
|
|
894
903
|
* @param {string} [hospitalName]
|
|
895
904
|
* @param {Array<string>} [ids]
|
|
@@ -908,12 +917,12 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
908
917
|
* @param {*} [options] Override http request option.
|
|
909
918
|
* @throws {RequiredError}
|
|
910
919
|
*/
|
|
911
|
-
apiV2DoctorsSimpleGet: function (hospitalId_1, hospitalName_1, ids_1, specialtyId_1, consultationEnabled_1, languageCode_1, id_1, fullname_1, email_1, gender_1, dateOfBirth_1, created_1, page_1, limit_1, lastRetrieved_1) {
|
|
920
|
+
apiV2DoctorsSimpleGet: function (xCloudhospitalPlatform_1, hospitalId_1, hospitalName_1, ids_1, specialtyId_1, consultationEnabled_1, languageCode_1, id_1, fullname_1, email_1, gender_1, dateOfBirth_1, created_1, page_1, limit_1, lastRetrieved_1) {
|
|
912
921
|
var args_1 = [];
|
|
913
|
-
for (var _i =
|
|
914
|
-
args_1[_i -
|
|
922
|
+
for (var _i = 16; _i < arguments.length; _i++) {
|
|
923
|
+
args_1[_i - 16] = arguments[_i];
|
|
915
924
|
}
|
|
916
|
-
return __awaiter(_this, __spreadArray([hospitalId_1, hospitalName_1, ids_1, specialtyId_1, consultationEnabled_1, languageCode_1, id_1, fullname_1, email_1, gender_1, dateOfBirth_1, created_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
925
|
+
return __awaiter(_this, __spreadArray([xCloudhospitalPlatform_1, hospitalId_1, hospitalName_1, ids_1, specialtyId_1, consultationEnabled_1, languageCode_1, id_1, fullname_1, email_1, gender_1, dateOfBirth_1, created_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (xCloudhospitalPlatform, hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
917
926
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
918
927
|
if (options === void 0) { options = {}; }
|
|
919
928
|
return __generator(this, function (_a) {
|
|
@@ -976,6 +985,9 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
976
985
|
lastRetrieved.toISOString() :
|
|
977
986
|
lastRetrieved;
|
|
978
987
|
}
|
|
988
|
+
if (xCloudhospitalPlatform != null) {
|
|
989
|
+
localVarHeaderParameter['x-cloudhospital-platform'] = String(xCloudhospitalPlatform);
|
|
990
|
+
}
|
|
979
991
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
980
992
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
981
993
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1096,19 +1108,20 @@ var DoctorsApiFp = function (configuration) {
|
|
|
1096
1108
|
},
|
|
1097
1109
|
/**
|
|
1098
1110
|
*
|
|
1099
|
-
* @summary
|
|
1111
|
+
* @summary Get doctor
|
|
1100
1112
|
* @param {string} doctorId
|
|
1113
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1101
1114
|
* @param {string} [languageCode]
|
|
1102
1115
|
* @param {boolean} [returnDefaultValue]
|
|
1103
1116
|
* @param {*} [options] Override http request option.
|
|
1104
1117
|
* @throws {RequiredError}
|
|
1105
1118
|
*/
|
|
1106
|
-
apiV2DoctorsDoctorIdGet: function (doctorId, languageCode, returnDefaultValue, options) {
|
|
1119
|
+
apiV2DoctorsDoctorIdGet: function (doctorId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
1107
1120
|
return __awaiter(this, void 0, void 0, function () {
|
|
1108
1121
|
var localVarAxiosArgs;
|
|
1109
1122
|
return __generator(this, function (_a) {
|
|
1110
1123
|
switch (_a.label) {
|
|
1111
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsDoctorIdGet(doctorId, languageCode, returnDefaultValue, options)];
|
|
1124
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsDoctorIdGet(doctorId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options)];
|
|
1112
1125
|
case 1:
|
|
1113
1126
|
localVarAxiosArgs = _a.sent();
|
|
1114
1127
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -1306,6 +1319,7 @@ var DoctorsApiFp = function (configuration) {
|
|
|
1306
1319
|
/**
|
|
1307
1320
|
*
|
|
1308
1321
|
* @summary Get all Doctors.
|
|
1322
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1309
1323
|
* @param {string} [hospitalId]
|
|
1310
1324
|
* @param {string} [hospitalName]
|
|
1311
1325
|
* @param {Array<string>} [ids]
|
|
@@ -1324,12 +1338,12 @@ var DoctorsApiFp = function (configuration) {
|
|
|
1324
1338
|
* @param {*} [options] Override http request option.
|
|
1325
1339
|
* @throws {RequiredError}
|
|
1326
1340
|
*/
|
|
1327
|
-
apiV2DoctorsGet: function (hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
1341
|
+
apiV2DoctorsGet: function (xCloudhospitalPlatform, hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
1328
1342
|
return __awaiter(this, void 0, void 0, function () {
|
|
1329
1343
|
var localVarAxiosArgs;
|
|
1330
1344
|
return __generator(this, function (_a) {
|
|
1331
1345
|
switch (_a.label) {
|
|
1332
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options)];
|
|
1346
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsGet(xCloudhospitalPlatform, hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options)];
|
|
1333
1347
|
case 1:
|
|
1334
1348
|
localVarAxiosArgs = _a.sent();
|
|
1335
1349
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -1340,6 +1354,7 @@ var DoctorsApiFp = function (configuration) {
|
|
|
1340
1354
|
/**
|
|
1341
1355
|
*
|
|
1342
1356
|
* @summary Get all Doctors.
|
|
1357
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1343
1358
|
* @param {string} [hospitalId]
|
|
1344
1359
|
* @param {string} [hospitalName]
|
|
1345
1360
|
* @param {Array<string>} [ids]
|
|
@@ -1358,12 +1373,12 @@ var DoctorsApiFp = function (configuration) {
|
|
|
1358
1373
|
* @param {*} [options] Override http request option.
|
|
1359
1374
|
* @throws {RequiredError}
|
|
1360
1375
|
*/
|
|
1361
|
-
apiV2DoctorsSimpleGet: function (hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
1376
|
+
apiV2DoctorsSimpleGet: function (xCloudhospitalPlatform, hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
1362
1377
|
return __awaiter(this, void 0, void 0, function () {
|
|
1363
1378
|
var localVarAxiosArgs;
|
|
1364
1379
|
return __generator(this, function (_a) {
|
|
1365
1380
|
switch (_a.label) {
|
|
1366
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsSimpleGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options)];
|
|
1381
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsSimpleGet(xCloudhospitalPlatform, hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options)];
|
|
1367
1382
|
case 1:
|
|
1368
1383
|
localVarAxiosArgs = _a.sent();
|
|
1369
1384
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -1441,15 +1456,16 @@ var DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1441
1456
|
},
|
|
1442
1457
|
/**
|
|
1443
1458
|
*
|
|
1444
|
-
* @summary
|
|
1459
|
+
* @summary Get doctor
|
|
1445
1460
|
* @param {string} doctorId
|
|
1461
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1446
1462
|
* @param {string} [languageCode]
|
|
1447
1463
|
* @param {boolean} [returnDefaultValue]
|
|
1448
1464
|
* @param {*} [options] Override http request option.
|
|
1449
1465
|
* @throws {RequiredError}
|
|
1450
1466
|
*/
|
|
1451
|
-
apiV2DoctorsDoctorIdGet: function (doctorId, languageCode, returnDefaultValue, options) {
|
|
1452
|
-
return localVarFp.apiV2DoctorsDoctorIdGet(doctorId, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
1467
|
+
apiV2DoctorsDoctorIdGet: function (doctorId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options) {
|
|
1468
|
+
return localVarFp.apiV2DoctorsDoctorIdGet(doctorId, xCloudhospitalPlatform, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
1453
1469
|
},
|
|
1454
1470
|
/**
|
|
1455
1471
|
*
|
|
@@ -1561,6 +1577,7 @@ var DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1561
1577
|
/**
|
|
1562
1578
|
*
|
|
1563
1579
|
* @summary Get all Doctors.
|
|
1580
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1564
1581
|
* @param {string} [hospitalId]
|
|
1565
1582
|
* @param {string} [hospitalName]
|
|
1566
1583
|
* @param {Array<string>} [ids]
|
|
@@ -1579,12 +1596,13 @@ var DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1579
1596
|
* @param {*} [options] Override http request option.
|
|
1580
1597
|
* @throws {RequiredError}
|
|
1581
1598
|
*/
|
|
1582
|
-
apiV2DoctorsGet: function (hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
1583
|
-
return localVarFp.apiV2DoctorsGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
1599
|
+
apiV2DoctorsGet: function (xCloudhospitalPlatform, hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
1600
|
+
return localVarFp.apiV2DoctorsGet(xCloudhospitalPlatform, hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
1584
1601
|
},
|
|
1585
1602
|
/**
|
|
1586
1603
|
*
|
|
1587
1604
|
* @summary Get all Doctors.
|
|
1605
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1588
1606
|
* @param {string} [hospitalId]
|
|
1589
1607
|
* @param {string} [hospitalName]
|
|
1590
1608
|
* @param {Array<string>} [ids]
|
|
@@ -1603,8 +1621,8 @@ var DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
1603
1621
|
* @param {*} [options] Override http request option.
|
|
1604
1622
|
* @throws {RequiredError}
|
|
1605
1623
|
*/
|
|
1606
|
-
apiV2DoctorsSimpleGet: function (hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
1607
|
-
return localVarFp.apiV2DoctorsSimpleGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
1624
|
+
apiV2DoctorsSimpleGet: function (xCloudhospitalPlatform, hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options) {
|
|
1625
|
+
return localVarFp.apiV2DoctorsSimpleGet(xCloudhospitalPlatform, hospitalId, hospitalName, ids, specialtyId, consultationEnabled, languageCode, id, fullname, email, gender, dateOfBirth, created, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
1608
1626
|
},
|
|
1609
1627
|
};
|
|
1610
1628
|
};
|
|
@@ -1670,7 +1688,7 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
1670
1688
|
};
|
|
1671
1689
|
/**
|
|
1672
1690
|
*
|
|
1673
|
-
* @summary
|
|
1691
|
+
* @summary Get doctor
|
|
1674
1692
|
* @param {DoctorsApiApiV2DoctorsDoctorIdGetRequest} requestParameters Request parameters.
|
|
1675
1693
|
* @param {*} [options] Override http request option.
|
|
1676
1694
|
* @throws {RequiredError}
|
|
@@ -1678,7 +1696,7 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
1678
1696
|
*/
|
|
1679
1697
|
DoctorsApi.prototype.apiV2DoctorsDoctorIdGet = function (requestParameters, options) {
|
|
1680
1698
|
var _this = this;
|
|
1681
|
-
return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsDoctorIdGet(requestParameters.doctorId, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1699
|
+
return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsDoctorIdGet(requestParameters.doctorId, requestParameters.xCloudhospitalPlatform, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1682
1700
|
};
|
|
1683
1701
|
/**
|
|
1684
1702
|
*
|
|
@@ -1787,7 +1805,7 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
1787
1805
|
DoctorsApi.prototype.apiV2DoctorsGet = function (requestParameters, options) {
|
|
1788
1806
|
var _this = this;
|
|
1789
1807
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1790
|
-
return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsGet(requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.ids, requestParameters.specialtyId, requestParameters.consultationEnabled, requestParameters.languageCode, requestParameters.id, requestParameters.fullname, requestParameters.email, requestParameters.gender, requestParameters.dateOfBirth, requestParameters.created, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1808
|
+
return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsGet(requestParameters.xCloudhospitalPlatform, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.ids, requestParameters.specialtyId, requestParameters.consultationEnabled, requestParameters.languageCode, requestParameters.id, requestParameters.fullname, requestParameters.email, requestParameters.gender, requestParameters.dateOfBirth, requestParameters.created, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1791
1809
|
};
|
|
1792
1810
|
/**
|
|
1793
1811
|
*
|
|
@@ -1800,7 +1818,7 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
1800
1818
|
DoctorsApi.prototype.apiV2DoctorsSimpleGet = function (requestParameters, options) {
|
|
1801
1819
|
var _this = this;
|
|
1802
1820
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1803
|
-
return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsSimpleGet(requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.ids, requestParameters.specialtyId, requestParameters.consultationEnabled, requestParameters.languageCode, requestParameters.id, requestParameters.fullname, requestParameters.email, requestParameters.gender, requestParameters.dateOfBirth, requestParameters.created, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1821
|
+
return (0, exports.DoctorsApiFp)(this.configuration).apiV2DoctorsSimpleGet(requestParameters.xCloudhospitalPlatform, requestParameters.hospitalId, requestParameters.hospitalName, requestParameters.ids, requestParameters.specialtyId, requestParameters.consultationEnabled, requestParameters.languageCode, requestParameters.id, requestParameters.fullname, requestParameters.email, requestParameters.gender, requestParameters.dateOfBirth, requestParameters.created, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1804
1822
|
};
|
|
1805
1823
|
return DoctorsApi;
|
|
1806
1824
|
}(base_1.BaseAPI));
|