ch-admin-api-client-typescript 2.8.9 → 2.8.12

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>}
@@ -6960,6 +6966,12 @@ export interface HospitalItemModel {
6960
6966
  * @memberof HospitalItemModel
6961
6967
  */
6962
6968
  'timeZone'?: string | null;
6969
+ /**
6970
+ *
6971
+ * @type {string}
6972
+ * @memberof HospitalItemModel
6973
+ */
6974
+ 'websiteUrl'?: string | null;
6963
6975
  /**
6964
6976
  *
6965
6977
  * @type {number}
@@ -7177,6 +7189,12 @@ export interface HospitalModel {
7177
7189
  * @memberof HospitalModel
7178
7190
  */
7179
7191
  'timeZone'?: string | null;
7192
+ /**
7193
+ *
7194
+ * @type {string}
7195
+ * @memberof HospitalModel
7196
+ */
7197
+ 'websiteUrl'?: string | null;
7180
7198
  /**
7181
7199
  *
7182
7200
  * @type {number}
@@ -7340,6 +7358,12 @@ export interface HospitalServiceItemModel {
7340
7358
  * @memberof HospitalServiceItemModel
7341
7359
  */
7342
7360
  'hospitalName'?: string | null;
7361
+ /**
7362
+ *
7363
+ * @type {string}
7364
+ * @memberof HospitalServiceItemModel
7365
+ */
7366
+ 'hospitalSlug'?: string | null;
7343
7367
  /**
7344
7368
  *
7345
7369
  * @type {string}
@@ -7497,6 +7521,12 @@ export interface HospitalServiceModel {
7497
7521
  * @memberof HospitalServiceModel
7498
7522
  */
7499
7523
  'hospitalName'?: string | null;
7524
+ /**
7525
+ *
7526
+ * @type {string}
7527
+ * @memberof HospitalServiceModel
7528
+ */
7529
+ 'hospitalSlug'?: string | null;
7500
7530
  /**
7501
7531
  *
7502
7532
  * @type {string}
@@ -8014,6 +8044,12 @@ export interface HospitalSpecialtySimpleItemModel {
8014
8044
  * @memberof HospitalSpecialtySimpleItemModel
8015
8045
  */
8016
8046
  'id'?: string;
8047
+ /**
8048
+ *
8049
+ * @type {string}
8050
+ * @memberof HospitalSpecialtySimpleItemModel
8051
+ */
8052
+ 'title'?: string | null;
8017
8053
  /**
8018
8054
  *
8019
8055
  * @type {string}
@@ -11677,6 +11713,12 @@ export interface UpdateHospitalCommand {
11677
11713
  * @memberof UpdateHospitalCommand
11678
11714
  */
11679
11715
  'timeZone'?: string | null;
11716
+ /**
11717
+ *
11718
+ * @type {string}
11719
+ * @memberof UpdateHospitalCommand
11720
+ */
11721
+ 'websiteUrl'?: string | null;
11680
11722
  /**
11681
11723
  *
11682
11724
  * @type {boolean}
@@ -20216,6 +20258,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
20216
20258
  * @param {string} [specialtyId]
20217
20259
  * @param {string} [specialtyName]
20218
20260
  * @param {string} [specialtyTypeId]
20261
+ * @param {string} [hospitalSpecialtySlug]
20219
20262
  * @param {string} [title]
20220
20263
  * @param {MarketingType} [marketingType]
20221
20264
  * @param {string} [languageCode]
@@ -20228,7 +20271,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
20228
20271
  * @param {*} [options] Override http request option.
20229
20272
  * @throws {RequiredError}
20230
20273
  */
20231
- 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>;
20274
+ 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>;
20232
20275
  /**
20233
20276
  *
20234
20277
  * @summary Create HospitalSpecialty.
@@ -20247,6 +20290,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
20247
20290
  * @param {string} [specialtyId]
20248
20291
  * @param {string} [specialtyName]
20249
20292
  * @param {string} [specialtyTypeId]
20293
+ * @param {string} [hospitalSpecialtySlug]
20250
20294
  * @param {string} [title]
20251
20295
  * @param {MarketingType} [marketingType]
20252
20296
  * @param {string} [languageCode]
@@ -20259,7 +20303,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
20259
20303
  * @param {*} [options] Override http request option.
20260
20304
  * @throws {RequiredError}
20261
20305
  */
20262
- 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>;
20306
+ 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>;
20263
20307
  /**
20264
20308
  *
20265
20309
  * @summary Delete HospitalSpecialty.
@@ -20774,6 +20818,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
20774
20818
  * @param {string} [specialtyId]
20775
20819
  * @param {string} [specialtyName]
20776
20820
  * @param {string} [specialtyTypeId]
20821
+ * @param {string} [hospitalSpecialtySlug]
20777
20822
  * @param {string} [title]
20778
20823
  * @param {MarketingType} [marketingType]
20779
20824
  * @param {string} [languageCode]
@@ -20786,7 +20831,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
20786
20831
  * @param {*} [options] Override http request option.
20787
20832
  * @throws {RequiredError}
20788
20833
  */
20789
- 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>>;
20834
+ 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>>;
20790
20835
  /**
20791
20836
  *
20792
20837
  * @summary Create HospitalSpecialty.
@@ -20805,6 +20850,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
20805
20850
  * @param {string} [specialtyId]
20806
20851
  * @param {string} [specialtyName]
20807
20852
  * @param {string} [specialtyTypeId]
20853
+ * @param {string} [hospitalSpecialtySlug]
20808
20854
  * @param {string} [title]
20809
20855
  * @param {MarketingType} [marketingType]
20810
20856
  * @param {string} [languageCode]
@@ -20817,7 +20863,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
20817
20863
  * @param {*} [options] Override http request option.
20818
20864
  * @throws {RequiredError}
20819
20865
  */
20820
- 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>>;
20866
+ 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>>;
20821
20867
  /**
20822
20868
  *
20823
20869
  * @summary Delete HospitalSpecialty.
@@ -21332,6 +21378,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21332
21378
  * @param {string} [specialtyId]
21333
21379
  * @param {string} [specialtyName]
21334
21380
  * @param {string} [specialtyTypeId]
21381
+ * @param {string} [hospitalSpecialtySlug]
21335
21382
  * @param {string} [title]
21336
21383
  * @param {MarketingType} [marketingType]
21337
21384
  * @param {string} [languageCode]
@@ -21344,7 +21391,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21344
21391
  * @param {*} [options] Override http request option.
21345
21392
  * @throws {RequiredError}
21346
21393
  */
21347
- 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>;
21394
+ 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>;
21348
21395
  /**
21349
21396
  *
21350
21397
  * @summary Create HospitalSpecialty.
@@ -21363,6 +21410,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21363
21410
  * @param {string} [specialtyId]
21364
21411
  * @param {string} [specialtyName]
21365
21412
  * @param {string} [specialtyTypeId]
21413
+ * @param {string} [hospitalSpecialtySlug]
21366
21414
  * @param {string} [title]
21367
21415
  * @param {MarketingType} [marketingType]
21368
21416
  * @param {string} [languageCode]
@@ -21375,7 +21423,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
21375
21423
  * @param {*} [options] Override http request option.
21376
21424
  * @throws {RequiredError}
21377
21425
  */
21378
- 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>;
21426
+ 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>;
21379
21427
  /**
21380
21428
  *
21381
21429
  * @summary Delete HospitalSpecialty.
@@ -21920,6 +21968,7 @@ export declare class HospitalsApi extends BaseAPI {
21920
21968
  * @param {string} [specialtyId]
21921
21969
  * @param {string} [specialtyName]
21922
21970
  * @param {string} [specialtyTypeId]
21971
+ * @param {string} [hospitalSpecialtySlug]
21923
21972
  * @param {string} [title]
21924
21973
  * @param {MarketingType} [marketingType]
21925
21974
  * @param {string} [languageCode]
@@ -21933,7 +21982,7 @@ export declare class HospitalsApi extends BaseAPI {
21933
21982
  * @throws {RequiredError}
21934
21983
  * @memberof HospitalsApi
21935
21984
  */
21936
- 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>>;
21985
+ 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>>;
21937
21986
  /**
21938
21987
  *
21939
21988
  * @summary Create HospitalSpecialty.
@@ -21953,6 +22002,7 @@ export declare class HospitalsApi extends BaseAPI {
21953
22002
  * @param {string} [specialtyId]
21954
22003
  * @param {string} [specialtyName]
21955
22004
  * @param {string} [specialtyTypeId]
22005
+ * @param {string} [hospitalSpecialtySlug]
21956
22006
  * @param {string} [title]
21957
22007
  * @param {MarketingType} [marketingType]
21958
22008
  * @param {string} [languageCode]
@@ -21966,7 +22016,7 @@ export declare class HospitalsApi extends BaseAPI {
21966
22016
  * @throws {RequiredError}
21967
22017
  * @memberof HospitalsApi
21968
22018
  */
21969
- 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>>;
22019
+ 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>>;
21970
22020
  /**
21971
22021
  *
21972
22022
  * @summary Delete HospitalSpecialty.