ch-api-client-typescript2 2.7.6 → 2.8.0
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 +554 -41
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +261 -37
- package/package.json +1 -1
- package/src/api.ts +689 -59
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}
|
|
@@ -3871,6 +3919,24 @@ export interface DoctorItemModel {
|
|
|
3871
3919
|
* @memberof DoctorItemModel
|
|
3872
3920
|
*/
|
|
3873
3921
|
'consultationFee'?: number | null;
|
|
3922
|
+
/**
|
|
3923
|
+
*
|
|
3924
|
+
* @type {number}
|
|
3925
|
+
* @memberof DoctorItemModel
|
|
3926
|
+
*/
|
|
3927
|
+
'doctorReviewsCount'?: number;
|
|
3928
|
+
/**
|
|
3929
|
+
*
|
|
3930
|
+
* @type {number}
|
|
3931
|
+
* @memberof DoctorItemModel
|
|
3932
|
+
*/
|
|
3933
|
+
'doctorEducationsCount'?: number;
|
|
3934
|
+
/**
|
|
3935
|
+
*
|
|
3936
|
+
* @type {number}
|
|
3937
|
+
* @memberof DoctorItemModel
|
|
3938
|
+
*/
|
|
3939
|
+
'doctorPortfoliosCount'?: number;
|
|
3874
3940
|
/**
|
|
3875
3941
|
*
|
|
3876
3942
|
* @type {number}
|
|
@@ -3879,16 +3945,46 @@ export interface DoctorItemModel {
|
|
|
3879
3945
|
'doctorSpecialtiesCount'?: number;
|
|
3880
3946
|
/**
|
|
3881
3947
|
*
|
|
3882
|
-
* @type {
|
|
3948
|
+
* @type {number}
|
|
3883
3949
|
* @memberof DoctorItemModel
|
|
3884
3950
|
*/
|
|
3885
|
-
'
|
|
3951
|
+
'doctorCertificatesCount'?: number;
|
|
3886
3952
|
/**
|
|
3887
3953
|
*
|
|
3888
3954
|
* @type {number}
|
|
3889
3955
|
* @memberof DoctorItemModel
|
|
3890
3956
|
*/
|
|
3891
3957
|
'doctorAffiliationsCount'?: number;
|
|
3958
|
+
/**
|
|
3959
|
+
*
|
|
3960
|
+
* @type {Array<DoctorReviewItemModel>}
|
|
3961
|
+
* @memberof DoctorItemModel
|
|
3962
|
+
*/
|
|
3963
|
+
'doctorReviews'?: Array<DoctorReviewItemModel> | null;
|
|
3964
|
+
/**
|
|
3965
|
+
*
|
|
3966
|
+
* @type {Array<DoctorEducationItemModel>}
|
|
3967
|
+
* @memberof DoctorItemModel
|
|
3968
|
+
*/
|
|
3969
|
+
'doctorEducations'?: Array<DoctorEducationItemModel> | null;
|
|
3970
|
+
/**
|
|
3971
|
+
*
|
|
3972
|
+
* @type {Array<DoctorPortfolioItemModel>}
|
|
3973
|
+
* @memberof DoctorItemModel
|
|
3974
|
+
*/
|
|
3975
|
+
'doctorPortfolios'?: Array<DoctorPortfolioItemModel> | null;
|
|
3976
|
+
/**
|
|
3977
|
+
*
|
|
3978
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
3979
|
+
* @memberof DoctorItemModel
|
|
3980
|
+
*/
|
|
3981
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
3982
|
+
/**
|
|
3983
|
+
*
|
|
3984
|
+
* @type {Array<DoctorCertificateItemModel>}
|
|
3985
|
+
* @memberof DoctorItemModel
|
|
3986
|
+
*/
|
|
3987
|
+
'doctorCertificates'?: Array<DoctorCertificateItemModel> | null;
|
|
3892
3988
|
/**
|
|
3893
3989
|
*
|
|
3894
3990
|
* @type {Array<HospitalAffiliationModel>}
|
|
@@ -3907,6 +4003,73 @@ export interface DoctorItemModel {
|
|
|
3907
4003
|
* @memberof DoctorItemModel
|
|
3908
4004
|
*/
|
|
3909
4005
|
'confirmed'?: boolean;
|
|
4006
|
+
/**
|
|
4007
|
+
*
|
|
4008
|
+
* @type {Array<MediaModel>}
|
|
4009
|
+
* @memberof DoctorItemModel
|
|
4010
|
+
*/
|
|
4011
|
+
'medias'?: Array<MediaModel> | null;
|
|
4012
|
+
}
|
|
4013
|
+
/**
|
|
4014
|
+
*
|
|
4015
|
+
* @export
|
|
4016
|
+
* @interface DoctorItemSimpleModel
|
|
4017
|
+
*/
|
|
4018
|
+
export interface DoctorItemSimpleModel {
|
|
4019
|
+
/**
|
|
4020
|
+
*
|
|
4021
|
+
* @type {string}
|
|
4022
|
+
* @memberof DoctorItemSimpleModel
|
|
4023
|
+
*/
|
|
4024
|
+
'id'?: string;
|
|
4025
|
+
/**
|
|
4026
|
+
*
|
|
4027
|
+
* @type {string}
|
|
4028
|
+
* @memberof DoctorItemSimpleModel
|
|
4029
|
+
*/
|
|
4030
|
+
'firstName'?: string | null;
|
|
4031
|
+
/**
|
|
4032
|
+
*
|
|
4033
|
+
* @type {string}
|
|
4034
|
+
* @memberof DoctorItemSimpleModel
|
|
4035
|
+
*/
|
|
4036
|
+
'lastName'?: string | null;
|
|
4037
|
+
/**
|
|
4038
|
+
*
|
|
4039
|
+
* @type {string}
|
|
4040
|
+
* @memberof DoctorItemSimpleModel
|
|
4041
|
+
*/
|
|
4042
|
+
'fullname'?: string | null;
|
|
4043
|
+
/**
|
|
4044
|
+
*
|
|
4045
|
+
* @type {string}
|
|
4046
|
+
* @memberof DoctorItemSimpleModel
|
|
4047
|
+
*/
|
|
4048
|
+
'slug'?: string | null;
|
|
4049
|
+
/**
|
|
4050
|
+
*
|
|
4051
|
+
* @type {string}
|
|
4052
|
+
* @memberof DoctorItemSimpleModel
|
|
4053
|
+
*/
|
|
4054
|
+
'hospitalId'?: string | null;
|
|
4055
|
+
/**
|
|
4056
|
+
*
|
|
4057
|
+
* @type {string}
|
|
4058
|
+
* @memberof DoctorItemSimpleModel
|
|
4059
|
+
*/
|
|
4060
|
+
'hospitalName'?: string | null;
|
|
4061
|
+
/**
|
|
4062
|
+
*
|
|
4063
|
+
* @type {string}
|
|
4064
|
+
* @memberof DoctorItemSimpleModel
|
|
4065
|
+
*/
|
|
4066
|
+
'overview'?: string | null;
|
|
4067
|
+
/**
|
|
4068
|
+
*
|
|
4069
|
+
* @type {boolean}
|
|
4070
|
+
* @memberof DoctorItemSimpleModel
|
|
4071
|
+
*/
|
|
4072
|
+
'confirmed'?: boolean;
|
|
3910
4073
|
}
|
|
3911
4074
|
/**
|
|
3912
4075
|
*
|
|
@@ -4058,6 +4221,24 @@ export interface DoctorModel {
|
|
|
4058
4221
|
* @memberof DoctorModel
|
|
4059
4222
|
*/
|
|
4060
4223
|
'consultationFee'?: number | null;
|
|
4224
|
+
/**
|
|
4225
|
+
*
|
|
4226
|
+
* @type {number}
|
|
4227
|
+
* @memberof DoctorModel
|
|
4228
|
+
*/
|
|
4229
|
+
'doctorReviewsCount'?: number;
|
|
4230
|
+
/**
|
|
4231
|
+
*
|
|
4232
|
+
* @type {number}
|
|
4233
|
+
* @memberof DoctorModel
|
|
4234
|
+
*/
|
|
4235
|
+
'doctorEducationsCount'?: number;
|
|
4236
|
+
/**
|
|
4237
|
+
*
|
|
4238
|
+
* @type {number}
|
|
4239
|
+
* @memberof DoctorModel
|
|
4240
|
+
*/
|
|
4241
|
+
'doctorPortfoliosCount'?: number;
|
|
4061
4242
|
/**
|
|
4062
4243
|
*
|
|
4063
4244
|
* @type {number}
|
|
@@ -4066,16 +4247,46 @@ export interface DoctorModel {
|
|
|
4066
4247
|
'doctorSpecialtiesCount'?: number;
|
|
4067
4248
|
/**
|
|
4068
4249
|
*
|
|
4069
|
-
* @type {
|
|
4250
|
+
* @type {number}
|
|
4070
4251
|
* @memberof DoctorModel
|
|
4071
4252
|
*/
|
|
4072
|
-
'
|
|
4253
|
+
'doctorCertificatesCount'?: number;
|
|
4073
4254
|
/**
|
|
4074
4255
|
*
|
|
4075
4256
|
* @type {number}
|
|
4076
4257
|
* @memberof DoctorModel
|
|
4077
4258
|
*/
|
|
4078
4259
|
'doctorAffiliationsCount'?: number;
|
|
4260
|
+
/**
|
|
4261
|
+
*
|
|
4262
|
+
* @type {Array<DoctorReviewItemModel>}
|
|
4263
|
+
* @memberof DoctorModel
|
|
4264
|
+
*/
|
|
4265
|
+
'doctorReviews'?: Array<DoctorReviewItemModel> | null;
|
|
4266
|
+
/**
|
|
4267
|
+
*
|
|
4268
|
+
* @type {Array<DoctorEducationItemModel>}
|
|
4269
|
+
* @memberof DoctorModel
|
|
4270
|
+
*/
|
|
4271
|
+
'doctorEducations'?: Array<DoctorEducationItemModel> | null;
|
|
4272
|
+
/**
|
|
4273
|
+
*
|
|
4274
|
+
* @type {Array<DoctorPortfolioItemModel>}
|
|
4275
|
+
* @memberof DoctorModel
|
|
4276
|
+
*/
|
|
4277
|
+
'doctorPortfolios'?: Array<DoctorPortfolioItemModel> | null;
|
|
4278
|
+
/**
|
|
4279
|
+
*
|
|
4280
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4281
|
+
* @memberof DoctorModel
|
|
4282
|
+
*/
|
|
4283
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4284
|
+
/**
|
|
4285
|
+
*
|
|
4286
|
+
* @type {Array<DoctorCertificateItemModel>}
|
|
4287
|
+
* @memberof DoctorModel
|
|
4288
|
+
*/
|
|
4289
|
+
'doctorCertificates'?: Array<DoctorCertificateItemModel> | null;
|
|
4079
4290
|
/**
|
|
4080
4291
|
*
|
|
4081
4292
|
* @type {Array<HospitalAffiliationModel>}
|
|
@@ -4094,6 +4305,12 @@ export interface DoctorModel {
|
|
|
4094
4305
|
* @memberof DoctorModel
|
|
4095
4306
|
*/
|
|
4096
4307
|
'confirmed'?: boolean;
|
|
4308
|
+
/**
|
|
4309
|
+
*
|
|
4310
|
+
* @type {Array<MediaModel>}
|
|
4311
|
+
* @memberof DoctorModel
|
|
4312
|
+
*/
|
|
4313
|
+
'medias'?: Array<MediaModel> | null;
|
|
4097
4314
|
/**
|
|
4098
4315
|
*
|
|
4099
4316
|
* @type {string}
|
|
@@ -4218,6 +4435,61 @@ export interface DoctorPortfoliosModel {
|
|
|
4218
4435
|
*/
|
|
4219
4436
|
'metaData'?: PagedListMetaData;
|
|
4220
4437
|
}
|
|
4438
|
+
/**
|
|
4439
|
+
*
|
|
4440
|
+
* @export
|
|
4441
|
+
* @interface DoctorReviewItemModel
|
|
4442
|
+
*/
|
|
4443
|
+
export interface DoctorReviewItemModel {
|
|
4444
|
+
/**
|
|
4445
|
+
*
|
|
4446
|
+
* @type {string}
|
|
4447
|
+
* @memberof DoctorReviewItemModel
|
|
4448
|
+
*/
|
|
4449
|
+
'patientId'?: string;
|
|
4450
|
+
/**
|
|
4451
|
+
*
|
|
4452
|
+
* @type {string}
|
|
4453
|
+
* @memberof DoctorReviewItemModel
|
|
4454
|
+
*/
|
|
4455
|
+
'patientName'?: string | null;
|
|
4456
|
+
/**
|
|
4457
|
+
*
|
|
4458
|
+
* @type {string}
|
|
4459
|
+
* @memberof DoctorReviewItemModel
|
|
4460
|
+
*/
|
|
4461
|
+
'doctorId'?: string;
|
|
4462
|
+
/**
|
|
4463
|
+
*
|
|
4464
|
+
* @type {string}
|
|
4465
|
+
* @memberof DoctorReviewItemModel
|
|
4466
|
+
*/
|
|
4467
|
+
'doctorName'?: string | null;
|
|
4468
|
+
/**
|
|
4469
|
+
*
|
|
4470
|
+
* @type {string}
|
|
4471
|
+
* @memberof DoctorReviewItemModel
|
|
4472
|
+
*/
|
|
4473
|
+
'body'?: string | null;
|
|
4474
|
+
/**
|
|
4475
|
+
*
|
|
4476
|
+
* @type {boolean}
|
|
4477
|
+
* @memberof DoctorReviewItemModel
|
|
4478
|
+
*/
|
|
4479
|
+
'recommended'?: boolean;
|
|
4480
|
+
/**
|
|
4481
|
+
*
|
|
4482
|
+
* @type {ReviewCategory}
|
|
4483
|
+
* @memberof DoctorReviewItemModel
|
|
4484
|
+
*/
|
|
4485
|
+
'reviewCategory'?: ReviewCategory;
|
|
4486
|
+
/**
|
|
4487
|
+
*
|
|
4488
|
+
* @type {number}
|
|
4489
|
+
* @memberof DoctorReviewItemModel
|
|
4490
|
+
*/
|
|
4491
|
+
'rate'?: number;
|
|
4492
|
+
}
|
|
4221
4493
|
/**
|
|
4222
4494
|
*
|
|
4223
4495
|
* @export
|
|
@@ -4354,6 +4626,25 @@ export interface DoctorsModel {
|
|
|
4354
4626
|
*/
|
|
4355
4627
|
'metaData'?: PagedListMetaData;
|
|
4356
4628
|
}
|
|
4629
|
+
/**
|
|
4630
|
+
*
|
|
4631
|
+
* @export
|
|
4632
|
+
* @interface DoctorsSimpleModel
|
|
4633
|
+
*/
|
|
4634
|
+
export interface DoctorsSimpleModel {
|
|
4635
|
+
/**
|
|
4636
|
+
*
|
|
4637
|
+
* @type {Array<DoctorItemSimpleModel>}
|
|
4638
|
+
* @memberof DoctorsSimpleModel
|
|
4639
|
+
*/
|
|
4640
|
+
'items'?: Array<DoctorItemSimpleModel> | null;
|
|
4641
|
+
/**
|
|
4642
|
+
*
|
|
4643
|
+
* @type {PagedListMetaData}
|
|
4644
|
+
* @memberof DoctorsSimpleModel
|
|
4645
|
+
*/
|
|
4646
|
+
'metaData'?: PagedListMetaData;
|
|
4647
|
+
}
|
|
4357
4648
|
/**
|
|
4358
4649
|
*
|
|
4359
4650
|
* @export
|
|
@@ -5848,6 +6139,12 @@ export interface HospitalSpecialtiesModel {
|
|
|
5848
6139
|
* @interface HospitalSpecialtyItemModel
|
|
5849
6140
|
*/
|
|
5850
6141
|
export interface HospitalSpecialtyItemModel {
|
|
6142
|
+
/**
|
|
6143
|
+
*
|
|
6144
|
+
* @type {string}
|
|
6145
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6146
|
+
*/
|
|
6147
|
+
'id'?: string;
|
|
5851
6148
|
/**
|
|
5852
6149
|
*
|
|
5853
6150
|
* @type {string}
|
|
@@ -5892,16 +6189,16 @@ export interface HospitalSpecialtyItemModel {
|
|
|
5892
6189
|
'specialtyTypeName'?: string | null;
|
|
5893
6190
|
/**
|
|
5894
6191
|
*
|
|
5895
|
-
* @type {
|
|
6192
|
+
* @type {string}
|
|
5896
6193
|
* @memberof HospitalSpecialtyItemModel
|
|
5897
6194
|
*/
|
|
5898
|
-
'
|
|
6195
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
5899
6196
|
/**
|
|
5900
6197
|
*
|
|
5901
|
-
* @type {
|
|
6198
|
+
* @type {MarketingType}
|
|
5902
6199
|
* @memberof HospitalSpecialtyItemModel
|
|
5903
6200
|
*/
|
|
5904
|
-
'
|
|
6201
|
+
'marketingType'?: MarketingType;
|
|
5905
6202
|
/**
|
|
5906
6203
|
*
|
|
5907
6204
|
* @type {string}
|
|
@@ -5919,19 +6216,37 @@ export interface HospitalSpecialtyItemModel {
|
|
|
5919
6216
|
* @type {string}
|
|
5920
6217
|
* @memberof HospitalSpecialtyItemModel
|
|
5921
6218
|
*/
|
|
5922
|
-
'
|
|
6219
|
+
'content'?: string | null;
|
|
5923
6220
|
/**
|
|
5924
6221
|
*
|
|
5925
|
-
* @type {
|
|
6222
|
+
* @type {number}
|
|
5926
6223
|
* @memberof HospitalSpecialtyItemModel
|
|
5927
6224
|
*/
|
|
5928
|
-
'
|
|
6225
|
+
'serviceCount'?: number;
|
|
5929
6226
|
/**
|
|
5930
6227
|
*
|
|
5931
|
-
* @type {
|
|
6228
|
+
* @type {number}
|
|
5932
6229
|
* @memberof HospitalSpecialtyItemModel
|
|
5933
6230
|
*/
|
|
5934
|
-
'
|
|
6231
|
+
'order'?: number;
|
|
6232
|
+
/**
|
|
6233
|
+
*
|
|
6234
|
+
* @type {boolean}
|
|
6235
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6236
|
+
*/
|
|
6237
|
+
'confirmed'?: boolean;
|
|
6238
|
+
/**
|
|
6239
|
+
*
|
|
6240
|
+
* @type {Array<MediaModel>}
|
|
6241
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6242
|
+
*/
|
|
6243
|
+
'medias'?: Array<MediaModel> | null;
|
|
6244
|
+
/**
|
|
6245
|
+
*
|
|
6246
|
+
* @type {AuditableEntity}
|
|
6247
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6248
|
+
*/
|
|
6249
|
+
'auditableEntity'?: AuditableEntity;
|
|
5935
6250
|
}
|
|
5936
6251
|
/**
|
|
5937
6252
|
*
|
|
@@ -5939,6 +6254,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
5939
6254
|
* @interface HospitalSpecialtyModel
|
|
5940
6255
|
*/
|
|
5941
6256
|
export interface HospitalSpecialtyModel {
|
|
6257
|
+
/**
|
|
6258
|
+
*
|
|
6259
|
+
* @type {string}
|
|
6260
|
+
* @memberof HospitalSpecialtyModel
|
|
6261
|
+
*/
|
|
6262
|
+
'id'?: string;
|
|
5942
6263
|
/**
|
|
5943
6264
|
*
|
|
5944
6265
|
* @type {string}
|
|
@@ -5983,16 +6304,16 @@ export interface HospitalSpecialtyModel {
|
|
|
5983
6304
|
'specialtyTypeName'?: string | null;
|
|
5984
6305
|
/**
|
|
5985
6306
|
*
|
|
5986
|
-
* @type {
|
|
6307
|
+
* @type {string}
|
|
5987
6308
|
* @memberof HospitalSpecialtyModel
|
|
5988
6309
|
*/
|
|
5989
|
-
'
|
|
6310
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
5990
6311
|
/**
|
|
5991
6312
|
*
|
|
5992
|
-
* @type {
|
|
6313
|
+
* @type {MarketingType}
|
|
5993
6314
|
* @memberof HospitalSpecialtyModel
|
|
5994
6315
|
*/
|
|
5995
|
-
'
|
|
6316
|
+
'marketingType'?: MarketingType;
|
|
5996
6317
|
/**
|
|
5997
6318
|
*
|
|
5998
6319
|
* @type {string}
|
|
@@ -6010,19 +6331,43 @@ export interface HospitalSpecialtyModel {
|
|
|
6010
6331
|
* @type {string}
|
|
6011
6332
|
* @memberof HospitalSpecialtyModel
|
|
6012
6333
|
*/
|
|
6013
|
-
'
|
|
6334
|
+
'content'?: string | null;
|
|
6014
6335
|
/**
|
|
6015
6336
|
*
|
|
6016
|
-
* @type {
|
|
6337
|
+
* @type {number}
|
|
6017
6338
|
* @memberof HospitalSpecialtyModel
|
|
6018
6339
|
*/
|
|
6019
|
-
'
|
|
6340
|
+
'serviceCount'?: number;
|
|
6341
|
+
/**
|
|
6342
|
+
*
|
|
6343
|
+
* @type {number}
|
|
6344
|
+
* @memberof HospitalSpecialtyModel
|
|
6345
|
+
*/
|
|
6346
|
+
'order'?: number;
|
|
6347
|
+
/**
|
|
6348
|
+
*
|
|
6349
|
+
* @type {boolean}
|
|
6350
|
+
* @memberof HospitalSpecialtyModel
|
|
6351
|
+
*/
|
|
6352
|
+
'confirmed'?: boolean;
|
|
6353
|
+
/**
|
|
6354
|
+
*
|
|
6355
|
+
* @type {Array<MediaModel>}
|
|
6356
|
+
* @memberof HospitalSpecialtyModel
|
|
6357
|
+
*/
|
|
6358
|
+
'medias'?: Array<MediaModel> | null;
|
|
6359
|
+
/**
|
|
6360
|
+
*
|
|
6361
|
+
* @type {AuditableEntity}
|
|
6362
|
+
* @memberof HospitalSpecialtyModel
|
|
6363
|
+
*/
|
|
6364
|
+
'auditableEntity'?: AuditableEntity;
|
|
6020
6365
|
/**
|
|
6021
6366
|
*
|
|
6022
6367
|
* @type {string}
|
|
6023
6368
|
* @memberof HospitalSpecialtyModel
|
|
6024
6369
|
*/
|
|
6025
|
-
'
|
|
6370
|
+
'languageCode'?: string | null;
|
|
6026
6371
|
}
|
|
6027
6372
|
/**
|
|
6028
6373
|
*
|
|
@@ -7169,6 +7514,17 @@ export declare enum RejectReason {
|
|
|
7169
7514
|
ScheduleNotAvailable = "ScheduleNotAvailable",
|
|
7170
7515
|
OtherReason = "OtherReason"
|
|
7171
7516
|
}
|
|
7517
|
+
/**
|
|
7518
|
+
*
|
|
7519
|
+
* @export
|
|
7520
|
+
* @enum {string}
|
|
7521
|
+
*/
|
|
7522
|
+
export declare enum ReviewCategory {
|
|
7523
|
+
Services = "Services",
|
|
7524
|
+
Hospitality = "Hospitality",
|
|
7525
|
+
Transfer = "Transfer",
|
|
7526
|
+
Etc = "Etc"
|
|
7527
|
+
}
|
|
7172
7528
|
/**
|
|
7173
7529
|
*
|
|
7174
7530
|
* @export
|
|
@@ -7320,6 +7676,30 @@ export interface ServiceReviewItemModel {
|
|
|
7320
7676
|
* @memberof ServiceReviewItemModel
|
|
7321
7677
|
*/
|
|
7322
7678
|
'patientName'?: string | null;
|
|
7679
|
+
/**
|
|
7680
|
+
*
|
|
7681
|
+
* @type {Gender}
|
|
7682
|
+
* @memberof ServiceReviewItemModel
|
|
7683
|
+
*/
|
|
7684
|
+
'patientGender'?: Gender;
|
|
7685
|
+
/**
|
|
7686
|
+
*
|
|
7687
|
+
* @type {string}
|
|
7688
|
+
* @memberof ServiceReviewItemModel
|
|
7689
|
+
*/
|
|
7690
|
+
'patientPhoto'?: string | null;
|
|
7691
|
+
/**
|
|
7692
|
+
*
|
|
7693
|
+
* @type {string}
|
|
7694
|
+
* @memberof ServiceReviewItemModel
|
|
7695
|
+
*/
|
|
7696
|
+
'patientPhotoThumbnail'?: string | null;
|
|
7697
|
+
/**
|
|
7698
|
+
*
|
|
7699
|
+
* @type {Date}
|
|
7700
|
+
* @memberof ServiceReviewItemModel
|
|
7701
|
+
*/
|
|
7702
|
+
'patientCreatedDate'?: Date | null;
|
|
7323
7703
|
/**
|
|
7324
7704
|
*
|
|
7325
7705
|
* @type {string}
|
|
@@ -7387,6 +7767,30 @@ export interface ServiceReviewModel {
|
|
|
7387
7767
|
* @memberof ServiceReviewModel
|
|
7388
7768
|
*/
|
|
7389
7769
|
'patientName'?: string | null;
|
|
7770
|
+
/**
|
|
7771
|
+
*
|
|
7772
|
+
* @type {Gender}
|
|
7773
|
+
* @memberof ServiceReviewModel
|
|
7774
|
+
*/
|
|
7775
|
+
'patientGender'?: Gender;
|
|
7776
|
+
/**
|
|
7777
|
+
*
|
|
7778
|
+
* @type {string}
|
|
7779
|
+
* @memberof ServiceReviewModel
|
|
7780
|
+
*/
|
|
7781
|
+
'patientPhoto'?: string | null;
|
|
7782
|
+
/**
|
|
7783
|
+
*
|
|
7784
|
+
* @type {string}
|
|
7785
|
+
* @memberof ServiceReviewModel
|
|
7786
|
+
*/
|
|
7787
|
+
'patientPhotoThumbnail'?: string | null;
|
|
7788
|
+
/**
|
|
7789
|
+
*
|
|
7790
|
+
* @type {Date}
|
|
7791
|
+
* @memberof ServiceReviewModel
|
|
7792
|
+
*/
|
|
7793
|
+
'patientCreatedDate'?: Date | null;
|
|
7390
7794
|
/**
|
|
7391
7795
|
*
|
|
7392
7796
|
* @type {string}
|
|
@@ -11007,6 +11411,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
11007
11411
|
* @param {string} [hospitalName]
|
|
11008
11412
|
* @param {string} [specialtyId]
|
|
11009
11413
|
* @param {string} [specialtyTypeId]
|
|
11414
|
+
* @param {string} [serviceId]
|
|
11010
11415
|
* @param {string} [exceptHospitalId]
|
|
11011
11416
|
* @param {string} [exceptDealId]
|
|
11012
11417
|
* @param {Array<string>} [ids]
|
|
@@ -11019,7 +11424,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
11019
11424
|
* @param {*} [options] Override http request option.
|
|
11020
11425
|
* @throws {RequiredError}
|
|
11021
11426
|
*/
|
|
11022
|
-
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>;
|
|
11427
|
+
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>;
|
|
11023
11428
|
/**
|
|
11024
11429
|
*
|
|
11025
11430
|
* @summary Get deal by slug.
|
|
@@ -11103,6 +11508,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
11103
11508
|
* @param {string} [hospitalName]
|
|
11104
11509
|
* @param {string} [specialtyId]
|
|
11105
11510
|
* @param {string} [specialtyTypeId]
|
|
11511
|
+
* @param {string} [serviceId]
|
|
11106
11512
|
* @param {string} [exceptHospitalId]
|
|
11107
11513
|
* @param {string} [exceptDealId]
|
|
11108
11514
|
* @param {Array<string>} [ids]
|
|
@@ -11115,7 +11521,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
11115
11521
|
* @param {*} [options] Override http request option.
|
|
11116
11522
|
* @throws {RequiredError}
|
|
11117
11523
|
*/
|
|
11118
|
-
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>>;
|
|
11524
|
+
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>>;
|
|
11119
11525
|
/**
|
|
11120
11526
|
*
|
|
11121
11527
|
* @summary Get deal by slug.
|
|
@@ -11199,6 +11605,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
11199
11605
|
* @param {string} [hospitalName]
|
|
11200
11606
|
* @param {string} [specialtyId]
|
|
11201
11607
|
* @param {string} [specialtyTypeId]
|
|
11608
|
+
* @param {string} [serviceId]
|
|
11202
11609
|
* @param {string} [exceptHospitalId]
|
|
11203
11610
|
* @param {string} [exceptDealId]
|
|
11204
11611
|
* @param {Array<string>} [ids]
|
|
@@ -11211,7 +11618,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
11211
11618
|
* @param {*} [options] Override http request option.
|
|
11212
11619
|
* @throws {RequiredError}
|
|
11213
11620
|
*/
|
|
11214
|
-
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>;
|
|
11621
|
+
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>;
|
|
11215
11622
|
/**
|
|
11216
11623
|
*
|
|
11217
11624
|
* @summary Get deal by slug.
|
|
@@ -11302,6 +11709,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
11302
11709
|
* @param {string} [hospitalName]
|
|
11303
11710
|
* @param {string} [specialtyId]
|
|
11304
11711
|
* @param {string} [specialtyTypeId]
|
|
11712
|
+
* @param {string} [serviceId]
|
|
11305
11713
|
* @param {string} [exceptHospitalId]
|
|
11306
11714
|
* @param {string} [exceptDealId]
|
|
11307
11715
|
* @param {Array<string>} [ids]
|
|
@@ -11315,7 +11723,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
11315
11723
|
* @throws {RequiredError}
|
|
11316
11724
|
* @memberof DealsApi
|
|
11317
11725
|
*/
|
|
11318
|
-
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>>;
|
|
11726
|
+
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>>;
|
|
11319
11727
|
/**
|
|
11320
11728
|
*
|
|
11321
11729
|
* @summary Get deal by slug.
|
|
@@ -11502,6 +11910,27 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
11502
11910
|
* @throws {RequiredError}
|
|
11503
11911
|
*/
|
|
11504
11912
|
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>;
|
|
11913
|
+
/**
|
|
11914
|
+
*
|
|
11915
|
+
* @summary Get all Doctors.
|
|
11916
|
+
* @param {string} [hospitalId]
|
|
11917
|
+
* @param {string} [languageCode]
|
|
11918
|
+
* @param {boolean} [returnDefaultValue]
|
|
11919
|
+
* @param {Array<string>} [ids]
|
|
11920
|
+
* @param {string} [id]
|
|
11921
|
+
* @param {string} [fullname]
|
|
11922
|
+
* @param {string} [email]
|
|
11923
|
+
* @param {Gender} [gender]
|
|
11924
|
+
* @param {Date} [dateOfBirth]
|
|
11925
|
+
* @param {Date} [created]
|
|
11926
|
+
* @param {boolean} [showHidden]
|
|
11927
|
+
* @param {number} [page]
|
|
11928
|
+
* @param {number} [limit]
|
|
11929
|
+
* @param {Date} [lastRetrieved]
|
|
11930
|
+
* @param {*} [options] Override http request option.
|
|
11931
|
+
* @throws {RequiredError}
|
|
11932
|
+
*/
|
|
11933
|
+
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>;
|
|
11505
11934
|
/**
|
|
11506
11935
|
*
|
|
11507
11936
|
* @param {string} slug
|
|
@@ -11686,6 +12115,27 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
11686
12115
|
* @throws {RequiredError}
|
|
11687
12116
|
*/
|
|
11688
12117
|
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>>;
|
|
12118
|
+
/**
|
|
12119
|
+
*
|
|
12120
|
+
* @summary Get all Doctors.
|
|
12121
|
+
* @param {string} [hospitalId]
|
|
12122
|
+
* @param {string} [languageCode]
|
|
12123
|
+
* @param {boolean} [returnDefaultValue]
|
|
12124
|
+
* @param {Array<string>} [ids]
|
|
12125
|
+
* @param {string} [id]
|
|
12126
|
+
* @param {string} [fullname]
|
|
12127
|
+
* @param {string} [email]
|
|
12128
|
+
* @param {Gender} [gender]
|
|
12129
|
+
* @param {Date} [dateOfBirth]
|
|
12130
|
+
* @param {Date} [created]
|
|
12131
|
+
* @param {boolean} [showHidden]
|
|
12132
|
+
* @param {number} [page]
|
|
12133
|
+
* @param {number} [limit]
|
|
12134
|
+
* @param {Date} [lastRetrieved]
|
|
12135
|
+
* @param {*} [options] Override http request option.
|
|
12136
|
+
* @throws {RequiredError}
|
|
12137
|
+
*/
|
|
12138
|
+
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>>;
|
|
11689
12139
|
/**
|
|
11690
12140
|
*
|
|
11691
12141
|
* @param {string} slug
|
|
@@ -11870,6 +12320,27 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
11870
12320
|
* @throws {RequiredError}
|
|
11871
12321
|
*/
|
|
11872
12322
|
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>;
|
|
12323
|
+
/**
|
|
12324
|
+
*
|
|
12325
|
+
* @summary Get all Doctors.
|
|
12326
|
+
* @param {string} [hospitalId]
|
|
12327
|
+
* @param {string} [languageCode]
|
|
12328
|
+
* @param {boolean} [returnDefaultValue]
|
|
12329
|
+
* @param {Array<string>} [ids]
|
|
12330
|
+
* @param {string} [id]
|
|
12331
|
+
* @param {string} [fullname]
|
|
12332
|
+
* @param {string} [email]
|
|
12333
|
+
* @param {Gender} [gender]
|
|
12334
|
+
* @param {Date} [dateOfBirth]
|
|
12335
|
+
* @param {Date} [created]
|
|
12336
|
+
* @param {boolean} [showHidden]
|
|
12337
|
+
* @param {number} [page]
|
|
12338
|
+
* @param {number} [limit]
|
|
12339
|
+
* @param {Date} [lastRetrieved]
|
|
12340
|
+
* @param {*} [options] Override http request option.
|
|
12341
|
+
* @throws {RequiredError}
|
|
12342
|
+
*/
|
|
12343
|
+
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>;
|
|
11873
12344
|
/**
|
|
11874
12345
|
*
|
|
11875
12346
|
* @param {string} slug
|
|
@@ -12070,6 +12541,28 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
12070
12541
|
* @memberof DoctorsApi
|
|
12071
12542
|
*/
|
|
12072
12543
|
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>>;
|
|
12544
|
+
/**
|
|
12545
|
+
*
|
|
12546
|
+
* @summary Get all Doctors.
|
|
12547
|
+
* @param {string} [hospitalId]
|
|
12548
|
+
* @param {string} [languageCode]
|
|
12549
|
+
* @param {boolean} [returnDefaultValue]
|
|
12550
|
+
* @param {Array<string>} [ids]
|
|
12551
|
+
* @param {string} [id]
|
|
12552
|
+
* @param {string} [fullname]
|
|
12553
|
+
* @param {string} [email]
|
|
12554
|
+
* @param {Gender} [gender]
|
|
12555
|
+
* @param {Date} [dateOfBirth]
|
|
12556
|
+
* @param {Date} [created]
|
|
12557
|
+
* @param {boolean} [showHidden]
|
|
12558
|
+
* @param {number} [page]
|
|
12559
|
+
* @param {number} [limit]
|
|
12560
|
+
* @param {Date} [lastRetrieved]
|
|
12561
|
+
* @param {*} [options] Override http request option.
|
|
12562
|
+
* @throws {RequiredError}
|
|
12563
|
+
* @memberof DoctorsApi
|
|
12564
|
+
*/
|
|
12565
|
+
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>>;
|
|
12073
12566
|
/**
|
|
12074
12567
|
*
|
|
12075
12568
|
* @param {string} slug
|
|
@@ -12708,23 +13201,27 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
12708
13201
|
* @param {string} [specialtyTypeId]
|
|
12709
13202
|
* @param {string} [title]
|
|
12710
13203
|
* @param {MarketingType} [marketingType]
|
|
12711
|
-
* @param {
|
|
13204
|
+
* @param {string} [languageCode]
|
|
13205
|
+
* @param {boolean} [showHidden]
|
|
13206
|
+
* @param {boolean} [returnDefaultValue]
|
|
12712
13207
|
* @param {number} [page]
|
|
12713
13208
|
* @param {number} [limit]
|
|
12714
13209
|
* @param {Date} [lastRetrieved]
|
|
12715
13210
|
* @param {*} [options] Override http request option.
|
|
12716
13211
|
* @throws {RequiredError}
|
|
12717
13212
|
*/
|
|
12718
|
-
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined,
|
|
13213
|
+
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12719
13214
|
/**
|
|
12720
13215
|
*
|
|
12721
13216
|
* @summary Get HospitalSpecialty.
|
|
12722
13217
|
* @param {string} hospitalId
|
|
12723
13218
|
* @param {string} specialtyId
|
|
13219
|
+
* @param {string} [languageCode]
|
|
13220
|
+
* @param {boolean} [returnDefaultValue]
|
|
12724
13221
|
* @param {*} [options] Override http request option.
|
|
12725
13222
|
* @throws {RequiredError}
|
|
12726
13223
|
*/
|
|
12727
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13224
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12728
13225
|
/**
|
|
12729
13226
|
*
|
|
12730
13227
|
* @summary Get all HospitalServices.
|
|
@@ -12988,23 +13485,27 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
12988
13485
|
* @param {string} [specialtyTypeId]
|
|
12989
13486
|
* @param {string} [title]
|
|
12990
13487
|
* @param {MarketingType} [marketingType]
|
|
12991
|
-
* @param {
|
|
13488
|
+
* @param {string} [languageCode]
|
|
13489
|
+
* @param {boolean} [showHidden]
|
|
13490
|
+
* @param {boolean} [returnDefaultValue]
|
|
12992
13491
|
* @param {number} [page]
|
|
12993
13492
|
* @param {number} [limit]
|
|
12994
13493
|
* @param {Date} [lastRetrieved]
|
|
12995
13494
|
* @param {*} [options] Override http request option.
|
|
12996
13495
|
* @throws {RequiredError}
|
|
12997
13496
|
*/
|
|
12998
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined,
|
|
13497
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
12999
13498
|
/**
|
|
13000
13499
|
*
|
|
13001
13500
|
* @summary Get HospitalSpecialty.
|
|
13002
13501
|
* @param {string} hospitalId
|
|
13003
13502
|
* @param {string} specialtyId
|
|
13503
|
+
* @param {string} [languageCode]
|
|
13504
|
+
* @param {boolean} [returnDefaultValue]
|
|
13004
13505
|
* @param {*} [options] Override http request option.
|
|
13005
13506
|
* @throws {RequiredError}
|
|
13006
13507
|
*/
|
|
13007
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
13508
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
13008
13509
|
/**
|
|
13009
13510
|
*
|
|
13010
13511
|
* @summary Get all HospitalServices.
|
|
@@ -13268,23 +13769,27 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
13268
13769
|
* @param {string} [specialtyTypeId]
|
|
13269
13770
|
* @param {string} [title]
|
|
13270
13771
|
* @param {MarketingType} [marketingType]
|
|
13271
|
-
* @param {
|
|
13772
|
+
* @param {string} [languageCode]
|
|
13773
|
+
* @param {boolean} [showHidden]
|
|
13774
|
+
* @param {boolean} [returnDefaultValue]
|
|
13272
13775
|
* @param {number} [page]
|
|
13273
13776
|
* @param {number} [limit]
|
|
13274
13777
|
* @param {Date} [lastRetrieved]
|
|
13275
13778
|
* @param {*} [options] Override http request option.
|
|
13276
13779
|
* @throws {RequiredError}
|
|
13277
13780
|
*/
|
|
13278
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined,
|
|
13781
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
13279
13782
|
/**
|
|
13280
13783
|
*
|
|
13281
13784
|
* @summary Get HospitalSpecialty.
|
|
13282
13785
|
* @param {string} hospitalId
|
|
13283
13786
|
* @param {string} specialtyId
|
|
13787
|
+
* @param {string} [languageCode]
|
|
13788
|
+
* @param {boolean} [returnDefaultValue]
|
|
13284
13789
|
* @param {*} [options] Override http request option.
|
|
13285
13790
|
* @throws {RequiredError}
|
|
13286
13791
|
*/
|
|
13287
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
13792
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
13288
13793
|
/**
|
|
13289
13794
|
*
|
|
13290
13795
|
* @summary Get all HospitalServices.
|
|
@@ -13562,7 +14067,9 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
13562
14067
|
* @param {string} [specialtyTypeId]
|
|
13563
14068
|
* @param {string} [title]
|
|
13564
14069
|
* @param {MarketingType} [marketingType]
|
|
13565
|
-
* @param {
|
|
14070
|
+
* @param {string} [languageCode]
|
|
14071
|
+
* @param {boolean} [showHidden]
|
|
14072
|
+
* @param {boolean} [returnDefaultValue]
|
|
13566
14073
|
* @param {number} [page]
|
|
13567
14074
|
* @param {number} [limit]
|
|
13568
14075
|
* @param {Date} [lastRetrieved]
|
|
@@ -13570,17 +14077,19 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
13570
14077
|
* @throws {RequiredError}
|
|
13571
14078
|
* @memberof HospitalsApi
|
|
13572
14079
|
*/
|
|
13573
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType,
|
|
14080
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
|
|
13574
14081
|
/**
|
|
13575
14082
|
*
|
|
13576
14083
|
* @summary Get HospitalSpecialty.
|
|
13577
14084
|
* @param {string} hospitalId
|
|
13578
14085
|
* @param {string} specialtyId
|
|
14086
|
+
* @param {string} [languageCode]
|
|
14087
|
+
* @param {boolean} [returnDefaultValue]
|
|
13579
14088
|
* @param {*} [options] Override http request option.
|
|
13580
14089
|
* @throws {RequiredError}
|
|
13581
14090
|
* @memberof HospitalsApi
|
|
13582
14091
|
*/
|
|
13583
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
14092
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
13584
14093
|
/**
|
|
13585
14094
|
*
|
|
13586
14095
|
* @summary Get all HospitalServices.
|
|
@@ -15162,6 +15671,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
15162
15671
|
* @param {string} [serviceName]
|
|
15163
15672
|
* @param {string} [patientId]
|
|
15164
15673
|
* @param {string} [patientName]
|
|
15674
|
+
* @param {Gender} [gender]
|
|
15165
15675
|
* @param {boolean} [recommended]
|
|
15166
15676
|
* @param {number} [rate]
|
|
15167
15677
|
* @param {ReviewType} [reviewType]
|
|
@@ -15171,7 +15681,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
15171
15681
|
* @param {*} [options] Override http request option.
|
|
15172
15682
|
* @throws {RequiredError}
|
|
15173
15683
|
*/
|
|
15174
|
-
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>;
|
|
15684
|
+
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>;
|
|
15175
15685
|
/**
|
|
15176
15686
|
*
|
|
15177
15687
|
* @summary Create a ServiceReview.
|
|
@@ -15268,6 +15778,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
15268
15778
|
* @param {string} [serviceName]
|
|
15269
15779
|
* @param {string} [patientId]
|
|
15270
15780
|
* @param {string} [patientName]
|
|
15781
|
+
* @param {Gender} [gender]
|
|
15271
15782
|
* @param {boolean} [recommended]
|
|
15272
15783
|
* @param {number} [rate]
|
|
15273
15784
|
* @param {ReviewType} [reviewType]
|
|
@@ -15277,7 +15788,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
15277
15788
|
* @param {*} [options] Override http request option.
|
|
15278
15789
|
* @throws {RequiredError}
|
|
15279
15790
|
*/
|
|
15280
|
-
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>>;
|
|
15791
|
+
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>>;
|
|
15281
15792
|
/**
|
|
15282
15793
|
*
|
|
15283
15794
|
* @summary Create a ServiceReview.
|
|
@@ -15374,6 +15885,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
15374
15885
|
* @param {string} [serviceName]
|
|
15375
15886
|
* @param {string} [patientId]
|
|
15376
15887
|
* @param {string} [patientName]
|
|
15888
|
+
* @param {Gender} [gender]
|
|
15377
15889
|
* @param {boolean} [recommended]
|
|
15378
15890
|
* @param {number} [rate]
|
|
15379
15891
|
* @param {ReviewType} [reviewType]
|
|
@@ -15383,7 +15895,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
15383
15895
|
* @param {*} [options] Override http request option.
|
|
15384
15896
|
* @throws {RequiredError}
|
|
15385
15897
|
*/
|
|
15386
|
-
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>;
|
|
15898
|
+
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>;
|
|
15387
15899
|
/**
|
|
15388
15900
|
*
|
|
15389
15901
|
* @summary Create a ServiceReview.
|
|
@@ -15482,6 +15994,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
15482
15994
|
* @param {string} [serviceName]
|
|
15483
15995
|
* @param {string} [patientId]
|
|
15484
15996
|
* @param {string} [patientName]
|
|
15997
|
+
* @param {Gender} [gender]
|
|
15485
15998
|
* @param {boolean} [recommended]
|
|
15486
15999
|
* @param {number} [rate]
|
|
15487
16000
|
* @param {ReviewType} [reviewType]
|
|
@@ -15492,7 +16005,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
15492
16005
|
* @throws {RequiredError}
|
|
15493
16006
|
* @memberof ServiceReviewsApi
|
|
15494
16007
|
*/
|
|
15495
|
-
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>>;
|
|
16008
|
+
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>>;
|
|
15496
16009
|
/**
|
|
15497
16010
|
*
|
|
15498
16011
|
* @summary Create a ServiceReview.
|