ch-admin-api-client-typescript 2.2.6 → 2.2.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 +24 -32
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +42 -56
- package/package.json +1 -1
- package/src/api.ts +45 -61
package/lib/api.js
CHANGED
|
@@ -9696,9 +9696,8 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
9696
9696
|
*
|
|
9697
9697
|
* @summary Delete DoctorCertificate.
|
|
9698
9698
|
* @param {string} doctorId
|
|
9699
|
-
* @param {string} [doctorId2]
|
|
9700
|
-
* @param {string} [id]
|
|
9701
9699
|
* @param {string} [doctorName]
|
|
9700
|
+
* @param {string} [certificateId]
|
|
9702
9701
|
* @param {string} [certificate]
|
|
9703
9702
|
* @param {Date} [activeFrom]
|
|
9704
9703
|
* @param {Date} [activeTo]
|
|
@@ -9708,7 +9707,7 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
9708
9707
|
* @param {*} [options] Override http request option.
|
|
9709
9708
|
* @throws {RequiredError}
|
|
9710
9709
|
*/
|
|
9711
|
-
apiV1DoctorsDoctorIdCertificatesGet: function (doctorId,
|
|
9710
|
+
apiV1DoctorsDoctorIdCertificatesGet: function (doctorId, doctorName, certificateId, certificate, activeFrom, activeTo, page, limit, lastRetrieved, options) {
|
|
9712
9711
|
if (options === void 0) { options = {}; }
|
|
9713
9712
|
return __awaiter(_this, void 0, void 0, function () {
|
|
9714
9713
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -9733,15 +9732,12 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
9733
9732
|
// authentication oauth2 required
|
|
9734
9733
|
// oauth required
|
|
9735
9734
|
_a.sent();
|
|
9736
|
-
if (doctorId2 !== undefined) {
|
|
9737
|
-
localVarQueryParameter['DoctorId'] = doctorId2;
|
|
9738
|
-
}
|
|
9739
|
-
if (id !== undefined) {
|
|
9740
|
-
localVarQueryParameter['Id'] = id;
|
|
9741
|
-
}
|
|
9742
9735
|
if (doctorName !== undefined) {
|
|
9743
9736
|
localVarQueryParameter['DoctorName'] = doctorName;
|
|
9744
9737
|
}
|
|
9738
|
+
if (certificateId !== undefined) {
|
|
9739
|
+
localVarQueryParameter['CertificateId'] = certificateId;
|
|
9740
|
+
}
|
|
9745
9741
|
if (certificate !== undefined) {
|
|
9746
9742
|
localVarQueryParameter['Certificate'] = certificate;
|
|
9747
9743
|
}
|
|
@@ -10014,8 +10010,8 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
10014
10010
|
*
|
|
10015
10011
|
* @summary Get all DoctorEducations.
|
|
10016
10012
|
* @param {string} doctorId
|
|
10017
|
-
* @param {string} [doctorId2]
|
|
10018
10013
|
* @param {string} [doctorName]
|
|
10014
|
+
* @param {string} [educationId]
|
|
10019
10015
|
* @param {string} [institution]
|
|
10020
10016
|
* @param {string} [qualification]
|
|
10021
10017
|
* @param {Date} [graduationDate]
|
|
@@ -10025,7 +10021,7 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
10025
10021
|
* @param {*} [options] Override http request option.
|
|
10026
10022
|
* @throws {RequiredError}
|
|
10027
10023
|
*/
|
|
10028
|
-
apiV1DoctorsDoctorIdEducationsGet: function (doctorId,
|
|
10024
|
+
apiV1DoctorsDoctorIdEducationsGet: function (doctorId, doctorName, educationId, institution, qualification, graduationDate, page, limit, lastRetrieved, options) {
|
|
10029
10025
|
if (options === void 0) { options = {}; }
|
|
10030
10026
|
return __awaiter(_this, void 0, void 0, function () {
|
|
10031
10027
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -10050,12 +10046,12 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
10050
10046
|
// authentication oauth2 required
|
|
10051
10047
|
// oauth required
|
|
10052
10048
|
_a.sent();
|
|
10053
|
-
if (doctorId2 !== undefined) {
|
|
10054
|
-
localVarQueryParameter['DoctorId'] = doctorId2;
|
|
10055
|
-
}
|
|
10056
10049
|
if (doctorName !== undefined) {
|
|
10057
10050
|
localVarQueryParameter['DoctorName'] = doctorName;
|
|
10058
10051
|
}
|
|
10052
|
+
if (educationId !== undefined) {
|
|
10053
|
+
localVarQueryParameter['EducationId'] = educationId;
|
|
10054
|
+
}
|
|
10059
10055
|
if (institution !== undefined) {
|
|
10060
10056
|
localVarQueryParameter['Institution'] = institution;
|
|
10061
10057
|
}
|
|
@@ -10441,9 +10437,8 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
10441
10437
|
*
|
|
10442
10438
|
* @summary Get All DoctorPortfolios
|
|
10443
10439
|
* @param {string} doctorId
|
|
10444
|
-
* @param {string} [id]
|
|
10445
|
-
* @param {string} [doctorId2]
|
|
10446
10440
|
* @param {string} [doctorName]
|
|
10441
|
+
* @param {string} [portfolioId]
|
|
10447
10442
|
* @param {string} [name]
|
|
10448
10443
|
* @param {number} [page]
|
|
10449
10444
|
* @param {number} [limit]
|
|
@@ -10451,7 +10446,7 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
10451
10446
|
* @param {*} [options] Override http request option.
|
|
10452
10447
|
* @throws {RequiredError}
|
|
10453
10448
|
*/
|
|
10454
|
-
apiV1DoctorsDoctorIdPortfoliosGet: function (doctorId,
|
|
10449
|
+
apiV1DoctorsDoctorIdPortfoliosGet: function (doctorId, doctorName, portfolioId, name, page, limit, lastRetrieved, options) {
|
|
10455
10450
|
if (options === void 0) { options = {}; }
|
|
10456
10451
|
return __awaiter(_this, void 0, void 0, function () {
|
|
10457
10452
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -10476,15 +10471,12 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
10476
10471
|
// authentication oauth2 required
|
|
10477
10472
|
// oauth required
|
|
10478
10473
|
_a.sent();
|
|
10479
|
-
if (id !== undefined) {
|
|
10480
|
-
localVarQueryParameter['Id'] = id;
|
|
10481
|
-
}
|
|
10482
|
-
if (doctorId2 !== undefined) {
|
|
10483
|
-
localVarQueryParameter['DoctorId'] = doctorId2;
|
|
10484
|
-
}
|
|
10485
10474
|
if (doctorName !== undefined) {
|
|
10486
10475
|
localVarQueryParameter['DoctorName'] = doctorName;
|
|
10487
10476
|
}
|
|
10477
|
+
if (portfolioId !== undefined) {
|
|
10478
|
+
localVarQueryParameter['PortfolioId'] = portfolioId;
|
|
10479
|
+
}
|
|
10488
10480
|
if (name !== undefined) {
|
|
10489
10481
|
localVarQueryParameter['Name'] = name;
|
|
10490
10482
|
}
|
|
@@ -11334,9 +11326,8 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
11334
11326
|
*
|
|
11335
11327
|
* @summary Delete DoctorCertificate.
|
|
11336
11328
|
* @param {string} doctorId
|
|
11337
|
-
* @param {string} [doctorId2]
|
|
11338
|
-
* @param {string} [id]
|
|
11339
11329
|
* @param {string} [doctorName]
|
|
11330
|
+
* @param {string} [certificateId]
|
|
11340
11331
|
* @param {string} [certificate]
|
|
11341
11332
|
* @param {Date} [activeFrom]
|
|
11342
11333
|
* @param {Date} [activeTo]
|
|
@@ -11346,12 +11337,12 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
11346
11337
|
* @param {*} [options] Override http request option.
|
|
11347
11338
|
* @throws {RequiredError}
|
|
11348
11339
|
*/
|
|
11349
|
-
apiV1DoctorsDoctorIdCertificatesGet: function (doctorId,
|
|
11340
|
+
apiV1DoctorsDoctorIdCertificatesGet: function (doctorId, doctorName, certificateId, certificate, activeFrom, activeTo, page, limit, lastRetrieved, options) {
|
|
11350
11341
|
return __awaiter(this, void 0, void 0, function () {
|
|
11351
11342
|
var localVarAxiosArgs;
|
|
11352
11343
|
return __generator(this, function (_a) {
|
|
11353
11344
|
switch (_a.label) {
|
|
11354
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsDoctorIdCertificatesGet(doctorId,
|
|
11345
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsDoctorIdCertificatesGet(doctorId, doctorName, certificateId, certificate, activeFrom, activeTo, page, limit, lastRetrieved, options)];
|
|
11355
11346
|
case 1:
|
|
11356
11347
|
localVarAxiosArgs = _a.sent();
|
|
11357
11348
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -11468,8 +11459,8 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
11468
11459
|
*
|
|
11469
11460
|
* @summary Get all DoctorEducations.
|
|
11470
11461
|
* @param {string} doctorId
|
|
11471
|
-
* @param {string} [doctorId2]
|
|
11472
11462
|
* @param {string} [doctorName]
|
|
11463
|
+
* @param {string} [educationId]
|
|
11473
11464
|
* @param {string} [institution]
|
|
11474
11465
|
* @param {string} [qualification]
|
|
11475
11466
|
* @param {Date} [graduationDate]
|
|
@@ -11479,12 +11470,12 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
11479
11470
|
* @param {*} [options] Override http request option.
|
|
11480
11471
|
* @throws {RequiredError}
|
|
11481
11472
|
*/
|
|
11482
|
-
apiV1DoctorsDoctorIdEducationsGet: function (doctorId,
|
|
11473
|
+
apiV1DoctorsDoctorIdEducationsGet: function (doctorId, doctorName, educationId, institution, qualification, graduationDate, page, limit, lastRetrieved, options) {
|
|
11483
11474
|
return __awaiter(this, void 0, void 0, function () {
|
|
11484
11475
|
var localVarAxiosArgs;
|
|
11485
11476
|
return __generator(this, function (_a) {
|
|
11486
11477
|
switch (_a.label) {
|
|
11487
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsDoctorIdEducationsGet(doctorId,
|
|
11478
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsDoctorIdEducationsGet(doctorId, doctorName, educationId, institution, qualification, graduationDate, page, limit, lastRetrieved, options)];
|
|
11488
11479
|
case 1:
|
|
11489
11480
|
localVarAxiosArgs = _a.sent();
|
|
11490
11481
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -11648,9 +11639,8 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
11648
11639
|
*
|
|
11649
11640
|
* @summary Get All DoctorPortfolios
|
|
11650
11641
|
* @param {string} doctorId
|
|
11651
|
-
* @param {string} [id]
|
|
11652
|
-
* @param {string} [doctorId2]
|
|
11653
11642
|
* @param {string} [doctorName]
|
|
11643
|
+
* @param {string} [portfolioId]
|
|
11654
11644
|
* @param {string} [name]
|
|
11655
11645
|
* @param {number} [page]
|
|
11656
11646
|
* @param {number} [limit]
|
|
@@ -11658,12 +11648,12 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
11658
11648
|
* @param {*} [options] Override http request option.
|
|
11659
11649
|
* @throws {RequiredError}
|
|
11660
11650
|
*/
|
|
11661
|
-
apiV1DoctorsDoctorIdPortfoliosGet: function (doctorId,
|
|
11651
|
+
apiV1DoctorsDoctorIdPortfoliosGet: function (doctorId, doctorName, portfolioId, name, page, limit, lastRetrieved, options) {
|
|
11662
11652
|
return __awaiter(this, void 0, void 0, function () {
|
|
11663
11653
|
var localVarAxiosArgs;
|
|
11664
11654
|
return __generator(this, function (_a) {
|
|
11665
11655
|
switch (_a.label) {
|
|
11666
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsDoctorIdPortfoliosGet(doctorId,
|
|
11656
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsDoctorIdPortfoliosGet(doctorId, doctorName, portfolioId, name, page, limit, lastRetrieved, options)];
|
|
11667
11657
|
case 1:
|
|
11668
11658
|
localVarAxiosArgs = _a.sent();
|
|
11669
11659
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -12036,9 +12026,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
12036
12026
|
*
|
|
12037
12027
|
* @summary Delete DoctorCertificate.
|
|
12038
12028
|
* @param {string} doctorId
|
|
12039
|
-
* @param {string} [doctorId2]
|
|
12040
|
-
* @param {string} [id]
|
|
12041
12029
|
* @param {string} [doctorName]
|
|
12030
|
+
* @param {string} [certificateId]
|
|
12042
12031
|
* @param {string} [certificate]
|
|
12043
12032
|
* @param {Date} [activeFrom]
|
|
12044
12033
|
* @param {Date} [activeTo]
|
|
@@ -12048,8 +12037,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
12048
12037
|
* @param {*} [options] Override http request option.
|
|
12049
12038
|
* @throws {RequiredError}
|
|
12050
12039
|
*/
|
|
12051
|
-
apiV1DoctorsDoctorIdCertificatesGet: function (doctorId,
|
|
12052
|
-
return localVarFp.apiV1DoctorsDoctorIdCertificatesGet(doctorId,
|
|
12040
|
+
apiV1DoctorsDoctorIdCertificatesGet: function (doctorId, doctorName, certificateId, certificate, activeFrom, activeTo, page, limit, lastRetrieved, options) {
|
|
12041
|
+
return localVarFp.apiV1DoctorsDoctorIdCertificatesGet(doctorId, doctorName, certificateId, certificate, activeFrom, activeTo, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
12053
12042
|
},
|
|
12054
12043
|
/**
|
|
12055
12044
|
*
|
|
@@ -12110,8 +12099,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
12110
12099
|
*
|
|
12111
12100
|
* @summary Get all DoctorEducations.
|
|
12112
12101
|
* @param {string} doctorId
|
|
12113
|
-
* @param {string} [doctorId2]
|
|
12114
12102
|
* @param {string} [doctorName]
|
|
12103
|
+
* @param {string} [educationId]
|
|
12115
12104
|
* @param {string} [institution]
|
|
12116
12105
|
* @param {string} [qualification]
|
|
12117
12106
|
* @param {Date} [graduationDate]
|
|
@@ -12121,8 +12110,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
12121
12110
|
* @param {*} [options] Override http request option.
|
|
12122
12111
|
* @throws {RequiredError}
|
|
12123
12112
|
*/
|
|
12124
|
-
apiV1DoctorsDoctorIdEducationsGet: function (doctorId,
|
|
12125
|
-
return localVarFp.apiV1DoctorsDoctorIdEducationsGet(doctorId,
|
|
12113
|
+
apiV1DoctorsDoctorIdEducationsGet: function (doctorId, doctorName, educationId, institution, qualification, graduationDate, page, limit, lastRetrieved, options) {
|
|
12114
|
+
return localVarFp.apiV1DoctorsDoctorIdEducationsGet(doctorId, doctorName, educationId, institution, qualification, graduationDate, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
12126
12115
|
},
|
|
12127
12116
|
/**
|
|
12128
12117
|
*
|
|
@@ -12210,9 +12199,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
12210
12199
|
*
|
|
12211
12200
|
* @summary Get All DoctorPortfolios
|
|
12212
12201
|
* @param {string} doctorId
|
|
12213
|
-
* @param {string} [id]
|
|
12214
|
-
* @param {string} [doctorId2]
|
|
12215
12202
|
* @param {string} [doctorName]
|
|
12203
|
+
* @param {string} [portfolioId]
|
|
12216
12204
|
* @param {string} [name]
|
|
12217
12205
|
* @param {number} [page]
|
|
12218
12206
|
* @param {number} [limit]
|
|
@@ -12220,8 +12208,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
12220
12208
|
* @param {*} [options] Override http request option.
|
|
12221
12209
|
* @throws {RequiredError}
|
|
12222
12210
|
*/
|
|
12223
|
-
apiV1DoctorsDoctorIdPortfoliosGet: function (doctorId,
|
|
12224
|
-
return localVarFp.apiV1DoctorsDoctorIdPortfoliosGet(doctorId,
|
|
12211
|
+
apiV1DoctorsDoctorIdPortfoliosGet: function (doctorId, doctorName, portfolioId, name, page, limit, lastRetrieved, options) {
|
|
12212
|
+
return localVarFp.apiV1DoctorsDoctorIdPortfoliosGet(doctorId, doctorName, portfolioId, name, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
12225
12213
|
},
|
|
12226
12214
|
/**
|
|
12227
12215
|
*
|
|
@@ -12472,9 +12460,8 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
12472
12460
|
*
|
|
12473
12461
|
* @summary Delete DoctorCertificate.
|
|
12474
12462
|
* @param {string} doctorId
|
|
12475
|
-
* @param {string} [doctorId2]
|
|
12476
|
-
* @param {string} [id]
|
|
12477
12463
|
* @param {string} [doctorName]
|
|
12464
|
+
* @param {string} [certificateId]
|
|
12478
12465
|
* @param {string} [certificate]
|
|
12479
12466
|
* @param {Date} [activeFrom]
|
|
12480
12467
|
* @param {Date} [activeTo]
|
|
@@ -12485,9 +12472,9 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
12485
12472
|
* @throws {RequiredError}
|
|
12486
12473
|
* @memberof DoctorsApi
|
|
12487
12474
|
*/
|
|
12488
|
-
DoctorsApi.prototype.apiV1DoctorsDoctorIdCertificatesGet = function (doctorId,
|
|
12475
|
+
DoctorsApi.prototype.apiV1DoctorsDoctorIdCertificatesGet = function (doctorId, doctorName, certificateId, certificate, activeFrom, activeTo, page, limit, lastRetrieved, options) {
|
|
12489
12476
|
var _this = this;
|
|
12490
|
-
return exports.DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdCertificatesGet(doctorId,
|
|
12477
|
+
return exports.DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdCertificatesGet(doctorId, doctorName, certificateId, certificate, activeFrom, activeTo, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
12491
12478
|
};
|
|
12492
12479
|
/**
|
|
12493
12480
|
*
|
|
@@ -12558,8 +12545,8 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
12558
12545
|
*
|
|
12559
12546
|
* @summary Get all DoctorEducations.
|
|
12560
12547
|
* @param {string} doctorId
|
|
12561
|
-
* @param {string} [doctorId2]
|
|
12562
12548
|
* @param {string} [doctorName]
|
|
12549
|
+
* @param {string} [educationId]
|
|
12563
12550
|
* @param {string} [institution]
|
|
12564
12551
|
* @param {string} [qualification]
|
|
12565
12552
|
* @param {Date} [graduationDate]
|
|
@@ -12570,9 +12557,9 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
12570
12557
|
* @throws {RequiredError}
|
|
12571
12558
|
* @memberof DoctorsApi
|
|
12572
12559
|
*/
|
|
12573
|
-
DoctorsApi.prototype.apiV1DoctorsDoctorIdEducationsGet = function (doctorId,
|
|
12560
|
+
DoctorsApi.prototype.apiV1DoctorsDoctorIdEducationsGet = function (doctorId, doctorName, educationId, institution, qualification, graduationDate, page, limit, lastRetrieved, options) {
|
|
12574
12561
|
var _this = this;
|
|
12575
|
-
return exports.DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdEducationsGet(doctorId,
|
|
12562
|
+
return exports.DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdEducationsGet(doctorId, doctorName, educationId, institution, qualification, graduationDate, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
12576
12563
|
};
|
|
12577
12564
|
/**
|
|
12578
12565
|
*
|
|
@@ -12674,9 +12661,8 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
12674
12661
|
*
|
|
12675
12662
|
* @summary Get All DoctorPortfolios
|
|
12676
12663
|
* @param {string} doctorId
|
|
12677
|
-
* @param {string} [id]
|
|
12678
|
-
* @param {string} [doctorId2]
|
|
12679
12664
|
* @param {string} [doctorName]
|
|
12665
|
+
* @param {string} [portfolioId]
|
|
12680
12666
|
* @param {string} [name]
|
|
12681
12667
|
* @param {number} [page]
|
|
12682
12668
|
* @param {number} [limit]
|
|
@@ -12685,9 +12671,9 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
12685
12671
|
* @throws {RequiredError}
|
|
12686
12672
|
* @memberof DoctorsApi
|
|
12687
12673
|
*/
|
|
12688
|
-
DoctorsApi.prototype.apiV1DoctorsDoctorIdPortfoliosGet = function (doctorId,
|
|
12674
|
+
DoctorsApi.prototype.apiV1DoctorsDoctorIdPortfoliosGet = function (doctorId, doctorName, portfolioId, name, page, limit, lastRetrieved, options) {
|
|
12689
12675
|
var _this = this;
|
|
12690
|
-
return exports.DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdPortfoliosGet(doctorId,
|
|
12676
|
+
return exports.DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdPortfoliosGet(doctorId, doctorName, portfolioId, name, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
12691
12677
|
};
|
|
12692
12678
|
/**
|
|
12693
12679
|
*
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -20767,9 +20767,8 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
20767
20767
|
*
|
|
20768
20768
|
* @summary Delete DoctorCertificate.
|
|
20769
20769
|
* @param {string} doctorId
|
|
20770
|
-
* @param {string} [doctorId2]
|
|
20771
|
-
* @param {string} [id]
|
|
20772
20770
|
* @param {string} [doctorName]
|
|
20771
|
+
* @param {string} [certificateId]
|
|
20773
20772
|
* @param {string} [certificate]
|
|
20774
20773
|
* @param {Date} [activeFrom]
|
|
20775
20774
|
* @param {Date} [activeTo]
|
|
@@ -20779,7 +20778,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
20779
20778
|
* @param {*} [options] Override http request option.
|
|
20780
20779
|
* @throws {RequiredError}
|
|
20781
20780
|
*/
|
|
20782
|
-
apiV1DoctorsDoctorIdCertificatesGet: async (doctorId: string,
|
|
20781
|
+
apiV1DoctorsDoctorIdCertificatesGet: async (doctorId: string, doctorName?: string, certificateId?: string, certificate?: string, activeFrom?: Date, activeTo?: Date, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
20783
20782
|
// verify required parameter 'doctorId' is not null or undefined
|
|
20784
20783
|
assertParamExists('apiV1DoctorsDoctorIdCertificatesGet', 'doctorId', doctorId)
|
|
20785
20784
|
const localVarPath = `/api/v1/doctors/{doctorId}/certificates`
|
|
@@ -20799,18 +20798,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
20799
20798
|
// oauth required
|
|
20800
20799
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
20801
20800
|
|
|
20802
|
-
if (doctorId2 !== undefined) {
|
|
20803
|
-
localVarQueryParameter['DoctorId'] = doctorId2;
|
|
20804
|
-
}
|
|
20805
|
-
|
|
20806
|
-
if (id !== undefined) {
|
|
20807
|
-
localVarQueryParameter['Id'] = id;
|
|
20808
|
-
}
|
|
20809
|
-
|
|
20810
20801
|
if (doctorName !== undefined) {
|
|
20811
20802
|
localVarQueryParameter['DoctorName'] = doctorName;
|
|
20812
20803
|
}
|
|
20813
20804
|
|
|
20805
|
+
if (certificateId !== undefined) {
|
|
20806
|
+
localVarQueryParameter['CertificateId'] = certificateId;
|
|
20807
|
+
}
|
|
20808
|
+
|
|
20814
20809
|
if (certificate !== undefined) {
|
|
20815
20810
|
localVarQueryParameter['Certificate'] = certificate;
|
|
20816
20811
|
}
|
|
@@ -21066,8 +21061,8 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
21066
21061
|
*
|
|
21067
21062
|
* @summary Get all DoctorEducations.
|
|
21068
21063
|
* @param {string} doctorId
|
|
21069
|
-
* @param {string} [doctorId2]
|
|
21070
21064
|
* @param {string} [doctorName]
|
|
21065
|
+
* @param {string} [educationId]
|
|
21071
21066
|
* @param {string} [institution]
|
|
21072
21067
|
* @param {string} [qualification]
|
|
21073
21068
|
* @param {Date} [graduationDate]
|
|
@@ -21077,7 +21072,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
21077
21072
|
* @param {*} [options] Override http request option.
|
|
21078
21073
|
* @throws {RequiredError}
|
|
21079
21074
|
*/
|
|
21080
|
-
apiV1DoctorsDoctorIdEducationsGet: async (doctorId: string,
|
|
21075
|
+
apiV1DoctorsDoctorIdEducationsGet: async (doctorId: string, doctorName?: string, educationId?: string, institution?: string, qualification?: string, graduationDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
21081
21076
|
// verify required parameter 'doctorId' is not null or undefined
|
|
21082
21077
|
assertParamExists('apiV1DoctorsDoctorIdEducationsGet', 'doctorId', doctorId)
|
|
21083
21078
|
const localVarPath = `/api/v1/doctors/{doctorId}/educations`
|
|
@@ -21097,14 +21092,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
21097
21092
|
// oauth required
|
|
21098
21093
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
21099
21094
|
|
|
21100
|
-
if (doctorId2 !== undefined) {
|
|
21101
|
-
localVarQueryParameter['DoctorId'] = doctorId2;
|
|
21102
|
-
}
|
|
21103
|
-
|
|
21104
21095
|
if (doctorName !== undefined) {
|
|
21105
21096
|
localVarQueryParameter['DoctorName'] = doctorName;
|
|
21106
21097
|
}
|
|
21107
21098
|
|
|
21099
|
+
if (educationId !== undefined) {
|
|
21100
|
+
localVarQueryParameter['EducationId'] = educationId;
|
|
21101
|
+
}
|
|
21102
|
+
|
|
21108
21103
|
if (institution !== undefined) {
|
|
21109
21104
|
localVarQueryParameter['Institution'] = institution;
|
|
21110
21105
|
}
|
|
@@ -21470,9 +21465,8 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
21470
21465
|
*
|
|
21471
21466
|
* @summary Get All DoctorPortfolios
|
|
21472
21467
|
* @param {string} doctorId
|
|
21473
|
-
* @param {string} [id]
|
|
21474
|
-
* @param {string} [doctorId2]
|
|
21475
21468
|
* @param {string} [doctorName]
|
|
21469
|
+
* @param {string} [portfolioId]
|
|
21476
21470
|
* @param {string} [name]
|
|
21477
21471
|
* @param {number} [page]
|
|
21478
21472
|
* @param {number} [limit]
|
|
@@ -21480,7 +21474,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
21480
21474
|
* @param {*} [options] Override http request option.
|
|
21481
21475
|
* @throws {RequiredError}
|
|
21482
21476
|
*/
|
|
21483
|
-
apiV1DoctorsDoctorIdPortfoliosGet: async (doctorId: string,
|
|
21477
|
+
apiV1DoctorsDoctorIdPortfoliosGet: async (doctorId: string, doctorName?: string, portfolioId?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
21484
21478
|
// verify required parameter 'doctorId' is not null or undefined
|
|
21485
21479
|
assertParamExists('apiV1DoctorsDoctorIdPortfoliosGet', 'doctorId', doctorId)
|
|
21486
21480
|
const localVarPath = `/api/v1/doctors/{doctorId}/portfolios`
|
|
@@ -21500,18 +21494,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
21500
21494
|
// oauth required
|
|
21501
21495
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
21502
21496
|
|
|
21503
|
-
if (id !== undefined) {
|
|
21504
|
-
localVarQueryParameter['Id'] = id;
|
|
21505
|
-
}
|
|
21506
|
-
|
|
21507
|
-
if (doctorId2 !== undefined) {
|
|
21508
|
-
localVarQueryParameter['DoctorId'] = doctorId2;
|
|
21509
|
-
}
|
|
21510
|
-
|
|
21511
21497
|
if (doctorName !== undefined) {
|
|
21512
21498
|
localVarQueryParameter['DoctorName'] = doctorName;
|
|
21513
21499
|
}
|
|
21514
21500
|
|
|
21501
|
+
if (portfolioId !== undefined) {
|
|
21502
|
+
localVarQueryParameter['PortfolioId'] = portfolioId;
|
|
21503
|
+
}
|
|
21504
|
+
|
|
21515
21505
|
if (name !== undefined) {
|
|
21516
21506
|
localVarQueryParameter['Name'] = name;
|
|
21517
21507
|
}
|
|
@@ -22288,9 +22278,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
22288
22278
|
*
|
|
22289
22279
|
* @summary Delete DoctorCertificate.
|
|
22290
22280
|
* @param {string} doctorId
|
|
22291
|
-
* @param {string} [doctorId2]
|
|
22292
|
-
* @param {string} [id]
|
|
22293
22281
|
* @param {string} [doctorName]
|
|
22282
|
+
* @param {string} [certificateId]
|
|
22294
22283
|
* @param {string} [certificate]
|
|
22295
22284
|
* @param {Date} [activeFrom]
|
|
22296
22285
|
* @param {Date} [activeTo]
|
|
@@ -22300,8 +22289,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
22300
22289
|
* @param {*} [options] Override http request option.
|
|
22301
22290
|
* @throws {RequiredError}
|
|
22302
22291
|
*/
|
|
22303
|
-
async apiV1DoctorsDoctorIdCertificatesGet(doctorId: string,
|
|
22304
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdCertificatesGet(doctorId,
|
|
22292
|
+
async apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string, certificateId?: string, certificate?: string, activeFrom?: Date, activeTo?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorCertificatesModel>> {
|
|
22293
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdCertificatesGet(doctorId, doctorName, certificateId, certificate, activeFrom, activeTo, page, limit, lastRetrieved, options);
|
|
22305
22294
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
22306
22295
|
},
|
|
22307
22296
|
/**
|
|
@@ -22368,8 +22357,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
22368
22357
|
*
|
|
22369
22358
|
* @summary Get all DoctorEducations.
|
|
22370
22359
|
* @param {string} doctorId
|
|
22371
|
-
* @param {string} [doctorId2]
|
|
22372
22360
|
* @param {string} [doctorName]
|
|
22361
|
+
* @param {string} [educationId]
|
|
22373
22362
|
* @param {string} [institution]
|
|
22374
22363
|
* @param {string} [qualification]
|
|
22375
22364
|
* @param {Date} [graduationDate]
|
|
@@ -22379,8 +22368,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
22379
22368
|
* @param {*} [options] Override http request option.
|
|
22380
22369
|
* @throws {RequiredError}
|
|
22381
22370
|
*/
|
|
22382
|
-
async apiV1DoctorsDoctorIdEducationsGet(doctorId: string,
|
|
22383
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdEducationsGet(doctorId,
|
|
22371
|
+
async apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string, educationId?: string, institution?: string, qualification?: string, graduationDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorEducationsModel>> {
|
|
22372
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdEducationsGet(doctorId, doctorName, educationId, institution, qualification, graduationDate, page, limit, lastRetrieved, options);
|
|
22384
22373
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
22385
22374
|
},
|
|
22386
22375
|
/**
|
|
@@ -22476,9 +22465,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
22476
22465
|
*
|
|
22477
22466
|
* @summary Get All DoctorPortfolios
|
|
22478
22467
|
* @param {string} doctorId
|
|
22479
|
-
* @param {string} [id]
|
|
22480
|
-
* @param {string} [doctorId2]
|
|
22481
22468
|
* @param {string} [doctorName]
|
|
22469
|
+
* @param {string} [portfolioId]
|
|
22482
22470
|
* @param {string} [name]
|
|
22483
22471
|
* @param {number} [page]
|
|
22484
22472
|
* @param {number} [limit]
|
|
@@ -22486,8 +22474,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
22486
22474
|
* @param {*} [options] Override http request option.
|
|
22487
22475
|
* @throws {RequiredError}
|
|
22488
22476
|
*/
|
|
22489
|
-
async apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string,
|
|
22490
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdPortfoliosGet(doctorId,
|
|
22477
|
+
async apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string, portfolioId?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorPortfoliosModel>> {
|
|
22478
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdPortfoliosGet(doctorId, doctorName, portfolioId, name, page, limit, lastRetrieved, options);
|
|
22491
22479
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
22492
22480
|
},
|
|
22493
22481
|
/**
|
|
@@ -22739,9 +22727,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
22739
22727
|
*
|
|
22740
22728
|
* @summary Delete DoctorCertificate.
|
|
22741
22729
|
* @param {string} doctorId
|
|
22742
|
-
* @param {string} [doctorId2]
|
|
22743
|
-
* @param {string} [id]
|
|
22744
22730
|
* @param {string} [doctorName]
|
|
22731
|
+
* @param {string} [certificateId]
|
|
22745
22732
|
* @param {string} [certificate]
|
|
22746
22733
|
* @param {Date} [activeFrom]
|
|
22747
22734
|
* @param {Date} [activeTo]
|
|
@@ -22751,8 +22738,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
22751
22738
|
* @param {*} [options] Override http request option.
|
|
22752
22739
|
* @throws {RequiredError}
|
|
22753
22740
|
*/
|
|
22754
|
-
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string,
|
|
22755
|
-
return localVarFp.apiV1DoctorsDoctorIdCertificatesGet(doctorId,
|
|
22741
|
+
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string, certificateId?: string, certificate?: string, activeFrom?: Date, activeTo?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorCertificatesModel> {
|
|
22742
|
+
return localVarFp.apiV1DoctorsDoctorIdCertificatesGet(doctorId, doctorName, certificateId, certificate, activeFrom, activeTo, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
22756
22743
|
},
|
|
22757
22744
|
/**
|
|
22758
22745
|
*
|
|
@@ -22813,8 +22800,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
22813
22800
|
*
|
|
22814
22801
|
* @summary Get all DoctorEducations.
|
|
22815
22802
|
* @param {string} doctorId
|
|
22816
|
-
* @param {string} [doctorId2]
|
|
22817
22803
|
* @param {string} [doctorName]
|
|
22804
|
+
* @param {string} [educationId]
|
|
22818
22805
|
* @param {string} [institution]
|
|
22819
22806
|
* @param {string} [qualification]
|
|
22820
22807
|
* @param {Date} [graduationDate]
|
|
@@ -22824,8 +22811,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
22824
22811
|
* @param {*} [options] Override http request option.
|
|
22825
22812
|
* @throws {RequiredError}
|
|
22826
22813
|
*/
|
|
22827
|
-
apiV1DoctorsDoctorIdEducationsGet(doctorId: string,
|
|
22828
|
-
return localVarFp.apiV1DoctorsDoctorIdEducationsGet(doctorId,
|
|
22814
|
+
apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string, educationId?: string, institution?: string, qualification?: string, graduationDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorEducationsModel> {
|
|
22815
|
+
return localVarFp.apiV1DoctorsDoctorIdEducationsGet(doctorId, doctorName, educationId, institution, qualification, graduationDate, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
22829
22816
|
},
|
|
22830
22817
|
/**
|
|
22831
22818
|
*
|
|
@@ -22913,9 +22900,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
22913
22900
|
*
|
|
22914
22901
|
* @summary Get All DoctorPortfolios
|
|
22915
22902
|
* @param {string} doctorId
|
|
22916
|
-
* @param {string} [id]
|
|
22917
|
-
* @param {string} [doctorId2]
|
|
22918
22903
|
* @param {string} [doctorName]
|
|
22904
|
+
* @param {string} [portfolioId]
|
|
22919
22905
|
* @param {string} [name]
|
|
22920
22906
|
* @param {number} [page]
|
|
22921
22907
|
* @param {number} [limit]
|
|
@@ -22923,8 +22909,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
22923
22909
|
* @param {*} [options] Override http request option.
|
|
22924
22910
|
* @throws {RequiredError}
|
|
22925
22911
|
*/
|
|
22926
|
-
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string,
|
|
22927
|
-
return localVarFp.apiV1DoctorsDoctorIdPortfoliosGet(doctorId,
|
|
22912
|
+
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string, portfolioId?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorPortfoliosModel> {
|
|
22913
|
+
return localVarFp.apiV1DoctorsDoctorIdPortfoliosGet(doctorId, doctorName, portfolioId, name, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
22928
22914
|
},
|
|
22929
22915
|
/**
|
|
22930
22916
|
*
|
|
@@ -23172,9 +23158,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
23172
23158
|
*
|
|
23173
23159
|
* @summary Delete DoctorCertificate.
|
|
23174
23160
|
* @param {string} doctorId
|
|
23175
|
-
* @param {string} [doctorId2]
|
|
23176
|
-
* @param {string} [id]
|
|
23177
23161
|
* @param {string} [doctorName]
|
|
23162
|
+
* @param {string} [certificateId]
|
|
23178
23163
|
* @param {string} [certificate]
|
|
23179
23164
|
* @param {Date} [activeFrom]
|
|
23180
23165
|
* @param {Date} [activeTo]
|
|
@@ -23185,8 +23170,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
23185
23170
|
* @throws {RequiredError}
|
|
23186
23171
|
* @memberof DoctorsApi
|
|
23187
23172
|
*/
|
|
23188
|
-
public apiV1DoctorsDoctorIdCertificatesGet(doctorId: string,
|
|
23189
|
-
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdCertificatesGet(doctorId,
|
|
23173
|
+
public apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string, certificateId?: string, certificate?: string, activeFrom?: Date, activeTo?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
23174
|
+
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdCertificatesGet(doctorId, doctorName, certificateId, certificate, activeFrom, activeTo, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
23190
23175
|
}
|
|
23191
23176
|
|
|
23192
23177
|
/**
|
|
@@ -23258,8 +23243,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
23258
23243
|
*
|
|
23259
23244
|
* @summary Get all DoctorEducations.
|
|
23260
23245
|
* @param {string} doctorId
|
|
23261
|
-
* @param {string} [doctorId2]
|
|
23262
23246
|
* @param {string} [doctorName]
|
|
23247
|
+
* @param {string} [educationId]
|
|
23263
23248
|
* @param {string} [institution]
|
|
23264
23249
|
* @param {string} [qualification]
|
|
23265
23250
|
* @param {Date} [graduationDate]
|
|
@@ -23270,8 +23255,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
23270
23255
|
* @throws {RequiredError}
|
|
23271
23256
|
* @memberof DoctorsApi
|
|
23272
23257
|
*/
|
|
23273
|
-
public apiV1DoctorsDoctorIdEducationsGet(doctorId: string,
|
|
23274
|
-
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdEducationsGet(doctorId,
|
|
23258
|
+
public apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string, educationId?: string, institution?: string, qualification?: string, graduationDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
23259
|
+
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdEducationsGet(doctorId, doctorName, educationId, institution, qualification, graduationDate, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
23275
23260
|
}
|
|
23276
23261
|
|
|
23277
23262
|
/**
|
|
@@ -23374,9 +23359,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
23374
23359
|
*
|
|
23375
23360
|
* @summary Get All DoctorPortfolios
|
|
23376
23361
|
* @param {string} doctorId
|
|
23377
|
-
* @param {string} [id]
|
|
23378
|
-
* @param {string} [doctorId2]
|
|
23379
23362
|
* @param {string} [doctorName]
|
|
23363
|
+
* @param {string} [portfolioId]
|
|
23380
23364
|
* @param {string} [name]
|
|
23381
23365
|
* @param {number} [page]
|
|
23382
23366
|
* @param {number} [limit]
|
|
@@ -23385,8 +23369,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
23385
23369
|
* @throws {RequiredError}
|
|
23386
23370
|
* @memberof DoctorsApi
|
|
23387
23371
|
*/
|
|
23388
|
-
public apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string,
|
|
23389
|
-
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdPortfoliosGet(doctorId,
|
|
23372
|
+
public apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string, portfolioId?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
23373
|
+
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdPortfoliosGet(doctorId, doctorName, portfolioId, name, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
23390
23374
|
}
|
|
23391
23375
|
|
|
23392
23376
|
/**
|