ch-api-client-typescript2 2.7.8 → 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
@@ -2971,6 +2971,30 @@ export interface DealItemModel {
2971
2971
  * @memberof DealItemModel
2972
2972
  */
2973
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;
2974
2998
  /**
2975
2999
  *
2976
3000
  * @type {MarketingType}
@@ -3074,6 +3098,30 @@ export interface DealModel {
3074
3098
  * @memberof DealModel
3075
3099
  */
3076
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;
3077
3125
  /**
3078
3126
  *
3079
3127
  * @type {MarketingType}
@@ -3908,6 +3956,67 @@ export interface DoctorItemModel {
3908
3956
  */
3909
3957
  'confirmed'?: boolean;
3910
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
+ }
3911
4020
  /**
3912
4021
  *
3913
4022
  * @export
@@ -4354,6 +4463,25 @@ export interface DoctorsModel {
4354
4463
  */
4355
4464
  'metaData'?: PagedListMetaData;
4356
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
+ }
4357
4485
  /**
4358
4486
  *
4359
4487
  * @export
@@ -5908,12 +6036,6 @@ export interface HospitalSpecialtyItemModel {
5908
6036
  * @memberof HospitalSpecialtyItemModel
5909
6037
  */
5910
6038
  'title'?: string | null;
5911
- /**
5912
- *
5913
- * @type {string}
5914
- * @memberof HospitalSpecialtyItemModel
5915
- */
5916
- 'normalizedTitle'?: string | null;
5917
6039
  /**
5918
6040
  *
5919
6041
  * @type {string}
@@ -6017,12 +6139,6 @@ export interface HospitalSpecialtyModel {
6017
6139
  * @memberof HospitalSpecialtyModel
6018
6140
  */
6019
6141
  'title'?: string | null;
6020
- /**
6021
- *
6022
- * @type {string}
6023
- * @memberof HospitalSpecialtyModel
6024
- */
6025
- 'normalizedTitle'?: string | null;
6026
6142
  /**
6027
6143
  *
6028
6144
  * @type {string}
@@ -7362,6 +7478,30 @@ export interface ServiceReviewItemModel {
7362
7478
  * @memberof ServiceReviewItemModel
7363
7479
  */
7364
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;
7365
7505
  /**
7366
7506
  *
7367
7507
  * @type {string}
@@ -7429,6 +7569,30 @@ export interface ServiceReviewModel {
7429
7569
  * @memberof ServiceReviewModel
7430
7570
  */
7431
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;
7432
7596
  /**
7433
7597
  *
7434
7598
  * @type {string}
@@ -11049,6 +11213,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
11049
11213
  * @param {string} [hospitalName]
11050
11214
  * @param {string} [specialtyId]
11051
11215
  * @param {string} [specialtyTypeId]
11216
+ * @param {string} [serviceId]
11052
11217
  * @param {string} [exceptHospitalId]
11053
11218
  * @param {string} [exceptDealId]
11054
11219
  * @param {Array<string>} [ids]
@@ -11061,7 +11226,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
11061
11226
  * @param {*} [options] Override http request option.
11062
11227
  * @throws {RequiredError}
11063
11228
  */
11064
- 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>;
11065
11230
  /**
11066
11231
  *
11067
11232
  * @summary Get deal by slug.
@@ -11145,6 +11310,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
11145
11310
  * @param {string} [hospitalName]
11146
11311
  * @param {string} [specialtyId]
11147
11312
  * @param {string} [specialtyTypeId]
11313
+ * @param {string} [serviceId]
11148
11314
  * @param {string} [exceptHospitalId]
11149
11315
  * @param {string} [exceptDealId]
11150
11316
  * @param {Array<string>} [ids]
@@ -11157,7 +11323,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
11157
11323
  * @param {*} [options] Override http request option.
11158
11324
  * @throws {RequiredError}
11159
11325
  */
11160
- 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>>;
11161
11327
  /**
11162
11328
  *
11163
11329
  * @summary Get deal by slug.
@@ -11241,6 +11407,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
11241
11407
  * @param {string} [hospitalName]
11242
11408
  * @param {string} [specialtyId]
11243
11409
  * @param {string} [specialtyTypeId]
11410
+ * @param {string} [serviceId]
11244
11411
  * @param {string} [exceptHospitalId]
11245
11412
  * @param {string} [exceptDealId]
11246
11413
  * @param {Array<string>} [ids]
@@ -11253,7 +11420,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
11253
11420
  * @param {*} [options] Override http request option.
11254
11421
  * @throws {RequiredError}
11255
11422
  */
