ch-admin-api-client-typescript 2.8.8 → 2.8.11

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 CHANGED
@@ -3846,6 +3846,12 @@ export interface CreateHospitalCommand {
3846
3846
  * @memberof CreateHospitalCommand
3847
3847
  */
3848
3848
  'timeZone'?: string | null;
3849
+ /**
3850
+ *
3851
+ * @type {string}
3852
+ * @memberof CreateHospitalCommand
3853
+ */
3854
+ 'websiteUrl'?: string | null;
3849
3855
  /**
3850
3856
  *
3851
3857
  * @type {Array<AwardModel>}
@@ -3987,6 +3993,12 @@ export interface CreateHospitalServiceCommand {
3987
3993
  * @memberof CreateHospitalServiceCommand
3988
3994
  */
3989
3995
  'photoThumbnail'?: string | null;
3996
+ /**
3997
+ *
3998
+ * @type {Array<MediaModel>}
3999
+ * @memberof CreateHospitalServiceCommand
4000
+ */
4001
+ 'medias'?: Array<MediaModel> | null;
3990
4002
  }
3991
4003
  /**
3992
4004
  *
@@ -4448,6 +4460,12 @@ export interface CreateSpecialtyCommand {
4448
4460
  * @memberof CreateSpecialtyCommand
4449
4461
  */
4450
4462
  'specialtyTypeId'?: string;
4463
+ /**
4464
+ *
4465
+ * @type {Array<MediaModel>}
4466
+ * @memberof CreateSpecialtyCommand
4467
+ */
4468
+ 'medias'?: Array<MediaModel> | null;
4451
4469
  }
4452
4470
  /**
4453
4471
  *
@@ -6948,6 +6966,12 @@ export interface HospitalItemModel {
6948
6966
  * @memberof HospitalItemModel
6949
6967
  */
6950
6968
  'timeZone'?: string | null;
6969
+ /**
6970
+ *
6971
+ * @type {string}
6972
+ * @memberof HospitalItemModel
6973
+ */
6974
+ 'websiteUrl'?: string | null;
6951
6975
  /**
6952
6976
  *
6953
6977
  * @type {number}
@@ -7165,6 +7189,12 @@ export interface HospitalModel {
7165
7189
  * @memberof HospitalModel
7166
7190
  */
7167
7191
  'timeZone'?: string | null;
7192
+ /**
7193
+ *
7194
+ * @type {string}
7195
+ * @memberof HospitalModel
7196
+ */
7197
+ 'websiteUrl'?: string | null;
7168
7198
  /**
7169
7199
  *
7170
7200
  * @type {number}
@@ -7424,6 +7454,12 @@ export interface HospitalServiceItemModel {
7424
7454
  * @memberof HospitalServiceItemModel
7425
7455
  */
7426
7456
  'photoThumbnail'?: string | null;
7457
+ /**
7458
+ *
7459
+ * @type {Array<MediaModel>}
7460
+ * @memberof HospitalServiceItemModel
7461
+ */
7462
+ 'medias'?: Array<MediaModel> | null;
7427
7463
  /**
7428
7464
  *
7429
7465
  * @type {AuditableEntity}
@@ -7575,6 +7611,12 @@ export interface HospitalServiceModel {
7575
7611
  * @memberof HospitalServiceModel
7576
7612
  */
7577
7613
  'photoThumbnail'?: string | null;
7614
+ /**
7615
+ *
7616
+ * @type {Array<MediaModel>}
7617
+ * @memberof HospitalServiceModel
7618
+ */
7619
+ 'medias'?: Array<MediaModel> | null;
7578
7620
  /**
7579
7621
  *
7580
7622
  * @type {AuditableEntity}
@@ -7990,6 +8032,12 @@ export interface HospitalSpecialtySimpleItemModel {
7990
8032
  * @memberof HospitalSpecialtySimpleItemModel
7991
8033
  */
7992
8034
  'id'?: string;
8035
+ /**
8036
+ *
8037
+ * @type {string}
8038
+ * @memberof HospitalSpecialtySimpleItemModel
8039
+ */
8040
+ 'title'?: string | null;
7993
8041
  /**
7994
8042
  *
7995
8043
  * @type {string}
@@ -10062,6 +10110,12 @@ export interface SpecialtyItemModel {
10062
10110
  * @memberof SpecialtyItemModel
10063
10111
  */
