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.d.ts +325 -5
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +21 -7
- package/package.json +1 -1
- package/src/api.ts +336 -8
package/lib/api.d.ts
CHANGED
|
@@ -668,6 +668,30 @@ export interface ArticleItemModel {
|
|
|
668
668
|
* @memberof ArticleItemModel
|
|
669
669
|
*/
|
|
670
670
|
'youtubeUrl'?: string | null;
|
|
671
|
+
/**
|
|
672
|
+
*
|
|
673
|
+
* @type {string}
|
|
674
|
+
* @memberof ArticleItemModel
|
|
675
|
+
*/
|
|
676
|
+
'photo'?: string | null;
|
|
677
|
+
/**
|
|
678
|
+
*
|
|
679
|
+
* @type {string}
|
|
680
|
+
* @memberof ArticleItemModel
|
|
681
|
+
*/
|
|
682
|
+
'photoThumbnail'?: string | null;
|
|
683
|
+
/**
|
|
684
|
+
*
|
|
685
|
+
* @type {string}
|
|
686
|
+
* @memberof ArticleItemModel
|
|
687
|
+
*/
|
|
688
|
+
'background'?: string | null;
|
|
689
|
+
/**
|
|
690
|
+
*
|
|
691
|
+
* @type {string}
|
|
692
|
+
* @memberof ArticleItemModel
|
|
693
|
+
*/
|
|
694
|
+
'backgroundThumbnail'?: string | null;
|
|
671
695
|
/**
|
|
672
696
|
*
|
|
673
697
|
* @type {Array<ArticleTagItemModel>}
|
|
@@ -765,6 +789,30 @@ export interface ArticleModel {
|
|
|
765
789
|
* @memberof ArticleModel
|
|
766
790
|
*/
|
|
767
791
|
'youtubeUrl'?: string | null;
|
|
792
|
+
/**
|
|
793
|
+
*
|
|
794
|
+
* @type {string}
|
|
795
|
+
* @memberof ArticleModel
|
|
796
|
+
*/
|
|
797
|
+
'photo'?: string | null;
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @type {string}
|
|
801
|
+
* @memberof ArticleModel
|
|
802
|
+
*/
|
|
803
|
+
'photoThumbnail'?: string | null;
|
|
804
|
+
/**
|
|
805
|
+
*
|
|
806
|
+
* @type {string}
|
|
807
|
+
* @memberof ArticleModel
|
|
808
|
+
*/
|
|
809
|
+
'background'?: string | null;
|
|
810
|
+
/**
|
|
811
|
+
*
|
|
812
|
+
* @type {string}
|
|
813
|
+
* @memberof ArticleModel
|
|
814
|
+
*/
|
|
815
|
+
'backgroundThumbnail'?: string | null;
|
|
768
816
|
/**
|
|
769
817
|
*
|
|
770
818
|
* @type {Array<ArticleTagItemModel>}
|
|
@@ -3230,6 +3278,12 @@ export interface CreateArticleCommand {
|
|
|
3230
3278
|
* @memberof CreateArticleCommand
|
|
3231
3279
|
*/
|
|
3232
3280
|
'content'?: string | null;
|
|
3281
|
+
/**
|
|
3282
|
+
*
|
|
3283
|
+
* @type {string}
|
|
3284
|
+
* @memberof CreateArticleCommand
|
|
3285
|
+
*/
|
|
3286
|
+
'hospitalId'?: string;
|
|
3233
3287
|
/**
|
|
3234
3288
|
*
|
|
3235
3289
|
* @type {ArticleStatus}
|
|
@@ -3253,7 +3307,25 @@ export interface CreateArticleCommand {
|
|
|
3253
3307
|
* @type {string}
|
|
3254
3308
|
* @memberof CreateArticleCommand
|
|
3255
3309
|
*/
|
|
3256
|
-
'
|
|
3310
|
+
'photo'?: string | null;
|
|
3311
|
+
/**
|
|
3312
|
+
*
|
|
3313
|
+
* @type {string}
|
|
3314
|
+
* @memberof CreateArticleCommand
|
|
3315
|
+
*/
|
|
3316
|
+
'photoThumbnail'?: string | null;
|
|
3317
|
+
/**
|
|
3318
|
+
*
|
|
3319
|
+
* @type {string}
|
|
3320
|
+
* @memberof CreateArticleCommand
|
|
3321
|
+
*/
|
|
3322
|
+
'background'?: string | null;
|
|
3323
|
+
/**
|
|
3324
|
+
*
|
|
3325
|
+
* @type {string}
|
|
3326
|
+
* @memberof CreateArticleCommand
|
|
3327
|
+
*/
|
|
3328
|
+
'backgroundThumbnail'?: string | null;
|
|
3257
3329
|
/**
|
|
3258
3330
|
*
|
|
3259
3331
|
* @type {Array<ArticleTagItemModel>}
|
|
@@ -4957,6 +5029,30 @@ export interface CreateSpecialtyCommand {
|
|
|
4957
5029
|
* @memberof CreateSpecialtyCommand
|
|
4958
5030
|
*/
|
|
4959
5031
|
'content'?: string | null;
|
|
5032
|
+
/**
|
|
5033
|
+
*
|
|
5034
|
+
* @type {string}
|
|
5035
|
+
* @memberof CreateSpecialtyCommand
|
|
5036
|
+
*/
|
|
5037
|
+
'photo'?: string | null;
|
|
5038
|
+
/**
|
|
5039
|
+
*
|
|
5040
|
+
* @type {string}
|
|
5041
|
+
* @memberof CreateSpecialtyCommand
|
|
5042
|
+
*/
|
|
5043
|
+
'photoThumbnail'?: string | null;
|
|
5044
|
+
/**
|
|
5045
|
+
*
|
|
5046
|
+
* @type {string}
|
|
5047
|
+
* @memberof CreateSpecialtyCommand
|
|
5048
|
+
*/
|
|
5049
|
+
'background'?: string | null;
|
|
5050
|
+
/**
|
|
5051
|
+
*
|
|
5052
|
+
* @type {string}
|
|
5053
|
+
* @memberof CreateSpecialtyCommand
|
|
5054
|
+
*/
|
|
5055
|
+
'backgroundThumbnail'?: string | null;
|
|
4960
5056
|
/**
|
|
4961
5057
|
*
|
|
4962
5058
|
* @type {string}
|
|
@@ -5000,6 +5096,30 @@ export interface CreateSpecialtyTypeCommand {
|
|
|
5000
5096
|
* @memberof CreateSpecialtyTypeCommand
|
|
5001
5097
|
*/
|
|
5002
5098
|
'marketingType'?: MarketingType;
|
|
5099
|
+
/**
|
|
5100
|
+
*
|
|
5101
|
+
* @type {string}
|
|
5102
|
+
* @memberof CreateSpecialtyTypeCommand
|
|
5103
|
+
*/
|
|
5104
|
+
'photo'?: string | null;
|
|
5105
|
+
/**
|
|
5106
|
+
*
|
|
5107
|
+
* @type {string}
|
|
5108
|
+
* @memberof CreateSpecialtyTypeCommand
|
|
5109
|
+
*/
|
|
5110
|
+
'photoThumbnail'?: string | null;
|
|
5111
|
+
/**
|
|
5112
|
+
*
|
|
5113
|
+
* @type {string}
|
|
5114
|
+
* @memberof CreateSpecialtyTypeCommand
|
|
5115
|
+
*/
|
|
5116
|
+
'background'?: string | null;
|
|
5117
|
+
/**
|
|
5118
|
+
*
|
|
5119
|
+
* @type {string}
|
|
5120
|
+
* @memberof CreateSpecialtyTypeCommand
|
|
5121
|
+
*/
|
|
5122
|
+
'backgroundThumbnail'?: string | null;
|
|
5003
5123
|
/**
|
|
5004
5124
|
*
|
|
5005
5125
|
* @type {Array<MediaModel>}
|
|
@@ -5803,6 +5923,18 @@ export interface DoctorAffiliationItemModel {
|
|
|
5803
5923
|
* @memberof DoctorAffiliationItemModel
|
|
5804
5924
|
*/
|
|
5805
5925
|
'hospitalSlug'?: string | null;
|
|
5926
|
+
/**
|
|
5927
|
+
*
|
|
5928
|
+
* @type {string}
|
|
5929
|
+
* @memberof DoctorAffiliationItemModel
|
|
5930
|
+
*/
|
|
5931
|
+
'countryId'?: string;
|
|
5932
|
+
/**
|
|
5933
|
+
*
|
|
5934
|
+
* @type {MarketingType}
|
|
5935
|
+
* @memberof DoctorAffiliationItemModel
|
|
5936
|
+
*/
|
|
5937
|
+
'marketingType'?: MarketingType;
|
|
5806
5938
|
/**
|
|
5807
5939
|
*
|
|
5808
5940
|
* @type {string}
|
|
@@ -5900,6 +6032,18 @@ export interface DoctorAffiliationModel {
|
|
|
5900
6032
|
* @memberof DoctorAffiliationModel
|
|
5901
6033
|
*/
|
|
5902
6034
|
'hospitalSlug'?: string | null;
|
|
6035
|
+
/**
|
|
6036
|
+
*
|
|
6037
|
+
* @type {string}
|
|
6038
|
+
* @memberof DoctorAffiliationModel
|
|
6039
|
+
*/
|
|
6040
|
+
'countryId'?: string;
|
|
6041
|
+
/**
|
|
6042
|
+
*
|
|
6043
|
+
* @type {MarketingType}
|
|
6044
|
+
* @memberof DoctorAffiliationModel
|
|
6045
|
+
*/
|
|
6046
|
+
'marketingType'?: MarketingType;
|
|
5903
6047
|
/**
|
|
5904
6048
|
*
|
|
5905
6049
|
* @type {string}
|
|
@@ -10876,6 +11020,30 @@ export interface SpecialtyItemModel {
|
|
|
10876
11020
|
* @memberof SpecialtyItemModel
|
|
10877
11021
|
*/
|
|
10878
11022
|
'confirmed'?: boolean;
|
|
11023
|
+
/**
|
|
11024
|
+
*
|
|
11025
|
+
* @type {string}
|
|
11026
|
+
* @memberof SpecialtyItemModel
|
|
11027
|
+
*/
|
|
11028
|
+
'photo'?: string | null;
|
|
11029
|
+
/**
|
|
11030
|
+
*
|
|
11031
|
+
* @type {string}
|
|
11032
|
+
* @memberof SpecialtyItemModel
|
|
11033
|
+
*/
|
|
11034
|
+
'photoThumbnail'?: string | null;
|
|
11035
|
+
/**
|
|
11036
|
+
*
|
|
11037
|
+
* @type {string}
|
|
11038
|
+
* @memberof SpecialtyItemModel
|
|
11039
|
+
*/
|
|
11040
|
+
'background'?: string | null;
|
|
11041
|
+
/**
|
|
11042
|
+
*
|
|
11043
|
+
* @type {string}
|
|
11044
|
+
* @memberof SpecialtyItemModel
|
|
11045
|
+
*/
|
|
11046
|
+
'backgroundThumbnail'?: string | null;
|
|
10879
11047
|
/**
|
|
10880
11048
|
*
|
|
10881
11049
|
* @type {string}
|
|
@@ -10986,6 +11154,30 @@ export interface SpecialtyModel {
|
|
|
10986
11154
|
* @memberof SpecialtyModel
|
|
10987
11155
|
*/
|
|
10988
11156
|
'confirmed'?: boolean;
|
|
11157
|
+
/**
|
|
11158
|
+
*
|
|
11159
|
+
* @type {string}
|
|
11160
|
+
* @memberof SpecialtyModel
|
|
11161
|
+
*/
|
|
11162
|
+
'photo'?: string | null;
|
|
11163
|
+
/**
|
|
11164
|
+
*
|
|
11165
|
+
* @type {string}
|
|
11166
|
+
* @memberof SpecialtyModel
|
|
11167
|
+
*/
|
|
11168
|
+
'photoThumbnail'?: string | null;
|
|
11169
|
+
/**
|
|
11170
|
+
*
|
|
11171
|
+
* @type {string}
|
|
11172
|
+
* @memberof SpecialtyModel
|
|
11173
|
+
*/
|
|
11174
|
+
'background'?: string | null;
|
|
11175
|
+
/**
|
|
11176
|
+
*
|
|
11177
|
+
* @type {string}
|
|
11178
|
+
* @memberof SpecialtyModel
|
|
11179
|
+
*/
|
|
11180
|
+
'backgroundThumbnail'?: string | null;
|
|
10989
11181
|
/**
|
|
10990
11182
|
*
|
|
10991
11183
|
* @type {string}
|
|
@@ -11071,6 +11263,30 @@ export interface SpecialtyTypeItemModel {
|
|
|
11071
11263
|
* @memberof SpecialtyTypeItemModel
|
|
11072
11264
|
*/
|
|
11073
11265
|
'confirmed'?: boolean;
|
|
11266
|
+
/**
|
|
11267
|
+
*
|
|
11268
|
+
* @type {string}
|
|
11269
|
+
* @memberof SpecialtyTypeItemModel
|
|
11270
|
+
*/
|
|
11271
|
+
'photo'?: string | null;
|
|
11272
|
+
/**
|
|
11273
|
+
*
|
|
11274
|
+
* @type {string}
|
|
11275
|
+
* @memberof SpecialtyTypeItemModel
|
|
11276
|
+
*/
|
|
11277
|
+
'photoThumbnail'?: string | null;
|
|
11278
|
+
/**
|
|
11279
|
+
*
|
|
11280
|
+
* @type {string}
|
|
11281
|
+
* @memberof SpecialtyTypeItemModel
|
|
11282
|
+
*/
|
|
11283
|
+
'background'?: string | null;
|
|
11284
|
+
/**
|
|
11285
|
+
*
|
|
11286
|
+
* @type {string}
|
|
11287
|
+
* @memberof SpecialtyTypeItemModel
|
|
11288
|
+
*/
|
|
11289
|
+
'backgroundThumbnail'?: string | null;
|
|
11074
11290
|
/**
|
|
11075
11291
|
*
|
|
11076
11292
|
* @type {string}
|
|
@@ -11138,6 +11354,30 @@ export interface SpecialtyTypeModel {
|
|
|
11138
11354
|
* @memberof SpecialtyTypeModel
|
|
11139
11355
|
*/
|
|
11140
11356
|
'confirmed'?: boolean;
|
|
11357
|
+
/**
|
|
11358
|
+
*
|
|
11359
|
+
* @type {string}
|
|
11360
|
+
* @memberof SpecialtyTypeModel
|
|
11361
|
+
*/
|
|
11362
|
+
'photo'?: string | null;
|
|
11363
|
+
/**
|
|
11364
|
+
*
|
|
11365
|
+
* @type {string}
|
|
11366
|
+
* @memberof SpecialtyTypeModel
|
|
11367
|
+
*/
|
|
11368
|
+
'photoThumbnail'?: string | null;
|
|
11369
|
+
/**
|
|
11370
|
+
*
|
|
11371
|
+
* @type {string}
|
|
11372
|
+
* @memberof SpecialtyTypeModel
|
|
11373
|
+
*/
|
|
11374
|
+
'background'?: string | null;
|
|
11375
|
+
/**
|
|
11376
|
+
*
|
|
11377
|
+
* @type {string}
|
|
11378
|
+
* @memberof SpecialtyTypeModel
|
|
11379
|
+
*/
|
|
11380
|
+
'backgroundThumbnail'?: string | null;
|
|
11141
11381
|
/**
|
|
11142
11382
|
*
|
|
11143
11383
|
* @type {string}
|
|
@@ -11711,6 +11951,30 @@ export interface UpdateArticleCommand {
|
|
|
11711
11951
|
* @memberof UpdateArticleCommand
|
|
11712
11952
|
*/
|
|
11713
11953
|
'youtubeUrl'?: string | null;
|
|
11954
|
+
/**
|
|
11955
|
+
*
|
|
11956
|
+
* @type {string}
|
|
11957
|
+
* @memberof UpdateArticleCommand
|
|
11958
|
+
*/
|
|
11959
|
+
'photo'?: string | null;
|
|
11960
|
+
/**
|
|
11961
|
+
*
|
|
11962
|
+
* @type {string}
|
|
11963
|
+
* @memberof UpdateArticleCommand
|
|
11964
|
+
*/
|
|
11965
|
+
'photoThumbnail'?: string | null;
|
|
11966
|
+
/**
|
|
11967
|
+
*
|
|
11968
|
+
* @type {string}
|
|
11969
|
+
* @memberof UpdateArticleCommand
|
|
11970
|
+
*/
|
|
11971
|
+
'background'?: string | null;
|
|
11972
|
+
/**
|
|
11973
|
+
*
|
|
11974
|
+
* @type {string}
|
|
11975
|
+
* @memberof UpdateArticleCommand
|
|
11976
|
+
*/
|
|
11977
|
+
'backgroundThumbnail'?: string | null;
|
|
11714
11978
|
/**
|
|
11715
11979
|
*
|
|
11716
11980
|
* @type {Array<ArticleTagItemModel>}
|
|
@@ -13494,6 +13758,30 @@ export interface UpdateSpecialtyCommand {
|
|
|
13494
13758
|
* @memberof UpdateSpecialtyCommand
|
|
13495
13759
|
*/
|
|
13496
13760
|
'languageCode'?: string | null;
|
|
13761
|
+
/**
|
|
13762
|
+
*
|
|
13763
|
+
* @type {string}
|
|
13764
|
+
* @memberof UpdateSpecialtyCommand
|
|
13765
|
+
*/
|
|
13766
|
+
'photo'?: string | null;
|
|
13767
|
+
/**
|
|
13768
|
+
*
|
|
13769
|
+
* @type {string}
|
|
13770
|
+
* @memberof UpdateSpecialtyCommand
|
|
13771
|
+
*/
|
|
13772
|
+
'photoThumbnail'?: string | null;
|
|
13773
|
+
/**
|
|
13774
|
+
*
|
|
13775
|
+
* @type {string}
|
|
13776
|
+
* @memberof UpdateSpecialtyCommand
|
|
13777
|
+
*/
|
|
13778
|
+
'background'?: string | null;
|
|
13779
|
+
/**
|
|
13780
|
+
*
|
|
13781
|
+
* @type {string}
|
|
13782
|
+
* @memberof UpdateSpecialtyCommand
|
|
13783
|
+
*/
|
|
13784
|
+
'backgroundThumbnail'?: string | null;
|
|
13497
13785
|
/**
|
|
13498
13786
|
*
|
|
13499
13787
|
* @type {string}
|
|
@@ -13549,6 +13837,30 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
13549
13837
|
* @memberof UpdateSpecialtyTypeCommand
|
|
13550
13838
|
*/
|
|
13551
13839
|
'marketingType'?: MarketingType;
|
|
13840
|
+
/**
|
|
13841
|
+
*
|
|
13842
|
+
* @type {string}
|
|
13843
|
+
* @memberof UpdateSpecialtyTypeCommand
|
|
13844
|
+
*/
|
|
13845
|
+
'photo'?: string | null;
|
|
13846
|
+
/**
|
|
13847
|
+
*
|
|
13848
|
+
* @type {string}
|
|
13849
|
+
* @memberof UpdateSpecialtyTypeCommand
|
|
13850
|
+
*/
|
|
13851
|
+
'photoThumbnail'?: string | null;
|
|
13852
|
+
/**
|
|
13853
|
+
*
|
|
13854
|
+
* @type {string}
|
|
13855
|
+
* @memberof UpdateSpecialtyTypeCommand
|
|
13856
|
+
*/
|
|
13857
|
+
'background'?: string | null;
|
|
13858
|
+
/**
|
|
13859
|
+
*
|
|
13860
|
+
* @type {string}
|
|
13861
|
+
* @memberof UpdateSpecialtyTypeCommand
|
|
13862
|
+
*/
|
|
13863
|
+
'backgroundThumbnail'?: string | null;
|
|
13552
13864
|
/**
|
|
13553
13865
|
*
|
|
13554
13866
|
* @type {string}
|
|
@@ -19199,6 +19511,8 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
19199
19511
|
* @param {string} [doctorName]
|
|
19200
19512
|
* @param {string} [doctorSlug]
|
|
19201
19513
|
* @param {string} [specialtyId]
|
|
19514
|
+
* @param {MarketingType} [marketingType]
|
|
19515
|
+
* @param {string} [countryId]
|
|
19202
19516
|
* @param {string} [languageCode]
|
|
19203
19517
|
* @param {boolean} [showHidden]
|
|
19204
19518
|
* @param {number} [page]
|
|
@@ -19207,7 +19521,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
19207
19521
|
* @param {*} [options] Override http request option.
|
|
19208
19522
|
* @throws {RequiredError}
|
|
19209
19523
|
*/
|
|
19210
|
-
apiV1DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19524
|
+
apiV1DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19211
19525
|
/**
|
|
19212
19526
|
*
|
|
19213
19527
|
* @summary Delete doctor affiliation.
|
|
@@ -19306,6 +19620,8 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
19306
19620
|
* @param {string} [doctorName]
|
|
19307
19621
|
* @param {string} [doctorSlug]
|
|
19308
19622
|
* @param {string} [specialtyId]
|
|
19623
|
+
* @param {MarketingType} [marketingType]
|
|
19624
|
+
* @param {string} [countryId]
|
|
19309
19625
|
* @param {string} [languageCode]
|
|
19310
19626
|
* @param {boolean} [showHidden]
|
|
19311
19627
|
* @param {number} [page]
|
|
@@ -19314,7 +19630,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
19314
19630
|
* @param {*} [options] Override http request option.
|
|
19315
19631
|
* @throws {RequiredError}
|
|
19316
19632
|
*/
|
|
19317
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
19633
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
19318
19634
|
/**
|
|
19319
19635
|
*
|
|
19320
19636
|
* @summary Delete doctor affiliation.
|
|
@@ -19413,6 +19729,8 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
19413
19729
|
* @param {string} [doctorName]
|
|
19414
19730
|
* @param {string} [doctorSlug]
|
|
19415
19731
|
* @param {string} [specialtyId]
|
|
19732
|
+
* @param {MarketingType} [marketingType]
|
|
19733
|
+
* @param {string} [countryId]
|
|
19416
19734
|
* @param {string} [languageCode]
|
|
19417
19735
|
* @param {boolean} [showHidden]
|
|
19418
19736
|
* @param {number} [page]
|
|
@@ -19421,7 +19739,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
19421
19739
|
* @param {*} [options] Override http request option.
|
|
19422
19740
|
* @throws {RequiredError}
|
|
19423
19741
|
*/
|
|
19424
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
19742
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
19425
19743
|
/**
|
|
19426
19744
|
*
|
|
19427
19745
|
* @summary Delete doctor affiliation.
|
|
@@ -19527,6 +19845,8 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
19527
19845
|
* @param {string} [doctorName]
|
|
19528
19846
|
* @param {string} [doctorSlug]
|
|
19529
19847
|
* @param {string} [specialtyId]
|
|
19848
|
+
* @param {MarketingType} [marketingType]
|
|
19849
|
+
* @param {string} [countryId]
|
|
19530
19850
|
* @param {string} [languageCode]
|
|
19531
19851
|
* @param {boolean} [showHidden]
|
|
19532
19852
|
* @param {number} [page]
|
|
@@ -19536,7 +19856,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
19536
19856
|
* @throws {RequiredError}
|
|
19537
19857
|
* @memberof DoctorAffiliationsApi
|
|
19538
19858
|
*/
|
|
19539
|
-
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<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
|
|
19859
|
+
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<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
|
|
19540
19860
|
/**
|
|
19541
19861
|
*
|
|
19542
19862
|
* @summary Delete doctor affiliation.
|