ch-api-client-typescript2 2.7.5 → 2.7.9

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
@@ -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}
@@ -2947,6 +2971,30 @@ export interface DealItemModel {
2947
2971
  * @memberof DealItemModel
2948
2972
  */
2949
2973
  'hospitalSlug'?: string | null;
2974
+ /**
2975
+ *
2976
+ * @type {string}
2977
+ * @memberof DealItemModel
2978
+ */
2979
+ 'hospitalLocationCountry'?: string | null;
2980
+ /**
2981
+ *
2982
+ * @type {string}
2983
+ * @memberof DealItemModel
2984
+ */
2985
+ 'hospitalLocationState'?: string | null;
2986
+ /**
2987
+ *
2988
+ * @type {boolean}
2989
+ * @memberof DealItemModel
2990
+ */
2991
+ 'hospitalConsultationEnabled'?: boolean;
2992
+ /**
2993
+ *
2994
+ * @type {number}
2995
+ * @memberof DealItemModel
2996
+ */
2997
+ 'serviceDuration'?: number;
2950
2998
  /**
2951
2999
  *
2952
3000
  * @type {MarketingType}
@@ -3050,6 +3098,30 @@ export interface DealModel {
3050
3098
  * @memberof DealModel
3051
3099
  */
3052
3100
  'hospitalSlug'?: string | null;
3101
+ /**
3102
+ *
3103
+ * @type {string}
3104
+ * @memberof DealModel
3105
+ */
3106
+ 'hospitalLocationCountry'?: string | null;
3107
+ /**
3108
+ *
3109
+ * @type {string}
3110
+ * @memberof DealModel
3111
+ */
3112
+ 'hospitalLocationState'?: string | null;
3113
+ /**
3114
+ *
3115
+ * @type {boolean}
3116
+ * @memberof DealModel
3117
+ */
3118
+ 'hospitalConsultationEnabled'?: boolean;
3119
+ /**
3120
+ *
3121
+ * @type {number}
3122
+ * @memberof DealModel
3123
+ */
3124
+ 'serviceDuration'?: number;
3053
3125
  /**
3054
3126
  *
3055
3127
  * @type {MarketingType}
@@ -3884,6 +3956,67 @@ export interface DoctorItemModel {
3884
3956
  */
3885
3957
  'confirmed'?: boolean;
3886
3958
  }
3959
+ /**
3960
+ *
3961
+ * @export
3962
+ * @interface DoctorItemSimpleModel
3963
+ */
3964
+ export interface DoctorItemSimpleModel {
3965
+ /**
3966
+ *
3967
+ * @type {string}
3968
+ * @memberof DoctorItemSimpleModel
3969
+ */
3970
+ 'id'?: string;
3971
+ /**
3972
+ *
3973
+ * @type {string}
3974
+ * @memberof DoctorItemSimpleModel
3975
+ */
3976
+ 'firstName'?: string | null;
3977
+ /**
3978
+ *
3979
+ * @type {string}
3980
+ * @memberof DoctorItemSimpleModel
3981
+ */
3982
+ 'lastName'?: string | null;
3983
+ /**
3984
+ *
3985
+ * @type {string}
3986
+ * @memberof DoctorItemSimpleModel
3987
+ */
3988
+ 'fullname'?: string | null;
3989
+ /**
3990
+ *
3991
+ * @type {string}
3992
+ * @memberof DoctorItemSimpleModel
3993
+ */
3994
+ 'slug'?: string | null;
3995
+ /**
3996
+ *
3997
+ * @type {string}
3998
+ * @memberof DoctorItemSimpleModel
3999
+ */
4000
+ 'hospitalId'?: string | null;
4001
+ /**
4002
+ *
4003
+ * @type {string}
4004
+ * @memberof DoctorItemSimpleModel
4005
+ */
4006
+ 'hospitalName'?: string | null;
4007
+ /**
4008
+ *
4009
+ * @type {string}
4010
+ * @memberof DoctorItemSimpleModel
4011
+ */
4012
+ 'overview'?: string | null;
4013
+ /**
4014
+ *
4015
+ * @type {boolean}
4016
+ * @memberof DoctorItemSimpleModel
4017
+ */
4018
+ 'confirmed'?: boolean;
4019
+ }
3887
4020
  /**
3888
4021
  *
3889
4022
  * @export
@@ -4330,6 +4463,25 @@ export interface DoctorsModel {
4330
4463
  */
4331
4464
  'metaData'?: PagedListMetaData;
4332
4465
  }
