ch-api-client-typescript2 2.8.1 → 2.8.2
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 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +42 -14
- package/package.json +1 -1
- package/src/api.ts +46 -14
package/lib/api.js
CHANGED
|
@@ -7105,6 +7105,8 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
7105
7105
|
* @param {string} [languageCode]
|
|
7106
7106
|
* @param {boolean} [returnDefaultValue]
|
|
7107
7107
|
* @param {Array<string>} [ids]
|
|
7108
|
+
* @param {string} [specialtyId]
|
|
7109
|
+
* @param {boolean} [consultationEnabled]
|
|
7108
7110
|
* @param {string} [id]
|
|
7109
7111
|
* @param {string} [fullname]
|
|
7110
7112
|
* @param {string} [email]
|
|
@@ -7118,7 +7120,7 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
7118
7120
|
* @param {*} [options] Override http request option.
|
|
7119
7121
|
* @throws {RequiredError}
|
|
7120
7122
|
*/
|
|
7121
|
-
apiV2DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7123
|
+
apiV2DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7122
7124
|
if (options === void 0) { options = {}; }
|
|
7123
7125
|
return __awaiter(_this, void 0, void 0, function () {
|
|
7124
7126
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -7143,6 +7145,12 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
7143
7145
|
if (ids) {
|
|
7144
7146
|
localVarQueryParameter['Ids'] = ids;
|
|
7145
7147
|
}
|
|
7148
|
+
if (specialtyId !== undefined) {
|
|
7149
|
+
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
7150
|
+
}
|
|
7151
|
+
if (consultationEnabled !== undefined) {
|
|
7152
|
+
localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
|
|
7153
|
+
}
|
|
7146
7154
|
if (id !== undefined) {
|
|
7147
7155
|
localVarQueryParameter['Id'] = id;
|
|
7148
7156
|
}
|
|
@@ -7196,6 +7204,8 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
7196
7204
|
* @param {string} [languageCode]
|
|
7197
7205
|
* @param {boolean} [returnDefaultValue]
|
|
7198
7206
|
* @param {Array<string>} [ids]
|
|
7207
|
+
* @param {string} [specialtyId]
|
|
7208
|
+
* @param {boolean} [consultationEnabled]
|
|
7199
7209
|
* @param {string} [id]
|
|
7200
7210
|
* @param {string} [fullname]
|
|
7201
7211
|
* @param {string} [email]
|
|
@@ -7209,7 +7219,7 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
7209
7219
|
* @param {*} [options] Override http request option.
|
|
7210
7220
|
* @throws {RequiredError}
|
|
7211
7221
|
*/
|
|
7212
|
-
apiV2DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7222
|
+
apiV2DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7213
7223
|
if (options === void 0) { options = {}; }
|
|
7214
7224
|
return __awaiter(_this, void 0, void 0, function () {
|
|
7215
7225
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -7234,6 +7244,12 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
|
|
|
7234
7244
|
if (ids) {
|
|
7235
7245
|
localVarQueryParameter['Ids'] = ids;
|
|
7236
7246
|
}
|
|
7247
|
+
if (specialtyId !== undefined) {
|
|
7248
|
+
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
7249
|
+
}
|
|
7250
|
+
if (consultationEnabled !== undefined) {
|
|
7251
|
+
localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
|
|
7252
|
+
}
|
|
7237
7253
|
if (id !== undefined) {
|
|
7238
7254
|
localVarQueryParameter['Id'] = id;
|
|
7239
7255
|
}
|
|
@@ -7640,6 +7656,8 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
7640
7656
|
* @param {string} [languageCode]
|
|
7641
7657
|
* @param {boolean} [returnDefaultValue]
|
|
7642
7658
|
* @param {Array<string>} [ids]
|
|
7659
|
+
* @param {string} [specialtyId]
|
|
7660
|
+
* @param {boolean} [consultationEnabled]
|
|
7643
7661
|
* @param {string} [id]
|
|
7644
7662
|
* @param {string} [fullname]
|
|
7645
7663
|
* @param {string} [email]
|
|
@@ -7653,12 +7671,12 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
7653
7671
|
* @param {*} [options] Override http request option.
|
|
7654
7672
|
* @throws {RequiredError}
|
|
7655
7673
|
*/
|
|
7656
|
-
apiV2DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7674
|
+
apiV2DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7657
7675
|
return __awaiter(this, void 0, void 0, function () {
|
|
7658
7676
|
var localVarAxiosArgs;
|
|
7659
7677
|
return __generator(this, function (_a) {
|
|
7660
7678
|
switch (_a.label) {
|
|
7661
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options)];
|
|
7679
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options)];
|
|
7662
7680
|
case 1:
|
|
7663
7681
|
localVarAxiosArgs = _a.sent();
|
|
7664
7682
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -7673,6 +7691,8 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
7673
7691
|
* @param {string} [languageCode]
|
|
7674
7692
|
* @param {boolean} [returnDefaultValue]
|
|
7675
7693
|
* @param {Array<string>} [ids]
|
|
7694
|
+
* @param {string} [specialtyId]
|
|
7695
|
+
* @param {boolean} [consultationEnabled]
|
|
7676
7696
|
* @param {string} [id]
|
|
7677
7697
|
* @param {string} [fullname]
|
|
7678
7698
|
* @param {string} [email]
|
|
@@ -7686,12 +7706,12 @@ exports.DoctorsApiFp = function (configuration) {
|
|
|
7686
7706
|
* @param {*} [options] Override http request option.
|
|
7687
7707
|
* @throws {RequiredError}
|
|
7688
7708
|
*/
|
|
7689
|
-
apiV2DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7709
|
+
apiV2DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7690
7710
|
return __awaiter(this, void 0, void 0, function () {
|
|
7691
7711
|
var localVarAxiosArgs;
|
|
7692
7712
|
return __generator(this, function (_a) {
|
|
7693
7713
|
switch (_a.label) {
|
|
7694
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options)];
|
|
7714
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options)];
|
|
7695
7715
|
case 1:
|
|
7696
7716
|
localVarAxiosArgs = _a.sent();
|
|
7697
7717
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -7910,6 +7930,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
7910
7930
|
* @param {string} [languageCode]
|
|
7911
7931
|
* @param {boolean} [returnDefaultValue]
|
|
7912
7932
|
* @param {Array<string>} [ids]
|
|
7933
|
+
* @param {string} [specialtyId]
|
|
7934
|
+
* @param {boolean} [consultationEnabled]
|
|
7913
7935
|
* @param {string} [id]
|
|
7914
7936
|
* @param {string} [fullname]
|
|
7915
7937
|
* @param {string} [email]
|
|
@@ -7923,8 +7945,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
7923
7945
|
* @param {*} [options] Override http request option.
|
|
7924
7946
|
* @throws {RequiredError}
|
|
7925
7947
|
*/
|
|
7926
|
-
apiV2DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7927
|
-
return localVarFp.apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
7948
|
+
apiV2DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7949
|
+
return localVarFp.apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
7928
7950
|
},
|
|
7929
7951
|
/**
|
|
7930
7952
|
*
|
|
@@ -7933,6 +7955,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
7933
7955
|
* @param {string} [languageCode]
|
|
7934
7956
|
* @param {boolean} [returnDefaultValue]
|
|
7935
7957
|
* @param {Array<string>} [ids]
|
|
7958
|
+
* @param {string} [specialtyId]
|
|
7959
|
+
* @param {boolean} [consultationEnabled]
|
|
7936
7960
|
* @param {string} [id]
|
|
7937
7961
|
* @param {string} [fullname]
|
|
7938
7962
|
* @param {string} [email]
|
|
@@ -7946,8 +7970,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
|
|
|
7946
7970
|
* @param {*} [options] Override http request option.
|
|
7947
7971
|
* @throws {RequiredError}
|
|
7948
7972
|
*/
|
|
7949
|
-
apiV2DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7950
|
-
return localVarFp.apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
7973
|
+
apiV2DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
7974
|
+
return localVarFp.apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
7951
7975
|
},
|
|
7952
7976
|
/**
|
|
7953
7977
|
*
|
|
@@ -8180,6 +8204,8 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
8180
8204
|
* @param {string} [languageCode]
|
|
8181
8205
|
* @param {boolean} [returnDefaultValue]
|
|
8182
8206
|
* @param {Array<string>} [ids]
|
|
8207
|
+
* @param {string} [specialtyId]
|
|
8208
|
+
* @param {boolean} [consultationEnabled]
|
|
8183
8209
|
* @param {string} [id]
|
|
8184
8210
|
* @param {string} [fullname]
|
|
8185
8211
|
* @param {string} [email]
|
|
@@ -8194,9 +8220,9 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
8194
8220
|
* @throws {RequiredError}
|
|
8195
8221
|
* @memberof DoctorsApi
|
|
8196
8222
|
*/
|
|
8197
|
-
DoctorsApi.prototype.apiV2DoctorsGet = function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
8223
|
+
DoctorsApi.prototype.apiV2DoctorsGet = function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
8198
8224
|
var _this = this;
|
|
8199
|
-
return exports.DoctorsApiFp(this.configuration).apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
8225
|
+
return exports.DoctorsApiFp(this.configuration).apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
8200
8226
|
};
|
|
8201
8227
|
/**
|
|
8202
8228
|
*
|
|
@@ -8205,6 +8231,8 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
8205
8231
|
* @param {string} [languageCode]
|
|
8206
8232
|
* @param {boolean} [returnDefaultValue]
|
|
8207
8233
|
* @param {Array<string>} [ids]
|
|
8234
|
+
* @param {string} [specialtyId]
|
|
8235
|
+
* @param {boolean} [consultationEnabled]
|
|
8208
8236
|
* @param {string} [id]
|
|
8209
8237
|
* @param {string} [fullname]
|
|
8210
8238
|
* @param {string} [email]
|
|
@@ -8219,9 +8247,9 @@ var DoctorsApi = /** @class */ (function (_super) {
|
|
|
8219
8247
|
* @throws {RequiredError}
|
|
8220
8248
|
* @memberof DoctorsApi
|
|
8221
8249
|
*/
|
|
8222
|
-
DoctorsApi.prototype.apiV2DoctorsSimpleGet = function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
8250
|
+
DoctorsApi.prototype.apiV2DoctorsSimpleGet = function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
8223
8251
|
var _this = this;
|
|
8224
|
-
return exports.DoctorsApiFp(this.configuration).apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
8252
|
+
return exports.DoctorsApiFp(this.configuration).apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
8225
8253
|
};
|
|
8226
8254
|
/**
|
|
8227
8255
|
*
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -19508,6 +19508,8 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
19508
19508
|
* @param {string} [languageCode]
|
|
19509
19509
|
* @param {boolean} [returnDefaultValue]
|
|
19510
19510
|
* @param {Array<string>} [ids]
|
|
19511
|
+
* @param {string} [specialtyId]
|
|
19512
|
+
* @param {boolean} [consultationEnabled]
|
|
19511
19513
|
* @param {string} [id]
|
|
19512
19514
|
* @param {string} [fullname]
|
|
19513
19515
|
* @param {string} [email]
|
|
@@ -19521,7 +19523,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
19521
19523
|
* @param {*} [options] Override http request option.
|
|
19522
19524
|
* @throws {RequiredError}
|
|
19523
19525
|
*/
|
|
19524
|
-
apiV2DoctorsGet: async (hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19526
|
+
apiV2DoctorsGet: async (hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19525
19527
|
const localVarPath = `/api/v2/doctors`;
|
|
19526
19528
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
19527
19529
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -19550,6 +19552,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
19550
19552
|
localVarQueryParameter['Ids'] = ids;
|
|
19551
19553
|
}
|
|
19552
19554
|
|
|
19555
|
+
if (specialtyId !== undefined) {
|
|
19556
|
+
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
19557
|
+
}
|
|
19558
|
+
|
|
19559
|
+
if (consultationEnabled !== undefined) {
|
|
19560
|
+
localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
|
|
19561
|
+
}
|
|
19562
|
+
|
|
19553
19563
|
if (id !== undefined) {
|
|
19554
19564
|
localVarQueryParameter['Id'] = id;
|
|
19555
19565
|
}
|
|
@@ -19614,6 +19624,8 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
19614
19624
|
* @param {string} [languageCode]
|
|
19615
19625
|
* @param {boolean} [returnDefaultValue]
|
|
19616
19626
|
* @param {Array<string>} [ids]
|
|
19627
|
+
* @param {string} [specialtyId]
|
|
19628
|
+
* @param {boolean} [consultationEnabled]
|
|
19617
19629
|
* @param {string} [id]
|
|
19618
19630
|
* @param {string} [fullname]
|
|
19619
19631
|
* @param {string} [email]
|
|
@@ -19627,7 +19639,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
19627
19639
|
* @param {*} [options] Override http request option.
|
|
19628
19640
|
* @throws {RequiredError}
|
|
19629
19641
|
*/
|
|
19630
|
-
apiV2DoctorsSimpleGet: async (hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19642
|
+
apiV2DoctorsSimpleGet: async (hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19631
19643
|
const localVarPath = `/api/v2/doctors/simple`;
|
|
19632
19644
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
19633
19645
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -19656,6 +19668,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
19656
19668
|
localVarQueryParameter['Ids'] = ids;
|
|
19657
19669
|
}
|
|
19658
19670
|
|
|
19671
|
+
if (specialtyId !== undefined) {
|
|
19672
|
+
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
19673
|
+
}
|
|
19674
|
+
|
|
19675
|
+
if (consultationEnabled !== undefined) {
|
|
19676
|
+
localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
|
|
19677
|
+
}
|
|
19678
|
+
|
|
19659
19679
|
if (id !== undefined) {
|
|
19660
19680
|
localVarQueryParameter['Id'] = id;
|
|
19661
19681
|
}
|
|
@@ -19960,6 +19980,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
19960
19980
|
* @param {string} [languageCode]
|
|
19961
19981
|
* @param {boolean} [returnDefaultValue]
|
|
19962
19982
|
* @param {Array<string>} [ids]
|
|
19983
|
+
* @param {string} [specialtyId]
|
|
19984
|
+
* @param {boolean} [consultationEnabled]
|
|
19963
19985
|
* @param {string} [id]
|
|
19964
19986
|
* @param {string} [fullname]
|
|
19965
19987
|
* @param {string} [email]
|
|
@@ -19973,8 +19995,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
19973
19995
|
* @param {*} [options] Override http request option.
|
|
19974
19996
|
* @throws {RequiredError}
|
|
19975
19997
|
*/
|
|
19976
|
-
async apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsModel>> {
|
|
19977
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
|
|
19998
|
+
async apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsModel>> {
|
|
19999
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
|
|
19978
20000
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
19979
20001
|
},
|
|
19980
20002
|
/**
|
|
@@ -19984,6 +20006,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
19984
20006
|
* @param {string} [languageCode]
|
|
19985
20007
|
* @param {boolean} [returnDefaultValue]
|
|
19986
20008
|
* @param {Array<string>} [ids]
|
|
20009
|
+
* @param {string} [specialtyId]
|
|
20010
|
+
* @param {boolean} [consultationEnabled]
|
|
19987
20011
|
* @param {string} [id]
|
|
19988
20012
|
* @param {string} [fullname]
|
|
19989
20013
|
* @param {string} [email]
|
|
@@ -19997,8 +20021,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
19997
20021
|
* @param {*} [options] Override http request option.
|
|
19998
20022
|
* @throws {RequiredError}
|
|
19999
20023
|
*/
|
|
20000
|
-
async apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsSimpleModel>> {
|
|
20001
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
|
|
20024
|
+
async apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsSimpleModel>> {
|
|
20025
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
|
|
20002
20026
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
20003
20027
|
},
|
|
20004
20028
|
/**
|
|
@@ -20204,6 +20228,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
20204
20228
|
* @param {string} [languageCode]
|
|
20205
20229
|
* @param {boolean} [returnDefaultValue]
|
|
20206
20230
|
* @param {Array<string>} [ids]
|
|
20231
|
+
* @param {string} [specialtyId]
|
|
20232
|
+
* @param {boolean} [consultationEnabled]
|
|
20207
20233
|
* @param {string} [id]
|
|
20208
20234
|
* @param {string} [fullname]
|
|
20209
20235
|
* @param {string} [email]
|
|
@@ -20217,8 +20243,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
20217
20243
|
* @param {*} [options] Override http request option.
|
|
20218
20244
|
* @throws {RequiredError}
|
|
20219
20245
|
*/
|
|
20220
|
-
apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorsModel> {
|
|
20221
|
-
return localVarFp.apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
20246
|
+
apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorsModel> {
|
|
20247
|
+
return localVarFp.apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
20222
20248
|
},
|
|
20223
20249
|
/**
|
|
20224
20250
|
*
|
|
@@ -20227,6 +20253,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
20227
20253
|
* @param {string} [languageCode]
|
|
20228
20254
|
* @param {boolean} [returnDefaultValue]
|
|
20229
20255
|
* @param {Array<string>} [ids]
|
|
20256
|
+
* @param {string} [specialtyId]
|
|
20257
|
+
* @param {boolean} [consultationEnabled]
|
|
20230
20258
|
* @param {string} [id]
|
|
20231
20259
|
* @param {string} [fullname]
|
|
20232
20260
|
* @param {string} [email]
|
|
@@ -20240,8 +20268,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
20240
20268
|
* @param {*} [options] Override http request option.
|
|
20241
20269
|
* @throws {RequiredError}
|
|
20242
20270
|
*/
|
|
20243
|
-
apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorsSimpleModel> {
|
|
20244
|
-
return localVarFp.apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
20271
|
+
apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorsSimpleModel> {
|
|
20272
|
+
return localVarFp.apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
20245
20273
|
},
|
|
20246
20274
|
/**
|
|
20247
20275
|
*
|
|
@@ -20471,6 +20499,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
20471
20499
|
* @param {string} [languageCode]
|
|
20472
20500
|
* @param {boolean} [returnDefaultValue]
|
|
20473
20501
|
* @param {Array<string>} [ids]
|
|
20502
|
+
* @param {string} [specialtyId]
|
|
20503
|
+
* @param {boolean} [consultationEnabled]
|
|
20474
20504
|
* @param {string} [id]
|
|
20475
20505
|
* @param {string} [fullname]
|
|
20476
20506
|
* @param {string} [email]
|
|
@@ -20485,8 +20515,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
20485
20515
|
* @throws {RequiredError}
|
|
20486
20516
|
* @memberof DoctorsApi
|
|
20487
20517
|
*/
|
|
20488
|
-
public apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
20489
|
-
return DoctorsApiFp(this.configuration).apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
20518
|
+
public apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
20519
|
+
return DoctorsApiFp(this.configuration).apiV2DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
20490
20520
|
}
|
|
20491
20521
|
|
|
20492
20522
|
/**
|
|
@@ -20496,6 +20526,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
20496
20526
|
* @param {string} [languageCode]
|
|
20497
20527
|
* @param {boolean} [returnDefaultValue]
|
|
20498
20528
|
* @param {Array<string>} [ids]
|
|
20529
|
+
* @param {string} [specialtyId]
|
|
20530
|
+
* @param {boolean} [consultationEnabled]
|
|
20499
20531
|
* @param {string} [id]
|
|
20500
20532
|
* @param {string} [fullname]
|
|
20501
20533
|
* @param {string} [email]
|
|
@@ -20510,8 +20542,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
20510
20542
|
* @throws {RequiredError}
|
|
20511
20543
|
* @memberof DoctorsApi
|
|
20512
20544
|
*/
|
|
20513
|
-
public apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
20514
|
-
return DoctorsApiFp(this.configuration).apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
20545
|
+
public apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
20546
|
+
return DoctorsApiFp(this.configuration).apiV2DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
20515
20547
|
}
|
|
20516
20548
|
|
|
20517
20549
|
/**
|