ch-admin-api-client-typescript 3.5.3 → 3.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +136 -30
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +14 -7
- package/package.json +1 -1
- package/src/api.ts +143 -33
package/lib/api.js
CHANGED
|
@@ -12122,6 +12122,7 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
12122
12122
|
* @param {string} [doctorId]
|
|
12123
12123
|
* @param {string} [doctorName]
|
|
12124
12124
|
* @param {string} [doctorSlug]
|
|
12125
|
+
* @param {string} [specialtyId]
|
|
12125
12126
|
* @param {string} [languageCode]
|
|
12126
12127
|
* @param {boolean} [showHidden]
|
|
12127
12128
|
* @param {number} [page]
|
|
@@ -12130,7 +12131,7 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
12130
12131
|
* @param {*} [options] Override http request option.
|
|
12131
12132
|
* @throws {RequiredError}
|
|
12132
12133
|
*/
|
|
12133
|
-
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12134
|
+
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12134
12135
|
if (options === void 0) { options = {}; }
|
|
12135
12136
|
return __awaiter(_this, void 0, void 0, function () {
|
|
12136
12137
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -12167,6 +12168,9 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
12167
12168
|
if (doctorSlug !== undefined) {
|
|
12168
12169
|
localVarQueryParameter['DoctorSlug'] = doctorSlug;
|
|
12169
12170
|
}
|
|
12171
|
+
if (specialtyId !== undefined) {
|
|
12172
|
+
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
12173
|
+
}
|
|
12170
12174
|
if (languageCode !== undefined) {
|
|
12171
12175
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
12172
12176
|
}
|
|
@@ -12389,6 +12393,7 @@ exports.DoctorAffiliationsApiFp = function (configuration) {
|
|
|
12389
12393
|
* @param {string} [doctorId]
|
|
12390
12394
|
* @param {string} [doctorName]
|
|
12391
12395
|
* @param {string} [doctorSlug]
|
|
12396
|
+
* @param {string} [specialtyId]
|
|
12392
12397
|
* @param {string} [languageCode]
|
|
12393
12398
|
* @param {boolean} [showHidden]
|
|
12394
12399
|
* @param {number} [page]
|
|
@@ -12397,12 +12402,12 @@ exports.DoctorAffiliationsApiFp = function (configuration) {
|
|
|
12397
12402
|
* @param {*} [options] Override http request option.
|
|
12398
12403
|
* @throws {RequiredError}
|
|
12399
12404
|
*/
|
|
12400
|
-
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12405
|
+
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12401
12406
|
return __awaiter(this, void 0, void 0, function () {
|
|
12402
12407
|
var localVarAxiosArgs;
|
|
12403
12408
|
return __generator(this, function (_a) {
|
|
12404
12409
|
switch (_a.label) {
|
|
12405
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
12410
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
12406
12411
|
case 1:
|
|
12407
12412
|
localVarAxiosArgs = _a.sent();
|
|
12408
12413
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -12508,6 +12513,7 @@ exports.DoctorAffiliationsApiFactory = function (configuration, basePath, axios)
|
|
|
12508
12513
|
* @param {string} [doctorId]
|
|
12509
12514
|
* @param {string} [doctorName]
|
|
12510
12515
|
* @param {string} [doctorSlug]
|
|
12516
|
+
* @param {string} [specialtyId]
|
|
12511
12517
|
* @param {string} [languageCode]
|
|
12512
12518
|
* @param {boolean} [showHidden]
|
|
12513
12519
|
* @param {number} [page]
|
|
@@ -12516,8 +12522,8 @@ exports.DoctorAffiliationsApiFactory = function (configuration, basePath, axios)
|
|
|
12516
12522
|
* @param {*} [options] Override http request option.
|
|
12517
12523
|
* @throws {RequiredError}
|
|
12518
12524
|
*/
|
|
12519
|
-
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12520
|
-
return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
12525
|
+
apiV1DoctoraffiliationsGet: function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12526
|
+
return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
12521
12527
|
},
|
|
12522
12528
|
/**
|
|
12523
12529
|
*
|
|
@@ -12581,6 +12587,7 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
|
|
|
12581
12587
|
* @param {string} [doctorId]
|
|
12582
12588
|
* @param {string} [doctorName]
|
|
12583
12589
|
* @param {string} [doctorSlug]
|
|
12590
|
+
* @param {string} [specialtyId]
|
|
12584
12591
|
* @param {string} [languageCode]
|
|
12585
12592
|
* @param {boolean} [showHidden]
|
|
12586
12593
|
* @param {number} [page]
|
|
@@ -12590,9 +12597,9 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
|
|
|
12590
12597
|
* @throws {RequiredError}
|
|
12591
12598
|
* @memberof DoctorAffiliationsApi
|
|
12592
12599
|
*/
|
|
12593
|
-
DoctorAffiliationsApi.prototype.apiV1DoctoraffiliationsGet = function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12600
|
+
DoctorAffiliationsApi.prototype.apiV1DoctoraffiliationsGet = function (hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
12594
12601
|
var _this = this;
|
|
12595
|
-
return exports.DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
12602
|
+
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); });
|
|
12596
12603
|
};
|
|
12597
12604
|
/**
|
|
12598
12605
|
*
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -2720,6 +2720,12 @@ export interface ContributorItemModel {
|
|
|
2720
2720
|
* @memberof ContributorItemModel
|
|
2721
2721
|
*/
|
|
2722
2722
|
'photoThumbnail'?: string | null;
|
|
2723
|
+
/**
|
|
2724
|
+
*
|
|
2725
|
+
* @type {string}
|
|
2726
|
+
* @memberof ContributorItemModel
|
|
2727
|
+
*/
|
|
2728
|
+
'website'?: string | null;
|
|
2723
2729
|
/**
|
|
2724
2730
|
*
|
|
2725
2731
|
* @type {number}
|
|
@@ -2811,6 +2817,12 @@ export interface ContributorModel {
|
|
|
2811
2817
|
* @memberof ContributorModel
|
|
2812
2818
|
*/
|
|
2813
2819
|
'photoThumbnail'?: string | null;
|
|
2820
|
+
/**
|
|
2821
|
+
*
|
|
2822
|
+
* @type {string}
|
|
2823
|
+
* @memberof ContributorModel
|
|
2824
|
+
*/
|
|
2825
|
+
'website'?: string | null;
|
|
2814
2826
|
/**
|
|
2815
2827
|
*
|
|
2816
2828
|
* @type {number}
|
|
@@ -2935,6 +2947,12 @@ export interface CountryItemModel {
|
|
|
2935
2947
|
* @memberof CountryItemModel
|
|
2936
2948
|
*/
|
|
2937
2949
|
'confirmed'?: boolean;
|
|
2950
|
+
/**
|
|
2951
|
+
*
|
|
2952
|
+
* @type {string}
|
|
2953
|
+
* @memberof CountryItemModel
|
|
2954
|
+
*/
|
|
2955
|
+
'logo'?: string | null;
|
|
2938
2956
|
/**
|
|
2939
2957
|
*
|
|
2940
2958
|
* @type {AuditableEntity}
|
|
@@ -2978,6 +2996,12 @@ export interface CountryModel {
|
|
|
2978
2996
|
* @memberof CountryModel
|
|
2979
2997
|
*/
|
|
2980
2998
|
'confirmed'?: boolean;
|
|
2999
|
+
/**
|
|
3000
|
+
*
|
|
3001
|
+
* @type {string}
|
|
3002
|
+
* @memberof CountryModel
|
|
3003
|
+
*/
|
|
3004
|
+
'logo'?: string | null;
|
|
2981
3005
|
/**
|
|
2982
3006
|
*
|
|
2983
3007
|
* @type {AuditableEntity}
|
|
@@ -3004,10 +3028,10 @@ export interface CountryModel {
|
|
|
3004
3028
|
'content'?: string | null;
|
|
3005
3029
|
/**
|
|
3006
3030
|
*
|
|
3007
|
-
* @type {
|
|
3031
|
+
* @type {Array<MediaModel>}
|
|
3008
3032
|
* @memberof CountryModel
|
|
3009
3033
|
*/
|
|
3010
|
-
'
|
|
3034
|
+
'medias'?: Array<MediaModel> | null;
|
|
3011
3035
|
}
|
|
3012
3036
|
/**
|
|
3013
3037
|
*
|
|
@@ -7567,6 +7591,12 @@ export interface HospitalItemModel {
|
|
|
7567
7591
|
* @memberof HospitalItemModel
|
|
7568
7592
|
*/
|
|
7569
7593
|
'languageCode'?: string | null;
|
|
7594
|
+
/**
|
|
7595
|
+
*
|
|
7596
|
+
* @type {string}
|
|
7597
|
+
* @memberof HospitalItemModel
|
|
7598
|
+
*/
|
|
7599
|
+
'countryName'?: string | null;
|
|
7570
7600
|
/**
|
|
7571
7601
|
*
|
|
7572
7602
|
* @type {string}
|
|
@@ -7702,6 +7732,12 @@ export interface HospitalModel {
|
|
|
7702
7732
|
* @memberof HospitalModel
|
|
7703
7733
|
*/
|
|
7704
7734
|
'languageCode'?: string | null;
|
|
7735
|
+
/**
|
|
7736
|
+
*
|
|
7737
|
+
* @type {string}
|
|
7738
|
+
* @memberof HospitalModel
|
|
7739
|
+
*/
|
|
7740
|
+
'countryName'?: string | null;
|
|
7705
7741
|
/**
|
|
7706
7742
|
*
|
|
7707
7743
|
* @type {string}
|
|
@@ -7889,6 +7925,36 @@ export interface HospitalServiceItemModel {
|
|
|
7889
7925
|
* @memberof HospitalServiceItemModel
|
|
7890
7926
|
*/
|
|
7891
7927
|
'confirmed'?: boolean;
|
|
7928
|
+
/**
|
|
7929
|
+
*
|
|
7930
|
+
* @type {string}
|
|
7931
|
+
* @memberof HospitalServiceItemModel
|
|
7932
|
+
*/
|
|
7933
|
+
'hospitalId'?: string;
|
|
7934
|
+
/**
|
|
7935
|
+
*
|
|
7936
|
+
* @type {string}
|
|
7937
|
+
* @memberof HospitalServiceItemModel
|
|
7938
|
+
*/
|
|
7939
|
+
'hospitalName'?: string | null;
|
|
7940
|
+
/**
|
|
7941
|
+
*
|
|
7942
|
+
* @type {string}
|
|
7943
|
+
* @memberof HospitalServiceItemModel
|
|
7944
|
+
*/
|
|
7945
|
+
'hospitalSlug'?: string | null;
|
|
7946
|
+
/**
|
|
7947
|
+
*
|
|
7948
|
+
* @type {string}
|
|
7949
|
+
* @memberof HospitalServiceItemModel
|
|
7950
|
+
*/
|
|
7951
|
+
'specialtyId'?: string;
|
|
7952
|
+
/**
|
|
7953
|
+
*
|
|
7954
|
+
* @type {string}
|
|
7955
|
+
* @memberof HospitalServiceItemModel
|
|
7956
|
+
*/
|
|
7957
|
+
'specialtyName'?: string | null;
|
|
7892
7958
|
/**
|
|
7893
7959
|
*
|
|
7894
7960
|
* @type {number}
|
|
@@ -7952,76 +8018,76 @@ export interface HospitalServiceModel {
|
|
|
7952
8018
|
'confirmed'?: boolean;
|
|
7953
8019
|
/**
|
|
7954
8020
|
*
|
|
7955
|
-
* @type {
|
|
8021
|
+
* @type {string}
|
|
7956
8022
|
* @memberof HospitalServiceModel
|
|
7957
8023
|
*/
|
|
7958
|
-
'
|
|
8024
|
+
'hospitalId'?: string;
|
|
7959
8025
|
/**
|
|
7960
8026
|
*
|
|
7961
8027
|
* @type {string}
|
|
7962
8028
|
* @memberof HospitalServiceModel
|
|
7963
8029
|
*/
|
|
7964
|
-
'
|
|
8030
|
+
'hospitalName'?: string | null;
|
|
7965
8031
|
/**
|
|
7966
8032
|
*
|
|
7967
8033
|
* @type {string}
|
|
7968
8034
|
* @memberof HospitalServiceModel
|
|
7969
8035
|
*/
|
|
7970
|
-
'
|
|
8036
|
+
'hospitalSlug'?: string | null;
|
|
7971
8037
|
/**
|
|
7972
8038
|
*
|
|
7973
|
-
* @type {
|
|
8039
|
+
* @type {string}
|
|
7974
8040
|
* @memberof HospitalServiceModel
|
|
7975
8041
|
*/
|
|
7976
|
-
'
|
|
8042
|
+
'specialtyId'?: string;
|
|
7977
8043
|
/**
|
|
7978
8044
|
*
|
|
7979
8045
|
* @type {string}
|
|
7980
8046
|
* @memberof HospitalServiceModel
|
|
7981
8047
|
*/
|
|
7982
|
-
'
|
|
8048
|
+
'specialtyName'?: string | null;
|
|
7983
8049
|
/**
|
|
7984
8050
|
*
|
|
7985
|
-
* @type {
|
|
8051
|
+
* @type {number}
|
|
7986
8052
|
* @memberof HospitalServiceModel
|
|
7987
8053
|
*/
|
|
7988
|
-
'
|
|
8054
|
+
'order'?: number;
|
|
7989
8055
|
/**
|
|
7990
8056
|
*
|
|
7991
8057
|
* @type {string}
|
|
7992
8058
|
* @memberof HospitalServiceModel
|
|
7993
8059
|
*/
|
|
7994
|
-
'
|
|
8060
|
+
'photo'?: string | null;
|
|
7995
8061
|
/**
|
|
7996
8062
|
*
|
|
7997
8063
|
* @type {string}
|
|
7998
8064
|
* @memberof HospitalServiceModel
|
|
7999
8065
|
*/
|
|
8000
|
-
'
|
|
8066
|
+
'photoThumbnail'?: string | null;
|
|
8001
8067
|
/**
|
|
8002
8068
|
*
|
|
8003
|
-
* @type {
|
|
8069
|
+
* @type {AuditableEntity}
|
|
8004
8070
|
* @memberof HospitalServiceModel
|
|
8005
8071
|
*/
|
|
8006
|
-
'
|
|
8072
|
+
'auditableEntity'?: AuditableEntity;
|
|
8007
8073
|
/**
|
|
8008
8074
|
*
|
|
8009
8075
|
* @type {string}
|
|
8010
8076
|
* @memberof HospitalServiceModel
|
|
8011
8077
|
*/
|
|
8012
|
-
'
|
|
8078
|
+
'description'?: string | null;
|
|
8013
8079
|
/**
|
|
8014
8080
|
*
|
|
8015
8081
|
* @type {string}
|
|
8016
8082
|
* @memberof HospitalServiceModel
|
|
8017
8083
|
*/
|
|
8018
|
-
'
|
|
8084
|
+
'overview'?: string | null;
|
|
8019
8085
|
/**
|
|
8020
8086
|
*
|
|
8021
8087
|
* @type {string}
|
|
8022
8088
|
* @memberof HospitalServiceModel
|
|
8023
8089
|
*/
|
|
8024
|
-
'
|
|
8090
|
+
'content'?: string | null;
|
|
8025
8091
|
/**
|
|
8026
8092
|
*
|
|
8027
8093
|
* @type {string}
|
|
@@ -8274,6 +8340,30 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8274
8340
|
* @memberof HospitalSpecialtyItemModel
|
|
8275
8341
|
*/
|
|
8276
8342
|
'specialtyId'?: string;
|
|
8343
|
+
/**
|
|
8344
|
+
*
|
|
8345
|
+
* @type {string}
|
|
8346
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8347
|
+
*/
|
|
8348
|
+
'specialtyName'?: string | null;
|
|
8349
|
+
/**
|
|
8350
|
+
*
|
|
8351
|
+
* @type {string}
|
|
8352
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8353
|
+
*/
|
|
8354
|
+
'specialtyTypeId'?: string;
|
|
8355
|
+
/**
|
|
8356
|
+
*
|
|
8357
|
+
* @type {string}
|
|
8358
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8359
|
+
*/
|
|
8360
|
+
'specialtyTypeName'?: string | null;
|
|
8361
|
+
/**
|
|
8362
|
+
*
|
|
8363
|
+
* @type {MarketingType}
|
|
8364
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8365
|
+
*/
|
|
8366
|
+
'marketingType'?: MarketingType;
|
|
8277
8367
|
}
|
|
8278
8368
|
/**
|
|
8279
8369
|
*
|
|
@@ -8358,49 +8448,61 @@ export interface HospitalSpecialtyModel {
|
|
|
8358
8448
|
* @type {string}
|
|
8359
8449
|
* @memberof HospitalSpecialtyModel
|
|
8360
8450
|
*/
|
|
8361
|
-
'
|
|
8451
|
+
'specialtyName'?: string | null;
|
|
8362
8452
|
/**
|
|
8363
8453
|
*
|
|
8364
8454
|
* @type {string}
|
|
8365
8455
|
* @memberof HospitalSpecialtyModel
|
|
8366
8456
|
*/
|
|
8367
|
-
'
|
|
8457
|
+
'specialtyTypeId'?: string;
|
|
8368
8458
|
/**
|
|
8369
8459
|
*
|
|
8370
8460
|
* @type {string}
|
|
8371
8461
|
* @memberof HospitalSpecialtyModel
|
|
8372
8462
|
*/
|
|
8373
|
-
'
|
|
8463
|
+
'specialtyTypeName'?: string | null;
|
|
8464
|
+
/**
|
|
8465
|
+
*
|
|
8466
|
+
* @type {MarketingType}
|
|
8467
|
+
* @memberof HospitalSpecialtyModel
|
|
8468
|
+
*/
|
|
8469
|
+
'marketingType'?: MarketingType;
|
|
8374
8470
|
/**
|
|
8375
8471
|
*
|
|
8376
8472
|
* @type {string}
|
|
8377
8473
|
* @memberof HospitalSpecialtyModel
|
|
8378
8474
|
*/
|
|
8379
|
-
'
|
|
8475
|
+
'description'?: string | null;
|
|
8380
8476
|
/**
|
|
8381
8477
|
*
|
|
8382
8478
|
* @type {string}
|
|
8383
8479
|
* @memberof HospitalSpecialtyModel
|
|
8384
8480
|
*/
|
|
8385
|
-
'
|
|
8481
|
+
'overview'?: string | null;
|
|
8386
8482
|
/**
|
|
8387
8483
|
*
|
|
8388
8484
|
* @type {string}
|
|
8389
8485
|
* @memberof HospitalSpecialtyModel
|
|
8390
8486
|
*/
|
|
8391
|
-
'
|
|
8487
|
+
'content'?: string | null;
|
|
8392
8488
|
/**
|
|
8393
8489
|
*
|
|
8394
8490
|
* @type {string}
|
|
8395
8491
|
* @memberof HospitalSpecialtyModel
|
|
8396
8492
|
*/
|
|
8397
|
-
'
|
|
8493
|
+
'hospitalId'?: string;
|
|
8398
8494
|
/**
|
|
8399
8495
|
*
|
|
8400
8496
|
* @type {string}
|
|
8401
8497
|
* @memberof HospitalSpecialtyModel
|
|
8402
8498
|
*/
|
|
8403
|
-
'
|
|
8499
|
+
'hospitalName'?: string | null;
|
|
8500
|
+
/**
|
|
8501
|
+
*
|
|
8502
|
+
* @type {string}
|
|
8503
|
+
* @memberof HospitalSpecialtyModel
|
|
8504
|
+
*/
|
|
8505
|
+
'hospitalSlug'?: string | null;
|
|
8404
8506
|
/**
|
|
8405
8507
|
*
|
|
8406
8508
|
* @type {string}
|
|
@@ -24285,6 +24387,7 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
24285
24387
|
* @param {string} [doctorId]
|
|
24286
24388
|
* @param {string} [doctorName]
|
|
24287
24389
|
* @param {string} [doctorSlug]
|
|
24390
|
+
* @param {string} [specialtyId]
|
|
24288
24391
|
* @param {string} [languageCode]
|
|
24289
24392
|
* @param {boolean} [showHidden]
|
|
24290
24393
|
* @param {number} [page]
|
|
@@ -24293,7 +24396,7 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
24293
24396
|
* @param {*} [options] Override http request option.
|
|
24294
24397
|
* @throws {RequiredError}
|
|
24295
24398
|
*/
|
|
24296
|
-
apiV1DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24399
|
+
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> => {
|
|
24297
24400
|
const localVarPath = `/api/v1/doctoraffiliations`;
|
|
24298
24401
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24299
24402
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -24330,6 +24433,10 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
24330
24433
|
localVarQueryParameter['DoctorSlug'] = doctorSlug;
|
|
24331
24434
|
}
|
|
24332
24435
|
|
|
24436
|
+
if (specialtyId !== undefined) {
|
|
24437
|
+
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
24438
|
+
}
|
|
24439
|
+
|
|
24333
24440
|
if (languageCode !== undefined) {
|
|
24334
24441
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
24335
24442
|
}
|
|
@@ -24541,6 +24648,7 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
24541
24648
|
* @param {string} [doctorId]
|
|
24542
24649
|
* @param {string} [doctorName]
|
|
24543
24650
|
* @param {string} [doctorSlug]
|
|
24651
|
+
* @param {string} [specialtyId]
|
|
24544
24652
|
* @param {string} [languageCode]
|
|
24545
24653
|
* @param {boolean} [showHidden]
|
|
24546
24654
|
* @param {number} [page]
|
|
@@ -24549,8 +24657,8 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
24549
24657
|
* @param {*} [options] Override http request option.
|
|
24550
24658
|
* @throws {RequiredError}
|
|
24551
24659
|
*/
|
|
24552
|
-
async apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
|
|
24553
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
24660
|
+
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>> {
|
|
24661
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
24554
24662
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24555
24663
|
},
|
|
24556
24664
|
/**
|
|
@@ -24616,6 +24724,7 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
24616
24724
|
* @param {string} [doctorId]
|
|
24617
24725
|
* @param {string} [doctorName]
|
|
24618
24726
|
* @param {string} [doctorSlug]
|
|
24727
|
+
* @param {string} [specialtyId]
|
|
24619
24728
|
* @param {string} [languageCode]
|
|
24620
24729
|
* @param {boolean} [showHidden]
|
|
24621
24730
|
* @param {number} [page]
|
|
@@ -24624,8 +24733,8 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
24624
24733
|
* @param {*} [options] Override http request option.
|
|
24625
24734
|
* @throws {RequiredError}
|
|
24626
24735
|
*/
|
|
24627
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
|
|
24628
|
-
return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
24736
|
+
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> {
|
|
24737
|
+
return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
24629
24738
|
},
|
|
24630
24739
|
/**
|
|
24631
24740
|
*
|
|
@@ -24686,6 +24795,7 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
24686
24795
|
* @param {string} [doctorId]
|
|
24687
24796
|
* @param {string} [doctorName]
|
|
24688
24797
|
* @param {string} [doctorSlug]
|
|
24798
|
+
* @param {string} [specialtyId]
|
|
24689
24799
|
* @param {string} [languageCode]
|
|
24690
24800
|
* @param {boolean} [showHidden]
|
|
24691
24801
|
* @param {number} [page]
|
|
@@ -24695,8 +24805,8 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
24695
24805
|
* @throws {RequiredError}
|
|
24696
24806
|
* @memberof DoctorAffiliationsApi
|
|
24697
24807
|
*/
|
|
24698
|
-
public apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
24699
|
-
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
24808
|
+
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) {
|
|
24809
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, specialtyId, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
24700
24810
|
}
|
|
24701
24811
|
|
|
24702
24812
|
/**
|