4466
+ /**
4467
+ *
4468
+ * @export
4469
+ * @interface DoctorsSimpleModel
4470
+ */
4471
+ export interface DoctorsSimpleModel {
4472
+ /**
4473
+ *
4474
+ * @type {Array<DoctorItemSimpleModel>}
4475
+ * @memberof DoctorsSimpleModel
4476
+ */
4477
+ 'items'?: Array<DoctorItemSimpleModel> | null;
4478
+ /**
4479
+ *
4480
+ * @type {PagedListMetaData}
4481
+ * @memberof DoctorsSimpleModel
4482
+ */
4483
+ 'metaData'?: PagedListMetaData;
4484
+ }
4333
4485
  /**
4334
4486
  *
4335
4487
  * @export
@@ -5824,6 +5976,12 @@ export interface HospitalSpecialtiesModel {
5824
5976
  * @interface HospitalSpecialtyItemModel
5825
5977
  */
5826
5978
  export interface HospitalSpecialtyItemModel {
5979
+ /**
5980
+ *
5981
+ * @type {string}
5982
+ * @memberof HospitalSpecialtyItemModel
5983
+ */
5984
+ 'id'?: string;
5827
5985
  /**
5828
5986
  *
5829
5987
  * @type {string}
@@ -5872,12 +6030,48 @@ export interface HospitalSpecialtyItemModel {
5872
6030
  * @memberof HospitalSpecialtyItemModel
5873
6031
  */
5874
6032
  'marketingType'?: MarketingType;
6033
+ /**
6034
+ *
6035
+ * @type {string}
6036
+ * @memberof HospitalSpecialtyItemModel
6037
+ */
6038
+ 'title'?: string | null;
6039
+ /**
6040
+ *
6041
+ * @type {string}
6042
+ * @memberof HospitalSpecialtyItemModel
6043
+ */
6044
+ 'description'?: string | null;
6045
+ /**
6046
+ *
6047
+ * @type {string}
6048
+ * @memberof HospitalSpecialtyItemModel
6049
+ */
6050
+ 'content'?: string | null;
5875
6051
  /**
5876
6052
  *
5877
6053
  * @type {number}
5878
6054
  * @memberof HospitalSpecialtyItemModel
5879
6055
  */
5880
6056
  'order'?: number;
6057
+ /**
6058
+ *
6059
+ * @type {boolean}
6060
+ * @memberof HospitalSpecialtyItemModel
6061
+ */
6062
+ 'confirmed'?: boolean;
6063
+ /**
6064
+ *
6065
+ * @type {Array<MediaModel>}
6066
+ * @memberof HospitalSpecialtyItemModel
6067
+ */
6068
+ 'medias'?: Array<MediaModel> | null;
6069
+ /**
6070
+ *
6071
+ * @type {AuditableEntity}
6072
+ * @memberof HospitalSpecialtyItemModel
6073
+ */
6074
+ 'auditableEntity'?: AuditableEntity;
5881
6075
  }
5882
6076
  /**
5883
6077
  *
@@ -5885,6 +6079,12 @@ export interface HospitalSpecialtyItemModel {
5885
6079
  * @interface HospitalSpecialtyModel
5886
6080
  */
5887
6081
  export interface HospitalSpecialtyModel {
6082
+ /**
6083
+ *
6084
+ * @type {string}
6085
+ * @memberof HospitalSpecialtyModel
6086
+ */
6087
+ 'id'?: string;
5888
6088
  /**
5889
6089
  *
5890
6090
  * @type {string}
@@ -5933,12 +6133,54 @@ export interface HospitalSpecialtyModel {
5933
6133
  * @memberof HospitalSpecialtyModel
5934
6134
  */
5935
6135
  'marketingType'?: MarketingType;
6136
+ /**
6137
+ *
6138
+ * @type {string}
6139
+ * @memberof HospitalSpecialtyModel
6140
+ */
6141
+ 'title'?: string | null;
6142
+ /**
6143
+ *
6144
+ * @type {string}
6145
+ * @memberof HospitalSpecialtyModel
6146
+ */
6147
+ 'description'?: string | null;
6148
+ /**
6149
+ *
6150
+ * @type {string}
6151
+ * @memberof HospitalSpecialtyModel
6152
+ */
6153
+ 'content'?: string | null;
5936
6154
  /**
5937
6155
  *
5938
6156
  * @type {number}
5939
6157
  * @memberof HospitalSpecialtyModel
5940
6158
  */
5941
6159
  'order'?: number;
6160
+ /**
6161
+ *
6162
+ * @type {boolean}
6163
+ * @memberof HospitalSpecialtyModel
6164
+ */
6165
+ 'confirmed'?: boolean;
6166
+ /**
6167
+ *
6168
+ * @type {Array<MediaModel>}
6169
+ * @memberof HospitalSpecialtyModel
6170
+ */
6171
+ 'medias'?: Array<MediaModel> | null;
6172
+ /**
6173
+ *
6174
+ * @type {AuditableEntity}
6175
+ * @memberof HospitalSpecialtyModel
6176
+ */
6177
+ 'auditableEntity'?: AuditableEntity;
6178
+ /**
6179
+ *
6180
+ * @type {string}
6181
+ * @memberof HospitalSpecialtyModel
6182
+ */
6183
+ 'languageCode'?: string | null;
5942
6184
  }
