ch-admin-api-client-typescript 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.js CHANGED
@@ -12430,6 +12430,8 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
12430
12430
  * @param {string} [languageCode]
12431
12431
  * @param {boolean} [returnDefaultValue]
12432
12432
  * @param {Array<string>} [ids]
12433
+ * @param {string} [specialtyId]
12434
+ * @param {boolean} [consultationEnabled]
12433
12435
  * @param {string} [id]
12434
12436
  * @param {string} [fullname]
12435
12437
  * @param {string} [email]
@@ -12443,7 +12445,7 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
12443
12445
  * @param {*} [options] Override http request option.
12444
12446
  * @throws {RequiredError}
12445
12447
  */
12446
- apiV1DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
12448
+ apiV1DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
12447
12449
  if (options === void 0) { options = {}; }
12448
12450
  return __awaiter(_this, void 0, void 0, function () {
12449
12451
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -12477,6 +12479,12 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
12477
12479
  if (ids) {
12478
12480
  localVarQueryParameter['Ids'] = ids;
12479
12481
  }
12482
+ if (specialtyId !== undefined) {
12483
+ localVarQueryParameter['SpecialtyId'] = specialtyId;
12484
+ }
12485
+ if (consultationEnabled !== undefined) {
12486
+ localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
12487
+ }
12480
12488
  if (id !== undefined) {
12481
12489
  localVarQueryParameter['Id'] = id;
12482
12490
  }
@@ -12573,6 +12581,8 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
12573
12581
  * @param {string} [languageCode]
12574
12582
  * @param {boolean} [returnDefaultValue]
12575
12583
  * @param {Array<string>} [ids]
12584
+ * @param {string} [specialtyId]
12585
+ * @param {boolean} [consultationEnabled]
12576
12586
  * @param {string} [id]
12577
12587
  * @param {string} [fullname]
12578
12588
  * @param {string} [email]
@@ -12586,7 +12596,7 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
12586
12596
  * @param {*} [options] Override http request option.
12587
12597
  * @throws {RequiredError}
12588
12598
  */
12589
- apiV1DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
12599
+ apiV1DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
12590
12600
  if (options === void 0) { options = {}; }
12591
12601
  return __awaiter(_this, void 0, void 0, function () {
12592
12602
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -12620,6 +12630,12 @@ exports.DoctorsApiAxiosParamCreator = function (configuration) {
12620
12630
  if (ids) {
12621
12631
  localVarQueryParameter['Ids'] = ids;
12622
12632
  }
12633
+ if (specialtyId !== undefined) {
12634
+ localVarQueryParameter['SpecialtyId'] = specialtyId;
12635
+ }
12636
+ if (consultationEnabled !== undefined) {
12637
+ localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
12638
+ }
12623
12639
  if (id !== undefined) {
12624
12640
  localVarQueryParameter['Id'] = id;
12625
12641
  }
@@ -13439,6 +13455,8 @@ exports.DoctorsApiFp = function (configuration) {
13439
13455
  * @param {string} [languageCode]
13440
13456
  * @param {boolean} [returnDefaultValue]
13441
13457
  * @param {Array<string>} [ids]
13458
+ * @param {string} [specialtyId]
13459
+ * @param {boolean} [consultationEnabled]
13442
13460
  * @param {string} [id]
13443
13461
  * @param {string} [fullname]
13444
13462
  * @param {string} [email]
@@ -13452,12 +13470,12 @@ exports.DoctorsApiFp = function (configuration) {
13452
13470
  * @param {*} [options] Override http request option.
13453
13471
  * @throws {RequiredError}
13454
13472
  */
13455
- apiV1DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
13473
+ apiV1DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
13456
13474
  return __awaiter(this, void 0, void 0, function () {
13457
13475
  var localVarAxiosArgs;
13458
13476
  return __generator(this, function (_a) {
13459
13477
  switch (_a.label) {
13460
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options)];
13478
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options)];
13461
13479
  case 1:
13462
13480
  localVarAxiosArgs = _a.sent();
13463
13481
  return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -13492,6 +13510,8 @@ exports.DoctorsApiFp = function (configuration) {
13492
13510
  * @param {string} [languageCode]
13493
13511
  * @param {boolean} [returnDefaultValue]
13494
13512
  * @param {Array<string>} [ids]
13513
+ * @param {string} [specialtyId]
13514
+ * @param {boolean} [consultationEnabled]
13495
13515
  * @param {string} [id]
13496
13516
  * @param {string} [fullname]
13497
13517
  * @param {string} [email]
@@ -13505,12 +13525,12 @@ exports.DoctorsApiFp = function (configuration) {
13505
13525
  * @param {*} [options] Override http request option.
13506
13526
  * @throws {RequiredError}
13507
13527
  */
13508
- apiV1DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
13528
+ apiV1DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
13509
13529
  return __awaiter(this, void 0, void 0, function () {
13510
13530
  var localVarAxiosArgs;
13511
13531
  return __generator(this, function (_a) {
13512
13532
  switch (_a.label) {
13513
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options)];
13533
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options)];
13514
13534
  case 1:
13515
13535
  localVarAxiosArgs = _a.sent();
13516
13536
  return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -13941,6 +13961,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
13941
13961
  * @param {string} [languageCode]
13942
13962
  * @param {boolean} [returnDefaultValue]
13943
13963
  * @param {Array<string>} [ids]
13964
+ * @param {string} [specialtyId]
13965
+ * @param {boolean} [consultationEnabled]
13944
13966
  * @param {string} [id]
13945
13967
  * @param {string} [fullname]
13946
13968
  * @param {string} [email]
@@ -13954,8 +13976,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
13954
13976
  * @param {*} [options] Override http request option.
13955
13977
  * @throws {RequiredError}
13956
13978
  */
13957
- apiV1DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
13958
- return localVarFp.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
13979
+ apiV1DoctorsGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
13980
+ return localVarFp.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
13959
13981
  },
13960
13982
  /**
13961
13983
  *
@@ -13974,6 +13996,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
13974
13996
  * @param {string} [languageCode]
13975
13997
  * @param {boolean} [returnDefaultValue]
13976
13998
  * @param {Array<string>} [ids]
13999
+ * @param {string} [specialtyId]
14000
+ * @param {boolean} [consultationEnabled]
13977
14001
  * @param {string} [id]
13978
14002
  * @param {string} [fullname]
13979
14003
  * @param {string} [email]
@@ -13987,8 +14011,8 @@ exports.DoctorsApiFactory = function (configuration, basePath, axios) {
13987
14011
  * @param {*} [options] Override http request option.
13988
14012
  * @throws {RequiredError}
13989
14013
  */
13990
- apiV1DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
13991
- return localVarFp.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
14014
+ apiV1DoctorsSimpleGet: function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
14015
+ return localVarFp.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
13992
14016
  },
13993
14017
  /**
13994
14018
  *
@@ -14471,6 +14495,8 @@ var DoctorsApi = /** @class */ (function (_super) {
14471
14495
  * @param {string} [languageCode]
14472
14496
  * @param {boolean} [returnDefaultValue]
14473
14497
  * @param {Array<string>} [ids]
14498
+ * @param {string} [specialtyId]
14499
+ * @param {boolean} [consultationEnabled]
14474
14500
  * @param {string} [id]
14475
14501
  * @param {string} [fullname]
14476
14502
  * @param {string} [email]
@@ -14485,9 +14511,9 @@ var DoctorsApi = /** @class */ (function (_super) {
14485
14511
  * @throws {RequiredError}
14486
14512
  * @memberof DoctorsApi
14487
14513
  */
14488
- DoctorsApi.prototype.apiV1DoctorsGet = function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
14514
+ DoctorsApi.prototype.apiV1DoctorsGet = function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
14489
14515
  var _this = this;
14490
- return exports.DoctorsApiFp(this.configuration).apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
14516
+ return exports.DoctorsApiFp(this.configuration).apiV1DoctorsGet(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); });
14491
14517
  };
14492
14518
  /**
14493
14519
  *
@@ -14508,6 +14534,8 @@ var DoctorsApi = /** @class */ (function (_super) {
14508
14534
  * @param {string} [languageCode]
14509
14535
  * @param {boolean} [returnDefaultValue]
14510
14536
  * @param {Array<string>} [ids]
14537
+ * @param {string} [specialtyId]
14538
+ * @param {boolean} [consultationEnabled]
14511
14539
  * @param {string} [id]
14512
14540
  * @param {string} [fullname]
14513
14541
  * @param {string} [email]
@@ -14522,9 +14550,9 @@ var DoctorsApi = /** @class */ (function (_super) {
14522
14550
  * @throws {RequiredError}
14523
14551
  * @memberof DoctorsApi
14524
14552
  */
14525
- DoctorsApi.prototype.apiV1DoctorsSimpleGet = function (hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
14553
+ DoctorsApi.prototype.apiV1DoctorsSimpleGet = function (hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
14526
14554
  var _this = this;
14527
- return exports.DoctorsApiFp(this.configuration).apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
14555
+ return exports.DoctorsApiFp(this.configuration).apiV1DoctorsSimpleGet(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); });
14528
14556
  };
14529
14557
  /**
14530
14558
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-admin-api-client-typescript",
3
- "version": "2.8.1",
3
+ "version": "2.8.2",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital admin",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/api.ts CHANGED
@@ -27238,6 +27238,8 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
27238
27238
  * @param {string} [languageCode]
27239
27239
  * @param {boolean} [returnDefaultValue]
27240
27240
  * @param {Array<string>} [ids]
27241
+ * @param {string} [specialtyId]
27242
+ * @param {boolean} [consultationEnabled]
27241
27243
  * @param {string} [id]
27242
27244
  * @param {string} [fullname]
27243
27245
  * @param {string} [email]
@@ -27251,7 +27253,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
27251
27253
  * @param {*} [options] Override http request option.
27252
27254
  * @throws {RequiredError}
27253
27255
  */
27254
- apiV1DoctorsGet: 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> => {
27256
+ apiV1DoctorsGet: 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> => {
27255
27257
  const localVarPath = `/api/v1/doctors`;
27256
27258
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
27257
27259
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -27284,6 +27286,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
27284
27286
  localVarQueryParameter['Ids'] = ids;
27285
27287
  }
27286
27288
 
27289
+ if (specialtyId !== undefined) {
27290
+ localVarQueryParameter['SpecialtyId'] = specialtyId;
27291
+ }
27292
+
27293
+ if (consultationEnabled !== undefined) {
27294
+ localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
27295
+ }
27296
+
27287
27297
  if (id !== undefined) {
27288
27298
  localVarQueryParameter['Id'] = id;
27289
27299
  }
@@ -27386,6 +27396,8 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
27386
27396
  * @param {string} [languageCode]
27387
27397
  * @param {boolean} [returnDefaultValue]
27388
27398
  * @param {Array<string>} [ids]
27399
+ * @param {string} [specialtyId]
27400
+ * @param {boolean} [consultationEnabled]
27389
27401
  * @param {string} [id]
27390
27402
  * @param {string} [fullname]
27391
27403
  * @param {string} [email]
@@ -27399,7 +27411,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
27399
27411
  * @param {*} [options] Override http request option.
27400
27412
  * @throws {RequiredError}
27401
27413
  */
27402
- apiV1DoctorsSimpleGet: 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> => {
27414
+ apiV1DoctorsSimpleGet: 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> => {
27403
27415
  const localVarPath = `/api/v1/doctors/simple`;
27404
27416
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
27405
27417
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -27432,6 +27444,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
27432
27444
  localVarQueryParameter['Ids'] = ids;
27433
27445
  }
27434
27446
 
27447
+ if (specialtyId !== undefined) {
27448
+ localVarQueryParameter['SpecialtyId'] = specialtyId;
27449
+ }
27450
+
27451
+ if (consultationEnabled !== undefined) {
27452
+ localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
27453
+ }
27454
+
27435
27455
  if (id !== undefined) {
27436
27456
  localVarQueryParameter['Id'] = id;
27437
27457
  }
@@ -27971,6 +27991,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
27971
27991
  * @param {string} [languageCode]
27972
27992
  * @param {boolean} [returnDefaultValue]
27973
27993
  * @param {Array<string>} [ids]
27994
+ * @param {string} [specialtyId]
27995
+ * @param {boolean} [consultationEnabled]
27974
27996
  * @param {string} [id]
27975
27997
  * @param {string} [fullname]
27976
27998
  * @param {string} [email]
@@ -27984,8 +28006,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
27984
28006
  * @param {*} [options] Override http request option.
27985
28007
  * @throws {RequiredError}
27986
28008
  */
27987
- async apiV1DoctorsGet(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>> {
27988
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
28009
+ async apiV1DoctorsGet(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>> {
28010
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
27989
28011
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
27990
28012
  },
27991
28013
  /**
@@ -28006,6 +28028,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
28006
28028
  * @param {string} [languageCode]
28007
28029
  * @param {boolean} [returnDefaultValue]
28008
28030
  * @param {Array<string>} [ids]
28031
+ * @param {string} [specialtyId]
28032
+ * @param {boolean} [consultationEnabled]
28009
28033
  * @param {string} [id]
28010
28034
  * @param {string} [fullname]
28011
28035
  * @param {string} [email]
@@ -28019,8 +28043,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
28019
28043
  * @param {*} [options] Override http request option.
28020
28044
  * @throws {RequiredError}
28021
28045
  */
28022
- async apiV1DoctorsSimpleGet(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>> {
28023
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
28046
+ async apiV1DoctorsSimpleGet(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>> {
28047
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
28024
28048
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
28025
28049
  },
28026
28050
  /**
@@ -28438,6 +28462,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
28438
28462
  * @param {string} [languageCode]
28439
28463
  * @param {boolean} [returnDefaultValue]
28440
28464
  * @param {Array<string>} [ids]
28465
+ * @param {string} [specialtyId]
28466
+ * @param {boolean} [consultationEnabled]
28441
28467
  * @param {string} [id]
28442
28468
  * @param {string} [fullname]
28443
28469
  * @param {string} [email]
@@ -28451,8 +28477,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
28451
28477
  * @param {*} [options] Override http request option.
28452
28478
  * @throws {RequiredError}
28453
28479
  */
28454
- apiV1DoctorsGet(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> {
28455
- return localVarFp.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
28480
+ apiV1DoctorsGet(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> {
28481
+ return localVarFp.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
28456
28482
  },
28457
28483
  /**
28458
28484
  *
@@ -28471,6 +28497,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
28471
28497
  * @param {string} [languageCode]
28472
28498
  * @param {boolean} [returnDefaultValue]
28473
28499
  * @param {Array<string>} [ids]
28500
+ * @param {string} [specialtyId]
28501
+ * @param {boolean} [consultationEnabled]
28474
28502
  * @param {string} [id]
28475
28503
  * @param {string} [fullname]
28476
28504
  * @param {string} [email]
@@ -28484,8 +28512,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
28484
28512
  * @param {*} [options] Override http request option.
28485
28513
  * @throws {RequiredError}
28486
28514
  */
28487
- apiV1DoctorsSimpleGet(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> {
28488
- return localVarFp.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
28515
+ apiV1DoctorsSimpleGet(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> {
28516
+ return localVarFp.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
28489
28517
  },
28490
28518
  /**
28491
28519
  *
@@ -28965,6 +28993,8 @@ export class DoctorsApi extends BaseAPI {
28965
28993
  * @param {string} [languageCode]
28966
28994
  * @param {boolean} [returnDefaultValue]
28967
28995
  * @param {Array<string>} [ids]
28996
+ * @param {string} [specialtyId]
28997
+ * @param {boolean} [consultationEnabled]
28968
28998
  * @param {string} [id]
28969
28999
  * @param {string} [fullname]
28970
29000
  * @param {string} [email]
@@ -28979,8 +29009,8 @@ export class DoctorsApi extends BaseAPI {
28979
29009
  * @throws {RequiredError}
28980
29010
  * @memberof DoctorsApi
28981
29011
  */
28982
- public apiV1DoctorsGet(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) {
28983
- return DoctorsApiFp(this.configuration).apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
29012
+ public apiV1DoctorsGet(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) {
29013
+ return DoctorsApiFp(this.configuration).apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
28984
29014
  }
28985
29015
 
28986
29016
  /**
@@ -29002,6 +29032,8 @@ export class DoctorsApi extends BaseAPI {
29002
29032
  * @param {string} [languageCode]
29003
29033
  * @param {boolean} [returnDefaultValue]
29004
29034
  * @param {Array<string>} [ids]
29035
+ * @param {string} [specialtyId]
29036
+ * @param {boolean} [consultationEnabled]
29005
29037
  * @param {string} [id]
29006
29038
  * @param {string} [fullname]
29007
29039
  * @param {string} [email]
@@ -29016,8 +29048,8 @@ export class DoctorsApi extends BaseAPI {
29016
29048
  * @throws {RequiredError}
29017
29049
  * @memberof DoctorsApi
29018
29050
  */
29019
- public apiV1DoctorsSimpleGet(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) {
29020
- return DoctorsApiFp(this.configuration).apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
29051
+ public apiV1DoctorsSimpleGet(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) {
29052
+ return DoctorsApiFp(this.configuration).apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
29021
29053
  }
29022
29054
 
29023
29055
  /**