ch-api-client-typescript2 2.7.6 → 2.7.8
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 +85 -27
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +48 -22
- package/package.json +1 -1
- package/src/api.ts +109 -37
package/lib/api.d.ts
CHANGED
|
@@ -5848,6 +5848,12 @@ export interface HospitalSpecialtiesModel {
|
|
|
5848
5848
|
* @interface HospitalSpecialtyItemModel
|
|
5849
5849
|
*/
|
|
5850
5850
|
export interface HospitalSpecialtyItemModel {
|
|
5851
|
+
/**
|
|
5852
|
+
*
|
|
5853
|
+
* @type {string}
|
|
5854
|
+
* @memberof HospitalSpecialtyItemModel
|
|
5855
|
+
*/
|
|
5856
|
+
'id'?: string;
|
|
5851
5857
|
/**
|
|
5852
5858
|
*
|
|
5853
5859
|
* @type {string}
|
|
@@ -5898,16 +5904,16 @@ export interface HospitalSpecialtyItemModel {
|
|
|
5898
5904
|
'marketingType'?: MarketingType;
|
|
5899
5905
|
/**
|
|
5900
5906
|
*
|
|
5901
|
-
* @type {
|
|
5907
|
+
* @type {string}
|
|
5902
5908
|
* @memberof HospitalSpecialtyItemModel
|
|
5903
5909
|
*/
|
|
5904
|
-
'
|
|
5910
|
+
'title'?: string | null;
|
|
5905
5911
|
/**
|
|
5906
5912
|
*
|
|
5907
5913
|
* @type {string}
|
|
5908
5914
|
* @memberof HospitalSpecialtyItemModel
|
|
5909
5915
|
*/
|
|
5910
|
-
'
|
|
5916
|
+
'normalizedTitle'?: string | null;
|
|
5911
5917
|
/**
|
|
5912
5918
|
*
|
|
5913
5919
|
* @type {string}
|
|
@@ -5919,19 +5925,31 @@ export interface HospitalSpecialtyItemModel {
|
|
|
5919
5925
|
* @type {string}
|
|
5920
5926
|
* @memberof HospitalSpecialtyItemModel
|
|
5921
5927
|
*/
|
|
5922
|
-
'
|
|
5928
|
+
'content'?: string | null;
|
|
5923
5929
|
/**
|
|
5924
5930
|
*
|
|
5925
|
-
* @type {
|
|
5931
|
+
* @type {number}
|
|
5926
5932
|
* @memberof HospitalSpecialtyItemModel
|
|
5927
5933
|
*/
|
|
5928
|
-
'
|
|
5934
|
+
'order'?: number;
|
|
5929
5935
|
/**
|
|
5930
5936
|
*
|
|
5931
|
-
* @type {
|
|
5937
|
+
* @type {boolean}
|
|
5932
5938
|
* @memberof HospitalSpecialtyItemModel
|
|
5933
5939
|
*/
|
|
5934
|
-
'
|
|
5940
|
+
'confirmed'?: boolean;
|
|
5941
|
+
/**
|
|
5942
|
+
*
|
|
5943
|
+
* @type {Array<MediaModel>}
|
|
5944
|
+
* @memberof HospitalSpecialtyItemModel
|
|
5945
|
+
*/
|
|
5946
|
+
'medias'?: Array<MediaModel> | null;
|
|
5947
|
+
/**
|
|
5948
|
+
*
|
|
5949
|
+
* @type {AuditableEntity}
|
|
5950
|
+
* @memberof HospitalSpecialtyItemModel
|
|
5951
|
+
*/
|
|
5952
|
+
'auditableEntity'?: AuditableEntity;
|
|
5935
5953
|
}
|
|
5936
5954
|
/**
|
|
5937
5955
|
*
|
|
@@ -5939,6 +5957,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
5939
5957
|
* @interface HospitalSpecialtyModel
|
|
5940
5958
|
*/
|
|
5941
5959
|
export interface HospitalSpecialtyModel {
|
|
5960
|
+
/**
|
|
5961
|
+
*
|
|
5962
|
+
* @type {string}
|
|
5963
|
+
* @memberof HospitalSpecialtyModel
|
|
5964
|
+
*/
|
|
5965
|
+
'id'?: string;
|
|
5942
5966
|
/**
|
|
5943
5967
|
*
|
|
5944
5968
|
* @type {string}
|
|
@@ -5989,16 +6013,16 @@ export interface HospitalSpecialtyModel {
|
|
|
5989
6013
|
'marketingType'?: MarketingType;
|
|
5990
6014
|
/**
|
|
5991
6015
|
*
|
|
5992
|
-
* @type {
|
|
6016
|
+
* @type {string}
|
|
5993
6017
|
* @memberof HospitalSpecialtyModel
|
|
5994
6018
|
*/
|
|
5995
|
-
'
|
|
6019
|
+
'title'?: string | null;
|
|
5996
6020
|
/**
|
|
5997
6021
|
*
|
|
5998
6022
|
* @type {string}
|
|
5999
6023
|
* @memberof HospitalSpecialtyModel
|
|
6000
6024
|
*/
|
|
6001
|
-
'
|
|
6025
|
+
'normalizedTitle'?: string | null;
|
|
6002
6026
|
/**
|
|
6003
6027
|
*
|
|
6004
6028
|
* @type {string}
|
|
@@ -6010,19 +6034,37 @@ export interface HospitalSpecialtyModel {
|
|
|
6010
6034
|
* @type {string}
|
|
6011
6035
|
* @memberof HospitalSpecialtyModel
|
|
6012
6036
|
*/
|
|
6013
|
-
'
|
|
6037
|
+
'content'?: string | null;
|
|
6014
6038
|
/**
|
|
6015
6039
|
*
|
|
6016
|
-
* @type {
|
|
6040
|
+
* @type {number}
|
|
6017
6041
|
* @memberof HospitalSpecialtyModel
|
|
6018
6042
|
*/
|
|
6019
|
-
'
|
|
6043
|
+
'order'?: number;
|
|
6044
|
+
/**
|
|
6045
|
+
*
|
|
6046
|
+
* @type {boolean}
|
|
6047
|
+
* @memberof HospitalSpecialtyModel
|
|
6048
|
+
*/
|
|
6049
|
+
'confirmed'?: boolean;
|
|
6050
|
+
/**
|
|
6051
|
+
*
|
|
6052
|
+
* @type {Array<MediaModel>}
|
|
6053
|
+
* @memberof HospitalSpecialtyModel
|
|
6054
|
+
*/
|
|
6055
|
+
'medias'?: Array<MediaModel> | null;
|
|
6056
|
+
/**
|
|
6057
|
+
*
|
|
6058
|
+
* @type {AuditableEntity}
|
|
6059
|
+
* @memberof HospitalSpecialtyModel
|
|
6060
|
+
*/
|
|
6061
|
+
'auditableEntity'?: AuditableEntity;
|
|
6020
6062
|
/**
|
|
6021
6063
|
*
|
|
6022
6064
|
* @type {string}
|
|
6023
6065
|
* @memberof HospitalSpecialtyModel
|
|
6024
6066
|
*/
|
|
6025
|
-
'
|
|
6067
|
+
'languageCode'?: string | null;
|
|
6026
6068
|
}
|
|
6027
6069
|
/**
|
|
6028
6070
|
*
|
|
@@ -12708,23 +12750,27 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
12708
12750
|
* @param {string} [specialtyTypeId]
|
|
12709
12751
|
* @param {string} [title]
|
|
12710
12752
|
* @param {MarketingType} [marketingType]
|
|
12711
|
-
* @param {
|
|
12753
|
+
* @param {string} [languageCode]
|
|
12754
|
+
* @param {boolean} [showHidden]
|
|
12755
|
+
* @param {boolean} [returnDefaultValue]
|
|
12712
12756
|
* @param {number} [page]
|
|
12713
12757
|
* @param {number} [limit]
|
|
12714
12758
|
* @param {Date} [lastRetrieved]
|
|
12715
12759
|
* @param {*} [options] Override http request option.
|
|
12716
12760
|
* @throws {RequiredError}
|
|
12717
12761
|
*/
|
|
12718
|
-
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined,
|
|
12762
|
+
apiV2HospitalsHospitalIdSpecialtiesGet: (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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12719
12763
|
/**
|
|
12720
12764
|
*
|
|
12721
12765
|
* @summary Get HospitalSpecialty.
|
|
12722
12766
|
* @param {string} hospitalId
|
|
12723
12767
|
* @param {string} specialtyId
|
|
12768
|
+
* @param {string} [languageCode]
|
|
12769
|
+
* @param {boolean} [returnDefaultValue]
|
|
12724
12770
|
* @param {*} [options] Override http request option.
|
|
12725
12771
|
* @throws {RequiredError}
|
|
12726
12772
|
*/
|
|
12727
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12773
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12728
12774
|
/**
|
|
12729
12775
|
*
|
|
12730
12776
|
* @summary Get all HospitalServices.
|
|
@@ -12988,23 +13034,27 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
12988
13034
|
* @param {string} [specialtyTypeId]
|
|
12989
13035
|
* @param {string} [title]
|
|
12990
13036
|
* @param {MarketingType} [marketingType]
|
|
12991
|
-
* @param {
|
|
13037
|
+
* @param {string} [languageCode]
|
|
13038
|
+
* @param {boolean} [showHidden]
|
|
13039
|
+
* @param {boolean} [returnDefaultValue]
|
|
12992
13040
|
* @param {number} [page]
|
|
12993
13041
|
* @param {number} [limit]
|
|
12994
13042
|
* @param {Date} [lastRetrieved]
|
|
12995
13043
|
* @param {*} [options] Override http request option.
|
|
12996
13044
|
* @throws {RequiredError}
|
|
12997
13045
|
*/
|
|
12998
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined,
|
|
13046
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
12999
13047
|
/**
|
|
13000
13048
|
*
|
|
13001
13049
|
* @summary Get HospitalSpecialty.
|
|
13002
13050
|
* @param {string} hospitalId
|
|
13003
13051
|
* @param {string} specialtyId
|
|
13052
|
+
* @param {string} [languageCode]
|
|
13053
|
+
* @param {boolean} [returnDefaultValue]
|
|
13004
13054
|
* @param {*} [options] Override http request option.
|
|
13005
13055
|
* @throws {RequiredError}
|
|
13006
13056
|
*/
|
|
13007
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
13057
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
13008
13058
|
/**
|
|
13009
13059
|
*
|
|
13010
13060
|
* @summary Get all HospitalServices.
|
|
@@ -13268,23 +13318,27 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
13268
13318
|
* @param {string} [specialtyTypeId]
|
|
13269
13319
|
* @param {string} [title]
|
|
13270
13320
|
* @param {MarketingType} [marketingType]
|
|
13271
|
-
* @param {
|
|
13321
|
+
* @param {string} [languageCode]
|
|
13322
|
+
* @param {boolean} [showHidden]
|
|
13323
|
+
* @param {boolean} [returnDefaultValue]
|
|
13272
13324
|
* @param {number} [page]
|
|
13273
13325
|
* @param {number} [limit]
|
|
13274
13326
|
* @param {Date} [lastRetrieved]
|
|
13275
13327
|
* @param {*} [options] Override http request option.
|
|
13276
13328
|
* @throws {RequiredError}
|
|
13277
13329
|
*/
|
|
13278
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined,
|
|
13330
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
13279
13331
|
/**
|
|
13280
13332
|
*
|
|
13281
13333
|
* @summary Get HospitalSpecialty.
|
|
13282
13334
|
* @param {string} hospitalId
|
|
13283
13335
|
* @param {string} specialtyId
|
|
13336
|
+
* @param {string} [languageCode]
|
|
13337
|
+
* @param {boolean} [returnDefaultValue]
|
|
13284
13338
|
* @param {*} [options] Override http request option.
|
|
13285
13339
|
* @throws {RequiredError}
|
|
13286
13340
|
*/
|
|
13287
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
13341
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
13288
13342
|
/**
|
|
13289
13343
|
*
|
|
13290
13344
|
* @summary Get all HospitalServices.
|
|
@@ -13562,7 +13616,9 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
13562
13616
|
* @param {string} [specialtyTypeId]
|
|
13563
13617
|
* @param {string} [title]
|
|
13564
13618
|
* @param {MarketingType} [marketingType]
|
|
13565
|
-
* @param {
|
|
13619
|
+
* @param {string} [languageCode]
|
|
13620
|
+
* @param {boolean} [showHidden]
|
|
13621
|
+
* @param {boolean} [returnDefaultValue]
|
|
13566
13622
|
* @param {number} [page]
|
|
13567
13623
|
* @param {number} [limit]
|
|
13568
13624
|
* @param {Date} [lastRetrieved]
|
|
@@ -13570,17 +13626,19 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
13570
13626
|
* @throws {RequiredError}
|
|
13571
13627
|
* @memberof HospitalsApi
|
|
13572
13628
|
*/
|
|
13573
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType,
|
|
13629
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
|
|
13574
13630
|
/**
|
|
13575
13631
|
*
|
|
13576
13632
|
* @summary Get HospitalSpecialty.
|
|
13577
13633
|
* @param {string} hospitalId
|
|
13578
13634
|
* @param {string} specialtyId
|
|
13635
|
+
* @param {string} [languageCode]
|
|
13636
|
+
* @param {boolean} [returnDefaultValue]
|
|
13579
13637
|
* @param {*} [options] Override http request option.
|
|
13580
13638
|
* @throws {RequiredError}
|
|
13581
13639
|
* @memberof HospitalsApi
|
|
13582
13640
|
*/
|
|
13583
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
13641
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
13584
13642
|
/**
|
|
13585
13643
|
*
|
|
13586
13644
|
* @summary Get all HospitalServices.
|