5943
6185
  /**
5944
6186
  *
@@ -7236,6 +7478,30 @@ export interface ServiceReviewItemModel {
7236
7478
  * @memberof ServiceReviewItemModel
7237
7479
  */
7238
7480
  'patientName'?: string | null;
7481
+ /**
7482
+ *
7483
+ * @type {Gender}
7484
+ * @memberof ServiceReviewItemModel
7485
+ */
7486
+ 'patientGender'?: Gender;
7487
+ /**
7488
+ *
7489
+ * @type {string}
7490
+ * @memberof ServiceReviewItemModel
7491
+ */
7492
+ 'patientPhoto'?: string | null;
7493
+ /**
7494
+ *
7495
+ * @type {string}
7496
+ * @memberof ServiceReviewItemModel
7497
+ */
7498
+ 'patientPhotoThumbnail'?: string | null;
7499
+ /**
7500
+ *
7501
+ * @type {Date}
7502
+ * @memberof ServiceReviewItemModel
7503
+ */
7504
+ 'patientCreatedDate'?: Date | null;
7239
7505
  /**
7240
7506
  *
7241
7507
  * @type {string}
@@ -7303,6 +7569,30 @@ export interface ServiceReviewModel {
7303
7569
  * @memberof ServiceReviewModel
7304
7570
  */
7305
7571
  'patientName'?: string | null;
7572
+ /**
7573
+ *
7574
+ * @type {Gender}
7575
+ * @memberof ServiceReviewModel
7576
+ */
7577
+ 'patientGender'?: Gender;
7578
+ /**
7579
+ *
7580
+ * @type {string}
7581
+ * @memberof ServiceReviewModel
7582
+ */
7583
+ 'patientPhoto'?: string | null;
7584
+ /**
7585
+ *
7586
+ * @type {string}
7587
+ * @memberof ServiceReviewModel
7588
+ */
7589
+ 'patientPhotoThumbnail'?: string | null;
7590
+ /**
7591
+ *
7592
+ * @type {Date}
7593
+ * @memberof ServiceReviewModel
7594
+ */
7595
+ 'patientCreatedDate'?: Date | null;
7306
7596
  /**
7307
7597
  *
7308
7598
  * @type {string}
@@ -10923,6 +11213,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
10923
11213
  * @param {string} [hospitalName]
10924
11214
  * @param {string} [specialtyId]
10925
11215
  * @param {string} [specialtyTypeId]
11216
+ * @param {string} [serviceId]
10926
11217
  * @param {string} [exceptHospitalId]
10927
11218
  * @param {string} [exceptDealId]
10928
11219
  * @param {Array<string>} [ids]
@@ -10935,7 +11226,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
10935
11226
  * @param {*} [options] Override http request option.
10936
11227
  * @throws {RequiredError}
10937
11228
  */
10938
- apiV2DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11229
+ apiV2DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10939
11230
  /**
10940
11231
  *
10941
11232
  * @summary Get deal by slug.
@@ -11019,6 +11310,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
11019
11310
  * @param {string} [hospitalName]
11020
11311
  * @param {string} [specialtyId]
11021
11312
  * @param {string} [specialtyTypeId]
11313
+ * @param {string} [serviceId]
11022
11314
  * @param {string} [exceptHospitalId]
11023
11315
  * @param {string} [exceptDealId]
11024
11316
  * @param {Array<string>} [ids]
@@ -11031,7 +11323,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
11031
11323
  * @param {*} [options] Override http request option.
11032
11324
  * @throws {RequiredError}
11033
11325
  */
11034
- apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | 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<DealsModel>>;
11326
+ apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | 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<DealsModel>>;
11035
11327
  /**
11036
11328
  *
11037
11329
  * @summary Get deal by slug.
@@ -11115,6 +11407,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
11115
11407
  * @param {string} [hospitalName]
11116
11408
  * @param {string} [specialtyId]
11117
11409
  * @param {string} [specialtyTypeId]
11410
+ * @param {string} [serviceId]
11118
11411
  * @param {string} [exceptHospitalId]
11119
11412
  * @param {string} [exceptDealId]
11120
11413
  * @param {Array<string>} [ids]
@@ -11127,7 +11420,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
11127
11420
  * @param {*} [options] Override http request option.
11128
11421
  * @throws {RequiredError}
11129
11422
  */