10064
10112
  'auditableEntity'?: AuditableEntity;
10113
+ /**
10114
+ *
10115
+ * @type {Array<MediaModel>}
10116
+ * @memberof SpecialtyItemModel
10117
+ */
10118
+ 'medias'?: Array<MediaModel> | null;
10065
10119
  }
10066
10120
  /**
10067
10121
  *
@@ -10135,6 +10189,12 @@ export interface SpecialtyModel {
10135
10189
  * @memberof SpecialtyModel
10136
10190
  */
10137
10191
  'auditableEntity'?: AuditableEntity;
10192
+ /**
10193
+ *
10194
+ * @type {Array<MediaModel>}
10195
+ * @memberof SpecialtyModel
10196
+ */
10197
+ 'medias'?: Array<MediaModel> | null;
10138
10198
  /**
10139
10199
  *
10140
10200
  * @type {string}
@@ -11641,6 +11701,12 @@ export interface UpdateHospitalCommand {
11641
11701
  * @memberof UpdateHospitalCommand
11642
11702
  */
11643
11703
  'timeZone'?: string | null;
11704
+ /**
11705
+ *
11706
+ * @type {string}
11707
+ * @memberof UpdateHospitalCommand
11708
+ */
11709
+ 'websiteUrl'?: string | null;
11644
11710
  /**
11645
11711
  *
11646
11712
  * @type {boolean}
@@ -11781,6 +11847,12 @@ export interface UpdateHospitalServiceCommand {
11781
11847
  * @memberof UpdateHospitalServiceCommand
11782
11848
  */
11783
11849
  'photoThumbnail'?: string | null;
11850
+ /**
11851
+ *
11852
+ * @type {Array<MediaModel>}
11853
+ * @memberof UpdateHospitalServiceCommand
11854
+ */
11855
+ 'medias'?: Array<MediaModel> | null;
11784
11856
  }
11785
11857
  /**
11786
11858
  *
@@ -12328,6 +12400,12 @@ export interface UpdateSpecialtyCommand {
12328
12400
  * @memberof UpdateSpecialtyCommand
12329
12401
  */
12330
12402
  'confirmed'?: boolean;
12403
+ /**
12404
+ *
12405
+ * @type {Array<MediaModel>}
12406
+ * @memberof UpdateSpecialtyCommand
12407
+ */
12408
+ 'medias'?: Array<MediaModel> | null;
12331
12409
  }
12332
12410
  /**
12333
12411
  *
@@ -20168,6 +20246,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
20168
20246
  * @param {string} [specialtyId]
20169
20247
  * @param {string} [specialtyName]
20170
20248
  * @param {string} [specialtyTypeId]
20249
+ * @param {string} [hospitalSpecialtySlug]
20171
20250
  * @param {string} [title]
20172
20251
  * @param {MarketingType} [marketingType]
20173
20252
  * @param {string} [languageCode]
@@ -20180,7 +20259,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
20180
20259
  * @param {*} [options] Override http request option.
20181
20260
  * @throws {RequiredError}
20182
20261
  */
20183
- apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
20262
+ apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
20184
20263
  /**
20185
20264
  *
20186
20265
  * @summary Create HospitalSpecialty.
@@ -20199,6 +20278,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
20199
20278
  * @param {string} [specialtyId]
20200
20279
  * @param {string} [specialtyName]
20201
20280
  * @param {string} [specialtyTypeId]
20281
+ * @param {string} [hospitalSpecialtySlug]
20202
20282
  * @param {string} [title]
20203
20283
  * @param {MarketingType} [marketingType]
20204
20284
  * @param {string} [languageCode]
@@ -20211,7 +20291,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
20211
20291
  * @param {*} [options] Override http request option.
20212
20292
  * @throws {RequiredError}
20213
20293
  */
20214
- apiV1HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
20294
+ apiV1HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
20215
20295
  /**
20216
20296
  *
20217
20297
  * @summary Delete HospitalSpecialty.
@@ -20726,6 +20806,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
20726
20806
  * @param {string} [specialtyId]
20727
20807
  * @param {string} [specialtyName]
20728
20808
  * @param {string} [specialtyTypeId]
20809
+ * @param {string} [hospitalSpecialtySlug]
20729
20810
  * @param {string} [title]
20730
20811
  * @param {MarketingType} [marketingType]
20731
20812
  * @param {string} [languageCode]
@@ -20738,7 +20819,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
20738
20819
  * @param {*} [options] Override http request option.
20739
20820
  * @throws {RequiredError}
20740
20821
  */
