ch-api-client-typescript2 3.3.0 → 3.3.3
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 +288 -1149
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +17 -1062
- package/package.json +1 -1
- package/src/api.ts +288 -1691
package/src/api.ts
CHANGED
|
@@ -1017,18 +1017,6 @@ export interface AuditableEntity {
|
|
|
1017
1017
|
*/
|
|
1018
1018
|
'isDeleted'?: boolean;
|
|
1019
1019
|
}
|
|
1020
|
-
/**
|
|
1021
|
-
*
|
|
1022
|
-
* @export
|
|
1023
|
-
* @enum {string}
|
|
1024
|
-
*/
|
|
1025
|
-
|
|
1026
|
-
export enum AutocompleteMode {
|
|
1027
|
-
OneTerm = 'OneTerm',
|
|
1028
|
-
TwoTerms = 'TwoTerms',
|
|
1029
|
-
OneTermWithContext = 'OneTermWithContext'
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
1020
|
/**
|
|
1033
1021
|
*
|
|
1034
1022
|
* @export
|
|
@@ -1060,69 +1048,6 @@ export interface AwardModel {
|
|
|
1060
1048
|
*/
|
|
1061
1049
|
'date'?: Date;
|
|
1062
1050
|
}
|
|
1063
|
-
/**
|
|
1064
|
-
*
|
|
1065
|
-
* @export
|
|
1066
|
-
* @interface AzureSearchModel
|
|
1067
|
-
*/
|
|
1068
|
-
export interface AzureSearchModel {
|
|
1069
|
-
/**
|
|
1070
|
-
*
|
|
1071
|
-
* @type {number}
|
|
1072
|
-
* @memberof AzureSearchModel
|
|
1073
|
-
*/
|
|
1074
|
-
'hospitals'?: number;
|
|
1075
|
-
/**
|
|
1076
|
-
*
|
|
1077
|
-
* @type {number}
|
|
1078
|
-
* @memberof AzureSearchModel
|
|
1079
|
-
*/
|
|
1080
|
-
'doctors'?: number;
|
|
1081
|
-
/**
|
|
1082
|
-
*
|
|
1083
|
-
* @type {number}
|
|
1084
|
-
* @memberof AzureSearchModel
|
|
1085
|
-
*/
|
|
1086
|
-
'deals'?: number;
|
|
1087
|
-
/**
|
|
1088
|
-
*
|
|
1089
|
-
* @type {number}
|
|
1090
|
-
* @memberof AzureSearchModel
|
|
1091
|
-
*/
|
|
1092
|
-
'specialties'?: number;
|
|
1093
|
-
/**
|
|
1094
|
-
*
|
|
1095
|
-
* @type {number}
|
|
1096
|
-
* @memberof AzureSearchModel
|
|
1097
|
-
*/
|
|
1098
|
-
'specialtyTypes'?: number;
|
|
1099
|
-
}
|
|
1100
|
-
/**
|
|
1101
|
-
*
|
|
1102
|
-
* @export
|
|
1103
|
-
* @interface AzureSearchServiceAutocompleteModel
|
|
1104
|
-
*/
|
|
1105
|
-
export interface AzureSearchServiceAutocompleteModel {
|
|
1106
|
-
/**
|
|
1107
|
-
*
|
|
1108
|
-
* @type {Array<string>}
|
|
1109
|
-
* @memberof AzureSearchServiceAutocompleteModel
|
|
1110
|
-
*/
|
|
1111
|
-
'values'?: Array<string> | null;
|
|
1112
|
-
}
|
|
1113
|
-
/**
|
|
1114
|
-
*
|
|
1115
|
-
* @export
|
|
1116
|
-
* @interface AzureSearchServiceSuggestModel
|
|
1117
|
-
*/
|
|
1118
|
-
export interface AzureSearchServiceSuggestModel {
|
|
1119
|
-
/**
|
|
1120
|
-
*
|
|
1121
|
-
* @type {Array<string>}
|
|
1122
|
-
* @memberof AzureSearchServiceSuggestModel
|
|
1123
|
-
*/
|
|
1124
|
-
'values'?: Array<string> | null;
|
|
1125
|
-
}
|
|
1126
1051
|
/**
|
|
1127
1052
|
*
|
|
1128
1053
|
* @export
|
|
@@ -4213,31 +4138,7 @@ export interface DoctorItemModel {
|
|
|
4213
4138
|
* @type {string}
|
|
4214
4139
|
* @memberof DoctorItemModel
|
|
4215
4140
|
*/
|
|
4216
|
-
'
|
|
4217
|
-
/**
|
|
4218
|
-
*
|
|
4219
|
-
* @type {string}
|
|
4220
|
-
* @memberof DoctorItemModel
|
|
4221
|
-
*/
|
|
4222
|
-
'firstName'?: string | null;
|
|
4223
|
-
/**
|
|
4224
|
-
*
|
|
4225
|
-
* @type {string}
|
|
4226
|
-
* @memberof DoctorItemModel
|
|
4227
|
-
*/
|
|
4228
|
-
'middleName'?: string | null;
|
|
4229
|
-
/**
|
|
4230
|
-
*
|
|
4231
|
-
* @type {string}
|
|
4232
|
-
* @memberof DoctorItemModel
|
|
4233
|
-
*/
|
|
4234
|
-
'lastName'?: string | null;
|
|
4235
|
-
/**
|
|
4236
|
-
*
|
|
4237
|
-
* @type {string}
|
|
4238
|
-
* @memberof DoctorItemModel
|
|
4239
|
-
*/
|
|
4240
|
-
'fullName'?: string | null;
|
|
4141
|
+
'name'?: string | null;
|
|
4241
4142
|
/**
|
|
4242
4143
|
*
|
|
4243
4144
|
* @type {string}
|
|
@@ -4246,106 +4147,34 @@ export interface DoctorItemModel {
|
|
|
4246
4147
|
'slug'?: string | null;
|
|
4247
4148
|
/**
|
|
4248
4149
|
*
|
|
4249
|
-
* @type {
|
|
4250
|
-
* @memberof DoctorItemModel
|
|
4251
|
-
*/
|
|
4252
|
-
'phone'?: string | null;
|
|
4253
|
-
/**
|
|
4254
|
-
*
|
|
4255
|
-
* @type {string}
|
|
4256
|
-
* @memberof DoctorItemModel
|
|
4257
|
-
*/
|
|
4258
|
-
'email'?: string | null;
|
|
4259
|
-
/**
|
|
4260
|
-
*
|
|
4261
|
-
* @type {string}
|
|
4262
|
-
* @memberof DoctorItemModel
|
|
4263
|
-
*/
|
|
4264
|
-
'photo'?: string | null;
|
|
4265
|
-
/**
|
|
4266
|
-
*
|
|
4267
|
-
* @type {string}
|
|
4268
|
-
* @memberof DoctorItemModel
|
|
4269
|
-
*/
|
|
4270
|
-
'photoThumbnail'?: string | null;
|
|
4271
|
-
/**
|
|
4272
|
-
*
|
|
4273
|
-
* @type {Gender}
|
|
4274
|
-
* @memberof DoctorItemModel
|
|
4275
|
-
*/
|
|
4276
|
-
'gender'?: Gender;
|
|
4277
|
-
/**
|
|
4278
|
-
*
|
|
4279
|
-
* @type {Date}
|
|
4280
|
-
* @memberof DoctorItemModel
|
|
4281
|
-
*/
|
|
4282
|
-
'dateOfBirth'?: Date | null;
|
|
4283
|
-
/**
|
|
4284
|
-
*
|
|
4285
|
-
* @type {string}
|
|
4286
|
-
* @memberof DoctorItemModel
|
|
4287
|
-
*/
|
|
4288
|
-
'timeZone'?: string | null;
|
|
4289
|
-
/**
|
|
4290
|
-
*
|
|
4291
|
-
* @type {string}
|
|
4292
|
-
* @memberof DoctorItemModel
|
|
4293
|
-
*/
|
|
4294
|
-
'communicationUserId'?: string | null;
|
|
4295
|
-
/**
|
|
4296
|
-
*
|
|
4297
|
-
* @type {AuditableEntity}
|
|
4298
|
-
* @memberof DoctorItemModel
|
|
4299
|
-
*/
|
|
4300
|
-
'auditableEntity'?: AuditableEntity;
|
|
4301
|
-
/**
|
|
4302
|
-
*
|
|
4303
|
-
* @type {string}
|
|
4304
|
-
* @memberof DoctorItemModel
|
|
4305
|
-
*/
|
|
4306
|
-
'hospitalId'?: string | null;
|
|
4307
|
-
/**
|
|
4308
|
-
*
|
|
4309
|
-
* @type {string}
|
|
4310
|
-
* @memberof DoctorItemModel
|
|
4311
|
-
*/
|
|
4312
|
-
'hospitalName'?: string | null;
|
|
4313
|
-
/**
|
|
4314
|
-
*
|
|
4315
|
-
* @type {string}
|
|
4316
|
-
* @memberof DoctorItemModel
|
|
4317
|
-
*/
|
|
4318
|
-
'hospitalSlug'?: string | null;
|
|
4319
|
-
/**
|
|
4320
|
-
*
|
|
4321
|
-
* @type {Date}
|
|
4150
|
+
* @type {boolean}
|
|
4322
4151
|
* @memberof DoctorItemModel
|
|
4323
4152
|
*/
|
|
4324
|
-
'
|
|
4153
|
+
'consultationEnabled'?: boolean | null;
|
|
4325
4154
|
/**
|
|
4326
4155
|
*
|
|
4327
|
-
* @type {
|
|
4156
|
+
* @type {number}
|
|
4328
4157
|
* @memberof DoctorItemModel
|
|
4329
4158
|
*/
|
|
4330
|
-
'
|
|
4159
|
+
'consultationFee'?: number | null;
|
|
4331
4160
|
/**
|
|
4332
4161
|
*
|
|
4333
4162
|
* @type {boolean}
|
|
4334
4163
|
* @memberof DoctorItemModel
|
|
4335
4164
|
*/
|
|
4336
|
-
'
|
|
4165
|
+
'confirmed'?: boolean;
|
|
4337
4166
|
/**
|
|
4338
4167
|
*
|
|
4339
|
-
* @type {
|
|
4168
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4340
4169
|
* @memberof DoctorItemModel
|
|
4341
4170
|
*/
|
|
4342
|
-
'
|
|
4171
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4343
4172
|
/**
|
|
4344
4173
|
*
|
|
4345
|
-
* @type {
|
|
4174
|
+
* @type {Array<DoctorAffiliationItemModel>}
|
|
4346
4175
|
* @memberof DoctorItemModel
|
|
4347
4176
|
*/
|
|
4348
|
-
'
|
|
4177
|
+
'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
|
|
4349
4178
|
}
|
|
4350
4179
|
/**
|
|
4351
4180
|
*
|
|
@@ -4542,24 +4371,6 @@ export interface DoctorModel {
|
|
|
4542
4371
|
* @memberof DoctorModel
|
|
4543
4372
|
*/
|
|
4544
4373
|
'languageCode'?: string | null;
|
|
4545
|
-
/**
|
|
4546
|
-
*
|
|
4547
|
-
* @type {string}
|
|
4548
|
-
* @memberof DoctorModel
|
|
4549
|
-
*/
|
|
4550
|
-
'hospitalId'?: string | null;
|
|
4551
|
-
/**
|
|
4552
|
-
*
|
|
4553
|
-
* @type {string}
|
|
4554
|
-
* @memberof DoctorModel
|
|
4555
|
-
*/
|
|
4556
|
-
'hospitalName'?: string | null;
|
|
4557
|
-
/**
|
|
4558
|
-
*
|
|
4559
|
-
* @type {string}
|
|
4560
|
-
* @memberof DoctorModel
|
|
4561
|
-
*/
|
|
4562
|
-
'hospitalSlug'?: string | null;
|
|
4563
4374
|
/**
|
|
4564
4375
|
*
|
|
4565
4376
|
* @type {Date}
|
|
@@ -4602,6 +4413,24 @@ export interface DoctorModel {
|
|
|
4602
4413
|
* @memberof DoctorModel
|
|
4603
4414
|
*/
|
|
4604
4415
|
'confirmed'?: boolean;
|
|
4416
|
+
/**
|
|
4417
|
+
*
|
|
4418
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4419
|
+
* @memberof DoctorModel
|
|
4420
|
+
*/
|
|
4421
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4422
|
+
/**
|
|
4423
|
+
*
|
|
4424
|
+
* @type {Array<DoctorAffiliationModel>}
|
|
4425
|
+
* @memberof DoctorModel
|
|
4426
|
+
*/
|
|
4427
|
+
'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
|
|
4428
|
+
/**
|
|
4429
|
+
*
|
|
4430
|
+
* @type {Array<UserTranslationModel>}
|
|
4431
|
+
* @memberof DoctorModel
|
|
4432
|
+
*/
|
|
4433
|
+
'translations'?: Array<UserTranslationModel> | null;
|
|
4605
4434
|
/**
|
|
4606
4435
|
*
|
|
4607
4436
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4797,57 +4626,64 @@ export interface DoctorSpecialtiesModel {
|
|
|
4797
4626
|
/**
|
|
4798
4627
|
*
|
|
4799
4628
|
* @export
|
|
4800
|
-
* @interface
|
|
4629
|
+
* @interface DoctorSpecialtyItemModel
|
|
4801
4630
|
*/
|
|
4802
|
-
export interface
|
|
4631
|
+
export interface DoctorSpecialtyItemModel {
|
|
4803
4632
|
/**
|
|
4804
4633
|
*
|
|
4805
4634
|
* @type {string}
|
|
4806
|
-
* @memberof
|
|
4635
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4807
4636
|
*/
|
|
4808
4637
|
'specialtyId'?: string;
|
|
4809
4638
|
/**
|
|
4810
4639
|
*
|
|
4811
4640
|
* @type {string}
|
|
4812
|
-
* @memberof
|
|
4641
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4813
4642
|
*/
|
|
4814
4643
|
'specialtyName'?: string | null;
|
|
4815
4644
|
/**
|
|
4816
4645
|
*
|
|
4817
4646
|
* @type {string}
|
|
4818
|
-
* @memberof
|
|
4647
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4819
4648
|
*/
|
|
4820
4649
|
'specialtySlug'?: string | null;
|
|
4821
4650
|
/**
|
|
4822
4651
|
*
|
|
4823
|
-
* @type {
|
|
4824
|
-
* @memberof
|
|
4652
|
+
* @type {number}
|
|
4653
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4825
4654
|
*/
|
|
4826
|
-
'
|
|
4655
|
+
'order'?: number;
|
|
4656
|
+
}
|
|
4657
|
+
/**
|
|
4658
|
+
*
|
|
4659
|
+
* @export
|
|
4660
|
+
* @interface DoctorSpecialtyModel
|
|
4661
|
+
*/
|
|
4662
|
+
export interface DoctorSpecialtyModel {
|
|
4827
4663
|
/**
|
|
4828
4664
|
*
|
|
4829
4665
|
* @type {string}
|
|
4830
4666
|
* @memberof DoctorSpecialtyModel
|
|
4831
4667
|
*/
|
|
4832
|
-
'
|
|
4668
|
+
'specialtyId'?: string;
|
|
4833
4669
|
/**
|
|
4834
4670
|
*
|
|
4835
|
-
* @type {
|
|
4671
|
+
* @type {string}
|
|
4836
4672
|
* @memberof DoctorSpecialtyModel
|
|
4837
4673
|
*/
|
|
4838
|
-
'
|
|
4674
|
+
'specialtyName'?: string | null;
|
|
4839
4675
|
/**
|
|
4840
4676
|
*
|
|
4841
4677
|
* @type {string}
|
|
4842
4678
|
* @memberof DoctorSpecialtyModel
|
|
4843
4679
|
*/
|
|
4844
|
-
'
|
|
4680
|
+
'specialtySlug'?: string | null;
|
|
4845
4681
|
/**
|
|
4846
4682
|
*
|
|
4847
|
-
* @type {
|
|
4683
|
+
* @type {number}
|
|
4848
4684
|
* @memberof DoctorSpecialtyModel
|
|
4849
4685
|
*/
|
|
4850
|
-
'
|
|
4686
|
+
'order'?: number;
|
|
4851
4687
|
}
|
|
4852
4688
|
/**
|
|
4853
4689
|
*
|
|
@@ -5588,99 +5424,51 @@ export interface HospitalEvaluationItemModel {
|
|
|
5588
5424
|
* @type {string}
|
|
5589
5425
|
* @memberof HospitalEvaluationItemModel
|
|
5590
5426
|
*/
|
|
5591
|
-
'
|
|
5592
|
-
/**
|
|
5593
|
-
*
|
|
5594
|
-
* @type {string}
|
|
5595
|
-
* @memberof HospitalEvaluationItemModel
|
|
5596
|
-
*/
|
|
5597
|
-
'hospitalId'?: string;
|
|
5427
|
+
'name'?: string | null;
|
|
5598
5428
|
/**
|
|
5599
5429
|
*
|
|
5600
|
-
* @type {
|
|
5430
|
+
* @type {number}
|
|
5601
5431
|
* @memberof HospitalEvaluationItemModel
|
|
5602
5432
|
*/
|
|
5603
|
-
'
|
|
5433
|
+
'stars'?: number;
|
|
5434
|
+
}
|
|
5435
|
+
/**
|
|
5436
|
+
*
|
|
5437
|
+
* @export
|
|
5438
|
+
* @interface HospitalEvaluationModel
|
|
5439
|
+
*/
|
|
5440
|
+
export interface HospitalEvaluationModel {
|
|
5604
5441
|
/**
|
|
5605
5442
|
*
|
|
5606
5443
|
* @type {string}
|
|
5607
|
-
* @memberof
|
|
5444
|
+
* @memberof HospitalEvaluationModel
|
|
5608
5445
|
*/
|
|
5609
5446
|
'name'?: string | null;
|
|
5610
5447
|
/**
|
|
5611
5448
|
*
|
|
5612
5449
|
* @type {number}
|
|
5613
|
-
* @memberof
|
|
5450
|
+
* @memberof HospitalEvaluationModel
|
|
5614
5451
|
*/
|
|
5615
5452
|
'stars'?: number;
|
|
5616
5453
|
/**
|
|
5617
5454
|
*
|
|
5618
5455
|
* @type {string}
|
|
5619
|
-
* @memberof
|
|
5456
|
+
* @memberof HospitalEvaluationModel
|
|
5620
5457
|
*/
|
|
5621
5458
|
'description'?: string | null;
|
|
5622
5459
|
/**
|
|
5623
5460
|
*
|
|
5624
5461
|
* @type {string}
|
|
5625
|
-
* @memberof
|
|
5462
|
+
* @memberof HospitalEvaluationModel
|
|
5626
5463
|
*/
|
|
5627
5464
|
'referenceUrl'?: string | null;
|
|
5628
5465
|
}
|
|
5629
5466
|
/**
|
|
5630
5467
|
*
|
|
5631
5468
|
* @export
|
|
5632
|
-
* @interface
|
|
5469
|
+
* @interface HospitalEvaluationsModel
|
|
5633
5470
|
*/
|
|
5634
|
-
export interface
|
|
5635
|
-
/**
|
|
5636
|
-
*
|
|
5637
|
-
* @type {string}
|
|
5638
|
-
* @memberof HospitalEvaluationModel
|
|
5639
|
-
*/
|
|
5640
|
-
'id'?: string;
|
|
5641
|
-
/**
|
|
5642
|
-
*
|
|
5643
|
-
* @type {string}
|
|
5644
|
-
* @memberof HospitalEvaluationModel
|
|
5645
|
-
*/
|
|
5646
|
-
'hospitalId'?: string;
|
|
5647
|
-
/**
|
|
5648
|
-
*
|
|
5649
|
-
* @type {string}
|
|
5650
|
-
* @memberof HospitalEvaluationModel
|
|
5651
|
-
*/
|
|
5652
|
-
'hospitalName'?: string | null;
|
|
5653
|
-
/**
|
|
5654
|
-
*
|
|
5655
|
-
* @type {string}
|
|
5656
|
-
* @memberof HospitalEvaluationModel
|
|
5657
|
-
*/
|
|
5658
|
-
'name'?: string | null;
|
|
5659
|
-
/**
|
|
5660
|
-
*
|
|
5661
|
-
* @type {number}
|
|
5662
|
-
* @memberof HospitalEvaluationModel
|
|
5663
|
-
*/
|
|
5664
|
-
'stars'?: number;
|
|
5665
|
-
/**
|
|
5666
|
-
*
|
|
5667
|
-
* @type {string}
|
|
5668
|
-
* @memberof HospitalEvaluationModel
|
|
5669
|
-
*/
|
|
5670
|
-
'description'?: string | null;
|
|
5671
|
-
/**
|
|
5672
|
-
*
|
|
5673
|
-
* @type {string}
|
|
5674
|
-
* @memberof HospitalEvaluationModel
|
|
5675
|
-
*/
|
|
5676
|
-
'referenceUrl'?: string | null;
|
|
5677
|
-
}
|
|
5678
|
-
/**
|
|
5679
|
-
*
|
|
5680
|
-
* @export
|
|
5681
|
-
* @interface HospitalEvaluationsModel
|
|
5682
|
-
*/
|
|
5683
|
-
export interface HospitalEvaluationsModel {
|
|
5471
|
+
export interface HospitalEvaluationsModel {
|
|
5684
5472
|
/**
|
|
5685
5473
|
*
|
|
5686
5474
|
* @type {Array<HospitalEvaluationItemModel>}
|
|
@@ -5718,12 +5506,6 @@ export interface HospitalItemModel {
|
|
|
5718
5506
|
* @memberof HospitalItemModel
|
|
5719
5507
|
*/
|
|
5720
5508
|
'slug'?: string | null;
|
|
5721
|
-
/**
|
|
5722
|
-
*
|
|
5723
|
-
* @type {string}
|
|
5724
|
-
* @memberof HospitalItemModel
|
|
5725
|
-
*/
|
|
5726
|
-
'description'?: string | null;
|
|
5727
5509
|
/**
|
|
5728
5510
|
*
|
|
5729
5511
|
* @type {string}
|
|
@@ -5732,52 +5514,28 @@ export interface HospitalItemModel {
|
|
|
5732
5514
|
'logo'?: string | null;
|
|
5733
5515
|
/**
|
|
5734
5516
|
*
|
|
5735
|
-
* @type {
|
|
5736
|
-
* @memberof HospitalItemModel
|
|
5737
|
-
*/
|
|
5738
|
-
'overview'?: string | null;
|
|
5739
|
-
/**
|
|
5740
|
-
*
|
|
5741
|
-
* @type {number}
|
|
5742
|
-
* @memberof HospitalItemModel
|
|
5743
|
-
*/
|
|
5744
|
-
'bedsCount'?: number | null;
|
|
5745
|
-
/**
|
|
5746
|
-
*
|
|
5747
|
-
* @type {number}
|
|
5748
|
-
* @memberof HospitalItemModel
|
|
5749
|
-
*/
|
|
5750
|
-
'operationsPerYear'?: number | null;
|
|
5751
|
-
/**
|
|
5752
|
-
*
|
|
5753
|
-
* @type {number}
|
|
5754
|
-
* @memberof HospitalItemModel
|
|
5755
|
-
*/
|
|
5756
|
-
'foundationYear'?: number | null;
|
|
5757
|
-
/**
|
|
5758
|
-
*
|
|
5759
|
-
* @type {number}
|
|
5517
|
+
* @type {boolean}
|
|
5760
5518
|
* @memberof HospitalItemModel
|
|
5761
5519
|
*/
|
|
5762
|
-
'
|
|
5520
|
+
'confirmed'?: boolean;
|
|
5763
5521
|
/**
|
|
5764
5522
|
*
|
|
5765
|
-
* @type {
|
|
5523
|
+
* @type {string}
|
|
5766
5524
|
* @memberof HospitalItemModel
|
|
5767
5525
|
*/
|
|
5768
|
-
'
|
|
5526
|
+
'countryId'?: string;
|
|
5769
5527
|
/**
|
|
5770
5528
|
*
|
|
5771
5529
|
* @type {string}
|
|
5772
5530
|
* @memberof HospitalItemModel
|
|
5773
5531
|
*/
|
|
5774
|
-
'
|
|
5532
|
+
'countryName'?: string | null;
|
|
5775
5533
|
/**
|
|
5776
5534
|
*
|
|
5777
5535
|
* @type {string}
|
|
5778
5536
|
* @memberof HospitalItemModel
|
|
5779
5537
|
*/
|
|
5780
|
-
'
|
|
5538
|
+
'countrySlug'?: string | null;
|
|
5781
5539
|
/**
|
|
5782
5540
|
*
|
|
5783
5541
|
* @type {MarketingType}
|
|
@@ -5808,66 +5566,6 @@ export interface HospitalItemModel {
|
|
|
5808
5566
|
* @memberof HospitalItemModel
|
|
5809
5567
|
*/
|
|
5810
5568
|
'websiteUrl'?: string | null;
|
|
5811
|
-
/**
|
|
5812
|
-
*
|
|
5813
|
-
* @type {number}
|
|
5814
|
-
* @memberof HospitalItemModel
|
|
5815
|
-
*/
|
|
5816
|
-
'articlesCount'?: number;
|
|
5817
|
-
/**
|
|
5818
|
-
*
|
|
5819
|
-
* @type {number}
|
|
5820
|
-
* @memberof HospitalItemModel
|
|
5821
|
-
*/
|
|
5822
|
-
'packagesCount'?: number;
|
|
5823
|
-
/**
|
|
5824
|
-
*
|
|
5825
|
-
* @type {number}
|
|
5826
|
-
* @memberof HospitalItemModel
|
|
5827
|
-
*/
|
|
5828
|
-
'equipmentsCount'?: number;
|
|
5829
|
-
/**
|
|
5830
|
-
*
|
|
5831
|
-
* @type {number}
|
|
5832
|
-
* @memberof HospitalItemModel
|
|
5833
|
-
*/
|
|
5834
|
-
'reviewsCount'?: number;
|
|
5835
|
-
/**
|
|
5836
|
-
*
|
|
5837
|
-
* @type {number}
|
|
5838
|
-
* @memberof HospitalItemModel
|
|
5839
|
-
*/
|
|
5840
|
-
'departmentsCount'?: number;
|
|
5841
|
-
/**
|
|
5842
|
-
*
|
|
5843
|
-
* @type {number}
|
|
5844
|
-
* @memberof HospitalItemModel
|
|
5845
|
-
*/
|
|
5846
|
-
'specialtiesCount'?: number;
|
|
5847
|
-
/**
|
|
5848
|
-
*
|
|
5849
|
-
* @type {number}
|
|
5850
|
-
* @memberof HospitalItemModel
|
|
5851
|
-
*/
|
|
5852
|
-
'accreditationsCount'?: number;
|
|
5853
|
-
/**
|
|
5854
|
-
*
|
|
5855
|
-
* @type {number}
|
|
5856
|
-
* @memberof HospitalItemModel
|
|
5857
|
-
*/
|
|
5858
|
-
'doctorAffiliationsCount'?: number;
|
|
5859
|
-
/**
|
|
5860
|
-
*
|
|
5861
|
-
* @type {number}
|
|
5862
|
-
* @memberof HospitalItemModel
|
|
5863
|
-
*/
|
|
5864
|
-
'managerAffiliationsCount'?: number;
|
|
5865
|
-
/**
|
|
5866
|
-
*
|
|
5867
|
-
* @type {string}
|
|
5868
|
-
* @memberof HospitalItemModel
|
|
5869
|
-
*/
|
|
5870
|
-
'specialtiesSummerized'?: string | null;
|
|
5871
5569
|
/**
|
|
5872
5570
|
*
|
|
5873
5571
|
* @type {boolean}
|
|
@@ -5876,46 +5574,28 @@ export interface HospitalItemModel {
|
|
|
5876
5574
|
'paymentEnabled'?: boolean;
|
|
5877
5575
|
/**
|
|
5878
5576
|
*
|
|
5879
|
-
* @type {
|
|
5577
|
+
* @type {string}
|
|
5880
5578
|
* @memberof HospitalItemModel
|
|
5881
5579
|
*/
|
|
5882
|
-
'
|
|
5580
|
+
'specialtiesSummerized'?: string | null;
|
|
5883
5581
|
/**
|
|
5884
5582
|
*
|
|
5885
|
-
* @type {Array<
|
|
5583
|
+
* @type {Array<HospitalAccreditationItemModel>}
|
|
5886
5584
|
* @memberof HospitalItemModel
|
|
5887
5585
|
*/
|
|
5888
|
-
'
|
|
5586
|
+
'accreditations'?: Array<HospitalAccreditationItemModel> | null;
|
|
5889
5587
|
/**
|
|
5890
5588
|
*
|
|
5891
5589
|
* @type {Array<MediaModel>}
|
|
5892
5590
|
* @memberof HospitalItemModel
|
|
5893
5591
|
*/
|
|
5894
5592
|
'medias'?: Array<MediaModel> | null;
|
|
5895
|
-
/**
|
|
5896
|
-
*
|
|
5897
|
-
* @type {Array<AccreditationModel>}
|
|
5898
|
-
* @memberof HospitalItemModel
|
|
5899
|
-
*/
|
|
5900
|
-
'accreditations'?: Array<AccreditationModel> | null;
|
|
5901
|
-
/**
|
|
5902
|
-
*
|
|
5903
|
-
* @type {Array<HospitalEvaluationModel>}
|
|
5904
|
-
* @memberof HospitalItemModel
|
|
5905
|
-
*/
|
|
5906
|
-
'evaluations'?: Array<HospitalEvaluationModel> | null;
|
|
5907
5593
|
/**
|
|
5908
5594
|
*
|
|
5909
5595
|
* @type {LocationModel}
|
|
5910
5596
|
* @memberof HospitalItemModel
|
|
5911
5597
|
*/
|
|
5912
5598
|
'location'?: LocationModel;
|
|
5913
|
-
/**
|
|
5914
|
-
*
|
|
5915
|
-
* @type {AuditableEntity}
|
|
5916
|
-
* @memberof HospitalItemModel
|
|
5917
|
-
*/
|
|
5918
|
-
'auditableEntity'?: AuditableEntity;
|
|
5919
5599
|
}
|
|
5920
5600
|
/**
|
|
5921
5601
|
*
|
|
@@ -5946,247 +5626,193 @@ export interface HospitalModel {
|
|
|
5946
5626
|
* @type {string}
|
|
5947
5627
|
* @memberof HospitalModel
|
|
5948
5628
|
*/
|
|
5949
|
-
'
|
|
5629
|
+
'logo'?: string | null;
|
|
5950
5630
|
/**
|
|
5951
5631
|
*
|
|
5952
|
-
* @type {
|
|
5632
|
+
* @type {boolean}
|
|
5953
5633
|
* @memberof HospitalModel
|
|
5954
5634
|
*/
|
|
5955
|
-
'
|
|
5635
|
+
'confirmed'?: boolean;
|
|
5956
5636
|
/**
|
|
5957
5637
|
*
|
|
5958
5638
|
* @type {string}
|
|
5959
5639
|
* @memberof HospitalModel
|
|
5960
5640
|
*/
|
|
5961
|
-
'
|
|
5641
|
+
'countryId'?: string;
|
|
5962
5642
|
/**
|
|
5963
5643
|
*
|
|
5964
|
-
* @type {
|
|
5644
|
+
* @type {string}
|
|
5965
5645
|
* @memberof HospitalModel
|
|
5966
5646
|
*/
|
|
5967
|
-
'
|
|
5647
|
+
'countryName'?: string | null;
|
|
5968
5648
|
/**
|
|
5969
5649
|
*
|
|
5970
|
-
* @type {
|
|
5650
|
+
* @type {string}
|
|
5971
5651
|
* @memberof HospitalModel
|
|
5972
5652
|
*/
|
|
5973
|
-
'
|
|
5653
|
+
'countrySlug'?: string | null;
|
|
5974
5654
|
/**
|
|
5975
5655
|
*
|
|
5976
|
-
* @type {
|
|
5656
|
+
* @type {MarketingType}
|
|
5977
5657
|
* @memberof HospitalModel
|
|
5978
5658
|
*/
|
|
5979
|
-
'
|
|
5659
|
+
'marketingType'?: MarketingType;
|
|
5980
5660
|
/**
|
|
5981
5661
|
*
|
|
5982
|
-
* @type {
|
|
5662
|
+
* @type {boolean}
|
|
5983
5663
|
* @memberof HospitalModel
|
|
5984
5664
|
*/
|
|
5985
|
-
'
|
|
5665
|
+
'consultationEnabled'?: boolean | null;
|
|
5986
5666
|
/**
|
|
5987
5667
|
*
|
|
5988
5668
|
* @type {number}
|
|
5989
5669
|
* @memberof HospitalModel
|
|
5990
5670
|
*/
|
|
5991
|
-
'
|
|
5671
|
+
'consultationFee'?: number | null;
|
|
5992
5672
|
/**
|
|
5993
5673
|
*
|
|
5994
5674
|
* @type {string}
|
|
5995
5675
|
* @memberof HospitalModel
|
|
5996
5676
|
*/
|
|
5997
|
-
'
|
|
5677
|
+
'timeZone'?: string | null;
|
|
5998
5678
|
/**
|
|
5999
5679
|
*
|
|
6000
5680
|
* @type {string}
|
|
6001
5681
|
* @memberof HospitalModel
|
|
6002
5682
|
*/
|
|
6003
|
-
'
|
|
5683
|
+
'websiteUrl'?: string | null;
|
|
6004
5684
|
/**
|
|
6005
5685
|
*
|
|
6006
|
-
* @type {
|
|
5686
|
+
* @type {boolean}
|
|
6007
5687
|
* @memberof HospitalModel
|
|
6008
5688
|
*/
|
|
6009
|
-
'
|
|
5689
|
+
'paymentEnabled'?: boolean;
|
|
6010
5690
|
/**
|
|
6011
5691
|
*
|
|
6012
|
-
* @type {
|
|
5692
|
+
* @type {string}
|
|
6013
5693
|
* @memberof HospitalModel
|
|
6014
5694
|
*/
|
|
6015
|
-
'
|
|
5695
|
+
'specialtiesSummerized'?: string | null;
|
|
6016
5696
|
/**
|
|
6017
5697
|
*
|
|
6018
|
-
* @type {
|
|
5698
|
+
* @type {Array<HospitalAccreditationItemModel>}
|
|
6019
5699
|
* @memberof HospitalModel
|
|
6020
5700
|
*/
|
|
6021
|
-
'
|
|
5701
|
+
'accreditations'?: Array<HospitalAccreditationItemModel> | null;
|
|
6022
5702
|
/**
|
|
6023
5703
|
*
|
|
6024
|
-
* @type {
|
|
5704
|
+
* @type {Array<MediaModel>}
|
|
6025
5705
|
* @memberof HospitalModel
|
|
6026
5706
|
*/
|
|
6027
|
-
'
|
|
5707
|
+
'medias'?: Array<MediaModel> | null;
|
|
6028
5708
|
/**
|
|
6029
5709
|
*
|
|
6030
|
-
* @type {
|
|
5710
|
+
* @type {LocationModel}
|
|
6031
5711
|
* @memberof HospitalModel
|
|
6032
5712
|
*/
|
|
6033
|
-
'
|
|
5713
|
+
'location'?: LocationModel;
|
|
6034
5714
|
/**
|
|
6035
5715
|
*
|
|
6036
|
-
* @type {
|
|
5716
|
+
* @type {string}
|
|
6037
5717
|
* @memberof HospitalModel
|
|
6038
5718
|
*/
|
|
6039
|
-
'
|
|
5719
|
+
'languageCode'?: string | null;
|
|
6040
5720
|
/**
|
|
6041
5721
|
*
|
|
6042
|
-
* @type {
|
|
5722
|
+
* @type {string}
|
|
6043
5723
|
* @memberof HospitalModel
|
|
6044
5724
|
*/
|
|
6045
|
-
'
|
|
5725
|
+
'description'?: string | null;
|
|
6046
5726
|
/**
|
|
6047
5727
|
*
|
|
6048
|
-
* @type {
|
|
5728
|
+
* @type {string}
|
|
6049
5729
|
* @memberof HospitalModel
|
|
6050
5730
|
*/
|
|
6051
|
-
'
|
|
5731
|
+
'overview'?: string | null;
|
|
6052
5732
|
/**
|
|
6053
5733
|
*
|
|
6054
|
-
* @type {
|
|
5734
|
+
* @type {string}
|
|
6055
5735
|
* @memberof HospitalModel
|
|
6056
5736
|
*/
|
|
6057
|
-
'
|
|
5737
|
+
'content'?: string | null;
|
|
6058
5738
|
/**
|
|
6059
5739
|
*
|
|
6060
5740
|
* @type {number}
|
|
6061
5741
|
* @memberof HospitalModel
|
|
6062
5742
|
*/
|
|
6063
|
-
'
|
|
5743
|
+
'bedsCount'?: number | null;
|
|
6064
5744
|
/**
|
|
6065
5745
|
*
|
|
6066
5746
|
* @type {number}
|
|
6067
5747
|
* @memberof HospitalModel
|
|
6068
5748
|
*/
|
|
6069
|
-
'
|
|
5749
|
+
'operationsPerYear'?: number | null;
|
|
6070
5750
|
/**
|
|
6071
5751
|
*
|
|
6072
5752
|
* @type {number}
|
|
6073
5753
|
* @memberof HospitalModel
|
|
6074
5754
|
*/
|
|
6075
|
-
'
|
|
5755
|
+
'foundationYear'?: number | null;
|
|
6076
5756
|
/**
|
|
6077
5757
|
*
|
|
6078
5758
|
* @type {number}
|
|
6079
5759
|
* @memberof HospitalModel
|
|
6080
5760
|
*/
|
|
6081
|
-
'
|
|
5761
|
+
'medicalStaffCount'?: number | null;
|
|
6082
5762
|
/**
|
|
6083
5763
|
*
|
|
6084
5764
|
* @type {number}
|
|
6085
5765
|
* @memberof HospitalModel
|
|
6086
5766
|
*/
|
|
6087
|
-
'
|
|
5767
|
+
'doctorCount'?: number | null;
|
|
6088
5768
|
/**
|
|
6089
5769
|
*
|
|
6090
5770
|
* @type {string}
|
|
6091
5771
|
* @memberof HospitalModel
|
|
6092
5772
|
*/
|
|
6093
|
-
'
|
|
5773
|
+
'contactTel'?: string | null;
|
|
6094
5774
|
/**
|
|
6095
5775
|
*
|
|
6096
|
-
* @type {
|
|
5776
|
+
* @type {string}
|
|
6097
5777
|
* @memberof HospitalModel
|
|
6098
5778
|
*/
|
|
6099
|
-
'
|
|
5779
|
+
'contactEmail'?: string | null;
|
|
6100
5780
|
/**
|
|
6101
5781
|
*
|
|
6102
|
-
* @type {
|
|
5782
|
+
* @type {string}
|
|
6103
5783
|
* @memberof HospitalModel
|
|
6104
5784
|
*/
|
|
6105
|
-
'
|
|
5785
|
+
'customStyle'?: string | null;
|
|
6106
5786
|
/**
|
|
6107
5787
|
*
|
|
6108
|
-
* @type {Array<
|
|
5788
|
+
* @type {Array<HospitalEvaluationItemModel>}
|
|
6109
5789
|
* @memberof HospitalModel
|
|
6110
5790
|
*/
|
|
6111
|
-
'
|
|
5791
|
+
'evaluations'?: Array<HospitalEvaluationItemModel> | null;
|
|
6112
5792
|
/**
|
|
6113
5793
|
*
|
|
6114
|
-
* @type {Array<
|
|
5794
|
+
* @type {Array<WorkingDay>}
|
|
6115
5795
|
* @memberof HospitalModel
|
|
6116
5796
|
*/
|
|
6117
|
-
'
|
|
5797
|
+
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
6118
5798
|
/**
|
|
6119
5799
|
*
|
|
6120
|
-
* @type {Array<
|
|
5800
|
+
* @type {Array<SnsHandle>}
|
|
6121
5801
|
* @memberof HospitalModel
|
|
6122
5802
|
*/
|
|
6123
|
-
'
|
|
5803
|
+
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
6124
5804
|
/**
|
|
6125
5805
|
*
|
|
6126
|
-
* @type {Array<
|
|
5806
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6127
5807
|
* @memberof HospitalModel
|
|
6128
5808
|
*/
|
|
6129
|
-
'
|
|
5809
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6130
5810
|
/**
|
|
6131
5811
|
*
|
|
6132
|
-
* @type {
|
|
5812
|
+
* @type {Array<AwardModel>}
|
|
6133
5813
|
* @memberof HospitalModel
|
|
6134
5814
|
*/
|
|
6135
|
-
'
|
|
6136
|
-
/**
|
|
6137
|
-
*
|
|
6138
|
-
* @type {AuditableEntity}
|
|
6139
|
-
* @memberof HospitalModel
|
|
6140
|
-
*/
|
|
6141
|
-
'auditableEntity'?: AuditableEntity;
|
|
6142
|
-
/**
|
|
6143
|
-
*
|
|
6144
|
-
* @type {string}
|
|
6145
|
-
* @memberof HospitalModel
|
|
6146
|
-
*/
|
|
6147
|
-
'languageCode'?: string | null;
|
|
6148
|
-
/**
|
|
6149
|
-
*
|
|
6150
|
-
* @type {string}
|
|
6151
|
-
* @memberof HospitalModel
|
|
6152
|
-
*/
|
|
6153
|
-
'content'?: string | null;
|
|
6154
|
-
/**
|
|
6155
|
-
*
|
|
6156
|
-
* @type {string}
|
|
6157
|
-
* @memberof HospitalModel
|
|
6158
|
-
*/
|
|
6159
|
-
'contactTel'?: string | null;
|
|
6160
|
-
/**
|
|
6161
|
-
*
|
|
6162
|
-
* @type {string}
|
|
6163
|
-
* @memberof HospitalModel
|
|
6164
|
-
*/
|
|
6165
|
-
'contactEmail'?: string | null;
|
|
6166
|
-
/**
|
|
6167
|
-
*
|
|
6168
|
-
* @type {string}
|
|
6169
|
-
* @memberof HospitalModel
|
|
6170
|
-
*/
|
|
6171
|
-
'customStyle'?: string | null;
|
|
6172
|
-
/**
|
|
6173
|
-
*
|
|
6174
|
-
* @type {Array<WorkingDay>}
|
|
6175
|
-
* @memberof HospitalModel
|
|
6176
|
-
*/
|
|
6177
|
-
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
6178
|
-
/**
|
|
6179
|
-
*
|
|
6180
|
-
* @type {Array<SnsHandle>}
|
|
6181
|
-
* @memberof HospitalModel
|
|
6182
|
-
*/
|
|
6183
|
-
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
6184
|
-
/**
|
|
6185
|
-
*
|
|
6186
|
-
* @type {Array<LocalizedUrlModel>}
|
|
6187
|
-
* @memberof HospitalModel
|
|
6188
|
-
*/
|
|
6189
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5815
|
+
'awards'?: Array<AwardModel> | null;
|
|
6190
5816
|
}
|
|
6191
5817
|
/**
|
|
6192
5818
|
*
|
|
@@ -6657,54 +6283,6 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6657
6283
|
* @memberof HospitalSpecialtyItemModel
|
|
6658
6284
|
*/
|
|
6659
6285
|
'id'?: string;
|
|
6660
|
-
/**
|
|
6661
|
-
*
|
|
6662
|
-
* @type {string}
|
|
6663
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6664
|
-
*/
|
|
6665
|
-
'hospitalId'?: string;
|
|
6666
|
-
/**
|
|
6667
|
-
*
|
|
6668
|
-
* @type {string}
|
|
6669
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6670
|
-
*/
|
|
6671
|
-
'hospitalName'?: string | null;
|
|
6672
|
-
/**
|
|
6673
|
-
*
|
|
6674
|
-
* @type {string}
|
|
6675
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6676
|
-
*/
|
|
6677
|
-
'hospitalSlug'?: string | null;
|
|
6678
|
-
/**
|
|
6679
|
-
*
|
|
6680
|
-
* @type {string}
|
|
6681
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6682
|
-
*/
|
|
6683
|
-
'specialtyId'?: string;
|
|
6684
|
-
/**
|
|
6685
|
-
*
|
|
6686
|
-
* @type {string}
|
|
6687
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6688
|
-
*/
|
|
6689
|
-
'specialtyName'?: string | null;
|
|
6690
|
-
/**
|
|
6691
|
-
*
|
|
6692
|
-
* @type {string}
|
|
6693
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6694
|
-
*/
|
|
6695
|
-
'specialtyTypeId'?: string;
|
|
6696
|
-
/**
|
|
6697
|
-
*
|
|
6698
|
-
* @type {string}
|
|
6699
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6700
|
-
*/
|
|
6701
|
-
'specialtyTypeName'?: string | null;
|
|
6702
|
-
/**
|
|
6703
|
-
*
|
|
6704
|
-
* @type {MarketingType}
|
|
6705
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6706
|
-
*/
|
|
6707
|
-
'marketingType'?: MarketingType;
|
|
6708
6286
|
/**
|
|
6709
6287
|
*
|
|
6710
6288
|
* @type {string}
|
|
@@ -6725,16 +6303,10 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6725
6303
|
'description'?: string | null;
|
|
6726
6304
|
/**
|
|
6727
6305
|
*
|
|
6728
|
-
* @type {
|
|
6729
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6730
|
-
*/
|
|
6731
|
-
'serviceCount'?: number;
|
|
6732
|
-
/**
|
|
6733
|
-
*
|
|
6734
|
-
* @type {Array<HospitalServiceItemModel>}
|
|
6306
|
+
* @type {MarketingType}
|
|
6735
6307
|
* @memberof HospitalSpecialtyItemModel
|
|
6736
6308
|
*/
|
|
6737
|
-
'
|
|
6309
|
+
'marketingType'?: MarketingType;
|
|
6738
6310
|
/**
|
|
6739
6311
|
*
|
|
6740
6312
|
* @type {string}
|
|
@@ -6771,18 +6343,6 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6771
6343
|
* @memberof HospitalSpecialtyItemModel
|
|
6772
6344
|
*/
|
|
6773
6345
|
'confirmed'?: boolean;
|
|
6774
|
-
/**
|
|
6775
|
-
*
|
|
6776
|
-
* @type {Array<MediaModel>}
|
|
6777
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6778
|
-
*/
|
|
6779
|
-
'medias'?: Array<MediaModel> | null;
|
|
6780
|
-
/**
|
|
6781
|
-
*
|
|
6782
|
-
* @type {AuditableEntity}
|
|
6783
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6784
|
-
*/
|
|
6785
|
-
'auditableEntity'?: AuditableEntity;
|
|
6786
6346
|
}
|
|
6787
6347
|
/**
|
|
6788
6348
|
*
|
|
@@ -6801,151 +6361,145 @@ export interface HospitalSpecialtyModel {
|
|
|
6801
6361
|
* @type {string}
|
|
6802
6362
|
* @memberof HospitalSpecialtyModel
|
|
6803
6363
|
*/
|
|
6804
|
-
'
|
|
6364
|
+
'name'?: string | null;
|
|
6805
6365
|
/**
|
|
6806
6366
|
*
|
|
6807
6367
|
* @type {string}
|
|
6808
6368
|
* @memberof HospitalSpecialtyModel
|
|
6809
6369
|
*/
|
|
6810
|
-
'
|
|
6370
|
+
'slug'?: string | null;
|
|
6811
6371
|
/**
|
|
6812
6372
|
*
|
|
6813
6373
|
* @type {string}
|
|
6814
6374
|
* @memberof HospitalSpecialtyModel
|
|
6815
6375
|
*/
|
|
6816
|
-
'
|
|
6376
|
+
'description'?: string | null;
|
|
6817
6377
|
/**
|
|
6818
6378
|
*
|
|
6819
|
-
* @type {
|
|
6379
|
+
* @type {MarketingType}
|
|
6820
6380
|
* @memberof HospitalSpecialtyModel
|
|
6821
6381
|
*/
|
|
6822
|
-
'
|
|
6382
|
+
'marketingType'?: MarketingType;
|
|
6823
6383
|
/**
|
|
6824
6384
|
*
|
|
6825
6385
|
* @type {string}
|
|
6826
6386
|
* @memberof HospitalSpecialtyModel
|
|
6827
6387
|
*/
|
|
6828
|
-
'
|
|
6388
|
+
'photo'?: string | null;
|
|
6829
6389
|
/**
|
|
6830
6390
|
*
|
|
6831
6391
|
* @type {string}
|
|
6832
6392
|
* @memberof HospitalSpecialtyModel
|
|
6833
6393
|
*/
|
|
6834
|
-
'
|
|
6394
|
+
'photoThumbnail'?: string | null;
|
|
6835
6395
|
/**
|
|
6836
6396
|
*
|
|
6837
6397
|
* @type {string}
|
|
6838
6398
|
* @memberof HospitalSpecialtyModel
|
|
6839
6399
|
*/
|
|
6840
|
-
'
|
|
6841
|
-
/**
|
|
6842
|
-
*
|
|
6843
|
-
* @type {MarketingType}
|
|
6844
|
-
* @memberof HospitalSpecialtyModel
|
|
6845
|
-
*/
|
|
6846
|
-
'marketingType'?: MarketingType;
|
|
6400
|
+
'background'?: string | null;
|
|
6847
6401
|
/**
|
|
6848
6402
|
*
|
|
6849
6403
|
* @type {string}
|
|
6850
6404
|
* @memberof HospitalSpecialtyModel
|
|
6851
6405
|
*/
|
|
6852
|
-
'
|
|
6406
|
+
'backgroundThumbnail'?: string | null;
|
|
6853
6407
|
/**
|
|
6854
6408
|
*
|
|
6855
|
-
* @type {
|
|
6409
|
+
* @type {number}
|
|
6856
6410
|
* @memberof HospitalSpecialtyModel
|
|
6857
6411
|
*/
|
|
6858
|
-
'
|
|
6412
|
+
'order'?: number;
|
|
6859
6413
|
/**
|
|
6860
6414
|
*
|
|
6861
|
-
* @type {
|
|
6415
|
+
* @type {boolean}
|
|
6862
6416
|
* @memberof HospitalSpecialtyModel
|
|
6863
6417
|
*/
|
|
6864
|
-
'
|
|
6418
|
+
'confirmed'?: boolean;
|
|
6865
6419
|
/**
|
|
6866
6420
|
*
|
|
6867
|
-
* @type {
|
|
6421
|
+
* @type {string}
|
|
6868
6422
|
* @memberof HospitalSpecialtyModel
|
|
6869
6423
|
*/
|
|
6870
|
-
'
|
|
6424
|
+
'hospitalId'?: string;
|
|
6871
6425
|
/**
|
|
6872
6426
|
*
|
|
6873
|
-
* @type {
|
|
6427
|
+
* @type {string}
|
|
6874
6428
|
* @memberof HospitalSpecialtyModel
|
|
6875
6429
|
*/
|
|
6876
|
-
'
|
|
6430
|
+
'hospitalName'?: string | null;
|
|
6877
6431
|
/**
|
|
6878
6432
|
*
|
|
6879
6433
|
* @type {string}
|
|
6880
6434
|
* @memberof HospitalSpecialtyModel
|
|
6881
6435
|
*/
|
|
6882
|
-
'
|
|
6436
|
+
'hospitalSlug'?: string | null;
|
|
6883
6437
|
/**
|
|
6884
6438
|
*
|
|
6885
6439
|
* @type {string}
|
|
6886
6440
|
* @memberof HospitalSpecialtyModel
|
|
6887
6441
|
*/
|
|
6888
|
-
'
|
|
6442
|
+
'content'?: string | null;
|
|
6889
6443
|
/**
|
|
6890
6444
|
*
|
|
6891
6445
|
* @type {string}
|
|
6892
6446
|
* @memberof HospitalSpecialtyModel
|
|
6893
6447
|
*/
|
|
6894
|
-
'
|
|
6448
|
+
'customStyle'?: string | null;
|
|
6895
6449
|
/**
|
|
6896
6450
|
*
|
|
6897
6451
|
* @type {string}
|
|
6898
6452
|
* @memberof HospitalSpecialtyModel
|
|
6899
6453
|
*/
|
|
6900
|
-
'
|
|
6454
|
+
'languageCode'?: string | null;
|
|
6901
6455
|
/**
|
|
6902
6456
|
*
|
|
6903
|
-
* @type {
|
|
6457
|
+
* @type {string}
|
|
6904
6458
|
* @memberof HospitalSpecialtyModel
|
|
6905
6459
|
*/
|
|
6906
|
-
'
|
|
6460
|
+
'specialtyId'?: string;
|
|
6907
6461
|
/**
|
|
6908
6462
|
*
|
|
6909
|
-
* @type {
|
|
6463
|
+
* @type {string}
|
|
6910
6464
|
* @memberof HospitalSpecialtyModel
|
|
6911
6465
|
*/
|
|
6912
|
-
'
|
|
6466
|
+
'specialtyName'?: string | null;
|
|
6913
6467
|
/**
|
|
6914
6468
|
*
|
|
6915
|
-
* @type {
|
|
6469
|
+
* @type {string}
|
|
6916
6470
|
* @memberof HospitalSpecialtyModel
|
|
6917
6471
|
*/
|
|
6918
|
-
'
|
|
6472
|
+
'specialtyTypeId'?: string;
|
|
6919
6473
|
/**
|
|
6920
6474
|
*
|
|
6921
|
-
* @type {
|
|
6475
|
+
* @type {string}
|
|
6922
6476
|
* @memberof HospitalSpecialtyModel
|
|
6923
6477
|
*/
|
|
6924
|
-
'
|
|
6478
|
+
'specialtyTypeName'?: string | null;
|
|
6925
6479
|
/**
|
|
6926
6480
|
*
|
|
6927
|
-
* @type {
|
|
6481
|
+
* @type {number}
|
|
6928
6482
|
* @memberof HospitalSpecialtyModel
|
|
6929
6483
|
*/
|
|
6930
|
-
'
|
|
6484
|
+
'serviceCount'?: number;
|
|
6931
6485
|
/**
|
|
6932
6486
|
*
|
|
6933
|
-
* @type {
|
|
6487
|
+
* @type {Array<HospitalServiceItemModel>}
|
|
6934
6488
|
* @memberof HospitalSpecialtyModel
|
|
6935
6489
|
*/
|
|
6936
|
-
'
|
|
6490
|
+
'serviceList'?: Array<HospitalServiceItemModel> | null;
|
|
6937
6491
|
/**
|
|
6938
6492
|
*
|
|
6939
|
-
* @type {
|
|
6493
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6940
6494
|
* @memberof HospitalSpecialtyModel
|
|
6941
6495
|
*/
|
|
6942
|
-
'
|
|
6496
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6943
6497
|
/**
|
|
6944
6498
|
*
|
|
6945
|
-
* @type {Array<
|
|
6499
|
+
* @type {Array<MediaModel>}
|
|
6946
6500
|
* @memberof HospitalSpecialtyModel
|
|
6947
6501
|
*/
|
|
6948
|
-
'
|
|
6502
|
+
'medias'?: Array<MediaModel> | null;
|
|
6949
6503
|
}
|
|
6950
6504
|
/**
|
|
6951
6505
|
*
|
|
@@ -10045,76 +9599,149 @@ export interface UserModel {
|
|
|
10045
9599
|
/**
|
|
10046
9600
|
*
|
|
10047
9601
|
* @export
|
|
10048
|
-
* @interface
|
|
9602
|
+
* @interface UserTranslationModel
|
|
10049
9603
|
*/
|
|
10050
|
-
export interface
|
|
9604
|
+
export interface UserTranslationModel {
|
|
10051
9605
|
/**
|
|
10052
9606
|
*
|
|
10053
9607
|
* @type {string}
|
|
10054
|
-
* @memberof
|
|
9608
|
+
* @memberof UserTranslationModel
|
|
10055
9609
|
*/
|
|
10056
|
-
'
|
|
9610
|
+
'userId'?: string;
|
|
10057
9611
|
/**
|
|
10058
9612
|
*
|
|
10059
9613
|
* @type {string}
|
|
10060
|
-
* @memberof
|
|
9614
|
+
* @memberof UserTranslationModel
|
|
10061
9615
|
*/
|
|
10062
|
-
'
|
|
9616
|
+
'languageCode'?: string | null;
|
|
10063
9617
|
/**
|
|
10064
9618
|
*
|
|
10065
|
-
* @type {
|
|
10066
|
-
* @memberof
|
|
9619
|
+
* @type {string}
|
|
9620
|
+
* @memberof UserTranslationModel
|
|
10067
9621
|
*/
|
|
10068
|
-
'
|
|
9622
|
+
'firstName'?: string | null;
|
|
10069
9623
|
/**
|
|
10070
9624
|
*
|
|
10071
|
-
* @type {
|
|
10072
|
-
* @memberof
|
|
9625
|
+
* @type {string}
|
|
9626
|
+
* @memberof UserTranslationModel
|
|
10073
9627
|
*/
|
|
10074
|
-
'
|
|
9628
|
+
'middleName'?: string | null;
|
|
10075
9629
|
/**
|
|
10076
9630
|
*
|
|
10077
|
-
* @type {
|
|
10078
|
-
* @memberof
|
|
9631
|
+
* @type {string}
|
|
9632
|
+
* @memberof UserTranslationModel
|
|
10079
9633
|
*/
|
|
10080
|
-
'
|
|
10081
|
-
}
|
|
10082
|
-
/**
|
|
10083
|
-
*
|
|
10084
|
-
* @export
|
|
10085
|
-
* @interface WorkingDayItemModel
|
|
10086
|
-
*/
|
|
10087
|
-
export interface WorkingDayItemModel {
|
|
9634
|
+
'lastName'?: string | null;
|
|
10088
9635
|
/**
|
|
10089
9636
|
*
|
|
10090
9637
|
* @type {string}
|
|
10091
|
-
* @memberof
|
|
9638
|
+
* @memberof UserTranslationModel
|
|
10092
9639
|
*/
|
|
10093
|
-
'
|
|
9640
|
+
'slug'?: string | null;
|
|
10094
9641
|
/**
|
|
10095
9642
|
*
|
|
10096
9643
|
* @type {string}
|
|
10097
|
-
* @memberof
|
|
9644
|
+
* @memberof UserTranslationModel
|
|
10098
9645
|
*/
|
|
10099
|
-
'
|
|
9646
|
+
'overview'?: string | null;
|
|
10100
9647
|
/**
|
|
10101
9648
|
*
|
|
10102
|
-
* @type {
|
|
10103
|
-
* @memberof
|
|
9649
|
+
* @type {string}
|
|
9650
|
+
* @memberof UserTranslationModel
|
|
10104
9651
|
*/
|
|
10105
|
-
'
|
|
9652
|
+
'description'?: string | null;
|
|
10106
9653
|
/**
|
|
10107
9654
|
*
|
|
10108
|
-
* @type {
|
|
10109
|
-
* @memberof
|
|
9655
|
+
* @type {string}
|
|
9656
|
+
* @memberof UserTranslationModel
|
|
10110
9657
|
*/
|
|
10111
|
-
'
|
|
9658
|
+
'content'?: string | null;
|
|
10112
9659
|
/**
|
|
10113
9660
|
*
|
|
10114
9661
|
* @type {boolean}
|
|
10115
|
-
* @memberof
|
|
9662
|
+
* @memberof UserTranslationModel
|
|
10116
9663
|
*/
|
|
10117
|
-
'
|
|
9664
|
+
'confirmed'?: boolean;
|
|
9665
|
+
/**
|
|
9666
|
+
*
|
|
9667
|
+
* @type {AuditableEntity}
|
|
9668
|
+
* @memberof UserTranslationModel
|
|
9669
|
+
*/
|
|
9670
|
+
'auditableEntity'?: AuditableEntity;
|
|
9671
|
+
}
|
|
9672
|
+
/**
|
|
9673
|
+
*
|
|
9674
|
+
* @export
|
|
9675
|
+
* @interface WorkingDay
|
|
9676
|
+
*/
|
|
9677
|
+
export interface WorkingDay {
|
|
9678
|
+
/**
|
|
9679
|
+
*
|
|
9680
|
+
* @type {string}
|
|
9681
|
+
* @memberof WorkingDay
|
|
9682
|
+
*/
|
|
9683
|
+
'id'?: string;
|
|
9684
|
+
/**
|
|
9685
|
+
*
|
|
9686
|
+
* @type {string}
|
|
9687
|
+
* @memberof WorkingDay
|
|
9688
|
+
*/
|
|
9689
|
+
'dayOfWeek'?: string | null;
|
|
9690
|
+
/**
|
|
9691
|
+
*
|
|
9692
|
+
* @type {Date}
|
|
9693
|
+
* @memberof WorkingDay
|
|
9694
|
+
*/
|
|
9695
|
+
'timeFrom'?: Date;
|
|
9696
|
+
/**
|
|
9697
|
+
*
|
|
9698
|
+
* @type {Date}
|
|
9699
|
+
* @memberof WorkingDay
|
|
9700
|
+
*/
|
|
9701
|
+
'timeTo'?: Date;
|
|
9702
|
+
/**
|
|
9703
|
+
*
|
|
9704
|
+
* @type {boolean}
|
|
9705
|
+
* @memberof WorkingDay
|
|
9706
|
+
*/
|
|
9707
|
+
'checkHoliday'?: boolean;
|
|
9708
|
+
}
|
|
9709
|
+
/**
|
|
9710
|
+
*
|
|
9711
|
+
* @export
|
|
9712
|
+
* @interface WorkingDayItemModel
|
|
9713
|
+
*/
|
|
9714
|
+
export interface WorkingDayItemModel {
|
|
9715
|
+
/**
|
|
9716
|
+
*
|
|
9717
|
+
* @type {string}
|
|
9718
|
+
* @memberof WorkingDayItemModel
|
|
9719
|
+
*/
|
|
9720
|
+
'id'?: string;
|
|
9721
|
+
/**
|
|
9722
|
+
*
|
|
9723
|
+
* @type {string}
|
|
9724
|
+
* @memberof WorkingDayItemModel
|
|
9725
|
+
*/
|
|
9726
|
+
'dayOfWeek'?: string | null;
|
|
9727
|
+
/**
|
|
9728
|
+
*
|
|
9729
|
+
* @type {Date}
|
|
9730
|
+
* @memberof WorkingDayItemModel
|
|
9731
|
+
*/
|
|
9732
|
+
'timeFrom'?: Date;
|
|
9733
|
+
/**
|
|
9734
|
+
*
|
|
9735
|
+
* @type {Date}
|
|
9736
|
+
* @memberof WorkingDayItemModel
|
|
9737
|
+
*/
|
|
9738
|
+
'timeTo'?: Date;
|
|
9739
|
+
/**
|
|
9740
|
+
*
|
|
9741
|
+
* @type {boolean}
|
|
9742
|
+
* @memberof WorkingDayItemModel
|
|
9743
|
+
*/
|
|
9744
|
+
'checkHoliday'?: boolean;
|
|
10118
9745
|
}
|
|
10119
9746
|
/**
|
|
10120
9747
|
*
|
|
@@ -19122,7 +18749,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19122
18749
|
* @param {MarketingType} [marketingType]
|
|
19123
18750
|
* @param {string} [specialtyTypeId]
|
|
19124
18751
|
* @param {string} [specialtyId]
|
|
19125
|
-
* @param {string} [serviceId]
|
|
19126
18752
|
* @param {string} [exceptHospitalId]
|
|
19127
18753
|
* @param {boolean} [showHidden]
|
|
19128
18754
|
* @param {string} [languageCode]
|
|
@@ -19135,7 +18761,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19135
18761
|
* @param {*} [options] Override http request option.
|
|
19136
18762
|
* @throws {RequiredError}
|
|
19137
18763
|
*/
|
|
19138
|
-
apiV2HospitalsGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
18764
|
+
apiV2HospitalsGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19139
18765
|
const localVarPath = `/api/v2/hospitals`;
|
|
19140
18766
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
19141
18767
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -19178,10 +18804,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
19178
18804
|
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
19179
18805
|
}
|
|
19180
18806
|
|
|
19181
|
-
if (serviceId !== undefined) {
|
|
19182
|
-
localVarQueryParameter['ServiceId'] = serviceId;
|
|
19183
|
-
}
|
|
19184
|
-
|
|
19185
18807
|
if (exceptHospitalId !== undefined) {
|
|
19186
18808
|
localVarQueryParameter['ExceptHospitalId'] = exceptHospitalId;
|
|
19187
18809
|
}
|
|
@@ -20745,7 +20367,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20745
20367
|
* @param {MarketingType} [marketingType]
|
|
20746
20368
|
* @param {string} [specialtyTypeId]
|
|
20747
20369
|
* @param {string} [specialtyId]
|
|
20748
|
-
* @param {string} [serviceId]
|
|
20749
20370
|
* @param {string} [exceptHospitalId]
|
|
20750
20371
|
* @param {boolean} [showHidden]
|
|
20751
20372
|
* @param {string} [languageCode]
|
|
@@ -20758,7 +20379,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20758
20379
|
* @param {*} [options] Override http request option.
|
|
20759
20380
|
* @throws {RequiredError}
|
|
20760
20381
|
*/
|
|
20761
|
-
apiV2HospitalsSimpleGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
20382
|
+
apiV2HospitalsSimpleGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
20762
20383
|
const localVarPath = `/api/v2/hospitals/simple`;
|
|
20763
20384
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20764
20385
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -20801,10 +20422,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20801
20422
|
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
20802
20423
|
}
|
|
20803
20424
|
|
|
20804
|
-
if (serviceId !== undefined) {
|
|
20805
|
-
localVarQueryParameter['ServiceId'] = serviceId;
|
|
20806
|
-
}
|
|
20807
|
-
|
|
20808
20425
|
if (exceptHospitalId !== undefined) {
|
|
20809
20426
|
localVarQueryParameter['ExceptHospitalId'] = exceptHospitalId;
|
|
20810
20427
|
}
|
|
@@ -20917,7 +20534,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
20917
20534
|
* @param {MarketingType} [marketingType]
|
|
20918
20535
|
* @param {string} [specialtyTypeId]
|
|
20919
20536
|
* @param {string} [specialtyId]
|
|
20920
|
-
* @param {string} [serviceId]
|
|
20921
20537
|
* @param {string} [exceptHospitalId]
|
|
20922
20538
|
* @param {boolean} [showHidden]
|
|
20923
20539
|
* @param {string} [languageCode]
|
|
@@ -20930,8 +20546,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
20930
20546
|
* @param {*} [options] Override http request option.
|
|
20931
20547
|
* @throws {RequiredError}
|
|
20932
20548
|
*/
|
|
20933
|
-
async apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
20934
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId,
|
|
20549
|
+
async apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>> {
|
|
20550
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
|
|
20935
20551
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
20936
20552
|
},
|
|
20937
20553
|
/**
|
|
@@ -21347,7 +20963,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
21347
20963
|
* @param {MarketingType} [marketingType]
|
|
21348
20964
|
* @param {string} [specialtyTypeId]
|
|
21349
20965
|
* @param {string} [specialtyId]
|
|
21350
|
-
* @param {string} [serviceId]
|
|
21351
20966
|
* @param {string} [exceptHospitalId]
|
|
21352
20967
|
* @param {boolean} [showHidden]
|
|
21353
20968
|
* @param {string} [languageCode]
|
|
@@ -21360,8 +20975,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
21360
20975
|
* @param {*} [options] Override http request option.
|
|
21361
20976
|
* @throws {RequiredError}
|
|
21362
20977
|
*/
|
|
21363
|
-
async apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
21364
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId,
|
|
20978
|
+
async apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>> {
|
|
20979
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
|
|
21365
20980
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
21366
20981
|
},
|
|
21367
20982
|
/**
|
|
@@ -21396,7 +21011,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
21396
21011
|
* @param {MarketingType} [marketingType]
|
|
21397
21012
|
* @param {string} [specialtyTypeId]
|
|
21398
21013
|
* @param {string} [specialtyId]
|
|
21399
|
-
* @param {string} [serviceId]
|
|
21400
21014
|
* @param {string} [exceptHospitalId]
|
|
21401
21015
|
* @param {boolean} [showHidden]
|
|
21402
21016
|
* @param {string} [languageCode]
|
|
@@ -21409,8 +21023,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
21409
21023
|
* @param {*} [options] Override http request option.
|
|
21410
21024
|
* @throws {RequiredError}
|
|
21411
21025
|
*/
|
|
21412
|
-
apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
21413
|
-
return localVarFp.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId,
|
|
21026
|
+
apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsModel> {
|
|
21027
|
+
return localVarFp.apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
21414
21028
|
},
|
|
21415
21029
|
/**
|
|
21416
21030
|
*
|
|
@@ -21800,7 +21414,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
21800
21414
|
* @param {MarketingType} [marketingType]
|
|
21801
21415
|
* @param {string} [specialtyTypeId]
|
|
21802
21416
|
* @param {string} [specialtyId]
|
|
21803
|
-
* @param {string} [serviceId]
|
|
21804
21417
|
* @param {string} [exceptHospitalId]
|
|
21805
21418
|
* @param {boolean} [showHidden]
|
|
21806
21419
|
* @param {string} [languageCode]
|
|
@@ -21813,8 +21426,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
21813
21426
|
* @param {*} [options] Override http request option.
|
|
21814
21427
|
* @throws {RequiredError}
|
|
21815
21428
|
*/
|
|
21816
|
-
apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
21817
|
-
return localVarFp.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId,
|
|
21429
|
+
apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsSimpleModel> {
|
|
21430
|
+
return localVarFp.apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
21818
21431
|
},
|
|
21819
21432
|
/**
|
|
21820
21433
|
*
|
|
@@ -21847,7 +21460,6 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21847
21460
|
* @param {MarketingType} [marketingType]
|
|
21848
21461
|
* @param {string} [specialtyTypeId]
|
|
21849
21462
|
* @param {string} [specialtyId]
|
|
21850
|
-
* @param {string} [serviceId]
|
|
21851
21463
|
* @param {string} [exceptHospitalId]
|
|
21852
21464
|
* @param {boolean} [showHidden]
|
|
21853
21465
|
* @param {string} [languageCode]
|
|
@@ -21861,8 +21473,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
21861
21473
|
* @throws {RequiredError}
|
|
21862
21474
|
* @memberof HospitalsApi
|
|
21863
21475
|
*/
|
|
21864
|
-
public apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
21865
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId,
|
|
21476
|
+
public apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
21477
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
21866
21478
|
}
|
|
21867
21479
|
|
|
21868
21480
|
/**
|
|
@@ -22303,7 +21915,6 @@ export class HospitalsApi extends BaseAPI {
|
|
|
22303
21915
|
* @param {MarketingType} [marketingType]
|
|
22304
21916
|
* @param {string} [specialtyTypeId]
|
|
22305
21917
|
* @param {string} [specialtyId]
|
|
22306
|
-
* @param {string} [serviceId]
|
|
22307
21918
|
* @param {string} [exceptHospitalId]
|
|
22308
21919
|
* @param {boolean} [showHidden]
|
|
22309
21920
|
* @param {string} [languageCode]
|
|
@@ -22317,8 +21928,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
22317
21928
|
* @throws {RequiredError}
|
|
22318
21929
|
* @memberof HospitalsApi
|
|
22319
21930
|
*/
|
|
22320
|
-
public apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
22321
|
-
return HospitalsApiFp(this.configuration).apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId,
|
|
21931
|
+
public apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
21932
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
22322
21933
|
}
|
|
22323
21934
|
|
|
22324
21935
|
/**
|
|
@@ -24301,1020 +23912,6 @@ export class ProfilesApi extends BaseAPI {
|
|
|
24301
23912
|
}
|
|
24302
23913
|
|
|
24303
23914
|
|
|
24304
|
-
/**
|
|
24305
|
-
* SearchApi - axios parameter creator
|
|
24306
|
-
* @export
|
|
24307
|
-
*/
|
|
24308
|
-
export const SearchApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
24309
|
-
return {
|
|
24310
|
-
/**
|
|
24311
|
-
*
|
|
24312
|
-
* @param {string} keyword
|
|
24313
|
-
* @param {AutocompleteMode} [mode]
|
|
24314
|
-
* @param {boolean} [fuzzy]
|
|
24315
|
-
* @param {boolean} [highlights]
|
|
24316
|
-
* @param {number} [size]
|
|
24317
|
-
* @param {number} [minimumCoverage]
|
|
24318
|
-
* @param {*} [options] Override http request option.
|
|
24319
|
-
* @throws {RequiredError}
|
|
24320
|
-
*/
|
|
24321
|
-
apiV2SearchAutocompleteGet: async (keyword: string, mode?: AutocompleteMode, fuzzy?: boolean, highlights?: boolean, size?: number, minimumCoverage?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24322
|
-
// verify required parameter 'keyword' is not null or undefined
|
|
24323
|
-
assertParamExists('apiV2SearchAutocompleteGet', 'keyword', keyword)
|
|
24324
|
-
const localVarPath = `/api/v2/search/autocomplete`;
|
|
24325
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24326
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24327
|
-
let baseOptions;
|
|
24328
|
-
if (configuration) {
|
|
24329
|
-
baseOptions = configuration.baseOptions;
|
|
24330
|
-
}
|
|
24331
|
-
|
|
24332
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
24333
|
-
const localVarHeaderParameter = {} as any;
|
|
24334
|
-
const localVarQueryParameter = {} as any;
|
|
24335
|
-
|
|
24336
|
-
if (mode !== undefined) {
|
|
24337
|
-
localVarQueryParameter['Mode'] = mode;
|
|
24338
|
-
}
|
|
24339
|
-
|
|
24340
|
-
if (keyword !== undefined) {
|
|
24341
|
-
localVarQueryParameter['Keyword'] = keyword;
|
|
24342
|
-
}
|
|
24343
|
-
|
|
24344
|
-
if (fuzzy !== undefined) {
|
|
24345
|
-
localVarQueryParameter['Fuzzy'] = fuzzy;
|
|
24346
|
-
}
|
|
24347
|
-
|
|
24348
|
-
if (highlights !== undefined) {
|
|
24349
|
-
localVarQueryParameter['Highlights'] = highlights;
|
|
24350
|
-
}
|
|
24351
|
-
|
|
24352
|
-
if (size !== undefined) {
|
|
24353
|
-
localVarQueryParameter['Size'] = size;
|
|
24354
|
-
}
|
|
24355
|
-
|
|
24356
|
-
if (minimumCoverage !== undefined) {
|
|
24357
|
-
localVarQueryParameter['MinimumCoverage'] = minimumCoverage;
|
|
24358
|
-
}
|
|
24359
|
-
|
|
24360
|
-
|
|
24361
|
-
|
|
24362
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
24363
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
24364
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
24365
|
-
|
|
24366
|
-
return {
|
|
24367
|
-
url: toPathString(localVarUrlObj),
|
|
24368
|
-
options: localVarRequestOptions,
|
|
24369
|
-
};
|
|
24370
|
-
},
|
|
24371
|
-
/**
|
|
24372
|
-
*
|
|
24373
|
-
* @param {string} [searchTerm]
|
|
24374
|
-
* @param {boolean} [countOnly]
|
|
24375
|
-
* @param {string} [countryId]
|
|
24376
|
-
* @param {string} [hospitalId]
|
|
24377
|
-
* @param {MarketingType} [marketingType]
|
|
24378
|
-
* @param {string} [languageCode]
|
|
24379
|
-
* @param {number} [page]
|
|
24380
|
-
* @param {number} [limit]
|
|
24381
|
-
* @param {Date} [lastRetrieved]
|
|
24382
|
-
* @param {*} [options] Override http request option.
|
|
24383
|
-
* @throws {RequiredError}
|
|
24384
|
-
*/
|
|
24385
|
-
apiV2SearchDealsGet: async (searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24386
|
-
const localVarPath = `/api/v2/search/deals`;
|
|
24387
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24388
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24389
|
-
let baseOptions;
|
|
24390
|
-
if (configuration) {
|
|
24391
|
-
baseOptions = configuration.baseOptions;
|
|
24392
|
-
}
|
|
24393
|
-
|
|
24394
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
24395
|
-
const localVarHeaderParameter = {} as any;
|
|
24396
|
-
const localVarQueryParameter = {} as any;
|
|
24397
|
-
|
|
24398
|
-
if (searchTerm !== undefined) {
|
|
24399
|
-
localVarQueryParameter['SearchTerm'] = searchTerm;
|
|
24400
|
-
}
|
|
24401
|
-
|
|
24402
|
-
if (countOnly !== undefined) {
|
|
24403
|
-
localVarQueryParameter['CountOnly'] = countOnly;
|
|
24404
|
-
}
|
|
24405
|
-
|
|
24406
|
-
if (countryId !== undefined) {
|
|
24407
|
-
localVarQueryParameter['CountryId'] = countryId;
|
|
24408
|
-
}
|
|
24409
|
-
|
|
24410
|
-
if (hospitalId !== undefined) {
|
|
24411
|
-
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
24412
|
-
}
|
|
24413
|
-
|
|
24414
|
-
if (marketingType !== undefined) {
|
|
24415
|
-
localVarQueryParameter['MarketingType'] = marketingType;
|
|
24416
|
-
}
|
|
24417
|
-
|
|
24418
|
-
if (languageCode !== undefined) {
|
|
24419
|
-
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
24420
|
-
}
|
|
24421
|
-
|
|
24422
|
-
if (page !== undefined) {
|
|
24423
|
-
localVarQueryParameter['page'] = page;
|
|
24424
|
-
}
|
|
24425
|
-
|
|
24426
|
-
if (limit !== undefined) {
|
|
24427
|
-
localVarQueryParameter['limit'] = limit;
|
|
24428
|
-
}
|
|
24429
|
-
|
|
24430
|
-
if (lastRetrieved !== undefined) {
|
|
24431
|
-
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
24432
|
-
(lastRetrieved as any).toISOString() :
|
|
24433
|
-
lastRetrieved;
|
|
24434
|
-
}
|
|
24435
|
-
|
|
24436
|
-
|
|
24437
|
-
|
|
24438
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
24439
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
24440
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
24441
|
-
|
|
24442
|
-
return {
|
|
24443
|
-
url: toPathString(localVarUrlObj),
|
|
24444
|
-
options: localVarRequestOptions,
|
|
24445
|
-
};
|
|
24446
|
-
},
|
|
24447
|
-
/**
|
|
24448
|
-
*
|
|
24449
|
-
* @param {string} [searchTerm]
|
|
24450
|
-
* @param {boolean} [countOnly]
|
|
24451
|
-
* @param {string} [countryId]
|
|
24452
|
-
* @param {string} [hospitalId]
|
|
24453
|
-
* @param {MarketingType} [marketingType]
|
|
24454
|
-
* @param {string} [languageCode]
|
|
24455
|
-
* @param {number} [page]
|
|
24456
|
-
* @param {number} [limit]
|
|
24457
|
-
* @param {Date} [lastRetrieved]
|
|
24458
|
-
* @param {*} [options] Override http request option.
|
|
24459
|
-
* @throws {RequiredError}
|
|
24460
|
-
*/
|
|
24461
|
-
apiV2SearchDoctorsGet: async (searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24462
|
-
const localVarPath = `/api/v2/search/doctors`;
|
|
24463
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24464
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24465
|
-
let baseOptions;
|
|
24466
|
-
if (configuration) {
|
|
24467
|
-
baseOptions = configuration.baseOptions;
|
|
24468
|
-
}
|
|
24469
|
-
|
|
24470
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
24471
|
-
const localVarHeaderParameter = {} as any;
|
|
24472
|
-
const localVarQueryParameter = {} as any;
|
|
24473
|
-
|
|
24474
|
-
if (searchTerm !== undefined) {
|
|
24475
|
-
localVarQueryParameter['SearchTerm'] = searchTerm;
|
|
24476
|
-
}
|
|
24477
|
-
|
|
24478
|
-
if (countOnly !== undefined) {
|
|
24479
|
-
localVarQueryParameter['CountOnly'] = countOnly;
|
|
24480
|
-
}
|
|
24481
|
-
|
|
24482
|
-
if (countryId !== undefined) {
|
|
24483
|
-
localVarQueryParameter['CountryId'] = countryId;
|
|
24484
|
-
}
|
|
24485
|
-
|
|
24486
|
-
if (hospitalId !== undefined) {
|
|
24487
|
-
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
24488
|
-
}
|
|
24489
|
-
|
|
24490
|
-
if (marketingType !== undefined) {
|
|
24491
|
-
localVarQueryParameter['MarketingType'] = marketingType;
|
|
24492
|
-
}
|
|
24493
|
-
|
|
24494
|
-
if (languageCode !== undefined) {
|
|
24495
|
-
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
24496
|
-
}
|
|
24497
|
-
|
|
24498
|
-
if (page !== undefined) {
|
|
24499
|
-
localVarQueryParameter['page'] = page;
|
|
24500
|
-
}
|
|
24501
|
-
|
|
24502
|
-
if (limit !== undefined) {
|
|
24503
|
-
localVarQueryParameter['limit'] = limit;
|
|
24504
|
-
}
|
|
24505
|
-
|
|
24506
|
-
if (lastRetrieved !== undefined) {
|
|
24507
|
-
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
24508
|
-
(lastRetrieved as any).toISOString() :
|
|
24509
|
-
lastRetrieved;
|
|
24510
|
-
}
|
|
24511
|
-
|
|
24512
|
-
|
|
24513
|
-
|
|
24514
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
24515
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
24516
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
24517
|
-
|
|
24518
|
-
return {
|
|
24519
|
-
url: toPathString(localVarUrlObj),
|
|
24520
|
-
options: localVarRequestOptions,
|
|
24521
|
-
};
|
|
24522
|
-
},
|
|
24523
|
-
/**
|
|
24524
|
-
*
|
|
24525
|
-
* @param {string} [searchTerm]
|
|
24526
|
-
* @param {boolean} [countOnly]
|
|
24527
|
-
* @param {string} [countryId]
|
|
24528
|
-
* @param {string} [hospitalId]
|
|
24529
|
-
* @param {MarketingType} [marketingType]
|
|
24530
|
-
* @param {string} [languageCode]
|
|
24531
|
-
* @param {number} [page]
|
|
24532
|
-
* @param {number} [limit]
|
|
24533
|
-
* @param {Date} [lastRetrieved]
|
|
24534
|
-
* @param {*} [options] Override http request option.
|
|
24535
|
-
* @throws {RequiredError}
|
|
24536
|
-
*/
|
|
24537
|
-
apiV2SearchGetcountGet: async (searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24538
|
-
const localVarPath = `/api/v2/search/getcount`;
|
|
24539
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24540
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24541
|
-
let baseOptions;
|
|
24542
|
-
if (configuration) {
|
|
24543
|
-
baseOptions = configuration.baseOptions;
|
|
24544
|
-
}
|
|
24545
|
-
|
|
24546
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
24547
|
-
const localVarHeaderParameter = {} as any;
|
|
24548
|
-
const localVarQueryParameter = {} as any;
|
|
24549
|
-
|
|
24550
|
-
if (searchTerm !== undefined) {
|
|
24551
|
-
localVarQueryParameter['SearchTerm'] = searchTerm;
|
|
24552
|
-
}
|
|
24553
|
-
|
|
24554
|
-
if (countOnly !== undefined) {
|
|
24555
|
-
localVarQueryParameter['CountOnly'] = countOnly;
|
|
24556
|
-
}
|
|
24557
|
-
|
|
24558
|
-
if (countryId !== undefined) {
|
|
24559
|
-
localVarQueryParameter['CountryId'] = countryId;
|
|
24560
|
-
}
|
|
24561
|
-
|
|
24562
|
-
if (hospitalId !== undefined) {
|
|
24563
|
-
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
24564
|
-
}
|
|
24565
|
-
|
|
24566
|
-
if (marketingType !== undefined) {
|
|
24567
|
-
localVarQueryParameter['MarketingType'] = marketingType;
|
|
24568
|
-
}
|
|
24569
|
-
|
|
24570
|
-
if (languageCode !== undefined) {
|
|
24571
|
-
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
24572
|
-
}
|
|
24573
|
-
|
|
24574
|
-
if (page !== undefined) {
|
|
24575
|
-
localVarQueryParameter['page'] = page;
|
|
24576
|
-
}
|
|
24577
|
-
|
|
24578
|
-
if (limit !== undefined) {
|
|
24579
|
-
localVarQueryParameter['limit'] = limit;
|
|
24580
|
-
}
|
|
24581
|
-
|
|
24582
|
-
if (lastRetrieved !== undefined) {
|
|
24583
|
-
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
24584
|
-
(lastRetrieved as any).toISOString() :
|
|
24585
|
-
lastRetrieved;
|
|
24586
|
-
}
|
|
24587
|
-
|
|
24588
|
-
|
|
24589
|
-
|
|
24590
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
24591
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
24592
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
24593
|
-
|
|
24594
|
-
return {
|
|
24595
|
-
url: toPathString(localVarUrlObj),
|
|
24596
|
-
options: localVarRequestOptions,
|
|
24597
|
-
};
|
|
24598
|
-
},
|
|
24599
|
-
/**
|
|
24600
|
-
*
|
|
24601
|
-
* @param {string} [searchTerm]
|
|
24602
|
-
* @param {boolean} [countOnly]
|
|
24603
|
-
* @param {string} [countryId]
|
|
24604
|
-
* @param {string} [hospitalId]
|
|
24605
|
-
* @param {MarketingType} [marketingType]
|
|
24606
|
-
* @param {string} [languageCode]
|
|
24607
|
-
* @param {number} [page]
|
|
24608
|
-
* @param {number} [limit]
|
|
24609
|
-
* @param {Date} [lastRetrieved]
|
|
24610
|
-
* @param {*} [options] Override http request option.
|
|
24611
|
-
* @throws {RequiredError}
|
|
24612
|
-
*/
|
|
24613
|
-
apiV2SearchHospitalsGet: async (searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24614
|
-
const localVarPath = `/api/v2/search/hospitals`;
|
|
24615
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24616
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24617
|
-
let baseOptions;
|
|
24618
|
-
if (configuration) {
|
|
24619
|
-
baseOptions = configuration.baseOptions;
|
|
24620
|
-
}
|
|
24621
|
-
|
|
24622
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
24623
|
-
const localVarHeaderParameter = {} as any;
|
|
24624
|
-
const localVarQueryParameter = {} as any;
|
|
24625
|
-
|
|
24626
|
-
if (searchTerm !== undefined) {
|
|
24627
|
-
localVarQueryParameter['SearchTerm'] = searchTerm;
|
|
24628
|
-
}
|
|
24629
|
-
|
|
24630
|
-
if (countOnly !== undefined) {
|
|
24631
|
-
localVarQueryParameter['CountOnly'] = countOnly;
|
|
24632
|
-
}
|
|
24633
|
-
|
|
24634
|
-
if (countryId !== undefined) {
|
|
24635
|
-
localVarQueryParameter['CountryId'] = countryId;
|
|
24636
|
-
}
|
|
24637
|
-
|
|
24638
|
-
if (hospitalId !== undefined) {
|
|
24639
|
-
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
24640
|
-
}
|
|
24641
|
-
|
|
24642
|
-
if (marketingType !== undefined) {
|
|
24643
|
-
localVarQueryParameter['MarketingType'] = marketingType;
|
|
24644
|
-
}
|
|
24645
|
-
|
|
24646
|
-
if (languageCode !== undefined) {
|
|
24647
|
-
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
24648
|
-
}
|
|
24649
|
-
|
|
24650
|
-
if (page !== undefined) {
|
|
24651
|
-
localVarQueryParameter['page'] = page;
|
|
24652
|
-
}
|
|
24653
|
-
|
|
24654
|
-
if (limit !== undefined) {
|
|
24655
|
-
localVarQueryParameter['limit'] = limit;
|
|
24656
|
-
}
|
|
24657
|
-
|
|
24658
|
-
if (lastRetrieved !== undefined) {
|
|
24659
|
-
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
24660
|
-
(lastRetrieved as any).toISOString() :
|
|
24661
|
-
lastRetrieved;
|
|
24662
|
-
}
|
|
24663
|
-
|
|
24664
|
-
|
|
24665
|
-
|
|
24666
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
24667
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
24668
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
24669
|
-
|
|
24670
|
-
return {
|
|
24671
|
-
url: toPathString(localVarUrlObj),
|
|
24672
|
-
options: localVarRequestOptions,
|
|
24673
|
-
};
|
|
24674
|
-
},
|
|
24675
|
-
/**
|
|
24676
|
-
*
|
|
24677
|
-
* @param {string} [searchTerm]
|
|
24678
|
-
* @param {boolean} [countOnly]
|
|
24679
|
-
* @param {string} [countryId]
|
|
24680
|
-
* @param {string} [hospitalId]
|
|
24681
|
-
* @param {MarketingType} [marketingType]
|
|
24682
|
-
* @param {string} [languageCode]
|
|
24683
|
-
* @param {number} [page]
|
|
24684
|
-
* @param {number} [limit]
|
|
24685
|
-
* @param {Date} [lastRetrieved]
|
|
24686
|
-
* @param {*} [options] Override http request option.
|
|
24687
|
-
* @throws {RequiredError}
|
|
24688
|
-
*/
|
|
24689
|
-
apiV2SearchSpecialtiesGet: async (searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24690
|
-
const localVarPath = `/api/v2/search/specialties`;
|
|
24691
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24692
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24693
|
-
let baseOptions;
|
|
24694
|
-
if (configuration) {
|
|
24695
|
-
baseOptions = configuration.baseOptions;
|
|
24696
|
-
}
|
|
24697
|
-
|
|
24698
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
24699
|
-
const localVarHeaderParameter = {} as any;
|
|
24700
|
-
const localVarQueryParameter = {} as any;
|
|
24701
|
-
|
|
24702
|
-
if (searchTerm !== undefined) {
|
|
24703
|
-
localVarQueryParameter['SearchTerm'] = searchTerm;
|
|
24704
|
-
}
|
|
24705
|
-
|
|
24706
|
-
if (countOnly !== undefined) {
|
|
24707
|
-
localVarQueryParameter['CountOnly'] = countOnly;
|
|
24708
|
-
}
|
|
24709
|
-
|
|
24710
|
-
if (countryId !== undefined) {
|
|
24711
|
-
localVarQueryParameter['CountryId'] = countryId;
|
|
24712
|
-
}
|
|
24713
|
-
|
|
24714
|
-
if (hospitalId !== undefined) {
|
|
24715
|
-
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
24716
|
-
}
|
|
24717
|
-
|
|
24718
|
-
if (marketingType !== undefined) {
|
|
24719
|
-
localVarQueryParameter['MarketingType'] = marketingType;
|
|
24720
|
-
}
|
|
24721
|
-
|
|
24722
|
-
if (languageCode !== undefined) {
|
|
24723
|
-
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
24724
|
-
}
|
|
24725
|
-
|
|
24726
|
-
if (page !== undefined) {
|
|
24727
|
-
localVarQueryParameter['page'] = page;
|
|
24728
|
-
}
|
|
24729
|
-
|
|
24730
|
-
if (limit !== undefined) {
|
|
24731
|
-
localVarQueryParameter['limit'] = limit;
|
|
24732
|
-
}
|
|
24733
|
-
|
|
24734
|
-
if (lastRetrieved !== undefined) {
|
|
24735
|
-
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
24736
|
-
(lastRetrieved as any).toISOString() :
|
|
24737
|
-
lastRetrieved;
|
|
24738
|
-
}
|
|
24739
|
-
|
|
24740
|
-
|
|
24741
|
-
|
|
24742
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
24743
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
24744
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
24745
|
-
|
|
24746
|
-
return {
|
|
24747
|
-
url: toPathString(localVarUrlObj),
|
|
24748
|
-
options: localVarRequestOptions,
|
|
24749
|
-
};
|
|
24750
|
-
},
|
|
24751
|
-
/**
|
|
24752
|
-
*
|
|
24753
|
-
* @param {string} [searchTerm]
|
|
24754
|
-
* @param {boolean} [countOnly]
|
|
24755
|
-
* @param {string} [countryId]
|
|
24756
|
-
* @param {string} [hospitalId]
|
|
24757
|
-
* @param {MarketingType} [marketingType]
|
|
24758
|
-
* @param {string} [languageCode]
|
|
24759
|
-
* @param {number} [page]
|
|
24760
|
-
* @param {number} [limit]
|
|
24761
|
-
* @param {Date} [lastRetrieved]
|
|
24762
|
-
* @param {*} [options] Override http request option.
|
|
24763
|
-
* @throws {RequiredError}
|
|
24764
|
-
*/
|
|
24765
|
-
apiV2SearchSpecialtytypesGet: async (searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24766
|
-
const localVarPath = `/api/v2/search/specialtytypes`;
|
|
24767
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24768
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24769
|
-
let baseOptions;
|
|
24770
|
-
if (configuration) {
|
|
24771
|
-
baseOptions = configuration.baseOptions;
|
|
24772
|
-
}
|
|
24773
|
-
|
|
24774
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
24775
|
-
const localVarHeaderParameter = {} as any;
|
|
24776
|
-
const localVarQueryParameter = {} as any;
|
|
24777
|
-
|
|
24778
|
-
if (searchTerm !== undefined) {
|
|
24779
|
-
localVarQueryParameter['SearchTerm'] = searchTerm;
|
|
24780
|
-
}
|
|
24781
|
-
|
|
24782
|
-
if (countOnly !== undefined) {
|
|
24783
|
-
localVarQueryParameter['CountOnly'] = countOnly;
|
|
24784
|
-
}
|
|
24785
|
-
|
|
24786
|
-
if (countryId !== undefined) {
|
|
24787
|
-
localVarQueryParameter['CountryId'] = countryId;
|
|
24788
|
-
}
|
|
24789
|
-
|
|
24790
|
-
if (hospitalId !== undefined) {
|
|
24791
|
-
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
24792
|
-
}
|
|
24793
|
-
|
|
24794
|
-
if (marketingType !== undefined) {
|
|
24795
|
-
localVarQueryParameter['MarketingType'] = marketingType;
|
|
24796
|
-
}
|
|
24797
|
-
|
|
24798
|
-
if (languageCode !== undefined) {
|
|
24799
|
-
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
24800
|
-
}
|
|
24801
|
-
|
|
24802
|
-
if (page !== undefined) {
|
|
24803
|
-
localVarQueryParameter['page'] = page;
|
|
24804
|
-
}
|
|
24805
|
-
|
|
24806
|
-
if (limit !== undefined) {
|
|
24807
|
-
localVarQueryParameter['limit'] = limit;
|
|
24808
|
-
}
|
|
24809
|
-
|
|
24810
|
-
if (lastRetrieved !== undefined) {
|
|
24811
|
-
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
24812
|
-
(lastRetrieved as any).toISOString() :
|
|
24813
|
-
lastRetrieved;
|
|
24814
|
-
}
|
|
24815
|
-
|
|
24816
|
-
|
|
24817
|
-
|
|
24818
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
24819
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
24820
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
24821
|
-
|
|
24822
|
-
return {
|
|
24823
|
-
url: toPathString(localVarUrlObj),
|
|
24824
|
-
options: localVarRequestOptions,
|
|
24825
|
-
};
|
|
24826
|
-
},
|
|
24827
|
-
/**
|
|
24828
|
-
*
|
|
24829
|
-
* @param {string} keyword
|
|
24830
|
-
* @param {boolean} [fuzzy]
|
|
24831
|
-
* @param {boolean} [highlights]
|
|
24832
|
-
* @param {number} [size]
|
|
24833
|
-
* @param {*} [options] Override http request option.
|
|
24834
|
-
* @throws {RequiredError}
|
|
24835
|
-
*/
|
|
24836
|
-
apiV2SearchSuggestGet: async (keyword: string, fuzzy?: boolean, highlights?: boolean, size?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24837
|
-
// verify required parameter 'keyword' is not null or undefined
|
|
24838
|
-
assertParamExists('apiV2SearchSuggestGet', 'keyword', keyword)
|
|
24839
|
-
const localVarPath = `/api/v2/search/suggest`;
|
|
24840
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24841
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24842
|
-
let baseOptions;
|
|
24843
|
-
if (configuration) {
|
|
24844
|
-
baseOptions = configuration.baseOptions;
|
|
24845
|
-
}
|
|
24846
|
-
|
|
24847
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
24848
|
-
const localVarHeaderParameter = {} as any;
|
|
24849
|
-
const localVarQueryParameter = {} as any;
|
|
24850
|
-
|
|
24851
|
-
if (keyword !== undefined) {
|
|
24852
|
-
localVarQueryParameter['Keyword'] = keyword;
|
|
24853
|
-
}
|
|
24854
|
-
|
|
24855
|
-
if (fuzzy !== undefined) {
|
|
24856
|
-
localVarQueryParameter['Fuzzy'] = fuzzy;
|
|
24857
|
-
}
|
|
24858
|
-
|
|
24859
|
-
if (highlights !== undefined) {
|
|
24860
|
-
localVarQueryParameter['Highlights'] = highlights;
|
|
24861
|
-
}
|
|
24862
|
-
|
|
24863
|
-
if (size !== undefined) {
|
|
24864
|
-
localVarQueryParameter['Size'] = size;
|
|
24865
|
-
}
|
|
24866
|
-
|
|
24867
|
-
|
|
24868
|
-
|
|
24869
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
24870
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
24871
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
24872
|
-
|
|
24873
|
-
return {
|
|
24874
|
-
url: toPathString(localVarUrlObj),
|
|
24875
|
-
options: localVarRequestOptions,
|
|
24876
|
-
};
|
|
24877
|
-
},
|
|
24878
|
-
}
|
|
24879
|
-
};
|
|
24880
|
-
|
|
24881
|
-
/**
|
|
24882
|
-
* SearchApi - functional programming interface
|
|
24883
|
-
* @export
|
|
24884
|
-
*/
|
|
24885
|
-
export const SearchApiFp = function(configuration?: Configuration) {
|
|
24886
|
-
const localVarAxiosParamCreator = SearchApiAxiosParamCreator(configuration)
|
|
24887
|
-
return {
|
|
24888
|
-
/**
|
|
24889
|
-
*
|
|
24890
|
-
* @param {string} keyword
|
|
24891
|
-
* @param {AutocompleteMode} [mode]
|
|
24892
|
-
* @param {boolean} [fuzzy]
|
|
24893
|
-
* @param {boolean} [highlights]
|
|
24894
|
-
* @param {number} [size]
|
|
24895
|
-
* @param {number} [minimumCoverage]
|
|
24896
|
-
* @param {*} [options] Override http request option.
|
|
24897
|
-
* @throws {RequiredError}
|
|
24898
|
-
*/
|
|
24899
|
-
async apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode, fuzzy?: boolean, highlights?: boolean, size?: number, minimumCoverage?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AzureSearchServiceAutocompleteModel>> {
|
|
24900
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SearchAutocompleteGet(keyword, mode, fuzzy, highlights, size, minimumCoverage, options);
|
|
24901
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24902
|
-
},
|
|
24903
|
-
/**
|
|
24904
|
-
*
|
|
24905
|
-
* @param {string} [searchTerm]
|
|
24906
|
-
* @param {boolean} [countOnly]
|
|
24907
|
-
* @param {string} [countryId]
|
|
24908
|
-
* @param {string} [hospitalId]
|
|
24909
|
-
* @param {MarketingType} [marketingType]
|
|
24910
|
-
* @param {string} [languageCode]
|
|
24911
|
-
* @param {number} [page]
|
|
24912
|
-
* @param {number} [limit]
|
|
24913
|
-
* @param {Date} [lastRetrieved]
|
|
24914
|
-
* @param {*} [options] Override http request option.
|
|
24915
|
-
* @throws {RequiredError}
|
|
24916
|
-
*/
|
|
24917
|
-
async apiV2SearchDealsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealsModel>> {
|
|
24918
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SearchDealsGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options);
|
|
24919
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24920
|
-
},
|
|
24921
|
-
/**
|
|
24922
|
-
*
|
|
24923
|
-
* @param {string} [searchTerm]
|
|
24924
|
-
* @param {boolean} [countOnly]
|
|
24925
|
-
* @param {string} [countryId]
|
|
24926
|
-
* @param {string} [hospitalId]
|
|
24927
|
-
* @param {MarketingType} [marketingType]
|
|
24928
|
-
* @param {string} [languageCode]
|
|
24929
|
-
* @param {number} [page]
|
|
24930
|
-
* @param {number} [limit]
|
|
24931
|
-
* @param {Date} [lastRetrieved]
|
|
24932
|
-
* @param {*} [options] Override http request option.
|
|
24933
|
-
* @throws {RequiredError}
|
|
24934
|
-
*/
|
|
24935
|
-
async apiV2SearchDoctorsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsModel>> {
|
|
24936
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SearchDoctorsGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options);
|
|
24937
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24938
|
-
},
|
|
24939
|
-
/**
|
|
24940
|
-
*
|
|
24941
|
-
* @param {string} [searchTerm]
|
|
24942
|
-
* @param {boolean} [countOnly]
|
|
24943
|
-
* @param {string} [countryId]
|
|
24944
|
-
* @param {string} [hospitalId]
|
|
24945
|
-
* @param {MarketingType} [marketingType]
|
|
24946
|
-
* @param {string} [languageCode]
|
|
24947
|
-
* @param {number} [page]
|
|
24948
|
-
* @param {number} [limit]
|
|
24949
|
-
* @param {Date} [lastRetrieved]
|
|
24950
|
-
* @param {*} [options] Override http request option.
|
|
24951
|
-
* @throws {RequiredError}
|
|
24952
|
-
*/
|
|
24953
|
-
async apiV2SearchGetcountGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AzureSearchModel>> {
|
|
24954
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SearchGetcountGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options);
|
|
24955
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24956
|
-
},
|
|
24957
|
-
/**
|
|
24958
|
-
*
|
|
24959
|
-
* @param {string} [searchTerm]
|
|
24960
|
-
* @param {boolean} [countOnly]
|
|
24961
|
-
* @param {string} [countryId]
|
|
24962
|
-
* @param {string} [hospitalId]
|
|
24963
|
-
* @param {MarketingType} [marketingType]
|
|
24964
|
-
* @param {string} [languageCode]
|
|
24965
|
-
* @param {number} [page]
|
|
24966
|
-
* @param {number} [limit]
|
|
24967
|
-
* @param {Date} [lastRetrieved]
|
|
24968
|
-
* @param {*} [options] Override http request option.
|
|
24969
|
-
* @throws {RequiredError}
|
|
24970
|
-
*/
|
|
24971
|
-
async apiV2SearchHospitalsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>> {
|
|
24972
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SearchHospitalsGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options);
|
|
24973
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24974
|
-
},
|
|
24975
|
-
/**
|
|
24976
|
-
*
|
|
24977
|
-
* @param {string} [searchTerm]
|
|
24978
|
-
* @param {boolean} [countOnly]
|
|
24979
|
-
* @param {string} [countryId]
|
|
24980
|
-
* @param {string} [hospitalId]
|
|
24981
|
-
* @param {MarketingType} [marketingType]
|
|
24982
|
-
* @param {string} [languageCode]
|
|
24983
|
-
* @param {number} [page]
|
|
24984
|
-
* @param {number} [limit]
|
|
24985
|
-
* @param {Date} [lastRetrieved]
|
|
24986
|
-
* @param {*} [options] Override http request option.
|
|
24987
|
-
* @throws {RequiredError}
|
|
24988
|
-
*/
|
|
24989
|
-
async apiV2SearchSpecialtiesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtiesModel>> {
|
|
24990
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SearchSpecialtiesGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options);
|
|
24991
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24992
|
-
},
|
|
24993
|
-
/**
|
|
24994
|
-
*
|
|
24995
|
-
* @param {string} [searchTerm]
|
|
24996
|
-
* @param {boolean} [countOnly]
|
|
24997
|
-
* @param {string} [countryId]
|
|
24998
|
-
* @param {string} [hospitalId]
|
|
24999
|
-
* @param {MarketingType} [marketingType]
|
|
25000
|
-
* @param {string} [languageCode]
|
|
25001
|
-
* @param {number} [page]
|
|
25002
|
-
* @param {number} [limit]
|
|
25003
|
-
* @param {Date} [lastRetrieved]
|
|
25004
|
-
* @param {*} [options] Override http request option.
|
|
25005
|
-
* @throws {RequiredError}
|
|
25006
|
-
*/
|
|
25007
|
-
async apiV2SearchSpecialtytypesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyTypesModel>> {
|
|
25008
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SearchSpecialtytypesGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options);
|
|
25009
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
25010
|
-
},
|
|
25011
|
-
/**
|
|
25012
|
-
*
|
|
25013
|
-
* @param {string} keyword
|
|
25014
|
-
* @param {boolean} [fuzzy]
|
|
25015
|
-
* @param {boolean} [highlights]
|
|
25016
|
-
* @param {number} [size]
|
|
25017
|
-
* @param {*} [options] Override http request option.
|
|
25018
|
-
* @throws {RequiredError}
|
|
25019
|
-
*/
|
|
25020
|
-
async apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean, highlights?: boolean, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AzureSearchServiceSuggestModel>> {
|
|
25021
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SearchSuggestGet(keyword, fuzzy, highlights, size, options);
|
|
25022
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
25023
|
-
},
|
|
25024
|
-
}
|
|
25025
|
-
};
|
|
25026
|
-
|
|
25027
|
-
/**
|
|
25028
|
-
* SearchApi - factory interface
|
|
25029
|
-
* @export
|
|
25030
|
-
*/
|
|
25031
|
-
export const SearchApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
25032
|
-
const localVarFp = SearchApiFp(configuration)
|
|
25033
|
-
return {
|
|
25034
|
-
/**
|
|
25035
|
-
*
|
|
25036
|
-
* @param {string} keyword
|
|
25037
|
-
* @param {AutocompleteMode} [mode]
|
|
25038
|
-
* @param {boolean} [fuzzy]
|
|
25039
|
-
* @param {boolean} [highlights]
|
|
25040
|
-
* @param {number} [size]
|
|
25041
|
-
* @param {number} [minimumCoverage]
|
|
25042
|
-
* @param {*} [options] Override http request option.
|
|
25043
|
-
* @throws {RequiredError}
|
|
25044
|
-
*/
|
|
25045
|
-
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode, fuzzy?: boolean, highlights?: boolean, size?: number, minimumCoverage?: number, options?: any): AxiosPromise<AzureSearchServiceAutocompleteModel> {
|
|
25046
|
-
return localVarFp.apiV2SearchAutocompleteGet(keyword, mode, fuzzy, highlights, size, minimumCoverage, options).then((request) => request(axios, basePath));
|
|
25047
|
-
},
|
|
25048
|
-
/**
|
|
25049
|
-
*
|
|
25050
|
-
* @param {string} [searchTerm]
|
|
25051
|
-
* @param {boolean} [countOnly]
|
|
25052
|
-
* @param {string} [countryId]
|
|
25053
|
-
* @param {string} [hospitalId]
|
|
25054
|
-
* @param {MarketingType} [marketingType]
|
|
25055
|
-
* @param {string} [languageCode]
|
|
25056
|
-
* @param {number} [page]
|
|
25057
|
-
* @param {number} [limit]
|
|
25058
|
-
* @param {Date} [lastRetrieved]
|
|
25059
|
-
* @param {*} [options] Override http request option.
|
|
25060
|
-
* @throws {RequiredError}
|
|
25061
|
-
*/
|
|
25062
|
-
apiV2SearchDealsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DealsModel> {
|
|
25063
|
-
return localVarFp.apiV2SearchDealsGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
25064
|
-
},
|
|
25065
|
-
/**
|
|
25066
|
-
*
|
|
25067
|
-
* @param {string} [searchTerm]
|
|
25068
|
-
* @param {boolean} [countOnly]
|
|
25069
|
-
* @param {string} [countryId]
|
|
25070
|
-
* @param {string} [hospitalId]
|
|
25071
|
-
* @param {MarketingType} [marketingType]
|
|
25072
|
-
* @param {string} [languageCode]
|
|
25073
|
-
* @param {number} [page]
|
|
25074
|
-
* @param {number} [limit]
|
|
25075
|
-
* @param {Date} [lastRetrieved]
|
|
25076
|
-
* @param {*} [options] Override http request option.
|
|
25077
|
-
* @throws {RequiredError}
|
|
25078
|
-
*/
|
|
25079
|
-
apiV2SearchDoctorsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorsModel> {
|
|
25080
|
-
return localVarFp.apiV2SearchDoctorsGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
25081
|
-
},
|
|
25082
|
-
/**
|
|
25083
|
-
*
|
|
25084
|
-
* @param {string} [searchTerm]
|
|
25085
|
-
* @param {boolean} [countOnly]
|
|
25086
|
-
* @param {string} [countryId]
|
|
25087
|
-
* @param {string} [hospitalId]
|
|
25088
|
-
* @param {MarketingType} [marketingType]
|
|
25089
|
-
* @param {string} [languageCode]
|
|
25090
|
-
* @param {number} [page]
|
|
25091
|
-
* @param {number} [limit]
|
|
25092
|
-
* @param {Date} [lastRetrieved]
|
|
25093
|
-
* @param {*} [options] Override http request option.
|
|
25094
|
-
* @throws {RequiredError}
|
|
25095
|
-
*/
|
|
25096
|
-
apiV2SearchGetcountGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AzureSearchModel> {
|
|
25097
|
-
return localVarFp.apiV2SearchGetcountGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
25098
|
-
},
|
|
25099
|
-
/**
|
|
25100
|
-
*
|
|
25101
|
-
* @param {string} [searchTerm]
|
|
25102
|
-
* @param {boolean} [countOnly]
|
|
25103
|
-
* @param {string} [countryId]
|
|
25104
|
-
* @param {string} [hospitalId]
|
|
25105
|
-
* @param {MarketingType} [marketingType]
|
|
25106
|
-
* @param {string} [languageCode]
|
|
25107
|
-
* @param {number} [page]
|
|
25108
|
-
* @param {number} [limit]
|
|
25109
|
-
* @param {Date} [lastRetrieved]
|
|
25110
|
-
* @param {*} [options] Override http request option.
|
|
25111
|
-
* @throws {RequiredError}
|
|
25112
|
-
*/
|
|
25113
|
-
apiV2SearchHospitalsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsModel> {
|
|
25114
|
-
return localVarFp.apiV2SearchHospitalsGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
25115
|
-
},
|
|
25116
|
-
/**
|
|
25117
|
-
*
|
|
25118
|
-
* @param {string} [searchTerm]
|
|
25119
|
-
* @param {boolean} [countOnly]
|
|
25120
|
-
* @param {string} [countryId]
|
|
25121
|
-
* @param {string} [hospitalId]
|
|
25122
|
-
* @param {MarketingType} [marketingType]
|
|
25123
|
-
* @param {string} [languageCode]
|
|
25124
|
-
* @param {number} [page]
|
|
25125
|
-
* @param {number} [limit]
|
|
25126
|
-
* @param {Date} [lastRetrieved]
|
|
25127
|
-
* @param {*} [options] Override http request option.
|
|
25128
|
-
* @throws {RequiredError}
|
|
25129
|
-
*/
|
|
25130
|
-
apiV2SearchSpecialtiesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SpecialtiesModel> {
|
|
25131
|
-
return localVarFp.apiV2SearchSpecialtiesGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
25132
|
-
},
|
|
25133
|
-
/**
|
|
25134
|
-
*
|
|
25135
|
-
* @param {string} [searchTerm]
|
|
25136
|
-
* @param {boolean} [countOnly]
|
|
25137
|
-
* @param {string} [countryId]
|
|
25138
|
-
* @param {string} [hospitalId]
|
|
25139
|
-
* @param {MarketingType} [marketingType]
|
|
25140
|
-
* @param {string} [languageCode]
|
|
25141
|
-
* @param {number} [page]
|
|
25142
|
-
* @param {number} [limit]
|
|
25143
|
-
* @param {Date} [lastRetrieved]
|
|
25144
|
-
* @param {*} [options] Override http request option.
|
|
25145
|
-
* @throws {RequiredError}
|
|
25146
|
-
*/
|
|
25147
|
-
apiV2SearchSpecialtytypesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SpecialtyTypesModel> {
|
|
25148
|
-
return localVarFp.apiV2SearchSpecialtytypesGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
25149
|
-
},
|
|
25150
|
-
/**
|
|
25151
|
-
*
|
|
25152
|
-
* @param {string} keyword
|
|
25153
|
-
* @param {boolean} [fuzzy]
|
|
25154
|
-
* @param {boolean} [highlights]
|
|
25155
|
-
* @param {number} [size]
|
|
25156
|
-
* @param {*} [options] Override http request option.
|
|
25157
|
-
* @throws {RequiredError}
|
|
25158
|
-
*/
|
|
25159
|
-
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean, highlights?: boolean, size?: number, options?: any): AxiosPromise<AzureSearchServiceSuggestModel> {
|
|
25160
|
-
return localVarFp.apiV2SearchSuggestGet(keyword, fuzzy, highlights, size, options).then((request) => request(axios, basePath));
|
|
25161
|
-
},
|
|
25162
|
-
};
|
|
25163
|
-
};
|
|
25164
|
-
|
|
25165
|
-
/**
|
|
25166
|
-
* SearchApi - object-oriented interface
|
|
25167
|
-
* @export
|
|
25168
|
-
* @class SearchApi
|
|
25169
|
-
* @extends {BaseAPI}
|
|
25170
|
-
*/
|
|
25171
|
-
export class SearchApi extends BaseAPI {
|
|
25172
|
-
/**
|
|
25173
|
-
*
|
|
25174
|
-
* @param {string} keyword
|
|
25175
|
-
* @param {AutocompleteMode} [mode]
|
|
25176
|
-
* @param {boolean} [fuzzy]
|
|
25177
|
-
* @param {boolean} [highlights]
|
|
25178
|
-
* @param {number} [size]
|
|
25179
|
-
* @param {number} [minimumCoverage]
|
|
25180
|
-
* @param {*} [options] Override http request option.
|
|
25181
|
-
* @throws {RequiredError}
|
|
25182
|
-
* @memberof SearchApi
|
|
25183
|
-
*/
|
|
25184
|
-
public apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode, fuzzy?: boolean, highlights?: boolean, size?: number, minimumCoverage?: number, options?: AxiosRequestConfig) {
|
|
25185
|
-
return SearchApiFp(this.configuration).apiV2SearchAutocompleteGet(keyword, mode, fuzzy, highlights, size, minimumCoverage, options).then((request) => request(this.axios, this.basePath));
|
|
25186
|
-
}
|
|
25187
|
-
|
|
25188
|
-
/**
|
|
25189
|
-
*
|
|
25190
|
-
* @param {string} [searchTerm]
|
|
25191
|
-
* @param {boolean} [countOnly]
|
|
25192
|
-
* @param {string} [countryId]
|
|
25193
|
-
* @param {string} [hospitalId]
|
|
25194
|
-
* @param {MarketingType} [marketingType]
|
|
25195
|
-
* @param {string} [languageCode]
|
|
25196
|
-
* @param {number} [page]
|
|
25197
|
-
* @param {number} [limit]
|
|
25198
|
-
* @param {Date} [lastRetrieved]
|
|
25199
|
-
* @param {*} [options] Override http request option.
|
|
25200
|
-
* @throws {RequiredError}
|
|
25201
|
-
* @memberof SearchApi
|
|
25202
|
-
*/
|
|
25203
|
-
public apiV2SearchDealsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
25204
|
-
return SearchApiFp(this.configuration).apiV2SearchDealsGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
25205
|
-
}
|
|
25206
|
-
|
|
25207
|
-
/**
|
|
25208
|
-
*
|
|
25209
|
-
* @param {string} [searchTerm]
|
|
25210
|
-
* @param {boolean} [countOnly]
|
|
25211
|
-
* @param {string} [countryId]
|
|
25212
|
-
* @param {string} [hospitalId]
|
|
25213
|
-
* @param {MarketingType} [marketingType]
|
|
25214
|
-
* @param {string} [languageCode]
|
|
25215
|
-
* @param {number} [page]
|
|
25216
|
-
* @param {number} [limit]
|
|
25217
|
-
* @param {Date} [lastRetrieved]
|
|
25218
|
-
* @param {*} [options] Override http request option.
|
|
25219
|
-
* @throws {RequiredError}
|
|
25220
|
-
* @memberof SearchApi
|
|
25221
|
-
*/
|
|
25222
|
-
public apiV2SearchDoctorsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
25223
|
-
return SearchApiFp(this.configuration).apiV2SearchDoctorsGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
25224
|
-
}
|
|
25225
|
-
|
|
25226
|
-
/**
|
|
25227
|
-
*
|
|
25228
|
-
* @param {string} [searchTerm]
|
|
25229
|
-
* @param {boolean} [countOnly]
|
|
25230
|
-
* @param {string} [countryId]
|
|
25231
|
-
* @param {string} [hospitalId]
|
|
25232
|
-
* @param {MarketingType} [marketingType]
|
|
25233
|
-
* @param {string} [languageCode]
|
|
25234
|
-
* @param {number} [page]
|
|
25235
|
-
* @param {number} [limit]
|
|
25236
|
-
* @param {Date} [lastRetrieved]
|
|
25237
|
-
* @param {*} [options] Override http request option.
|
|
25238
|
-
* @throws {RequiredError}
|
|
25239
|
-
* @memberof SearchApi
|
|
25240
|
-
*/
|
|
25241
|
-
public apiV2SearchGetcountGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
25242
|
-
return SearchApiFp(this.configuration).apiV2SearchGetcountGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
25243
|
-
}
|
|
25244
|
-
|
|
25245
|
-
/**
|
|
25246
|
-
*
|
|
25247
|
-
* @param {string} [searchTerm]
|
|
25248
|
-
* @param {boolean} [countOnly]
|
|
25249
|
-
* @param {string} [countryId]
|
|
25250
|
-
* @param {string} [hospitalId]
|
|
25251
|
-
* @param {MarketingType} [marketingType]
|
|
25252
|
-
* @param {string} [languageCode]
|
|
25253
|
-
* @param {number} [page]
|
|
25254
|
-
* @param {number} [limit]
|
|
25255
|
-
* @param {Date} [lastRetrieved]
|
|
25256
|
-
* @param {*} [options] Override http request option.
|
|
25257
|
-
* @throws {RequiredError}
|
|
25258
|
-
* @memberof SearchApi
|
|
25259
|
-
*/
|
|
25260
|
-
public apiV2SearchHospitalsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
25261
|
-
return SearchApiFp(this.configuration).apiV2SearchHospitalsGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
25262
|
-
}
|
|
25263
|
-
|
|
25264
|
-
/**
|
|
25265
|
-
*
|
|
25266
|
-
* @param {string} [searchTerm]
|
|
25267
|
-
* @param {boolean} [countOnly]
|
|
25268
|
-
* @param {string} [countryId]
|
|
25269
|
-
* @param {string} [hospitalId]
|
|
25270
|
-
* @param {MarketingType} [marketingType]
|
|
25271
|
-
* @param {string} [languageCode]
|
|
25272
|
-
* @param {number} [page]
|
|
25273
|
-
* @param {number} [limit]
|
|
25274
|
-
* @param {Date} [lastRetrieved]
|
|
25275
|
-
* @param {*} [options] Override http request option.
|
|
25276
|
-
* @throws {RequiredError}
|
|
25277
|
-
* @memberof SearchApi
|
|
25278
|
-
*/
|
|
25279
|
-
public apiV2SearchSpecialtiesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
25280
|
-
return SearchApiFp(this.configuration).apiV2SearchSpecialtiesGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
25281
|
-
}
|
|
25282
|
-
|
|
25283
|
-
/**
|
|
25284
|
-
*
|
|
25285
|
-
* @param {string} [searchTerm]
|
|
25286
|
-
* @param {boolean} [countOnly]
|
|
25287
|
-
* @param {string} [countryId]
|
|
25288
|
-
* @param {string} [hospitalId]
|
|
25289
|
-
* @param {MarketingType} [marketingType]
|
|
25290
|
-
* @param {string} [languageCode]
|
|
25291
|
-
* @param {number} [page]
|
|
25292
|
-
* @param {number} [limit]
|
|
25293
|
-
* @param {Date} [lastRetrieved]
|
|
25294
|
-
* @param {*} [options] Override http request option.
|
|
25295
|
-
* @throws {RequiredError}
|
|
25296
|
-
* @memberof SearchApi
|
|
25297
|
-
*/
|
|
25298
|
-
public apiV2SearchSpecialtytypesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
25299
|
-
return SearchApiFp(this.configuration).apiV2SearchSpecialtytypesGet(searchTerm, countOnly, countryId, hospitalId, marketingType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
25300
|
-
}
|
|
25301
|
-
|
|
25302
|
-
/**
|
|
25303
|
-
*
|
|
25304
|
-
* @param {string} keyword
|
|
25305
|
-
* @param {boolean} [fuzzy]
|
|
25306
|
-
* @param {boolean} [highlights]
|
|
25307
|
-
* @param {number} [size]
|
|
25308
|
-
* @param {*} [options] Override http request option.
|
|
25309
|
-
* @throws {RequiredError}
|
|
25310
|
-
* @memberof SearchApi
|
|
25311
|
-
*/
|
|
25312
|
-
public apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean, highlights?: boolean, size?: number, options?: AxiosRequestConfig) {
|
|
25313
|
-
return SearchApiFp(this.configuration).apiV2SearchSuggestGet(keyword, fuzzy, highlights, size, options).then((request) => request(this.axios, this.basePath));
|
|
25314
|
-
}
|
|
25315
|
-
}
|
|
25316
|
-
|
|
25317
|
-
|
|
25318
23915
|
/**
|
|
25319
23916
|
* ServiceReviewsApi - axios parameter creator
|
|
25320
23917
|
* @export
|