11130
- apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
11423
+ apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
11131
11424
  /**
11132
11425
  *
11133
11426
  * @summary Get deal by slug.
@@ -11218,6 +11511,7 @@ export declare class DealsApi extends BaseAPI {
11218
11511
  * @param {string} [hospitalName]
11219
11512
  * @param {string} [specialtyId]
11220
11513
  * @param {string} [specialtyTypeId]
11514
+ * @param {string} [serviceId]
11221
11515
  * @param {string} [exceptHospitalId]
11222
11516
  * @param {string} [exceptDealId]
11223
11517
  * @param {Array<string>} [ids]
@@ -11231,7 +11525,7 @@ export declare class DealsApi extends BaseAPI {
11231
11525
  * @throws {RequiredError}
11232
11526
  * @memberof DealsApi
11233
11527
  */
11234
- apiV2DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
11528
+ apiV2DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
11235
11529
  /**
11236
11530
  *
11237
11531
  * @summary Get deal by slug.
@@ -11418,6 +11712,27 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
11418
11712
  * @throws {RequiredError}
11419
11713
  */
11420
11714
  apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11715
+ /**
11716
+ *
11717
+ * @summary Get all Doctors.
11718
+ * @param {string} [hospitalId]
11719
+ * @param {string} [languageCode]
11720
+ * @param {boolean} [returnDefaultValue]
11721
+ * @param {Array<string>} [ids]
11722
+ * @param {string} [id]
11723
+ * @param {string} [fullname]
11724
+ * @param {string} [email]
11725
+ * @param {Gender} [gender]
11726
+ * @param {Date} [dateOfBirth]
11727
+ * @param {Date} [created]
11728
+ * @param {boolean} [showHidden]
11729
+ * @param {number} [page]
11730
+ * @param {number} [limit]
11731
+ * @param {Date} [lastRetrieved]
11732
+ * @param {*} [options] Override http request option.
11733
+ * @throws {RequiredError}
11734
+ */
11735
+ apiV2DoctorsSimpleGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11421
11736
  /**
11422
11737
  *
11423
11738
  * @param {string} slug
@@ -11602,6 +11917,27 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
11602
11917
  * @throws {RequiredError}
11603
11918
  */
11604
11919
  apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
11920
+ /**
11921
+ *
11922
+ * @summary Get all Doctors.
11923
+ * @param {string} [hospitalId]
11924
+ * @param {string} [languageCode]
11925
+ * @param {boolean} [returnDefaultValue]
11926
+ * @param {Array<string>} [ids]
11927
+ * @param {string} [id]
11928
+ * @param {string} [fullname]
11929
+ * @param {string} [email]
11930
+ * @param {Gender} [gender]
11931
+ * @param {Date} [dateOfBirth]
11932
+ * @param {Date} [created]
11933
+ * @param {boolean} [showHidden]
11934
+ * @param {number} [page]
11935
+ * @param {number} [limit]
11936
+ * @param {Date} [lastRetrieved]
11937
+ * @param {*} [options] Override http request option.
11938
+ * @throws {RequiredError}
11939
+ */
11940
+ apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsSimpleModel>>;
11605
11941
  /**
11606
11942
  *
11607
11943
  * @param {string} slug
@@ -11786,6 +12122,27 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
11786
12122
  * @throws {RequiredError}
11787
12123
  */
11788
12124
  apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
12125
+ /**
12126
+ *
12127
+ * @summary Get all Doctors.
12128
+ * @param {string} [hospitalId]
12129
+ * @param {string} [languageCode]
12130
+ * @param {boolean} [returnDefaultValue]
12131
+ * @param {Array<string>} [ids]
12132
+ * @param {string} [id]
12133
+ * @param {string} [fullname]
12134
+ * @param {string} [email]
12135
+ * @param {Gender} [gender]
12136
+ * @param {Date} [dateOfBirth]
12137
+ * @param {Date} [created]
12138
+ * @param {boolean} [showHidden]
12139
+ * @param {number} [page]
12140
+ * @param {number} [limit]
12141
+ * @param {Date} [lastRetrieved]
12142
+ * @param {*} [options] Override http request option.
12143
+ * @throws {RequiredError}
12144
+ */
12145
+ apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsSimpleModel>;
11789
12146
  /**
11790
12147
  *
11791
12148
  * @param {string} slug
@@ -11986,6 +12343,28 @@ export declare class DoctorsApi extends BaseAPI {
11986
12343
  * @memberof DoctorsApi
11987
12344
  */