20741
- apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
20822
+ apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
20742
20823
  /**
20743
20824
  *
20744
20825
  * @summary Create HospitalSpecialty.
@@ -20757,6 +20838,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
20757
20838
  * @param {string} [specialtyId]
20758
20839
  * @param {string} [specialtyName]
20759
20840
  * @param {string} [specialtyTypeId]
20841
+ * @param {string} [hospitalSpecialtySlug]
20760
20842
  * @param {string} [title]
20761
20843
  * @param {MarketingType} [marketingType]
20762
20844
  * @param {string} [languageCode]
@@ -20769,7 +20851,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
20769
20851
  * @param {*} [options] Override http request option.
20770
20852
  * @throws {RequiredError}
20771
20853
  */
20772
- apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
20854
+ apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
20773
20855
  /**
20774
20856
  *
20775
20857
  * @summary Delete HospitalSpecialty.
@@ -21284,6 +21366,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21284
21366
  * @param {string} [specialtyId]
21285
21367
  * @param {string} [specialtyName]
21286
21368
  * @param {string} [specialtyTypeId]
21369
+ * @param {string} [hospitalSpecialtySlug]
21287
21370
  * @param {string} [title]
21288
21371
  * @param {MarketingType} [marketingType]
21289
21372
  * @param {string} [languageCode]
@@ -21296,7 +21379,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21296
21379
  * @param {*} [options] Override http request option.
21297
21380
  * @throws {RequiredError}
21298
21381
  */
21299
- apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
21382
+ apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
21300
21383
  /**
21301
21384
  *
21302
21385
  * @summary Create HospitalSpecialty.
@@ -21315,6 +21398,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21315
21398
  * @param {string} [specialtyId]
21316
21399
  * @param {string} [specialtyName]
21317
21400
  * @param {string} [specialtyTypeId]
21401
+ * @param {string} [hospitalSpecialtySlug]
21318
21402
  * @param {string} [title]
21319
21403
  * @param {MarketingType} [marketingType]
21320
21404
  * @param {string} [languageCode]
@@ -21327,7 +21411,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21327
21411
  * @param {*} [options] Override http request option.
21328
21412
  * @throws {RequiredError}
21329
21413
  */
21330
- apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
21414
+ apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
21331
21415
  /**
21332
21416
  *
21333
21417
  * @summary Delete HospitalSpecialty.
@@ -21872,6 +21956,7 @@ export declare class HospitalsApi extends BaseAPI {
21872
21956
  * @param {string} [specialtyId]
21873
21957
  * @param {string} [specialtyName]
21874
21958
  * @param {string} [specialtyTypeId]
21959
+ * @param {string} [hospitalSpecialtySlug]
21875
21960
  * @param {string} [title]
21876
21961
  * @param {MarketingType} [marketingType]
21877
21962
  * @param {string} [languageCode]
@@ -21885,7 +21970,7 @@ export declare class HospitalsApi extends BaseAPI {
21885
21970
  * @throws {RequiredError}
21886
21971
  * @memberof HospitalsApi
21887
21972
  */
21888
- apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
21973
+ apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
21889
21974
  /**
21890
21975
  *
21891
21976
  * @summary Create HospitalSpecialty.
@@ -21905,6 +21990,7 @@ export declare class HospitalsApi extends BaseAPI {
21905
21990
  * @param {string} [specialtyId]
21906
21991
  * @param {string} [specialtyName]
21907
21992
  * @param {string} [specialtyTypeId]
21993
+ * @param {string} [hospitalSpecialtySlug]
21908
21994
  * @param {string} [title]
21909
21995
  * @param {MarketingType} [marketingType]
21910
21996
  * @param {string} [languageCode]
@@ -21918,7 +22004,7 @@ export declare class HospitalsApi extends BaseAPI {
21918
22004
  * @throws {RequiredError}
21919
22005
  * @memberof HospitalsApi
21920
22006
  */
21921
- apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel>>;
22007
+ apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel>>;
21922
22008
  /**
21923
22009
  *
21924
22010
  * @summary Delete HospitalSpecialty.