ch-admin-api-client-typescript 4.2.9 → 4.3.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
@@ -12913,6 +12913,8 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
12913
12913
  * @param {string} [doctorName]
12914
12914
  * @param {string} [doctorSlug]
12915
12915
  * @param {string} [specialtyId]
12916
+ * @param {MarketingType} [marketingType]
12917
+ * @param {string} [countryId]
12916
12918
  * @param {string} [languageCode]
12917
12919
  * @param {boolean} [showHidden]
12918
12920
  * @param {number} [page]
@@ -12921,7 +12923,7 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
12921
12923
  * @param {*} [options] Override http request option.
12922
12924
  * @throws {RequiredError}
12923
12925
  */
12924
- apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options) {
12926
+ apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, marketingType, countryId, languageCode, showHidden, page, limit, lastRetrieved, options) {
12925
12927
  if (options === void 0) { options = {}; }
12926
12928
  return __awaiter(_this, void 0, void 0, function () {
12927
12929
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -12961,6 +12963,12 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
12961
12963
  if (specialtyId !== undefined) {
12962
12964
  localVarQueryParameter['SpecialtyId'] = specialtyId;
12963
12965
  }
12966
+ if (marketingType !== undefined) {
12967
+ localVarQueryParameter['MarketingType'] = marketingType;
12968
+ }
12969
+ if (countryId !== undefined) {
12970
+ localVarQueryParameter['CountryId'] = countryId;
12971
+ }
12964
12972
  if (languageCode !== undefined) {
12965
12973
  localVarQueryParameter['LanguageCode'] = languageCode;
12966
12974
  }
@@ -13294,6 +13302,8 @@ exports.DoctorAffiliationsApiFp = function (configuration) {
13294
13302
  * @param {string} [doctorName]
13295
13303
  * @param {string} [doctorSlug]
13296
13304
  * @param {string} [specialtyId]
13305
+ * @param {MarketingType} [marketingType]
13306
+ * @param {string} [countryId]
13297
13307
  * @param {string} [languageCode]
13298
13308
  * @param {boolean} [showHidden]
13299
13309
  * @param {number} [page]
@@ -13302,12 +13312,12 @@ exports.DoctorAffiliationsApiFp = function (configuration) {
13302
13312
  * @param {*} [options] Override http request option.
13303
13313
  * @throws {RequiredError}
13304
13314
  */
13305
- apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options) {
13315
+ apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, marketingType, countryId, languageCode, showHidden, page, limit, lastRetrieved, options) {
13306
13316
  return __awaiter(this, void 0, void 0, function () {
13307
13317
  var localVarAxiosArgs;
13308
13318
  return __generator(this, function (_a) {
13309
13319
  switch (_a.label) {
13310
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options)];
13320
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, marketingType, countryId, languageCode, showHidden, page, limit, lastRetrieved, options)];
13311
13321
  case 1:
13312
13322
  localVarAxiosArgs = _a.sent();
13313
13323
  return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -13474,6 +13484,8 @@ exports.DoctorAffiliationsApiFactory = function (configuration, basePath, axios)
13474
13484
  * @param {string} [doctorName]
13475
13485
  * @param {string} [doctorSlug]
13476
13486
  * @param {string} [specialtyId]
13487
+ * @param {MarketingType} [marketingType]
13488
+ * @param {string} [countryId]
13477
13489
  * @param {string} [languageCode]
13478
13490
  * @param {boolean} [showHidden]
13479
13491
  * @param {number} [page]
@@ -13482,8 +13494,8 @@ exports.DoctorAffiliationsApiFactory = function (configuration, basePath, axios)
13482
13494
  * @param {*} [options] Override http request option.
13483
13495
  * @throws {RequiredError}
13484
13496
  */
13485
- apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options) {
13486
- return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
13497
+ apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, marketingType, countryId, languageCode, showHidden, page, limit, lastRetrieved, options) {
13498
+ return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, marketingType, countryId, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
13487
13499
  },
13488
13500
  /**
13489
13501
  *
@@ -13618,6 +13630,8 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
13618
13630
  * @param {string} [doctorName]
13619
13631
  * @param {string} [doctorSlug]
13620
13632
  * @param {string} [specialtyId]
13633
+ * @param {MarketingType} [marketingType]
13634
+ * @param {string} [countryId]
13621
13635
  * @param {string} [languageCode]
13622
13636
  * @param {boolean} [showHidden]
13623
13637
  * @param {number} [page]
@@ -13627,9 +13641,9 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
13627
13641
  * @throws {RequiredError}
13628
13642
  * @memberof DoctorAffiliationsApi
13629
13643
  */
13630
- DoctorAffiliationsApi.prototype.apiV1DoctoraffiliationsGet = function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options) {
13644
+ DoctorAffiliationsApi.prototype.apiV1DoctoraffiliationsGet = function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, marketingType, countryId, languageCode, showHidden, page, limit, lastRetrieved, options) {
13631
13645
  var _this = this;
13632
- return exports.DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
13646
+ return exports.DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, marketingType, countryId, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
13633
13647
  };
13634
13648
  /**
13635
13649
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-admin-api-client-typescript",
3
- "version": "4.2.9",
3
+ "version": "4.3.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
@@ -677,6 +677,30 @@ export interface ArticleItemModel {
677
677
  * @memberof ArticleItemModel
678
678
  */
679
679
  'youtubeUrl'?: string | null;
680
+ /**
681
+ *
682
+ * @type {string}
683
+ * @memberof ArticleItemModel
684
+ */
685
+ 'photo'?: string | null;
686
+ /**
687
+ *
688
+ * @type {string}
689
+ * @memberof ArticleItemModel
690
+ */
691
+ 'photoThumbnail'?: string | null;
692
+ /**
693
+ *
694
+ * @type {string}
695
+ * @memberof ArticleItemModel
696
+ */
697
+ 'background'?: string | null;
698
+ /**
699
+ *
700
+ * @type {string}
701
+ * @memberof ArticleItemModel
702
+ */
703
+ 'backgroundThumbnail'?: string | null;
680
704
  /**
681
705
  *
682
706
  * @type {Array<ArticleTagItemModel>}
@@ -774,6 +798,30 @@ export interface ArticleModel {
774
798
  * @memberof ArticleModel
775
799
  */
776
800
  'youtubeUrl'?: string | null;
801
+ /**
802
+ *
803
+ * @type {string}
804
+ * @memberof ArticleModel
805
+ */
806
+ 'photo'?: string | null;
807
+ /**
808
+ *
809
+ * @type {string}
810
+ * @memberof ArticleModel
811
+ */
812
+ 'photoThumbnail'?: string | null;
813
+ /**
814
+ *
815
+ * @type {string}
816
+ * @memberof ArticleModel
817
+ */
818
+ 'background'?: string | null;
819
+ /**
820
+ *
821
+ * @type {string}
822
+ * @memberof ArticleModel
823
+ */
824
+ 'backgroundThumbnail'?: string | null;
777
825
  /**
778
826
  *
779
827
  * @type {Array<ArticleTagItemModel>}
@@ -3249,6 +3297,12 @@ export interface CreateArticleCommand {
3249
3297
  * @memberof CreateArticleCommand
3250
3298
  */
3251
3299
  'content'?: string | null;
3300
+ /**
3301
+ *
3302
+ * @type {string}
3303
+ * @memberof CreateArticleCommand
3304
+ */
3305
+ 'hospitalId'?: string;
3252
3306
  /**
3253
3307
  *
3254
3308
  * @type {ArticleStatus}
@@ -3272,7 +3326,25 @@ export interface CreateArticleCommand {
3272
3326
  * @type {string}
3273
3327
  * @memberof CreateArticleCommand
3274
3328
  */
3275
- 'hospitalId'?: string;
3329
+ 'photo'?: string | null;
3330
+ /**
3331
+ *
3332
+ * @type {string}
3333
+ * @memberof CreateArticleCommand
3334
+ */
3335
+ 'photoThumbnail'?: string | null;
3336
+ /**
3337
+ *
3338
+ * @type {string}
3339
+ * @memberof CreateArticleCommand
3340
+ */
3341
+ 'background'?: string | null;
3342
+ /**
3343
+ *
3344
+ * @type {string}
3345
+ * @memberof CreateArticleCommand
3346
+ */
3347
+ 'backgroundThumbnail'?: string | null;
3276
3348
  /**
3277
3349
  *
3278
3350
  * @type {Array<ArticleTagItemModel>}
@@ -4976,6 +5048,30 @@ export interface CreateSpecialtyCommand {
4976
5048
  * @memberof CreateSpecialtyCommand
4977
5049
  */
4978
5050
  'content'?: string | null;
5051
+ /**
5052
+ *
5053
+ * @type {string}
5054
+ * @memberof CreateSpecialtyCommand
5055
+ */
5056
+ 'photo'?: string | null;
5057
+ /**
5058
+ *
5059
+ * @type {string}
5060
+ * @memberof CreateSpecialtyCommand
5061
+ */
5062
+ 'photoThumbnail'?: string | null;
5063
+ /**
5064
+ *
5065
+ * @type {string}
5066
+ * @memberof CreateSpecialtyCommand
5067
+ */
5068
+ 'background'?: string | null;
5069
+ /**
5070
+ *
5071
+ * @type {string}
5072
+ * @memberof CreateSpecialtyCommand
5073
+ */
5074
+ 'backgroundThumbnail'?: string | null;
4979
5075
  /**
4980
5076
  *
4981
5077
  * @type {string}
@@ -5019,6 +5115,30 @@ export interface CreateSpecialtyTypeCommand {
5019
5115
  * @memberof CreateSpecialtyTypeCommand
5020
5116
  */
5021
5117
  'marketingType'?: MarketingType;
5118
+ /**
5119
+ *
5120
+ * @type {string}
5121
+ * @memberof CreateSpecialtyTypeCommand
5122
+ */
5123
+ 'photo'?: string | null;
5124
+ /**
5125
+ *
5126
+ * @type {string}
5127
+ * @memberof CreateSpecialtyTypeCommand
5128
+ */
5129
+ 'photoThumbnail'?: string | null;
5130
+ /**
5131
+ *
5132
+ * @type {string}
5133
+ * @memberof CreateSpecialtyTypeCommand
5134
+ */
5135
+ 'background'?: string | null;
5136
+ /**
5137
+ *
5138
+ * @type {string}
5139
+ * @memberof CreateSpecialtyTypeCommand
5140
+ */
5141
+ 'backgroundThumbnail'?: string | null;
5022
5142
  /**
5023
5143
  *
5024
5144
  * @type {Array<MediaModel>}
@@ -5822,6 +5942,18 @@ export interface DoctorAffiliationItemModel {
5822
5942
  * @memberof DoctorAffiliationItemModel
5823
5943
  */
5824
5944
  'hospitalSlug'?: string | null;
5945
+ /**
5946
+ *
5947
+ * @type {string}
5948
+ * @memberof DoctorAffiliationItemModel
5949
+ */
5950
+ 'countryId'?: string;
5951
+ /**
5952
+ *
5953
+ * @type {MarketingType}
5954
+ * @memberof DoctorAffiliationItemModel
5955
+ */
5956
+ 'marketingType'?: MarketingType;
5825
5957
  /**
5826
5958
  *
5827
5959
  * @type {string}
@@ -5919,6 +6051,18 @@ export interface DoctorAffiliationModel {
5919
6051
  * @memberof DoctorAffiliationModel
5920
6052
  */
5921
6053
  'hospitalSlug'?: string | null;
6054
+ /**
6055
+ *
6056
+ * @type {string}
6057
+ * @memberof DoctorAffiliationModel
6058
+ */
6059
+ 'countryId'?: string;
6060
+ /**
6061
+ *
6062
+ * @type {MarketingType}
6063
+ * @memberof DoctorAffiliationModel
6064
+ */
6065
+ 'marketingType'?: MarketingType;
5922
6066
  /**
5923
6067
  *
5924
6068
  * @type {string}
@@ -10924,6 +11068,30 @@ export interface SpecialtyItemModel {
10924
11068
  * @memberof SpecialtyItemModel
10925
11069
  */
10926
11070
  'confirmed'?: boolean;
11071
+ /**
11072
+ *
11073
+ * @type {string}
11074
+ * @memberof SpecialtyItemModel
11075
+ */
11076
+ 'photo'?: string | null;
11077
+ /**
11078
+ *
11079
+ * @type {string}
11080
+ * @memberof SpecialtyItemModel
11081
+ */
11082
+ 'photoThumbnail'?: string | null;
11083
+ /**
11084
+ *
11085
+ * @type {string}
11086
+ * @memberof SpecialtyItemModel
11087
+ */
11088
+ 'background'?: string | null;
11089
+ /**
11090
+ *
11091
+ * @type {string}
11092
+ * @memberof SpecialtyItemModel
11093
+ */
11094
+ 'backgroundThumbnail'?: string | null;
10927
11095
  /**
10928
11096
  *
10929
11097
  * @type {string}
@@ -11034,6 +11202,30 @@ export interface SpecialtyModel {
11034
11202
  * @memberof SpecialtyModel
11035
11203
  */
11036
11204
  'confirmed'?: boolean;
11205
+ /**
11206
+ *
11207
+ * @type {string}
11208
+ * @memberof SpecialtyModel
11209
+ */
11210
+ 'photo'?: string | null;
11211
+ /**
11212
+ *
11213
+ * @type {string}
11214
+ * @memberof SpecialtyModel
11215
+ */
11216
+ 'photoThumbnail'?: string | null;
11217
+ /**
11218
+ *
11219
+ * @type {string}
11220
+ * @memberof SpecialtyModel
11221
+ */
11222
+ 'background'?: string | null;
11223
+ /**
11224
+ *
11225
+ * @type {string}
11226
+ * @memberof SpecialtyModel
11227
+ */
11228
+ 'backgroundThumbnail'?: string | null;
11037
11229
  /**
11038
11230
  *
11039
11231
  * @type {string}
@@ -11119,6 +11311,30 @@ export interface SpecialtyTypeItemModel {
11119
11311
  * @memberof SpecialtyTypeItemModel
11120
11312
  */
11121
11313
  'confirmed'?: boolean;
11314
+ /**
11315
+ *
11316
+ * @type {string}
11317
+ * @memberof SpecialtyTypeItemModel
11318
+ */
11319
+ 'photo'?: string | null;
11320
+ /**
11321
+ *
11322
+ * @type {string}
11323
+ * @memberof SpecialtyTypeItemModel
11324
+ */
11325
+ 'photoThumbnail'?: string | null;
11326
+ /**
11327
+ *
11328
+ * @type {string}
11329
+ * @memberof SpecialtyTypeItemModel
11330
+ */
11331
+ 'background'?: string | null;
11332
+ /**
11333
+ *
11334
+ * @type {string}
11335
+ * @memberof SpecialtyTypeItemModel
11336
+ */
11337
+ 'backgroundThumbnail'?: string | null;
11122
11338
  /**
11123
11339
  *
11124
11340
  * @type {string}
@@ -11186,6 +11402,30 @@ export interface SpecialtyTypeModel {
11186
11402
  * @memberof SpecialtyTypeModel
11187
11403
  */
11188
11404
  'confirmed'?: boolean;
11405
+ /**
11406
+ *
11407
+ * @type {string}
11408
+ * @memberof SpecialtyTypeModel
11409
+ */
11410
+ 'photo'?: string | null;
11411
+ /**
11412
+ *
11413
+ * @type {string}
11414
+ * @memberof SpecialtyTypeModel
11415
+ */
11416
+ 'photoThumbnail'?: string | null;
11417
+ /**
11418
+ *
11419
+ * @type {string}
11420
+ * @memberof SpecialtyTypeModel
11421
+ */
11422
+ 'background'?: string | null;
11423
+ /**
11424
+ *
11425
+ * @type {string}
11426
+ * @memberof SpecialtyTypeModel
11427
+ */
11428
+ 'backgroundThumbnail'?: string | null;
11189
11429
  /**
11190
11430
  *
11191
11431
  * @type {string}
@@ -11759,6 +11999,30 @@ export interface UpdateArticleCommand {
11759
11999
  * @memberof UpdateArticleCommand
11760
12000
  */
11761
12001
  'youtubeUrl'?: string | null;
12002
+ /**
12003
+ *
12004
+ * @type {string}
12005
+ * @memberof UpdateArticleCommand
12006
+ */
12007
+ 'photo'?: string | null;
12008
+ /**
12009
+ *
12010
+ * @type {string}
12011
+ * @memberof UpdateArticleCommand
12012
+ */
12013
+ 'photoThumbnail'?: string | null;
12014
+ /**
12015
+ *
12016
+ * @type {string}
12017
+ * @memberof UpdateArticleCommand
12018
+ */
12019
+ 'background'?: string | null;
12020
+ /**
12021
+ *
12022
+ * @type {string}
12023
+ * @memberof UpdateArticleCommand
12024
+ */
12025
+ 'backgroundThumbnail'?: string | null;
11762
12026
  /**
11763
12027
  *
11764
12028
  * @type {Array<ArticleTagItemModel>}
@@ -13542,6 +13806,30 @@ export interface UpdateSpecialtyCommand {
13542
13806
  * @memberof UpdateSpecialtyCommand
13543
13807
  */
13544
13808
  'languageCode'?: string | null;
13809
+ /**
13810
+ *
13811
+ * @type {string}
13812
+ * @memberof UpdateSpecialtyCommand
13813
+ */
13814
+ 'photo'?: string | null;
13815
+ /**
13816
+ *
13817
+ * @type {string}
13818
+ * @memberof UpdateSpecialtyCommand
13819
+ */
13820
+ 'photoThumbnail'?: string | null;
13821
+ /**
13822
+ *
13823
+ * @type {string}
13824
+ * @memberof UpdateSpecialtyCommand
13825
+ */
13826
+ 'background'?: string | null;
13827
+ /**
13828
+ *
13829
+ * @type {string}
13830
+ * @memberof UpdateSpecialtyCommand
13831
+ */
13832
+ 'backgroundThumbnail'?: string | null;
13545
13833
  /**
13546
13834
  *
13547
13835
  * @type {string}
@@ -13597,6 +13885,30 @@ export interface UpdateSpecialtyTypeCommand {
13597
13885
  * @memberof UpdateSpecialtyTypeCommand
13598
13886
  */
13599
13887
  'marketingType'?: MarketingType;
13888
+ /**
13889
+ *
13890
+ * @type {string}
13891
+ * @memberof UpdateSpecialtyTypeCommand
13892
+ */
13893
+ 'photo'?: string | null;
13894
+ /**
13895
+ *
13896
+ * @type {string}
13897
+ * @memberof UpdateSpecialtyTypeCommand
13898
+ */
13899
+ 'photoThumbnail'?: string | null;
13900
+ /**
13901
+ *
13902
+ * @type {string}
13903
+ * @memberof UpdateSpecialtyTypeCommand
13904
+ */
13905
+ 'background'?: string | null;
13906
+ /**
13907
+ *
13908
+ * @type {string}
13909
+ * @memberof UpdateSpecialtyTypeCommand
13910
+ */
13911
+ 'backgroundThumbnail'?: string | null;
13600
13912
  /**
13601
13913
  *
13602
13914
  * @type {string}
@@ -25116,6 +25428,8 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
25116
25428
  * @param {string} [doctorName]
25117
25429
  * @param {string} [doctorSlug]
25118
25430
  * @param {string} [specialtyId]
25431
+ * @param {MarketingType} [marketingType]
25432
+ * @param {string} [countryId]
25119
25433
  * @param {string} [languageCode]
25120
25434
  * @param {boolean} [showHidden]
25121
25435
  * @param {number} [page]
@@ -25124,7 +25438,7 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
25124
25438
  * @param {*} [options] Override http request option.
25125
25439
  * @throws {RequiredError}
25126
25440
  */
25127
- apiV1DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
25441
+ apiV1DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, marketingType?: MarketingType, countryId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
25128
25442
  const localVarPath = `/api/v1/doctoraffiliations`;
25129
25443
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
25130
25444
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -25165,6 +25479,14 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
25165
25479
  localVarQueryParameter['SpecialtyId'] = specialtyId;
25166
25480
  }
25167
25481
 
25482
+ if (marketingType !== undefined) {
25483
+ localVarQueryParameter['MarketingType'] = marketingType;
25484
+ }
25485
+
25486
+ if (countryId !== undefined) {
25487
+ localVarQueryParameter['CountryId'] = countryId;
25488
+ }
25489
+
25168
25490
  if (languageCode !== undefined) {
25169
25491
  localVarQueryParameter['LanguageCode'] = languageCode;
25170
25492
  }
@@ -25442,6 +25764,8 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
25442
25764
  * @param {string} [doctorName]
25443
25765
  * @param {string} [doctorSlug]
25444
25766
  * @param {string} [specialtyId]
25767
+ * @param {MarketingType} [marketingType]
25768
+ * @param {string} [countryId]
25445
25769
  * @param {string} [languageCode]
25446
25770
  * @param {boolean} [showHidden]
25447
25771
  * @param {number} [page]
@@ -25450,8 +25774,8 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
25450
25774
  * @param {*} [options] Override http request option.
25451
25775
  * @throws {RequiredError}
25452
25776
  */
25453
- async apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
25454
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options);
25777
+ async apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, marketingType?: MarketingType, countryId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
25778
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, marketingType, countryId, languageCode, showHidden, page, limit, lastRetrieved, options);
25455
25779
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
25456
25780
  },