11988
12345
  apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
12346
+ /**
12347
+ *
12348
+ * @summary Get all Doctors.
12349
+ * @param {string} [hospitalId]
12350
+ * @param {string} [languageCode]
12351
+ * @param {boolean} [returnDefaultValue]
12352
+ * @param {Array<string>} [ids]
12353
+ * @param {string} [id]
12354
+ * @param {string} [fullname]
12355
+ * @param {string} [email]
12356
+ * @param {Gender} [gender]
12357
+ * @param {Date} [dateOfBirth]
12358
+ * @param {Date} [created]
12359
+ * @param {boolean} [showHidden]
12360
+ * @param {number} [page]
12361
+ * @param {number} [limit]
12362
+ * @param {Date} [lastRetrieved]
12363
+ * @param {*} [options] Override http request option.
12364
+ * @throws {RequiredError}
12365
+ * @memberof DoctorsApi
12366
+ */
12367
+ apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsSimpleModel>>;
11989
12368
  /**
11990
12369
  *
11991
12370
  * @param {string} slug
@@ -12468,7 +12847,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
12468
12847
  * @summary Get all Hospitals.
12469
12848
  * @param {string} [hospitalId]
12470
12849
  * @param {string} [name]
12471
- * @param {string} [description]
12472
12850
  * @param {string} [countryId]
12473
12851
  * @param {Date} [created]
12474
12852
  * @param {MarketingType} [marketingType]
@@ -12486,7 +12864,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
12486
12864
  * @param {*} [options] Override http request option.
12487
12865
  * @throws {RequiredError}
12488
12866
  */
12489
- apiV2HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, description?: 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>;
12867
+ 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
12868
  /**
12491
12869
  *
12492
12870
  * @summary Get HospitalAccreditation.
@@ -12623,24 +13001,29 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
12623
13001
  * @param {string} [specialtyId]
12624
13002
  * @param {string} [specialtyName]
12625
13003
  * @param {string} [specialtyTypeId]
13004
+ * @param {string} [title]
12626
13005
  * @param {MarketingType} [marketingType]
12627
- * @param {Date} [created]
13006
+ * @param {string} [languageCode]
13007
+ * @param {boolean} [showHidden]
13008
+ * @param {boolean} [returnDefaultValue]
12628
13009
  * @param {number} [page]
12629
13010
  * @param {number} [limit]
12630
13011
  * @param {Date} [lastRetrieved]
12631
13012
  * @param {*} [options] Override http request option.
12632
13013
  * @throws {RequiredError}
12633
13014
  */
12634
- apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13015
+ 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
13016
  /**
12636
13017
  *
12637
13018
  * @summary Get HospitalSpecialty.
12638
13019
  * @param {string} hospitalId
12639
13020
  * @param {string} specialtyId
13021
+ * @param {string} [languageCode]
13022
+ * @param {boolean} [returnDefaultValue]
12640
13023
  * @param {*} [options] Override http request option.
12641
13024
  * @throws {RequiredError}
12642
13025
  */
12643
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13026
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12644
13027
  /**
12645
13028
  *
12646
13029
  * @summary Get all HospitalServices.
@@ -12710,7 +13093,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
12710
13093
  * @summary Get all Hospitals.
12711
13094
  * @param {string} [hospitalId]
12712
13095
  * @param {string} [name]
12713
- * @param {string} [description]
12714
13096
  * @param {string} [countryId]
12715
13097
  * @param {Date} [created]
12716
13098
  * @param {MarketingType} [marketingType]
@@ -12728,7 +13110,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
12728
13110
  * @param {*} [options] Override http request option.
12729
13111
  * @throws {RequiredError}
12730
13112
  */
12731
- apiV2HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, description?: 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>;
13113
+ 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
13114
  /**
12733
13115
  *
12734
13116
  * @param {string} slug
@@ -12749,7 +13131,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
12749
13131
  * @summary Get all Hospitals.
12750
13132
  * @param {string} [hospitalId]
12751
13133
  * @param {string} [name]
12752
- * @param {string} [description]
12753
13134
  * @param {string} [countryId]
12754
13135
  * @param {Date} [created]
12755
13136
  * @param {MarketingType} [marketingType]
@@ -12767,7 +13148,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
12767
13148
  * @param {*} [options] Override http request option.
12768
13149
  * @throws {RequiredError}
12769
13150
  */
