ch-admin-api-client-typescript 2.1.9 → 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 +26 -34
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +42 -56
- package/package.json +1 -1
- package/src/api.ts +47 -63
package/src/api.ts
CHANGED
|
@@ -7929,7 +7929,7 @@ export interface HospitalServiceItemModel {
|
|
|
7929
7929
|
* @type {string}
|
|
7930
7930
|
* @memberof HospitalServiceItemModel
|
|
7931
7931
|
*/
|
|
7932
|
-
'serviceCategoryId'?: string;
|
|
7932
|
+
'serviceCategoryId'?: string | null;
|
|
7933
7933
|
/**
|
|
7934
7934
|
*
|
|
7935
7935
|
* @type {string}
|
|
@@ -8062,7 +8062,7 @@ export interface HospitalServiceModel {
|
|
|
8062
8062
|
* @type {string}
|
|
8063
8063
|
* @memberof HospitalServiceModel
|
|
8064
8064
|
*/
|
|
8065
|
-
'serviceCategoryId'?: string;
|
|
8065
|
+
'serviceCategoryId'?: string | null;
|
|
8066
8066
|
/**
|
|
8067
8067
|
*
|
|
8068
8068
|
* @type {string}
|
|
@@ -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
|
/**
|