ch-api-client-typescript2 3.5.2 → 3.5.5

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
@@ -6364,6 +6364,9 @@ var DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
6364
6364
  * @param {string} [doctorId]
6365
6365
  * @param {string} [doctorName]
6366
6366
  * @param {string} [doctorSlug]
6367
+ * @param {string} [specialtyId]
6368
+ * @param {string} [exceptDoctorId]
6369
+ * @param {boolean} [consultationEnabled]
6367
6370
  * @param {string} [languageCode]
6368
6371
  * @param {number} [page]
6369
6372
  * @param {number} [limit]
@@ -6371,7 +6374,7 @@ var DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
6371
6374
  * @param {*} [options] Override http request option.
6372
6375
  * @throws {RequiredError}
6373
6376
  */
6374
- apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options) {
6377
+ apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options) {
6375
6378
  if (options === void 0) { options = {}; }
6376
6379
  return __awaiter(_this, void 0, void 0, function () {
6377
6380
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -6399,6 +6402,15 @@ var DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
6399
6402
  if (doctorSlug !== undefined) {
6400
6403
  localVarQueryParameter['DoctorSlug'] = doctorSlug;
6401
6404
  }
6405
+ if (specialtyId !== undefined) {
6406
+ localVarQueryParameter['SpecialtyId'] = specialtyId;
6407
+ }
6408
+ if (exceptDoctorId !== undefined) {
6409
+ localVarQueryParameter['ExceptDoctorId'] = exceptDoctorId;
6410
+ }
6411
+ if (consultationEnabled !== undefined) {
6412
+ localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
6413
+ }
6402
6414
  if (languageCode !== undefined) {
6403
6415
  localVarQueryParameter['LanguageCode'] = languageCode;
6404
6416
  }
@@ -6514,6 +6526,9 @@ var DoctorAffiliationsApiFp = function (configuration) {
6514
6526
  * @param {string} [doctorId]
6515
6527
  * @param {string} [doctorName]
6516
6528
  * @param {string} [doctorSlug]
6529
+ * @param {string} [specialtyId]
6530
+ * @param {string} [exceptDoctorId]
6531
+ * @param {boolean} [consultationEnabled]
6517
6532
  * @param {string} [languageCode]
6518
6533
  * @param {number} [page]
6519
6534
  * @param {number} [limit]
@@ -6521,12 +6536,12 @@ var DoctorAffiliationsApiFp = function (configuration) {
6521
6536
  * @param {*} [options] Override http request option.
6522
6537
  * @throws {RequiredError}
6523
6538
  */
6524
- apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options) {
6539
+ apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options) {
6525
6540
  return __awaiter(this, void 0, void 0, function () {
6526
6541
  var localVarAxiosArgs;
6527
6542
  return __generator(this, function (_a) {
6528
6543
  switch (_a.label) {
6529
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options)];
6544
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options)];
6530
6545
  case 1:
6531
6546
  localVarAxiosArgs = _a.sent();
6532
6547
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -6593,6 +6608,9 @@ var DoctorAffiliationsApiFactory = function (configuration, basePath, axios) {
6593
6608
  * @param {string} [doctorId]
6594
6609
  * @param {string} [doctorName]
6595
6610
  * @param {string} [doctorSlug]
6611
+ * @param {string} [specialtyId]
6612
+ * @param {string} [exceptDoctorId]
6613
+ * @param {boolean} [consultationEnabled]
6596
6614
  * @param {string} [languageCode]
6597
6615
  * @param {number} [page]
6598
6616
  * @param {number} [limit]
@@ -6600,8 +6618,8 @@ var DoctorAffiliationsApiFactory = function (configuration, basePath, axios) {
6600
6618
  * @param {*} [options] Override http request option.
6601
6619
  * @throws {RequiredError}
6602
6620
  */
6603
- apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options) {
6604
- return localVarFp.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
6621
+ apiV2DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options) {
6622
+ return localVarFp.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
6605
6623
  },
6606
6624
  /**
6607
6625
  *
@@ -6646,6 +6664,9 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
6646
6664
  * @param {string} [doctorId]
6647
6665
  * @param {string} [doctorName]
6648
6666
  * @param {string} [doctorSlug]
6667
+ * @param {string} [specialtyId]
6668
+ * @param {string} [exceptDoctorId]
6669
+ * @param {boolean} [consultationEnabled]
6649
6670
  * @param {string} [languageCode]
6650
6671
  * @param {number} [page]
6651
6672
  * @param {number} [limit]
@@ -6654,9 +6675,9 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
6654
6675
  * @throws {RequiredError}
6655
6676
  * @memberof DoctorAffiliationsApi
6656
6677
  */
6657
- DoctorAffiliationsApi.prototype.apiV2DoctoraffiliationsGet = function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options) {
6678
+ DoctorAffiliationsApi.prototype.apiV2DoctoraffiliationsGet = function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options) {
6658
6679
  var _this = this;
6659
- return (0, exports.DoctorAffiliationsApiFp)(this.configuration).apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
6680
+ return (0, exports.DoctorAffiliationsApiFp)(this.configuration).apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
6660
6681
  };
6661
6682
  /**
6662
6683
  *
@@ -15439,6 +15460,7 @@ var ServiceReviewsApiAxiosParamCreator = function (configuration) {
15439
15460
  *
15440
15461
  * @summary Get all ServiceReviews.
15441
15462
  * @param {string} [id]
15463
+ * @param {string} [hospitalId]
15442
15464
  * @param {string} [serviceId]
15443
15465
  * @param {string} [serviceName]
15444
15466
  * @param {string} [patientId]
@@ -15455,7 +15477,7 @@ var ServiceReviewsApiAxiosParamCreator = function (configuration) {
15455
15477
  * @param {*} [options] Override http request option.
15456
15478
  * @throws {RequiredError}
15457
15479
  */
15458
- apiV2ServicereviewsGet: function (id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
15480
+ apiV2ServicereviewsGet: function (id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
15459
15481
  if (options === void 0) { options = {}; }
15460
15482
  return __awaiter(_this, void 0, void 0, function () {
15461
15483
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -15471,6 +15493,9 @@ var ServiceReviewsApiAxiosParamCreator = function (configuration) {
15471
15493
  if (id !== undefined) {
15472
15494
  localVarQueryParameter['Id'] = id;
15473
15495
  }
15496
+ if (hospitalId !== undefined) {
15497
+ localVarQueryParameter['HospitalId'] = hospitalId;
15498
+ }
15474
15499
  if (serviceId !== undefined) {
15475
15500
  localVarQueryParameter['ServiceId'] = serviceId;
15476
15501
  }
@@ -15938,6 +15963,7 @@ var ServiceReviewsApiFp = function (configuration) {
15938
15963
  *
15939
15964
  * @summary Get all ServiceReviews.
15940
15965
  * @param {string} [id]
15966
+ * @param {string} [hospitalId]
15941
15967
  * @param {string} [serviceId]
15942
15968
  * @param {string} [serviceName]
15943
15969
  * @param {string} [patientId]
@@ -15954,12 +15980,12 @@ var ServiceReviewsApiFp = function (configuration) {
15954
15980
  * @param {*} [options] Override http request option.
15955
15981
  * @throws {RequiredError}
15956
15982
  */
15957
- apiV2ServicereviewsGet: function (id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
15983
+ apiV2ServicereviewsGet: function (id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
15958
15984
  return __awaiter(this, void 0, void 0, function () {
15959
15985
  var localVarAxiosArgs;
15960
15986
  return __generator(this, function (_a) {
15961
15987
  switch (_a.label) {
15962
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options)];
15988
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options)];
15963
15989
  case 1:
15964
15990
  localVarAxiosArgs = _a.sent();
15965
15991
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -16172,6 +16198,7 @@ var ServiceReviewsApiFactory = function (configuration, basePath, axios) {
16172
16198
  *
16173
16199
  * @summary Get all ServiceReviews.
16174
16200
  * @param {string} [id]
16201
+ * @param {string} [hospitalId]
16175
16202
  * @param {string} [serviceId]
16176
16203
  * @param {string} [serviceName]
16177
16204
  * @param {string} [patientId]
@@ -16188,8 +16215,8 @@ var ServiceReviewsApiFactory = function (configuration, basePath, axios) {
16188
16215
  * @param {*} [options] Override http request option.
16189
16216
  * @throws {RequiredError}
16190
16217
  */
16191
- apiV2ServicereviewsGet: function (id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
16192
- return localVarFp.apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
16218
+ apiV2ServicereviewsGet: function (id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
16219
+ return localVarFp.apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
16193
16220
  },
16194
16221
  /**
16195
16222
  *
@@ -16310,6 +16337,7 @@ var ServiceReviewsApi = /** @class */ (function (_super) {
16310
16337
  *
16311
16338
  * @summary Get all ServiceReviews.
16312
16339
  * @param {string} [id]
16340
+ * @param {string} [hospitalId]
16313
16341
  * @param {string} [serviceId]
16314
16342
  * @param {string} [serviceName]
16315
16343
  * @param {string} [patientId]
@@ -16327,9 +16355,9 @@ var ServiceReviewsApi = /** @class */ (function (_super) {
16327
16355
  * @throws {RequiredError}
16328
16356
  * @memberof ServiceReviewsApi
16329
16357
  */
16330
- ServiceReviewsApi.prototype.apiV2ServicereviewsGet = function (id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
16358
+ ServiceReviewsApi.prototype.apiV2ServicereviewsGet = function (id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options) {
16331
16359
  var _this = this;
16332
- return (0, exports.ServiceReviewsApiFp)(this.configuration).apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
16360
+ return (0, exports.ServiceReviewsApiFp)(this.configuration).apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
16333
16361
  };
16334
16362
  /**
16335
16363
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-api-client-typescript2",
3
- "version": "3.5.2",
3
+ "version": "3.5.5",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/api.ts CHANGED
@@ -571,6 +571,12 @@ export interface ArticleItemModel {
571
571
  * @memberof ArticleItemModel
572
572
  */
573
573
  'slug'?: string | null;
574
+ /**
575
+ *
576
+ * @type {string}
577
+ * @memberof ArticleItemModel
578
+ */
579
+ 'description'?: string | null;
574
580
  /**
575
581
  *
576
582
  * @type {boolean}
@@ -668,6 +674,12 @@ export interface ArticleModel {
668
674
  * @memberof ArticleModel
669
675
  */
670
676
  'slug'?: string | null;
677
+ /**
678
+ *
679
+ * @type {string}
680
+ * @memberof ArticleModel
681
+ */
682
+ 'description'?: string | null;
671
683
  /**
672
684
  *
673
685
  * @type {boolean}
@@ -734,12 +746,6 @@ export interface ArticleModel {
734
746
  * @memberof ArticleModel
735
747
  */
736
748
  'auditableEntity'?: AuditableEntity;
737
- /**
738
- *
739
- * @type {string}
740
- * @memberof ArticleModel
741
- */
742
- 'description'?: string | null;
743
749
  /**
744
750
  *
745
751
  * @type {string}
@@ -3063,6 +3069,12 @@ export interface DealItemModel {
3063
3069
  * @memberof DealItemModel
3064
3070
  */
3065
3071
  'slug'?: string | null;
3072
+ /**
3073
+ *
3074
+ * @type {string}
3075
+ * @memberof DealItemModel
3076
+ */
3077
+ 'description'?: string | null;
3066
3078
  /**
3067
3079
  *
3068
3080
  * @type {boolean}
@@ -3105,6 +3117,18 @@ export interface DealItemModel {
3105
3117
  * @memberof DealItemModel
3106
3118
  */
3107
3119
  'photoThumbnail'?: string | null;
3120
+ /**
3121
+ *
3122
+ * @type {number}
3123
+ * @memberof DealItemModel
3124
+ */
3125
+ 'lowestPrice'?: number;
3126
+ /**
3127
+ *
3128
+ * @type {number}
3129
+ * @memberof DealItemModel
3130
+ */
3131
+ 'dealServicesCount'?: number;
3108
3132
  /**
3109
3133
  *
3110
3134
  * @type {number}
@@ -3185,6 +3209,12 @@ export interface DealModel {
3185
3209
  * @memberof DealModel
3186
3210
  */
3187
3211
  'slug'?: string | null;
3212
+ /**
3213
+ *
3214
+ * @type {string}
3215
+ * @memberof DealModel
3216
+ */
3217
+ 'description'?: string | null;
3188
3218
  /**
3189
3219
  *
3190
3220
  * @type {boolean}
@@ -3232,19 +3262,25 @@ export interface DealModel {
3232
3262
  * @type {number}
3233
3263
  * @memberof DealModel
3234
3264
  */
3235
- 'order'?: number;
3265
+ 'lowestPrice'?: number;
3236
3266
  /**
3237
3267
  *
3238
- * @type {AuditableEntity}
3268
+ * @type {number}
3239
3269
  * @memberof DealModel
3240
3270
  */
3241
- 'auditableEntity'?: AuditableEntity;
3271
+ 'dealServicesCount'?: number;
3242
3272
  /**
3243
3273
  *
3244
- * @type {string}
3274
+ * @type {number}
3245
3275
  * @memberof DealModel
3246
3276
  */
3247
- 'description'?: string | null;
3277
+ 'order'?: number;
3278
+ /**
3279
+ *
3280
+ * @type {AuditableEntity}
3281
+ * @memberof DealModel
3282
+ */
3283
+ 'auditableEntity'?: AuditableEntity;
3248
3284
  /**
3249
3285
  *
3250
3286
  * @type {string}
@@ -3668,6 +3704,12 @@ export interface DoctorAffiliationItemModel {
3668
3704
  * @memberof DoctorAffiliationItemModel
3669
3705
  */
3670
3706
  'hospitalSlug'?: string | null;
3707
+ /**
3708
+ *
3709
+ * @type {string}
3710
+ * @memberof DoctorAffiliationItemModel
3711
+ */
3712
+ 'doctorId'?: string | null;
3671
3713
  /**
3672
3714
  *
3673
3715
  * @type {string}
@@ -3710,6 +3752,12 @@ export interface DoctorAffiliationItemModel {
3710
3752
  * @memberof DoctorAffiliationItemModel
3711
3753
  */
3712
3754
  'consultationFee'?: number | null;
3755
+ /**
3756
+ *
3757
+ * @type {string}
3758
+ * @memberof DoctorAffiliationItemModel
3759
+ */
3760
+ 'specialtiesSummerized'?: string | null;
3713
3761
  /**
3714
3762
  *
3715
3763
  * @type {number}
@@ -3753,6 +3801,12 @@ export interface DoctorAffiliationModel {
3753
3801
  * @memberof DoctorAffiliationModel
3754
3802
  */
3755
3803
  'hospitalSlug'?: string | null;
3804
+ /**
3805
+ *
3806
+ * @type {string}
3807
+ * @memberof DoctorAffiliationModel
3808
+ */
3809
+ 'doctorId'?: string | null;
3756
3810
  /**
3757
3811
  *
3758
3812
  * @type {string}
@@ -3795,6 +3849,12 @@ export interface DoctorAffiliationModel {
3795
3849
  * @memberof DoctorAffiliationModel
3796
3850
  */
3797
3851
  'consultationFee'?: number | null;
3852
+ /**
3853
+ *
3854
+ * @type {string}
3855
+ * @memberof DoctorAffiliationModel
3856
+ */
3857
+ 'specialtiesSummerized'?: string | null;
3798
3858
  /**
3799
3859
  *
3800
3860
  * @type {number}
@@ -5857,6 +5917,18 @@ export interface HospitalServiceItemModel {
5857
5917
  * @memberof HospitalServiceItemModel
5858
5918
  */
5859
5919
  'confirmed'?: boolean;
5920
+ /**
5921
+ *
5922
+ * @type {string}
5923
+ * @memberof HospitalServiceItemModel
5924
+ */
5925
+ 'hospitalSpecialtyName'?: string | null;
5926
+ /**
5927
+ *
5928
+ * @type {string}
5929
+ * @memberof HospitalServiceItemModel
5930
+ */
5931
+ 'hospitalSpecialtySlug'?: string | null;
5860
5932
  /**
5861
5933
  *
5862
5934
  * @type {number}
@@ -7963,6 +8035,24 @@ export interface ServiceReviewItemModel {
7963
8035
  * @memberof ServiceReviewItemModel
7964
8036
  */
7965
8037
  'slug'?: string | null;
8038
+ /**
8039
+ *
8040
+ * @type {string}
8041
+ * @memberof ServiceReviewItemModel
8042
+ */
8043
+ 'description'?: string | null;
8044
+ /**
8045
+ *
8046
+ * @type {string}
8047
+ * @memberof ServiceReviewItemModel
8048
+ */
8049
+ 'overview'?: string | null;
8050
+ /**
8051
+ *
8052
+ * @type {string}
8053
+ * @memberof ServiceReviewItemModel
8054
+ */
8055
+ 'content'?: string | null;
7966
8056
  /**
7967
8057
  *
7968
8058
  * @type {boolean}
@@ -8060,6 +8150,24 @@ export interface ServiceReviewModel {
8060
8150
  * @memberof ServiceReviewModel
8061
8151
  */
8062
8152
  'slug'?: string | null;
8153
+ /**
8154
+ *
8155
+ * @type {string}
8156
+ * @memberof ServiceReviewModel
8157
+ */
8158
+ 'description'?: string | null;
8159
+ /**
8160
+ *
8161
+ * @type {string}
8162
+ * @memberof ServiceReviewModel
8163
+ */
8164
+ 'overview'?: string | null;
8165
+ /**
8166
+ *
8167
+ * @type {string}
8168
+ * @memberof ServiceReviewModel
8169
+ */
8170
+ 'content'?: string | null;
8063
8171
  /**
8064
8172
  *
8065
8173
  * @type {boolean}
@@ -8126,24 +8234,6 @@ export interface ServiceReviewModel {
8126
8234
  * @memberof ServiceReviewModel
8127
8235
  */
8128
8236
  'auditableEntity'?: AuditableEntity;
8129
- /**
8130
- *
8131
- * @type {string}
8132
- * @memberof ServiceReviewModel
8133
- */
8134
- 'description'?: string | null;
8135
- /**
8136
- *
8137
- * @type {string}
8138
- * @memberof ServiceReviewModel
8139
- */
8140
- 'overview'?: string | null;
8141
- /**
8142
- *
8143
- * @type {string}
8144
- * @memberof ServiceReviewModel
8145
- */
8146
- 'content'?: string | null;
8147
8237
  }
8148
8238
  /**
8149
8239
  *
@@ -15247,6 +15337,9 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
15247
15337
  * @param {string} [doctorId]
15248
15338
  * @param {string} [doctorName]
15249
15339
  * @param {string} [doctorSlug]
15340
+ * @param {string} [specialtyId]
15341
+ * @param {string} [exceptDoctorId]
15342
+ * @param {boolean} [consultationEnabled]
15250
15343
  * @param {string} [languageCode]
15251
15344
  * @param {number} [page]
15252
15345
  * @param {number} [limit]
@@ -15254,7 +15347,7 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
15254
15347
  * @param {*} [options] Override http request option.
15255
15348
  * @throws {RequiredError}
15256
15349
  */
15257
- apiV2DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
15350
+ apiV2DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, exceptDoctorId?: string, consultationEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
15258
15351
  const localVarPath = `/api/v2/doctoraffiliations`;
15259
15352
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
15260
15353
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -15287,6 +15380,18 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
15287
15380
  localVarQueryParameter['DoctorSlug'] = doctorSlug;
15288
15381
  }
15289
15382
 
15383
+ if (specialtyId !== undefined) {
15384
+ localVarQueryParameter['SpecialtyId'] = specialtyId;
15385
+ }
15386
+
15387
+ if (exceptDoctorId !== undefined) {
15388
+ localVarQueryParameter['ExceptDoctorId'] = exceptDoctorId;
15389
+ }
15390
+
15391
+ if (consultationEnabled !== undefined) {
15392
+ localVarQueryParameter['ConsultationEnabled'] = consultationEnabled;
15393
+ }
15394
+
15290
15395
  if (languageCode !== undefined) {
15291
15396
  localVarQueryParameter['LanguageCode'] = languageCode;
15292
15397
  }
@@ -15411,6 +15516,9 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
15411
15516
  * @param {string} [doctorId]
15412
15517
  * @param {string} [doctorName]
15413
15518
  * @param {string} [doctorSlug]
15519
+ * @param {string} [specialtyId]
15520
+ * @param {string} [exceptDoctorId]
15521
+ * @param {boolean} [consultationEnabled]
15414
15522
  * @param {string} [languageCode]
15415
15523
  * @param {number} [page]
15416
15524
  * @param {number} [limit]
@@ -15418,8 +15526,8 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
15418
15526
  * @param {*} [options] Override http request option.
15419
15527
  * @throws {RequiredError}
15420
15528
  */
15421
- async apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
15422
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options);
15529
+ async apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, exceptDoctorId?: string, consultationEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
15530
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options);
15423
15531
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
15424
15532
  },
15425
15533
  /**
@@ -15463,6 +15571,9 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
15463
15571
  * @param {string} [doctorId]
15464
15572
  * @param {string} [doctorName]
15465
15573
  * @param {string} [doctorSlug]
15574
+ * @param {string} [specialtyId]
15575
+ * @param {string} [exceptDoctorId]
15576
+ * @param {boolean} [consultationEnabled]
15466
15577
  * @param {string} [languageCode]
15467
15578
  * @param {number} [page]
15468
15579
  * @param {number} [limit]
@@ -15470,8 +15581,8 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
15470
15581
  * @param {*} [options] Override http request option.
15471
15582
  * @throws {RequiredError}
15472
15583
  */
15473
- apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
15474
- return localVarFp.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
15584
+ apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, exceptDoctorId?: string, consultationEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
15585
+ return localVarFp.apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
15475
15586
  },
15476
15587
  /**
15477
15588
  *
@@ -15512,6 +15623,9 @@ export class DoctorAffiliationsApi extends BaseAPI {
15512
15623
  * @param {string} [doctorId]
15513
15624
  * @param {string} [doctorName]
15514
15625
  * @param {string} [doctorSlug]
15626
+ * @param {string} [specialtyId]
15627
+ * @param {string} [exceptDoctorId]
15628
+ * @param {boolean} [consultationEnabled]
15515
15629
  * @param {string} [languageCode]
15516
15630
  * @param {number} [page]
15517
15631
  * @param {number} [limit]
@@ -15520,8 +15634,8 @@ export class DoctorAffiliationsApi extends BaseAPI {
15520
15634
  * @throws {RequiredError}
15521
15635
  * @memberof DoctorAffiliationsApi
15522
15636
  */
15523
- public apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
15524
- return DoctorAffiliationsApiFp(this.configuration).apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
15637
+ public apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, exceptDoctorId?: string, consultationEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
15638
+ return DoctorAffiliationsApiFp(this.configuration).apiV2DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, exceptDoctorId, consultationEnabled, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
15525
15639
  }
15526
15640
 
15527
15641
  /**
@@ -23771,6 +23885,7 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
23771
23885
  *
23772
23886
  * @summary Get all ServiceReviews.
23773
23887
  * @param {string} [id]
23888
+ * @param {string} [hospitalId]
23774
23889
  * @param {string} [serviceId]
23775
23890
  * @param {string} [serviceName]
23776
23891
  * @param {string} [patientId]
@@ -23787,7 +23902,7 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
23787
23902
  * @param {*} [options] Override http request option.
23788
23903
  * @throws {RequiredError}
23789
23904
  */
23790
- apiV2ServicereviewsGet: async (id?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
23905
+ apiV2ServicereviewsGet: async (id?: string, hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
23791
23906
  const localVarPath = `/api/v2/servicereviews`;
23792
23907
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
23793
23908
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -23804,6 +23919,10 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
23804
23919
  localVarQueryParameter['Id'] = id;
23805
23920
  }
23806
23921
 
23922
+ if (hospitalId !== undefined) {
23923
+ localVarQueryParameter['HospitalId'] = hospitalId;
23924
+ }
23925
+
23807
23926
  if (serviceId !== undefined) {
23808
23927
  localVarQueryParameter['ServiceId'] = serviceId;
23809
23928
  }
@@ -24268,6 +24387,7 @@ export const ServiceReviewsApiFp = function(configuration?: Configuration) {
24268
24387
  *
24269
24388
  * @summary Get all ServiceReviews.
24270
24389
  * @param {string} [id]
24390
+ * @param {string} [hospitalId]
24271
24391
  * @param {string} [serviceId]
24272
24392
  * @param {string} [serviceName]
24273
24393
  * @param {string} [patientId]
@@ -24284,8 +24404,8 @@ export const ServiceReviewsApiFp = function(configuration?: Configuration) {
24284
24404
  * @param {*} [options] Override http request option.
24285
24405
  * @throws {RequiredError}
24286
24406
  */
24287
- async apiV2ServicereviewsGet(id?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewsModel>> {
24288
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options);
24407
+ async apiV2ServicereviewsGet(id?: string, hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewsModel>> {
24408
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options);
24289
24409
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
24290
24410
  },
24291
24411
  /**
@@ -24412,6 +24532,7 @@ export const ServiceReviewsApiFactory = function (configuration?: Configuration,
24412
24532
  *
24413
24533
  * @summary Get all ServiceReviews.
24414
24534
  * @param {string} [id]
24535
+ * @param {string} [hospitalId]
24415
24536
  * @param {string} [serviceId]
24416
24537
  * @param {string} [serviceName]
24417
24538
  * @param {string} [patientId]
@@ -24428,8 +24549,8 @@ export const ServiceReviewsApiFactory = function (configuration?: Configuration,
24428
24549
  * @param {*} [options] Override http request option.
24429
24550
  * @throws {RequiredError}
24430
24551
  */
24431
- apiV2ServicereviewsGet(id?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceReviewsModel> {
24432
- return localVarFp.apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
24552
+ apiV2ServicereviewsGet(id?: string, hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceReviewsModel> {
24553
+ return localVarFp.apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
24433
24554
  },
24434
24555
  /**
24435
24556
  *
@@ -24546,6 +24667,7 @@ export class ServiceReviewsApi extends BaseAPI {
24546
24667
  *
24547
24668
  * @summary Get all ServiceReviews.
24548
24669
  * @param {string} [id]
24670
+ * @param {string} [hospitalId]
24549
24671
  * @param {string} [serviceId]
24550
24672
  * @param {string} [serviceName]
24551
24673
  * @param {string} [patientId]
@@ -24563,8 +24685,8 @@ export class ServiceReviewsApi extends BaseAPI {
24563
24685
  * @throws {RequiredError}
24564
24686
  * @memberof ServiceReviewsApi
24565
24687
  */
24566
- public apiV2ServicereviewsGet(id?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
24567
- return ServiceReviewsApiFp(this.configuration).apiV2ServicereviewsGet(id, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
24688
+ public apiV2ServicereviewsGet(id?: string, hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
24689
+ return ServiceReviewsApiFp(this.configuration).apiV2ServicereviewsGet(id, hospitalId, serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
24568
24690
  }
24569
24691
 
24570
24692
  /**