12770
- apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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>>;
13151
+ 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
13152
  /**
12772
13153
  *
12773
13154
  * @summary Get HospitalAccreditation.
@@ -12904,24 +13285,29 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
12904
13285
  * @param {string} [specialtyId]
12905
13286
  * @param {string} [specialtyName]
12906
13287
  * @param {string} [specialtyTypeId]
13288
+ * @param {string} [title]
12907
13289
  * @param {MarketingType} [marketingType]
12908
- * @param {Date} [created]
13290
+ * @param {string} [languageCode]
13291
+ * @param {boolean} [showHidden]
13292
+ * @param {boolean} [returnDefaultValue]
12909
13293
  * @param {number} [page]
12910
13294
  * @param {number} [limit]
12911
13295
  * @param {Date} [lastRetrieved]
12912
13296
  * @param {*} [options] Override http request option.
12913
13297
  * @throws {RequiredError}
12914
13298
  */
12915
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
13299
+ 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
13300
  /**
12917
13301
  *
12918
13302
  * @summary Get HospitalSpecialty.
12919
13303
  * @param {string} hospitalId
12920
13304
  * @param {string} specialtyId
13305
+ * @param {string} [languageCode]
13306
+ * @param {boolean} [returnDefaultValue]
12921
13307
  * @param {*} [options] Override http request option.
12922
13308
  * @throws {RequiredError}
12923
13309
  */
12924
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
13310
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
12925
13311
  /**
12926
13312
  *
12927
13313
  * @summary Get all HospitalServices.
@@ -12991,7 +13377,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
12991
13377
  * @summary Get all Hospitals.
12992
13378
  * @param {string} [hospitalId]
12993
13379
  * @param {string} [name]
12994
- * @param {string} [description]
12995
13380
  * @param {string} [countryId]
12996
13381
  * @param {Date} [created]
12997
13382
  * @param {MarketingType} [marketingType]
@@ -13009,7 +13394,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
13009
13394
  * @param {*} [options] Override http request option.
13010
13395
  * @throws {RequiredError}
13011
13396
  */
13012
- apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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>>;
13397
+ 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
13398
  /**
13014
13399
  *
13015
13400
  * @param {string} slug
@@ -13030,7 +13415,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
13030
13415
  * @summary Get all Hospitals.
13031
13416
  * @param {string} [hospitalId]
13032
13417
  * @param {string} [name]
13033
- * @param {string} [description]
13034
13418
  * @param {string} [countryId]
13035
13419
  * @param {Date} [created]
13036
13420
  * @param {MarketingType} [marketingType]
@@ -13048,7 +13432,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
13048
13432
  * @param {*} [options] Override http request option.
13049
13433
  * @throws {RequiredError}
13050
13434
  */
13051
- apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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>;
13435
+ 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
13436
  /**
13053
13437
  *
13054
13438
  * @summary Get HospitalAccreditation.
@@ -13185,24 +13569,29 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
13185
13569
  * @param {string} [specialtyId]
13186
13570
  * @param {string} [specialtyName]
13187
13571
  * @param {string} [specialtyTypeId]
13572
+ * @param {string} [title]
13188
13573
  * @param {MarketingType} [marketingType]
13189
- * @param {Date} [created]
13574
+ * @param {string} [languageCode]
13575
+ * @param {boolean} [showHidden]
13576
+ * @param {boolean} [returnDefaultValue]
13190
13577
  * @param {number} [page]
13191
13578
  * @param {number} [limit]
13192
13579
  * @param {Date} [lastRetrieved]
13193
13580
  * @param {*} [options] Override http request option.
13194
13581
  * @throws {RequiredError}
13195
13582
  */
13196
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
13583
+ 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
13584
  /**
13198
13585
  *
13199
13586
  * @summary Get HospitalSpecialty.
13200
13587
  * @param {string} hospitalId
13201
13588
  * @param {string} specialtyId
13589
+ * @param {string} [languageCode]
13590
+ * @param {boolean} [returnDefaultValue]
13202
13591
  * @param {*} [options] Override http request option.
13203
13592
  * @throws {RequiredError}
13204
13593
  */
13205
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
13594
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
13206
13595
  /**
13207
13596
  *
13208
13597
  * @summary Get all HospitalServices.
@@ -13272,7 +13661,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
13272
13661
  * @summary Get all Hospitals.
13273
13662
  * @param {string} [hospitalId]
13274
13663
  * @param {string} [name]
13275
- * @param {string} [description]
13276
13664
  * @param {string} [countryId]
13277
13665
  * @param {Date} [created]
13278
13666
  * @param {MarketingType} [marketingType]
@@ -13290,7 +13678,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
13290
13678
  * @param {*} [options] Override http request option.
13291
13679
  * @throws {RequiredError}
13292
13680
  */