25457
25781
  /**
@@ -25578,6 +25902,8 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
25578
25902
  * @param {string} [doctorName]
25579
25903
  * @param {string} [doctorSlug]
25580
25904
  * @param {string} [specialtyId]
25905
+ * @param {MarketingType} [marketingType]
25906
+ * @param {string} [countryId]
25581
25907
  * @param {string} [languageCode]
25582
25908
  * @param {boolean} [showHidden]
25583
25909
  * @param {number} [page]
@@ -25586,8 +25912,8 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
25586
25912
  * @param {*} [options] Override http request option.
25587
25913
  * @throws {RequiredError}
25588
25914
  */
25589
- apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
25590
- return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
25915
+ apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, marketingType?: MarketingType, countryId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
25916
+ return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, marketingType, countryId, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
25591
25917
  },
25592
25918
  /**
25593
25919
  *
@@ -25719,6 +26045,8 @@ export class DoctorAffiliationsApi extends BaseAPI {
25719
26045
  * @param {string} [doctorName]
25720
26046
  * @param {string} [doctorSlug]
25721
26047
  * @param {string} [specialtyId]
26048
+ * @param {MarketingType} [marketingType]
26049
+ * @param {string} [countryId]
25722
26050
  * @param {string} [languageCode]
25723
26051
  * @param {boolean} [showHidden]
25724
26052
  * @param {number} [page]
@@ -25728,8 +26056,8 @@ export class DoctorAffiliationsApi extends BaseAPI {
25728
26056
  * @throws {RequiredError}
25729
26057
  * @memberof DoctorAffiliationsApi
25730
26058
  */
25731
- public apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
25732
- return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
26059
+ public apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, marketingType?: MarketingType, countryId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
26060
+ return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, marketingType, countryId, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
25733
26061
  }
25734
26062
 
25735
26063
  /**