ch-api-client-typescript2 2.7.4 → 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 +170 -36
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +76 -64
- package/package.json +1 -1
- package/src/api.ts +207 -67
package/lib/api.d.ts
CHANGED
|
@@ -923,6 +923,12 @@ export interface BookingItemModel {
|
|
|
923
923
|
* @memberof BookingItemModel
|
|
924
924
|
*/
|
|
925
925
|
'hospitalSlug'?: string | null;
|
|
926
|
+
/**
|
|
927
|
+
*
|
|
928
|
+
* @type {string}
|
|
929
|
+
* @memberof BookingItemModel
|
|
930
|
+
*/
|
|
931
|
+
'hospitalTimeZone'?: string | null;
|
|
926
932
|
/**
|
|
927
933
|
*
|
|
928
934
|
* @type {string}
|
|
@@ -1122,6 +1128,12 @@ export interface BookingModel {
|
|
|
1122
1128
|
* @memberof BookingModel
|
|
1123
1129
|
*/
|
|
1124
1130
|
'hospitalSlug'?: string | null;
|
|
1131
|
+
/**
|
|
1132
|
+
*
|
|
1133
|
+
* @type {string}
|
|
1134
|
+
* @memberof BookingModel
|
|
1135
|
+
*/
|
|
1136
|
+
'hospitalTimeZone'?: string | null;
|
|
1125
1137
|
/**
|
|
1126
1138
|
*
|
|
1127
1139
|
* @type {string}
|
|
@@ -1559,6 +1571,12 @@ export interface ConsultationItemModel {
|
|
|
1559
1571
|
* @memberof ConsultationItemModel
|
|
1560
1572
|
*/
|
|
1561
1573
|
'hospitalSlug'?: string | null;
|
|
1574
|
+
/**
|
|
1575
|
+
*
|
|
1576
|
+
* @type {string}
|
|
1577
|
+
* @memberof ConsultationItemModel
|
|
1578
|
+
*/
|
|
1579
|
+
'hospitalTimeZone'?: string | null;
|
|
1562
1580
|
/**
|
|
1563
1581
|
*
|
|
1564
1582
|
* @type {string}
|
|
@@ -1818,6 +1836,12 @@ export interface ConsultationModel {
|
|
|
1818
1836
|
* @memberof ConsultationModel
|
|
1819
1837
|
*/
|
|
1820
1838
|
'hospitalSlug'?: string | null;
|
|
1839
|
+
/**
|
|
1840
|
+
*
|
|
1841
|
+
* @type {string}
|
|
1842
|
+
* @memberof ConsultationModel
|
|
1843
|
+
*/
|
|
1844
|
+
'hospitalTimeZone'?: string | null;
|
|
1821
1845
|
/**
|
|
1822
1846
|
*
|
|
1823
1847
|
* @type {string}
|
|
@@ -5824,6 +5848,12 @@ export interface HospitalSpecialtiesModel {
|
|
|
5824
5848
|
* @interface HospitalSpecialtyItemModel
|
|
5825
5849
|
*/
|
|
5826
5850
|
export interface HospitalSpecialtyItemModel {
|
|
5851
|
+
/**
|
|
5852
|
+
*
|
|
5853
|
+
* @type {string}
|
|
5854
|
+
* @memberof HospitalSpecialtyItemModel
|
|
5855
|
+
*/
|
|
5856
|
+
'id'?: string;
|
|
5827
5857
|
/**
|
|
5828
5858
|
*
|
|
5829
5859
|
* @type {string}
|
|
@@ -5872,12 +5902,54 @@ export interface HospitalSpecialtyItemModel {
|
|
|
5872
5902
|
* @memberof HospitalSpecialtyItemModel
|
|
5873
5903
|
*/
|
|
5874
5904
|
'marketingType'?: MarketingType;
|
|
5905
|
+
/**
|
|
5906
|
+
*
|
|
5907
|
+
* @type {string}
|
|
5908
|
+
* @memberof HospitalSpecialtyItemModel
|
|
5909
|
+
*/
|
|
5910
|
+
'title'?: string | null;
|
|
5911
|
+
/**
|
|
5912
|
+
*
|
|
5913
|
+
* @type {string}
|
|
5914
|
+
* @memberof HospitalSpecialtyItemModel
|
|
5915
|
+
*/
|
|
5916
|
+
'normalizedTitle'?: string | null;
|
|
5917
|
+
/**
|
|
5918
|
+
*
|
|
5919
|
+
* @type {string}
|
|
5920
|
+
* @memberof HospitalSpecialtyItemModel
|
|
5921
|
+
*/
|
|
5922
|
+
'description'?: string | null;
|
|
5923
|
+
/**
|
|
5924
|
+
*
|
|
5925
|
+
* @type {string}
|
|
5926
|
+
* @memberof HospitalSpecialtyItemModel
|
|
5927
|
+
*/
|
|
5928
|
+
'content'?: string | null;
|
|
5875
5929
|
/**
|
|
5876
5930
|
*
|
|
5877
5931
|
* @type {number}
|
|
5878
5932
|
* @memberof HospitalSpecialtyItemModel
|
|
5879
5933
|
*/
|
|
5880
5934
|
'order'?: number;
|
|
5935
|
+
/**
|
|
5936
|
+
*
|
|
5937
|
+
* @type {boolean}
|
|
5938
|
+
* @memberof HospitalSpecialtyItemModel
|
|
5939
|
+
*/
|
|
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;
|
|
5881
5953
|
}
|
|
5882
5954
|
/**
|
|
5883
5955
|
*
|
|
@@ -5885,6 +5957,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
5885
5957
|
* @interface HospitalSpecialtyModel
|
|
5886
5958
|
*/
|
|
5887
5959
|
export interface HospitalSpecialtyModel {
|
|
5960
|
+
/**
|
|
5961
|
+
*
|
|
5962
|
+
* @type {string}
|
|
5963
|
+
* @memberof HospitalSpecialtyModel
|
|
5964
|
+
*/
|
|
5965
|
+
'id'?: string;
|
|
5888
5966
|
/**
|
|
5889
5967
|
*
|
|
5890
5968
|
* @type {string}
|
|
@@ -5933,12 +6011,60 @@ export interface HospitalSpecialtyModel {
|
|
|
5933
6011
|
* @memberof HospitalSpecialtyModel
|
|
5934
6012
|
*/
|
|
5935
6013
|
'marketingType'?: MarketingType;
|
|
6014
|
+
/**
|
|
6015
|
+
*
|
|
6016
|
+
* @type {string}
|
|
6017
|
+
* @memberof HospitalSpecialtyModel
|
|
6018
|
+
*/
|
|
6019
|
+
'title'?: string | null;
|
|
6020
|
+
/**
|
|
6021
|
+
*
|
|
6022
|
+
* @type {string}
|
|
6023
|
+
* @memberof HospitalSpecialtyModel
|
|
6024
|
+
*/
|
|
6025
|
+
'normalizedTitle'?: string | null;
|
|
6026
|
+
/**
|
|
6027
|
+
*
|
|
6028
|
+
* @type {string}
|
|
6029
|
+
* @memberof HospitalSpecialtyModel
|
|
6030
|
+
*/
|
|
6031
|
+
'description'?: string | null;
|
|
6032
|
+
/**
|
|
6033
|
+
*
|
|
6034
|
+
* @type {string}
|
|
6035
|
+
* @memberof HospitalSpecialtyModel
|
|
6036
|
+
*/
|
|
6037
|
+
'content'?: string | null;
|
|
5936
6038
|
/**
|
|
5937
6039
|
*
|
|
5938
6040
|
* @type {number}
|
|
5939
6041
|
* @memberof HospitalSpecialtyModel
|
|
5940
6042
|
*/
|
|
5941
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;
|
|
6062
|
+
/**
|
|
6063
|
+
*
|
|
6064
|
+
* @type {string}
|
|
6065
|
+
* @memberof HospitalSpecialtyModel
|
|
6066
|
+
*/
|
|
6067
|
+
'languageCode'?: string | null;
|
|
5942
6068
|
}
|
|
5943
6069
|
/**
|
|
5944
6070
|
*
|
|
@@ -12468,7 +12594,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
12468
12594
|
* @summary Get all Hospitals.
|
|
12469
12595
|
* @param {string} [hospitalId]
|
|
12470
12596
|
* @param {string} [name]
|
|
12471
|
-
* @param {string} [description]
|
|
12472
12597
|
* @param {string} [countryId]
|
|
12473
12598
|
* @param {Date} [created]
|
|
12474
12599
|
* @param {MarketingType} [marketingType]
|
|
@@ -12486,7 +12611,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
12486
12611
|
* @param {*} [options] Override http request option.
|
|
12487
12612
|
* @throws {RequiredError}
|
|
12488
12613
|
*/
|
|
12489
|
-
apiV2HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined,
|
|
12614
|
+
apiV2HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12490
12615
|
/**
|
|
12491
12616
|
*
|
|
12492
12617
|
* @summary Get HospitalAccreditation.
|
|
@@ -12623,24 +12748,29 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
12623
12748
|
* @param {string} [specialtyId]
|
|
12624
12749
|
* @param {string} [specialtyName]
|
|
12625
12750
|
* @param {string} [specialtyTypeId]
|
|
12751
|
+
* @param {string} [title]
|
|
12626
12752
|
* @param {MarketingType} [marketingType]
|
|
12627
|
-
* @param {
|
|
12753
|
+
* @param {string} [languageCode]
|
|
12754
|
+
* @param {boolean} [showHidden]
|
|
12755
|
+
* @param {boolean} [returnDefaultValue]
|
|
12628
12756
|
* @param {number} [page]
|
|
12629
12757
|
* @param {number} [limit]
|
|
12630
12758
|
* @param {Date} [lastRetrieved]
|
|
12631
12759
|
* @param {*} [options] Override http request option.
|
|
12632
12760
|
* @throws {RequiredError}
|
|
12633
12761
|
*/
|
|
12634
|
-
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: 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>;
|
|
12635
12763
|
/**
|
|
12636
12764
|
*
|
|
12637
12765
|
* @summary Get HospitalSpecialty.
|
|
12638
12766
|
* @param {string} hospitalId
|
|
12639
12767
|
* @param {string} specialtyId
|
|
12768
|
+
* @param {string} [languageCode]
|
|
12769
|
+
* @param {boolean} [returnDefaultValue]
|
|
12640
12770
|
* @param {*} [options] Override http request option.
|
|
12641
12771
|
* @throws {RequiredError}
|
|
12642
12772
|
*/
|
|
12643
|
-
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>;
|
|
12644
12774
|
/**
|
|
12645
12775
|
*
|
|
12646
12776
|
* @summary Get all HospitalServices.
|
|
@@ -12710,7 +12840,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
12710
12840
|
* @summary Get all Hospitals.
|
|
12711
12841
|
* @param {string} [hospitalId]
|
|
12712
12842
|
* @param {string} [name]
|
|
12713
|
-
* @param {string} [description]
|
|
12714
12843
|
* @param {string} [countryId]
|
|
12715
12844
|
* @param {Date} [created]
|
|
12716
12845
|
* @param {MarketingType} [marketingType]
|
|
@@ -12728,7 +12857,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
12728
12857
|
* @param {*} [options] Override http request option.
|
|
12729
12858
|
* @throws {RequiredError}
|
|
12730
12859
|
*/
|
|
12731
|
-
apiV2HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined,
|
|
12860
|
+
apiV2HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12732
12861
|
/**
|
|
12733
12862
|
*
|
|
12734
12863
|
* @param {string} slug
|
|
@@ -12749,7 +12878,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
12749
12878
|
* @summary Get all Hospitals.
|
|
12750
12879
|
* @param {string} [hospitalId]
|
|
12751
12880
|
* @param {string} [name]
|
|
12752
|
-
* @param {string} [description]
|
|
12753
12881
|
* @param {string} [countryId]
|
|
12754
12882
|
* @param {Date} [created]
|
|
12755
12883
|
* @param {MarketingType} [marketingType]
|
|
@@ -12767,7 +12895,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
12767
12895
|
* @param {*} [options] Override http request option.
|
|
12768
12896
|
* @throws {RequiredError}
|
|
12769
12897
|
*/
|
|
12770
|
-
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
12898
|
+
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
12771
12899
|
/**
|
|
12772
12900
|
*
|
|
12773
12901
|
* @summary Get HospitalAccreditation.
|
|
@@ -12904,24 +13032,29 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
12904
13032
|
* @param {string} [specialtyId]
|
|
12905
13033
|
* @param {string} [specialtyName]
|
|
12906
13034
|
* @param {string} [specialtyTypeId]
|
|
13035
|
+
* @param {string} [title]
|
|
12907
13036
|
* @param {MarketingType} [marketingType]
|
|
12908
|
-
* @param {
|
|
13037
|
+
* @param {string} [languageCode]
|
|
13038
|
+
* @param {boolean} [showHidden]
|
|
13039
|
+
* @param {boolean} [returnDefaultValue]
|
|
12909
13040
|
* @param {number} [page]
|
|
12910
13041
|
* @param {number} [limit]
|
|
12911
13042
|
* @param {Date} [lastRetrieved]
|
|
12912
13043
|
* @param {*} [options] Override http request option.
|
|
12913
13044
|
* @throws {RequiredError}
|
|
12914
13045
|
*/
|
|
12915
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: 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>>;
|
|
12916
13047
|
/**
|
|
12917
13048
|
*
|
|
12918
13049
|
* @summary Get HospitalSpecialty.
|
|
12919
13050
|
* @param {string} hospitalId
|
|
12920
13051
|
* @param {string} specialtyId
|
|
13052
|
+
* @param {string} [languageCode]
|
|
13053
|
+
* @param {boolean} [returnDefaultValue]
|
|
12921
13054
|
* @param {*} [options] Override http request option.
|
|
12922
13055
|
* @throws {RequiredError}
|
|
12923
13056
|
*/
|
|
12924
|
-
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>>;
|
|
12925
13058
|
/**
|
|
12926
13059
|
*
|
|
12927
13060
|
* @summary Get all HospitalServices.
|
|
@@ -12991,7 +13124,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
12991
13124
|
* @summary Get all Hospitals.
|
|
12992
13125
|
* @param {string} [hospitalId]
|
|
12993
13126
|
* @param {string} [name]
|
|
12994
|
-
* @param {string} [description]
|
|
12995
13127
|
* @param {string} [countryId]
|
|
12996
13128
|
* @param {Date} [created]
|
|
12997
13129
|
* @param {MarketingType} [marketingType]
|
|
@@ -13009,7 +13141,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13009
13141
|
* @param {*} [options] Override http request option.
|
|
13010
13142
|
* @throws {RequiredError}
|
|
13011
13143
|
*/
|
|
13012
|
-
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
13144
|
+
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
13013
13145
|
/**
|
|
13014
13146
|
*
|
|
13015
13147
|
* @param {string} slug
|
|
@@ -13030,7 +13162,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
13030
13162
|
* @summary Get all Hospitals.
|
|
13031
13163
|
* @param {string} [hospitalId]
|
|
13032
13164
|
* @param {string} [name]
|
|
13033
|
-
* @param {string} [description]
|
|
13034
13165
|
* @param {string} [countryId]
|
|
13035
13166
|
* @param {Date} [created]
|
|
13036
13167
|
* @param {MarketingType} [marketingType]
|
|
@@ -13048,7 +13179,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
13048
13179
|
* @param {*} [options] Override http request option.
|
|
13049
13180
|
* @throws {RequiredError}
|
|
13050
13181
|
*/
|
|
13051
|
-
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
13182
|
+
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
13052
13183
|
/**
|
|
13053
13184
|
*
|
|
13054
13185
|
* @summary Get HospitalAccreditation.
|
|
@@ -13185,24 +13316,29 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
13185
13316
|
* @param {string} [specialtyId]
|
|
13186
13317
|
* @param {string} [specialtyName]
|
|
13187
13318
|
* @param {string} [specialtyTypeId]
|
|
13319
|
+
* @param {string} [title]
|
|
13188
13320
|
* @param {MarketingType} [marketingType]
|
|
13189
|
-
* @param {
|
|
13321
|
+
* @param {string} [languageCode]
|
|
13322
|
+
* @param {boolean} [showHidden]
|
|
13323
|
+
* @param {boolean} [returnDefaultValue]
|
|
13190
13324
|
* @param {number} [page]
|
|
13191
13325
|
* @param {number} [limit]
|
|
13192
13326
|
* @param {Date} [lastRetrieved]
|
|
13193
13327
|
* @param {*} [options] Override http request option.
|
|
13194
13328
|
* @throws {RequiredError}
|
|
13195
13329
|
*/
|
|
13196
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: 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>;
|
|
13197
13331
|
/**
|
|
13198
13332
|
*
|
|
13199
13333
|
* @summary Get HospitalSpecialty.
|
|
13200
13334
|
* @param {string} hospitalId
|
|
13201
13335
|
* @param {string} specialtyId
|
|
13336
|
+
* @param {string} [languageCode]
|
|
13337
|
+
* @param {boolean} [returnDefaultValue]
|
|
13202
13338
|
* @param {*} [options] Override http request option.
|
|
13203
13339
|
* @throws {RequiredError}
|
|
13204
13340
|
*/
|
|
13205
|
-
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>;
|
|
13206
13342
|
/**
|
|
13207
13343
|
*
|
|
13208
13344
|
* @summary Get all HospitalServices.
|
|
@@ -13272,7 +13408,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
13272
13408
|
* @summary Get all Hospitals.
|
|
13273
13409
|
* @param {string} [hospitalId]
|
|
13274
13410
|
* @param {string} [name]
|
|
13275
|
-
* @param {string} [description]
|
|
13276
13411
|
* @param {string} [countryId]
|
|
13277
13412
|
* @param {Date} [created]
|
|
13278
13413
|
* @param {MarketingType} [marketingType]
|
|
@@ -13290,7 +13425,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
13290
13425
|
* @param {*} [options] Override http request option.
|
|
13291
13426
|
* @throws {RequiredError}
|
|
13292
13427
|
*/
|
|
13293
|
-
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
13428
|
+
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
13294
13429
|
/**
|
|
13295
13430
|
*
|
|
13296
13431
|
* @param {string} slug
|
|
@@ -13313,7 +13448,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
13313
13448
|
* @summary Get all Hospitals.
|
|
13314
13449
|
* @param {string} [hospitalId]
|
|
13315
13450
|
* @param {string} [name]
|
|
13316
|
-
* @param {string} [description]
|
|
13317
13451
|
* @param {string} [countryId]
|
|
13318
13452
|
* @param {Date} [created]
|
|
13319
13453
|
* @param {MarketingType} [marketingType]
|
|
@@ -13332,7 +13466,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
13332
13466
|
* @throws {RequiredError}
|
|
13333
13467
|
* @memberof HospitalsApi
|
|
13334
13468
|
*/
|
|
13335
|
-
apiV2HospitalsGet(hospitalId?: string, name?: string,
|
|
13469
|
+
apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
13336
13470
|
/**
|
|
13337
13471
|
*
|
|
13338
13472
|
* @summary Get HospitalAccreditation.
|
|
@@ -13480,8 +13614,11 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
13480
13614
|
* @param {string} [specialtyId]
|
|
13481
13615
|
* @param {string} [specialtyName]
|
|
13482
13616
|
* @param {string} [specialtyTypeId]
|
|
13617
|
+
* @param {string} [title]
|
|
13483
13618
|
* @param {MarketingType} [marketingType]
|
|
13484
|
-
* @param {
|
|
13619
|
+
* @param {string} [languageCode]
|
|
13620
|
+
* @param {boolean} [showHidden]
|
|
13621
|
+
* @param {boolean} [returnDefaultValue]
|
|
13485
13622
|
* @param {number} [page]
|
|
13486
13623
|
* @param {number} [limit]
|
|
13487
13624
|
* @param {Date} [lastRetrieved]
|
|
@@ -13489,17 +13626,19 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
13489
13626
|
* @throws {RequiredError}
|
|
13490
13627
|
* @memberof HospitalsApi
|
|
13491
13628
|
*/
|
|
13492
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: 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>>;
|
|
13493
13630
|
/**
|
|
13494
13631
|
*
|
|
13495
13632
|
* @summary Get HospitalSpecialty.
|
|
13496
13633
|
* @param {string} hospitalId
|
|
13497
13634
|
* @param {string} specialtyId
|
|
13635
|
+
* @param {string} [languageCode]
|
|
13636
|
+
* @param {boolean} [returnDefaultValue]
|
|
13498
13637
|
* @param {*} [options] Override http request option.
|
|
13499
13638
|
* @throws {RequiredError}
|
|
13500
13639
|
* @memberof HospitalsApi
|
|
13501
13640
|
*/
|
|
13502
|
-
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>>;
|
|
13503
13642
|
/**
|
|
13504
13643
|
*
|
|
13505
13644
|
* @summary Get all HospitalServices.
|
|
@@ -13573,7 +13712,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
13573
13712
|
* @summary Get all Hospitals.
|
|
13574
13713
|
* @param {string} [hospitalId]
|
|
13575
13714
|
* @param {string} [name]
|
|
13576
|
-
* @param {string} [description]
|
|
13577
13715
|
* @param {string} [countryId]
|
|
13578
13716
|
* @param {Date} [created]
|
|
13579
13717
|
* @param {MarketingType} [marketingType]
|
|
@@ -13592,7 +13730,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
13592
13730
|
* @throws {RequiredError}
|
|
13593
13731
|
* @memberof HospitalsApi
|
|
13594
13732
|
*/
|
|
13595
|
-
apiV2HospitalsSimpleGet(hospitalId?: string, name?: string,
|
|
13733
|
+
apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
|
|
13596
13734
|
/**
|
|
13597
13735
|
*
|
|
13598
13736
|
* @param {string} slug
|
|
@@ -15720,14 +15858,13 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
15720
15858
|
* @summary Get all ServiceCategories.
|
|
15721
15859
|
* @param {string} [id]
|
|
15722
15860
|
* @param {string} [name]
|
|
15723
|
-
* @param {string} [description]
|
|
15724
15861
|
* @param {number} [page]
|
|
15725
15862
|
* @param {number} [limit]
|
|
15726
15863
|
* @param {Date} [lastRetrieved]
|
|
15727
15864
|
* @param {*} [options] Override http request option.
|
|
15728
15865
|
* @throws {RequiredError}
|
|
15729
15866
|
*/
|
|
15730
|
-
apiV2ServicescategoriesGet: (id?: string | undefined, name?: string | undefined,
|
|
15867
|
+
apiV2ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15731
15868
|
/**
|
|
15732
15869
|
*
|
|
15733
15870
|
* @summary Get ServiceCategory.
|
|
@@ -15747,14 +15884,13 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
15747
15884
|
* @summary Get all ServiceCategories.
|
|
15748
15885
|
* @param {string} [id]
|
|
15749
15886
|
* @param {string} [name]
|
|
15750
|
-
* @param {string} [description]
|
|
15751
15887
|
* @param {number} [page]
|
|
15752
15888
|
* @param {number} [limit]
|
|
15753
15889
|
* @param {Date} [lastRetrieved]
|
|
15754
15890
|
* @param {*} [options] Override http request option.
|
|
15755
15891
|
* @throws {RequiredError}
|
|
15756
15892
|
*/
|
|
15757
|
-
apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined,
|
|
15893
|
+
apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
|
|
15758
15894
|
/**
|
|
15759
15895
|
*
|
|
15760
15896
|
* @summary Get ServiceCategory.
|
|
@@ -15774,14 +15910,13 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
15774
15910
|
* @summary Get all ServiceCategories.
|
|
15775
15911
|
* @param {string} [id]
|
|
15776
15912
|
* @param {string} [name]
|
|
15777
|
-
* @param {string} [description]
|
|
15778
15913
|
* @param {number} [page]
|
|
15779
15914
|
* @param {number} [limit]
|
|
15780
15915
|
* @param {Date} [lastRetrieved]
|
|
15781
15916
|
* @param {*} [options] Override http request option.
|
|
15782
15917
|
* @throws {RequiredError}
|
|
15783
15918
|
*/
|
|
15784
|
-
apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined,
|
|
15919
|
+
apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
|
|
15785
15920
|
/**
|
|
15786
15921
|
*
|
|
15787
15922
|
* @summary Get ServiceCategory.
|
|
@@ -15803,7 +15938,6 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
15803
15938
|
* @summary Get all ServiceCategories.
|
|
15804
15939
|
* @param {string} [id]
|
|
15805
15940
|
* @param {string} [name]
|
|
15806
|
-
* @param {string} [description]
|
|
15807
15941
|
* @param {number} [page]
|
|
15808
15942
|
* @param {number} [limit]
|
|
15809
15943
|
* @param {Date} [lastRetrieved]
|
|
@@ -15811,7 +15945,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
15811
15945
|
* @throws {RequiredError}
|
|
15812
15946
|
* @memberof ServicesCategoriesApi
|
|
15813
15947
|
*/
|
|
15814
|
-
apiV2ServicescategoriesGet(id?: string, name?: string,
|
|
15948
|
+
apiV2ServicescategoriesGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
15815
15949
|
/**
|
|
15816
15950
|
*
|
|
15817
15951
|
* @summary Get ServiceCategory.
|