11256
- 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>;
11257
11424
  /**
11258
11425
  *
11259
11426
  * @summary Get deal by slug.
@@ -11344,6 +11511,7 @@ export declare class DealsApi extends BaseAPI {
11344
11511
  * @param {string} [hospitalName]
11345
11512
  * @param {string} [specialtyId]
11346
11513
  * @param {string} [specialtyTypeId]
11514
+ * @param {string} [serviceId]
11347
11515
  * @param {string} [exceptHospitalId]
11348
11516
  * @param {string} [exceptDealId]
11349
11517
  * @param {Array<string>} [ids]
@@ -11357,7 +11525,7 @@ export declare class DealsApi extends BaseAPI {
11357
11525
  * @throws {RequiredError}
11358
11526
  * @memberof DealsApi
11359
11527
  */
11360
- 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>>;
11361
11529
  /**
11362
11530
  *
11363
11531
  * @summary Get deal by slug.
@@ -11544,6 +11712,27 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
11544
11712
  * @throws {RequiredError}
11545
11713
  */
11546
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>;
11547
11736
  /**
11548
11737
  *
11549
11738
  * @param {string} slug
@@ -11728,6 +11917,27 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
11728
11917
  * @throws {RequiredError}
11729
11918
  */
11730
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>>;
11731
11941
  /**
11732
11942
  *
11733
11943
  * @param {string} slug
@@ -11912,6 +12122,27 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
11912
12122
  * @throws {RequiredError}
11913
12123
  */
11914
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>;
11915
12146
  /**
11916
12147
  *
11917
12148
  * @param {string} slug
@@ -12112,6 +12343,28 @@ export declare class DoctorsApi extends BaseAPI {
12112
12343
  * @memberof DoctorsApi
12113
12344
  */
12114
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>>;
12115
12368
  /**
12116
12369
  *
12117
12370
  * @param {string} slug
@@ -15220,6 +15473,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
15220
15473
  * @param {string} [serviceName]
15221
15474
  * @param {string} [patientId]
15222
15475
  * @param {string} [patientName]
15476
+ * @param {Gender} [gender]
15223
15477
  * @param {boolean} [recommended]
15224
15478
  * @param {number} [rate]
15225
15479
  * @param {ReviewType} [reviewType]
@@ -15229,7 +15483,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
15229
15483
  * @param {*} [options] Override http request option.
15230
15484
  * @throws {RequiredError}
15231
15485
  */
15232
- 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>;
15233
15487
  /**
15234
15488
  *
15235
15489
  * @summary Create a ServiceReview.
@@ -15326,6 +15580,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
15326
15580
  * @param {string} [serviceName]
15327
15581
  * @param {string} [patientId]
15328
15582
  * @param {string} [patientName]
15583
+ * @param {Gender} [gender]
15329
15584
  * @param {boolean} [recommended]
15330
15585
  * @param {number} [rate]
15331
15586
  * @param {ReviewType} [reviewType]
@@ -15335,7 +15590,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
15335
15590
  * @param {*} [options] Override http request option.
15336
15591
  * @throws {RequiredError}
15337
15592
  */
15338
- 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>>;
15339
15594
  /**
15340
15595
  *
15341
15596
  * @summary Create a ServiceReview.
@@ -15432,6 +15687,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
15432
15687
  * @param {string} [serviceName]
15433
15688
  * @param {string} [patientId]
15434
15689
  * @param {string} [patientName]
15690
+ * @param {Gender} [gender]
15435
15691
  * @param {boolean} [recommended]
15436
15692
  * @param {number} [rate]
15437
15693
  * @param {ReviewType} [reviewType]
@@ -15441,7 +15697,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
15441
15697
  * @param {*} [options] Override http request option.
15442
15698
  * @throws {RequiredError}
15443
15699
  */
15444
- 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>;
15445
15701
  /**
15446
15702
  *
15447
15703
  * @summary Create a ServiceReview.
@@ -15540,6 +15796,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
15540
15796
  * @param {string} [serviceName]
15541
15797
  * @param {string} [patientId]
15542
15798
  * @param {string} [patientName]
15799
+ * @param {Gender} [gender]
15543
15800
  * @param {boolean} [recommended]
15544
15801
  * @param {number} [rate]
15545
15802
  * @param {ReviewType} [reviewType]
@@ -15550,7 +15807,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
15550
15807
  * @throws {RequiredError}
15551
15808
  * @memberof ServiceReviewsApi
15552
15809
  */
15553
- 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>>;
15554
15811
  /**
15555
15812
  *
15556
15813
  * @summary Create a ServiceReview.