ch-admin-api-client-typescript 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.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.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}
|
|
@@ -8251,6 +8317,30 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8251
8317
|
* @memberof HospitalSpecialtyItemModel
|
|
8252
8318
|
*/
|
|
8253
8319
|
'specialtyId'?: string;
|
|
8320
|
+
/**
|
|
8321
|
+
*
|
|
8322
|
+
* @type {string}
|
|
8323
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8324
|
+
*/
|
|
8325
|
+
'specialtyName'?: string | null;
|
|
8326
|
+
/**
|
|
8327
|
+
*
|
|
8328
|
+
* @type {string}
|
|
8329
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8330
|
+
*/
|
|
8331
|
+
'specialtyTypeId'?: string;
|
|
8332
|
+
/**
|
|
8333
|
+
*
|
|
8334
|
+
* @type {string}
|
|
8335
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8336
|
+
*/
|
|
8337
|
+
'specialtyTypeName'?: string | null;
|
|
8338
|
+
/**
|
|
8339
|
+
*
|
|
8340
|
+
* @type {MarketingType}
|
|
8341
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8342
|
+
*/
|
|
8343
|
+
'marketingType'?: MarketingType;
|
|
8254
8344
|
}
|
|
8255
8345
|
/**
|
|
8256
8346
|
*
|
|
@@ -8335,49 +8425,61 @@ export interface HospitalSpecialtyModel {
|
|
|
8335
8425
|
* @type {string}
|
|
8336
8426
|
* @memberof HospitalSpecialtyModel
|
|
8337
8427
|
*/
|
|
8338
|
-
'
|
|
8428
|
+
'specialtyName'?: string | null;
|
|
8339
8429
|
/**
|
|
8340
8430
|
*
|
|
8341
8431
|
* @type {string}
|
|
8342
8432
|
* @memberof HospitalSpecialtyModel
|
|
8343
8433
|
*/
|
|
8344
|
-
'
|
|
8434
|
+
'specialtyTypeId'?: string;
|
|
8345
8435
|
/**
|
|
8346
8436
|
*
|
|
8347
8437
|
* @type {string}
|
|
8348
8438
|
* @memberof HospitalSpecialtyModel
|
|
8349
8439
|
*/
|
|
8350
|
-
'
|
|
8440
|
+
'specialtyTypeName'?: string | null;
|
|
8441
|
+
/**
|
|
8442
|
+
*
|
|
8443
|
+
* @type {MarketingType}
|
|
8444
|
+
* @memberof HospitalSpecialtyModel
|
|
8445
|
+
*/
|
|
8446
|
+
'marketingType'?: MarketingType;
|
|
8351
8447
|
/**
|
|
8352
8448
|
*
|
|
8353
8449
|
* @type {string}
|
|
8354
8450
|
* @memberof HospitalSpecialtyModel
|
|
8355
8451
|
*/
|
|
8356
|
-
'
|
|
8452
|
+
'description'?: string | null;
|
|
8357
8453
|
/**
|
|
8358
8454
|
*
|
|
8359
8455
|
* @type {string}
|
|
8360
8456
|
* @memberof HospitalSpecialtyModel
|
|
8361
8457
|
*/
|
|
8362
|
-
'
|
|
8458
|
+
'overview'?: string | null;
|
|
8363
8459
|
/**
|
|
8364
8460
|
*
|
|
8365
8461
|
* @type {string}
|
|
8366
8462
|
* @memberof HospitalSpecialtyModel
|
|
8367
8463
|
*/
|
|
8368
|
-
'
|
|
8464
|
+
'content'?: string | null;
|
|
8369
8465
|
/**
|
|
8370
8466
|
*
|
|
8371
8467
|
* @type {string}
|
|
8372
8468
|
* @memberof HospitalSpecialtyModel
|
|
8373
8469
|
*/
|
|
8374
|
-
'
|
|
8470
|
+
'hospitalId'?: string;
|
|
8375
8471
|
/**
|
|
8376
8472
|
*
|
|
8377
8473
|
* @type {string}
|
|
8378
8474
|
* @memberof HospitalSpecialtyModel
|
|
8379
8475
|
*/
|
|
8380
|
-
'
|
|
8476
|
+
'hospitalName'?: string | null;
|
|
8477
|
+
/**
|
|
8478
|
+
*
|
|
8479
|
+
* @type {string}
|
|
8480
|
+
* @memberof HospitalSpecialtyModel
|
|
8481
|
+
*/
|
|
8482
|
+
'hospitalSlug'?: string | null;
|
|
8381
8483
|
/**
|
|
8382
8484
|
*
|
|
8383
8485
|
* @type {string}
|
|
@@ -18797,6 +18899,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
18797
18899
|
* @param {string} [doctorId]
|
|
18798
18900
|
* @param {string} [doctorName]
|
|
18799
18901
|
* @param {string} [doctorSlug]
|
|
18902
|
+
* @param {string} [specialtyId]
|
|
18800
18903
|
* @param {string} [languageCode]
|
|
18801
18904
|
* @param {boolean} [showHidden]
|
|
18802
18905
|
* @param {number} [page]
|
|
@@ -18805,7 +18908,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
18805
18908
|
* @param {*} [options] Override http request option.
|
|
18806
18909
|
* @throws {RequiredError}
|
|
18807
18910
|
*/
|
|
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>;
|
|
18911
|
+
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
18912
|
/**
|
|
18810
18913
|
*
|
|
18811
18914
|
* @summary Delete doctor affiliation.
|
|
@@ -18853,6 +18956,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
18853
18956
|
* @param {string} [doctorId]
|
|
18854
18957
|
* @param {string} [doctorName]
|
|
18855
18958
|
* @param {string} [doctorSlug]
|
|
18959
|
+
* @param {string} [specialtyId]
|
|
18856
18960
|
* @param {string} [languageCode]
|
|
18857
18961
|
* @param {boolean} [showHidden]
|
|
18858
18962
|
* @param {number} [page]
|
|
@@ -18861,7 +18965,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
18861
18965
|
* @param {*} [options] Override http request option.
|
|
18862
18966
|
* @throws {RequiredError}
|
|
18863
18967
|
*/
|
|
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>>;
|
|
18968
|
+
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
18969
|
/**
|
|
18866
18970
|
*
|
|
18867
18971
|
* @summary Delete doctor affiliation.
|
|
@@ -18909,6 +19013,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
18909
19013
|
* @param {string} [doctorId]
|
|
18910
19014
|
* @param {string} [doctorName]
|
|
18911
19015
|
* @param {string} [doctorSlug]
|
|
19016
|
+
* @param {string} [specialtyId]
|
|
18912
19017
|
* @param {string} [languageCode]
|
|
18913
19018
|
* @param {boolean} [showHidden]
|
|
18914
19019
|
* @param {number} [page]
|
|
@@ -18917,7 +19022,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
18917
19022
|
* @param {*} [options] Override http request option.
|
|
18918
19023
|
* @throws {RequiredError}
|
|
18919
19024
|
*/
|
|
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>;
|
|
19025
|
+
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
19026
|
/**
|
|
18922
19027
|
*
|
|
18923
19028
|
* @summary Delete doctor affiliation.
|
|
@@ -18967,6 +19072,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
18967
19072
|
* @param {string} [doctorId]
|
|
18968
19073
|
* @param {string} [doctorName]
|
|
18969
19074
|
* @param {string} [doctorSlug]
|
|
19075
|
+
* @param {string} [specialtyId]
|
|
18970
19076
|
* @param {string} [languageCode]
|
|
18971
19077
|
* @param {boolean} [showHidden]
|
|
18972
19078
|
* @param {number} [page]
|
|
@@ -18976,7 +19082,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
18976
19082
|
* @throws {RequiredError}
|
|
18977
19083
|
* @memberof DoctorAffiliationsApi
|
|
18978
19084
|
*/
|
|
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>>;
|
|
19085
|
+
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
19086
|
/**
|
|
18981
19087
|
*
|
|
18982
19088
|
* @summary Delete doctor affiliation.
|