ch-admin-api-client-typescript 3.5.3 → 3.5.6
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 +148 -30
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +14 -7
- package/package.json +1 -1
- package/src/api.ts +155 -33
package/lib/api.d.ts
CHANGED
|
@@ -2701,6 +2701,12 @@ export interface ContributorItemModel {
|
|
|
2701
2701
|
* @memberof ContributorItemModel
|
|
2702
2702
|
*/
|
|
2703
2703
|
'photoThumbnail'?: string | null;
|
|
2704
|
+
/**
|
|
2705
|
+
*
|
|
2706
|
+
* @type {string}
|
|
2707
|
+
* @memberof ContributorItemModel
|
|
2708
|
+
*/
|
|
2709
|
+
'website'?: string | null;
|
|
2704
2710
|
/**
|
|
2705
2711
|
*
|
|
2706
2712
|
* @type {number}
|
|
@@ -2792,6 +2798,12 @@ export interface ContributorModel {
|
|
|
2792
2798
|
* @memberof ContributorModel
|
|
2793
2799
|
*/
|
|
2794
2800
|
'photoThumbnail'?: string | null;
|
|
2801
|
+
/**
|
|
2802
|
+
*
|
|
2803
|
+
* @type {string}
|
|
2804
|
+
* @memberof ContributorModel
|
|
2805
|
+
*/
|
|
2806
|
+
'website'?: string | null;
|
|
2795
2807
|
/**
|
|
2796
2808
|
*
|
|
2797
2809
|
* @type {number}
|
|
@@ -2916,6 +2928,12 @@ export interface CountryItemModel {
|
|
|
2916
2928
|
* @memberof CountryItemModel
|
|
2917
2929
|
*/
|
|
2918
2930
|
'confirmed'?: boolean;
|
|
2931
|
+
/**
|
|
2932
|
+
*
|
|
2933
|
+
* @type {string}
|
|
2934
|
+
* @memberof CountryItemModel
|
|
2935
|
+
*/
|
|
2936
|
+
'logo'?: string | null;
|
|
2919
2937
|
/**
|
|
2920
2938
|
*
|
|
2921
2939
|
* @type {AuditableEntity}
|
|
@@ -2959,6 +2977,12 @@ export interface CountryModel {
|
|
|
2959
2977
|
* @memberof CountryModel
|
|
2960
2978
|
*/
|
|
2961
2979
|
'confirmed'?: boolean;
|
|
2980
|
+
/**
|
|
2981
|
+
*
|
|
2982
|
+
* @type {string}
|
|
2983
|
+
* @memberof CountryModel
|
|
2984
|
+
*/
|
|
2985
|
+
'logo'?: string | null;
|
|
2962
2986
|
/**
|
|
2963
2987
|
*
|
|
2964
2988
|
* @type {AuditableEntity}
|
|
@@ -2985,10 +3009,10 @@ export interface CountryModel {
|
|
|
2985
3009
|
'content'?: string | null;
|
|
2986
3010
|
/**
|
|
2987
3011
|
*
|
|
2988
|
-
* @type {
|
|
3012
|
+
* @type {Array<MediaModel>}
|
|
2989
3013
|
* @memberof CountryModel
|
|
2990
3014
|
*/
|
|
2991
|
-
'
|
|
3015
|
+
'medias'?: Array<MediaModel> | null;
|
|
2992
3016
|
}
|
|
2993
3017
|
/**
|
|
2994
3018
|
*
|
|
@@ -7544,6 +7568,12 @@ export interface HospitalItemModel {
|
|
|
7544
7568
|
* @memberof HospitalItemModel
|
|
7545
7569
|
*/
|
|
7546
7570
|
'languageCode'?: string | null;
|
|
7571
|
+
/**
|
|
7572
|
+
*
|
|
7573
|
+
* @type {string}
|
|
7574
|
+
* @memberof HospitalItemModel
|
|
7575
|
+
*/
|
|
7576
|
+
'countryName'?: string | null;
|
|
7547
7577
|
/**
|
|
7548
7578
|
*
|
|
7549
7579
|
* @type {string}
|
|
@@ -7679,6 +7709,12 @@ export interface HospitalModel {
|
|
|
7679
7709
|
* @memberof HospitalModel
|
|
7680
7710
|
*/
|
|
7681
7711
|
'languageCode'?: string | null;
|
|
7712
|
+
/**
|
|
7713
|
+
*
|
|
7714
|
+
* @type {string}
|
|
7715
|
+
* @memberof HospitalModel
|
|
7716
|
+
*/
|
|
7717
|
+
'countryName'?: string | null;
|
|
7682
7718
|
/**
|
|
7683
7719
|
*
|
|
7684
7720
|
* @type {string}
|
|
@@ -7866,6 +7902,36 @@ export interface HospitalServiceItemModel {
|
|
|
7866
7902
|
* @memberof HospitalServiceItemModel
|
|
7867
7903
|
*/
|
|
7868
7904
|
'confirmed'?: boolean;
|
|
7905
|
+
/**
|
|
7906
|
+
*
|
|
7907
|
+
* @type {string}
|
|
7908
|
+
* @memberof HospitalServiceItemModel
|
|
7909
|
+
*/
|
|
7910
|
+
'hospitalId'?: string;
|
|
7911
|
+
/**
|
|
7912
|
+
*
|
|
7913
|
+
* @type {string}
|
|
7914
|
+
* @memberof HospitalServiceItemModel
|
|
7915
|
+
*/
|
|
7916
|
+
'hospitalName'?: string | null;
|
|
7917
|
+
/**
|
|
7918
|
+
*
|
|
7919
|
+
* @type {string}
|
|
7920
|
+
* @memberof HospitalServiceItemModel
|
|
7921
|
+
*/
|
|
7922
|
+
'hospitalSlug'?: string | null;
|
|
7923
|
+
/**
|
|
7924
|
+
*
|
|
7925
|
+
* @type {string}
|
|
7926
|
+
* @memberof HospitalServiceItemModel
|
|
7927
|
+
*/
|
|
7928
|
+
'specialtyId'?: string;
|
|
7929
|
+
/**
|
|
7930
|
+
*
|
|
7931
|
+
* @type {string}
|
|
7932
|
+
* @memberof HospitalServiceItemModel
|
|
7933
|
+
*/
|
|
7934
|
+
'specialtyName'?: string | null;
|
|
7869
7935
|
/**
|
|
7870
7936
|
*
|
|
7871
7937
|
* @type {number}
|
|
@@ -7929,76 +7995,76 @@ export interface HospitalServiceModel {
|
|
|
7929
7995
|
'confirmed'?: boolean;
|
|
7930
7996
|
/**
|
|
7931
7997
|
*
|
|
7932
|
-
* @type {
|
|
7998
|
+
* @type {string}
|
|
7933
7999
|
* @memberof HospitalServiceModel
|
|
7934
8000
|
*/
|
|
7935
|
-
'
|
|
8001
|
+
'hospitalId'?: string;
|
|
7936
8002
|
/**
|
|
7937
8003
|
*
|
|
7938
8004
|
* @type {string}
|
|
7939
8005
|
* @memberof HospitalServiceModel
|
|
7940
8006
|
*/
|
|
7941
|
-
'
|
|
8007
|
+
'hospitalName'?: string | null;
|
|
7942
8008
|
/**
|
|
7943
8009
|
*
|
|
7944
8010
|
* @type {string}
|
|
7945
8011
|
* @memberof HospitalServiceModel
|
|
7946
8012
|
*/
|
|
7947
|
-
'
|
|
8013
|
+
'hospitalSlug'?: string | null;
|
|
7948
8014
|
/**
|
|
7949
8015
|
*
|
|
7950
|
-
* @type {
|
|
8016
|
+
* @type {string}
|
|
7951
8017
|
* @memberof HospitalServiceModel
|
|
7952
8018
|
*/
|
|
7953
|
-
'
|
|
8019
|
+
'specialtyId'?: string;
|
|
7954
8020
|
/**
|
|
7955
8021
|
*
|
|
7956
8022
|
* @type {string}
|
|
7957
8023
|
* @memberof HospitalServiceModel
|
|
7958
8024
|
*/
|
|
7959
|
-
'
|
|
8025
|
+
'specialtyName'?: string | null;
|
|
7960
8026
|
/**
|
|
7961
8027
|
*
|
|
7962
|
-
* @type {
|
|
8028
|
+
* @type {number}
|
|
7963
8029
|
* @memberof HospitalServiceModel
|
|
7964
8030
|
*/
|
|
7965
|
-
'
|
|
8031
|
+
'order'?: number;
|
|
7966
8032
|
/**
|
|
7967
8033
|
*
|
|
7968
8034
|
* @type {string}
|
|
7969
8035
|
* @memberof HospitalServiceModel
|
|
7970
8036
|
*/
|
|
7971
|
-
'
|
|
8037
|
+
'photo'?: string | null;
|
|
7972
8038
|
/**
|
|
7973
8039
|
*
|
|
7974
8040
|
* @type {string}
|
|
7975
8041
|
* @memberof HospitalServiceModel
|
|
7976
8042
|
*/
|
|
7977
|
-
'
|
|
8043
|
+
'photoThumbnail'?: string | null;
|
|
7978
8044
|
/**
|
|
7979
8045
|
*
|
|
7980
|
-
* @type {
|
|
8046
|
+
* @type {AuditableEntity}
|
|
7981
8047
|
* @memberof HospitalServiceModel
|
|
7982
8048
|
*/
|
|
7983
|
-
'
|
|
8049
|
+
'auditableEntity'?: AuditableEntity;
|
|
7984
8050
|
/**
|
|
7985
8051
|
*
|
|
7986
8052
|
* @type {string}
|
|
7987
8053
|
* @memberof HospitalServiceModel
|
|
7988
8054
|
*/
|
|
7989
|
-
'
|
|
8055
|
+
'description'?: string | null;
|
|
7990
8056
|
/**
|
|
7991
8057
|
*
|
|
7992
8058
|
* @type {string}
|
|
7993
8059
|
* @memberof HospitalServiceModel
|
|
7994
8060
|
*/
|
|
7995
|
-
'
|
|
8061
|
+
'overview'?: string | null;
|
|
7996
8062
|
/**
|
|
7997
8063
|
*
|
|
7998
8064
|
* @type {string}
|
|
7999
8065
|
* @memberof HospitalServiceModel
|
|
8000
8066
|
*/
|
|
8001
|
-
'
|
|
8067
|
+
'content'?: string | null;
|
|
8002
8068
|
/**
|
|
8003
8069
|
*
|
|
8004
8070
|
* @type {string}
|
|
@@ -8053,6 +8119,12 @@ export interface HospitalServiceModel {
|
|
|
8053
8119
|
* @memberof HospitalServiceModel
|
|
8054
8120
|
*/
|
|
8055
8121
|
'customStyle'?: string | null;
|
|
8122
|
+
/**
|
|
8123
|
+
*
|
|
8124
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8125
|
+
* @memberof HospitalServiceModel
|
|
8126
|
+
*/
|
|
8127
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8056
8128
|
/**
|
|
8057
8129
|
*
|
|
8058
8130
|
* @type {Array<MediaModel>}
|
|
@@ -8251,6 +8323,30 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8251
8323
|
* @memberof HospitalSpecialtyItemModel
|
|
8252
8324
|
*/
|
|
8253
8325
|
'specialtyId'?: string;
|
|
8326
|
+
/**
|
|
8327
|
+
*
|
|
8328
|
+
* @type {string}
|
|
8329
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8330
|
+
*/
|
|
8331
|
+
'specialtyName'?: string | null;
|
|
8332
|
+
/**
|
|
8333
|
+
*
|
|
8334
|
+
* @type {string}
|
|
8335
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8336
|
+
*/
|
|
8337
|
+
'specialtyTypeId'?: string;
|
|
8338
|
+
/**
|
|
8339
|
+
*
|
|
8340
|
+
* @type {string}
|
|
8341
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8342
|
+
*/
|
|
8343
|
+
'specialtyTypeName'?: string | null;
|
|
8344
|
+
/**
|
|
8345
|
+
*
|
|
8346
|
+
* @type {MarketingType}
|
|
8347
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8348
|
+
*/
|
|
8349
|
+
'marketingType'?: MarketingType;
|
|
8254
8350
|
}
|
|
8255
8351
|
/**
|
|
8256
8352
|
*
|
|
@@ -8335,49 +8431,61 @@ export interface HospitalSpecialtyModel {
|
|
|
8335
8431
|
* @type {string}
|
|
8336
8432
|
* @memberof HospitalSpecialtyModel
|
|
8337
8433
|
*/
|
|
8338
|
-
'
|
|
8434
|
+
'specialtyName'?: string | null;
|
|
8339
8435
|
/**
|
|
8340
8436
|
*
|
|
8341
8437
|
* @type {string}
|
|
8342
8438
|
* @memberof HospitalSpecialtyModel
|
|
8343
8439
|
*/
|
|
8344
|
-
'
|
|
8440
|
+
'specialtyTypeId'?: string;
|
|
8345
8441
|
/**
|
|
8346
8442
|
*
|
|
8347
8443
|
* @type {string}
|
|
8348
8444
|
* @memberof HospitalSpecialtyModel
|
|
8349
8445
|
*/
|
|
8350
|
-
'
|
|
8446
|
+
'specialtyTypeName'?: string | null;
|
|
8447
|
+
/**
|
|
8448
|
+
*
|
|
8449
|
+
* @type {MarketingType}
|
|
8450
|
+
* @memberof HospitalSpecialtyModel
|
|
8451
|
+
*/
|
|
8452
|
+
'marketingType'?: MarketingType;
|
|
8351
8453
|
/**
|
|
8352
8454
|
*
|
|
8353
8455
|
* @type {string}
|
|
8354
8456
|
* @memberof HospitalSpecialtyModel
|
|
8355
8457
|
*/
|
|
8356
|
-
'
|
|
8458
|
+
'description'?: string | null;
|
|
8357
8459
|
/**
|
|
8358
8460
|
*
|
|
8359
8461
|
* @type {string}
|
|
8360
8462
|
* @memberof HospitalSpecialtyModel
|
|
8361
8463
|
*/
|
|
8362
|
-
'
|
|
8464
|
+
'overview'?: string | null;
|
|
8363
8465
|
/**
|
|
8364
8466
|
*
|
|
8365
8467
|
* @type {string}
|
|
8366
8468
|
* @memberof HospitalSpecialtyModel
|
|
8367
8469
|
*/
|
|
8368
|
-
'
|
|
8470
|
+
'content'?: string | null;
|
|
8369
8471
|
/**
|
|
8370
8472
|
*
|
|
8371
8473
|
* @type {string}
|
|
8372
8474
|
* @memberof HospitalSpecialtyModel
|
|
8373
8475
|
*/
|
|
8374
|
-
'
|
|
8476
|
+
'hospitalId'?: string;
|
|
8375
8477
|
/**
|
|
8376
8478
|
*
|
|
8377
8479
|
* @type {string}
|
|
8378
8480
|
* @memberof HospitalSpecialtyModel
|
|
8379
8481
|
*/
|
|
8380
|
-
'
|
|
8482
|
+
'hospitalName'?: string | null;
|
|
8483
|
+
/**
|
|
8484
|
+
*
|
|
8485
|
+
* @type {string}
|
|
8486
|
+
* @memberof HospitalSpecialtyModel
|
|
8487
|
+
*/
|
|
8488
|
+
'hospitalSlug'?: string | null;
|
|
8381
8489
|
/**
|
|
8382
8490
|
*
|
|
8383
8491
|
* @type {string}
|
|
@@ -11955,6 +12063,12 @@ export interface UpdateDoctorAffiliationCommand {
|
|
|
11955
12063
|
* @memberof UpdateDoctorAffiliationCommand
|
|
11956
12064
|
*/
|
|
11957
12065
|
'description'?: string | null;
|
|
12066
|
+
/**
|
|
12067
|
+
*
|
|
12068
|
+
* @type {string}
|
|
12069
|
+
* @memberof UpdateDoctorAffiliationCommand
|
|
12070
|
+
*/
|
|
12071
|
+
'overview'?: string | null;
|
|
11958
12072
|
/**
|
|
11959
12073
|
*
|
|
11960
12074
|
* @type {string}
|
|
@@ -18797,6 +18911,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
18797
18911
|
* @param {string} [doctorId]
|
|
18798
18912
|
* @param {string} [doctorName]
|
|
18799
18913
|
* @param {string} [doctorSlug]
|
|
18914
|
+
* @param {string} [specialtyId]
|
|
18800
18915
|
* @param {string} [languageCode]
|
|
18801
18916
|
* @param {boolean} [showHidden]
|
|
18802
18917
|
* @param {number} [page]
|
|
@@ -18805,7 +18920,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
18805
18920
|
* @param {*} [options] Override http request option.
|
|
18806
18921
|
* @throws {RequiredError}
|
|
18807
18922
|
*/
|
|
18808
|
-
apiV1DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18923
|
+
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>;
|
|
18809
18924
|
/**
|
|
18810
18925
|
*
|
|
18811
18926
|
* @summary Delete doctor affiliation.
|
|
@@ -18853,6 +18968,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
18853
18968
|
* @param {string} [doctorId]
|
|
18854
18969
|
* @param {string} [doctorName]
|
|
18855
18970
|
* @param {string} [doctorSlug]
|
|
18971
|
+
* @param {string} [specialtyId]
|
|
18856
18972
|
* @param {string} [languageCode]
|
|
18857
18973
|
* @param {boolean} [showHidden]
|
|
18858
18974
|
* @param {number} [page]
|
|
@@ -18861,7 +18977,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
18861
18977
|
* @param {*} [options] Override http request option.
|
|
18862
18978
|
* @throws {RequiredError}
|
|
18863
18979
|
*/
|
|
18864
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: 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>>;
|
|
18980
|
+
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>>;
|
|
18865
18981
|
/**
|
|
18866
18982
|
*
|
|
18867
18983
|
* @summary Delete doctor affiliation.
|
|
@@ -18909,6 +19025,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
18909
19025
|
* @param {string} [doctorId]
|
|
18910
19026
|
* @param {string} [doctorName]
|
|
18911
19027
|
* @param {string} [doctorSlug]
|
|
19028
|
+
* @param {string} [specialtyId]
|
|
18912
19029
|
* @param {string} [languageCode]
|
|
18913
19030
|
* @param {boolean} [showHidden]
|
|
18914
19031
|
* @param {number} [page]
|
|
@@ -18917,7 +19034,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
18917
19034
|
* @param {*} [options] Override http request option.
|
|
18918
19035
|
* @throws {RequiredError}
|
|
18919
19036
|
*/
|
|
18920
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
19037
|
+
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>;
|
|
18921
19038
|
/**
|
|
18922
19039
|
*
|
|
18923
19040
|
* @summary Delete doctor affiliation.
|
|
@@ -18967,6 +19084,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
18967
19084
|
* @param {string} [doctorId]
|
|
18968
19085
|
* @param {string} [doctorName]
|
|
18969
19086
|
* @param {string} [doctorSlug]
|
|
19087
|
+
* @param {string} [specialtyId]
|
|
18970
19088
|
* @param {string} [languageCode]
|
|
18971
19089
|
* @param {boolean} [showHidden]
|
|
18972
19090
|
* @param {number} [page]
|
|
@@ -18976,7 +19094,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
18976
19094
|
* @throws {RequiredError}
|
|
18977
19095
|
* @memberof DoctorAffiliationsApi
|
|
18978
19096
|
*/
|
|
18979
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
|
|
19097
|
+
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>>;
|
|
18980
19098
|
/**
|
|
18981
19099
|
*
|
|
18982
19100
|
* @summary Delete doctor affiliation.
|