13293
- apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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>;
13681
+ 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
13682
  /**
13295
13683
  *
13296
13684
  * @param {string} slug
@@ -13313,7 +13701,6 @@ export declare class HospitalsApi extends BaseAPI {
13313
13701
  * @summary Get all Hospitals.
13314
13702
  * @param {string} [hospitalId]
13315
13703
  * @param {string} [name]
13316
- * @param {string} [description]
13317
13704
  * @param {string} [countryId]
13318
13705
  * @param {Date} [created]
13319
13706
  * @param {MarketingType} [marketingType]
@@ -13332,7 +13719,7 @@ export declare class HospitalsApi extends BaseAPI {
13332
13719
  * @throws {RequiredError}
13333
13720
  * @memberof HospitalsApi
13334
13721
  */
13335
- apiV2HospitalsGet(hospitalId?: string, name?: string, description?: 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>>;
13722
+ 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
13723
  /**
13337
13724
  *
13338
13725
  * @summary Get HospitalAccreditation.
@@ -13480,8 +13867,11 @@ export declare class HospitalsApi extends BaseAPI {
13480
13867
  * @param {string} [specialtyId]
13481
13868
  * @param {string} [specialtyName]
13482
13869
  * @param {string} [specialtyTypeId]
13870
+ * @param {string} [title]
13483
13871
  * @param {MarketingType} [marketingType]
13484
- * @param {Date} [created]
13872
+ * @param {string} [languageCode]
13873
+ * @param {boolean} [showHidden]
13874
+ * @param {boolean} [returnDefaultValue]
13485
13875
  * @param {number} [page]
13486
13876
  * @param {number} [limit]
13487
13877
  * @param {Date} [lastRetrieved]
@@ -13489,17 +13879,19 @@ export declare class HospitalsApi extends BaseAPI {
13489
13879
  * @throws {RequiredError}
13490
13880
  * @memberof HospitalsApi
13491
13881
  */
13492
- apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
13882
+ 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
13883
  /**
13494
13884
  *
13495
13885
  * @summary Get HospitalSpecialty.
13496
13886
  * @param {string} hospitalId
13497
13887
  * @param {string} specialtyId
13888
+ * @param {string} [languageCode]
13889
+ * @param {boolean} [returnDefaultValue]
13498
13890
  * @param {*} [options] Override http request option.
13499
13891
  * @throws {RequiredError}
13500
13892
  * @memberof HospitalsApi
13501
13893
  */
13502
- apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
13894
+ apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
13503
13895
  /**
13504
13896
  *
13505
13897
  * @summary Get all HospitalServices.
@@ -13573,7 +13965,6 @@ export declare class HospitalsApi extends BaseAPI {
13573
13965
  * @summary Get all Hospitals.
13574
13966
  * @param {string} [hospitalId]
13575
13967
  * @param {string} [name]
13576
- * @param {string} [description]
13577
13968
  * @param {string} [countryId]
13578
13969
  * @param {Date} [created]
13579
13970
  * @param {MarketingType} [marketingType]
@@ -13592,7 +13983,7 @@ export declare class HospitalsApi extends BaseAPI {
13592
13983
  * @throws {RequiredError}
13593
13984
  * @memberof HospitalsApi
13594
13985
  */
13595
- apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, description?: 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>>;
13986
+ 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
13987
  /**
13597
13988
  *
13598
13989
  * @param {string} slug
@@ -15082,6 +15473,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
15082
15473
  * @param {string} [serviceName]
15083
15474
  * @param {string} [patientId]
15084
15475
  * @param {string} [patientName]
15476
+ * @param {Gender} [gender]
15085
15477
  * @param {boolean} [recommended]
15086
15478
  * @param {number} [rate]
15087
15479
  * @param {ReviewType} [reviewType]
@@ -15091,7 +15483,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
15091
15483
  * @param {*} [options] Override http request option.
15092
15484
  * @throws {RequiredError}
15093
15485
  */
15094
- apiV2ServicereviewsGet: (hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15486
+ apiV2ServicereviewsGet: (hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15095
15487
  /**
15096
15488
  *
15097
15489
  * @summary Create a ServiceReview.
@@ -15188,6 +15580,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
15188
15580
  * @param {string} [serviceName]
15189
15581
  * @param {string} [patientId]
15190
15582
  * @param {string} [patientName]
15583
+ * @param {Gender} [gender]
15191
15584
  * @param {boolean} [recommended]
15192
15585
  * @param {number} [rate]
15193
15586
  * @param {ReviewType} [reviewType]
@@ -15197,7 +15590,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
15197
15590
  * @param {*} [options] Override http request option.
15198
15591
  * @throws {RequiredError}
15199
15592
  */
15200
- apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
15593
+ apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
15201
15594
  /**
15202
15595
  *
15203
15596
  * @summary Create a ServiceReview.
@@ -15294,6 +15687,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
15294
15687
  * @param {string} [serviceName]
15295
15688
  * @param {string} [patientId]
15296
15689
  * @param {string} [patientName]
15690
+ * @param {Gender} [gender]
15297
15691
  * @param {boolean} [recommended]
15298
15692
  * @param {number} [rate]
15299
15693
  * @param {ReviewType} [reviewType]
@@ -15303,7 +15697,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
15303
15697
  * @param {*} [options] Override http request option.
15304
15698
  * @throws {RequiredError}
15305
15699
  */
15306
- apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
15700
+ apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
15307
15701
  /**
15308
15702
  *
15309
15703
  * @summary Create a ServiceReview.
@@ -15402,6 +15796,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
15402
15796
  * @param {string} [serviceName]
15403
15797
  * @param {string} [patientId]
15404
15798
  * @param {string} [patientName]
15799
+ * @param {Gender} [gender]
15405
15800
  * @param {boolean} [recommended]
15406
15801
  * @param {number} [rate]
15407
15802
  * @param {ReviewType} [reviewType]
@@ -15412,7 +15807,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
15412
15807
  * @throws {RequiredError}
15413
15808
  * @memberof ServiceReviewsApi
15414
15809
  */
15415
- apiV2ServicereviewsGet(hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
15810
+ apiV2ServicereviewsGet(hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
15416
15811
  /**
15417
15812
  *
15418
15813
  * @summary Create a ServiceReview.
@@ -15720,14 +16115,13 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
15720
16115
  * @summary Get all ServiceCategories.
15721
16116
  * @param {string} [id]
15722
16117
  * @param {string} [name]
15723
- * @param {string} [description]
15724
16118
  * @param {number} [page]
15725
16119
  * @param {number} [limit]
15726
16120
  * @param {Date} [lastRetrieved]
15727
16121
  * @param {*} [options] Override http request option.
15728
16122
  * @throws {RequiredError}
15729
16123
  */
15730
- apiV2ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16124
+ apiV2ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15731
16125
  /**
15732
16126
  *
15733
16127
  * @summary Get ServiceCategory.
@@ -15747,14 +16141,13 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
15747
16141
  * @summary Get all ServiceCategories.
15748
16142
  * @param {string} [id]
15749
16143
  * @param {string} [name]
15750
- * @param {string} [description]
15751
16144
  * @param {number} [page]
15752
16145
  * @param {number} [limit]
15753
16146
  * @param {Date} [lastRetrieved]
15754
16147
  * @param {*} [options] Override http request option.
15755
16148
  * @throws {RequiredError}
15756
16149
  */
15757
- apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
16150
+ 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
16151
  /**
15759
16152
  *
15760
16153
  * @summary Get ServiceCategory.
@@ -15774,14 +16167,13 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
15774
16167
  * @summary Get all ServiceCategories.
15775
16168
  * @param {string} [id]
15776
16169
  * @param {string} [name]
15777
- * @param {string} [description]
15778
16170
  * @param {number} [page]
15779
16171
  * @param {number} [limit]
15780
16172
  * @param {Date} [lastRetrieved]
15781
16173
  * @param {*} [options] Override http request option.
15782
16174
  * @throws {RequiredError}
15783
16175
  */
15784
- apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
16176
+ apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
15785
16177
  /**
15786
16178
  *
15787
16179
  * @summary Get ServiceCategory.
@@ -15803,7 +16195,6 @@ export declare class ServicesCategoriesApi extends BaseAPI {
15803
16195
  * @summary Get all ServiceCategories.
15804
16196
  * @param {string} [id]
15805
16197
  * @param {string} [name]
15806
- * @param {string} [description]
15807
16198
  * @param {number} [page]
15808
16199
  * @param {number} [limit]
15809
16200
  * @param {Date} [lastRetrieved]
@@ -15811,7 +16202,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
15811
16202
  * @throws {RequiredError}
15812
16203
  * @memberof ServicesCategoriesApi
15813
16204
  */
15814
- apiV2ServicescategoriesGet(id?: string, name?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
16205
+ apiV2ServicescategoriesGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
15815
16206
  /**
15816
16207
  *
15817
16208
  * @summary Get ServiceCategory.