ch-api-client-typescript2 3.3.2 → 3.3.5
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 +271 -528
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +35 -14
- package/package.json +1 -1
- package/src/api.ts +327 -572
package/lib/api.d.ts
CHANGED
|
@@ -4114,6 +4114,12 @@ export interface DoctorItemModel {
|
|
|
4114
4114
|
* @memberof DoctorItemModel
|
|
4115
4115
|
*/
|
|
4116
4116
|
'id'?: string;
|
|
4117
|
+
/**
|
|
4118
|
+
*
|
|
4119
|
+
* @type {string}
|
|
4120
|
+
* @memberof DoctorItemModel
|
|
4121
|
+
*/
|
|
4122
|
+
'languageCode'?: string | null;
|
|
4117
4123
|
/**
|
|
4118
4124
|
*
|
|
4119
4125
|
* @type {string}
|
|
@@ -4152,16 +4158,16 @@ export interface DoctorItemModel {
|
|
|
4152
4158
|
'slug'?: string | null;
|
|
4153
4159
|
/**
|
|
4154
4160
|
*
|
|
4155
|
-
* @type {
|
|
4161
|
+
* @type {boolean}
|
|
4156
4162
|
* @memberof DoctorItemModel
|
|
4157
4163
|
*/
|
|
4158
|
-
'
|
|
4164
|
+
'confirmed'?: boolean;
|
|
4159
4165
|
/**
|
|
4160
4166
|
*
|
|
4161
4167
|
* @type {string}
|
|
4162
4168
|
* @memberof DoctorItemModel
|
|
4163
4169
|
*/
|
|
4164
|
-
'
|
|
4170
|
+
'userType'?: string | null;
|
|
4165
4171
|
/**
|
|
4166
4172
|
*
|
|
4167
4173
|
* @type {string}
|
|
@@ -4174,48 +4180,12 @@ export interface DoctorItemModel {
|
|
|
4174
4180
|
* @memberof DoctorItemModel
|
|
4175
4181
|
*/
|
|
4176
4182
|
'photoThumbnail'?: string | null;
|
|
4177
|
-
/**
|
|
4178
|
-
*
|
|
4179
|
-
* @type {Gender}
|
|
4180
|
-
* @memberof DoctorItemModel
|
|
4181
|
-
*/
|
|
4182
|
-
'gender'?: Gender;
|
|
4183
|
-
/**
|
|
4184
|
-
*
|
|
4185
|
-
* @type {Date}
|
|
4186
|
-
* @memberof DoctorItemModel
|
|
4187
|
-
*/
|
|
4188
|
-
'dateOfBirth'?: Date | null;
|
|
4189
|
-
/**
|
|
4190
|
-
*
|
|
4191
|
-
* @type {string}
|
|
4192
|
-
* @memberof DoctorItemModel
|
|
4193
|
-
*/
|
|
4194
|
-
'timeZone'?: string | null;
|
|
4195
|
-
/**
|
|
4196
|
-
*
|
|
4197
|
-
* @type {string}
|
|
4198
|
-
* @memberof DoctorItemModel
|
|
4199
|
-
*/
|
|
4200
|
-
'communicationUserId'?: string | null;
|
|
4201
4183
|
/**
|
|
4202
4184
|
*
|
|
4203
4185
|
* @type {AuditableEntity}
|
|
4204
4186
|
* @memberof DoctorItemModel
|
|
4205
4187
|
*/
|
|
4206
4188
|
'auditableEntity'?: AuditableEntity;
|
|
4207
|
-
/**
|
|
4208
|
-
*
|
|
4209
|
-
* @type {Date}
|
|
4210
|
-
* @memberof DoctorItemModel
|
|
4211
|
-
*/
|
|
4212
|
-
'startPracticeDate'?: Date | null;
|
|
4213
|
-
/**
|
|
4214
|
-
*
|
|
4215
|
-
* @type {string}
|
|
4216
|
-
* @memberof DoctorItemModel
|
|
4217
|
-
*/
|
|
4218
|
-
'overview'?: string | null;
|
|
4219
4189
|
/**
|
|
4220
4190
|
*
|
|
4221
4191
|
* @type {boolean}
|
|
@@ -4230,16 +4200,16 @@ export interface DoctorItemModel {
|
|
|
4230
4200
|
'consultationFee'?: number | null;
|
|
4231
4201
|
/**
|
|
4232
4202
|
*
|
|
4233
|
-
* @type {
|
|
4203
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4234
4204
|
* @memberof DoctorItemModel
|
|
4235
4205
|
*/
|
|
4236
|
-
'
|
|
4206
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4237
4207
|
/**
|
|
4238
4208
|
*
|
|
4239
|
-
* @type {Array<
|
|
4209
|
+
* @type {Array<DoctorAffiliationItemModel>}
|
|
4240
4210
|
* @memberof DoctorItemModel
|
|
4241
4211
|
*/
|
|
4242
|
-
'doctorAffiliations'?: Array<
|
|
4212
|
+
'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
|
|
4243
4213
|
}
|
|
4244
4214
|
/**
|
|
4245
4215
|
*
|
|
@@ -4322,6 +4292,12 @@ export interface DoctorModel {
|
|
|
4322
4292
|
* @memberof DoctorModel
|
|
4323
4293
|
*/
|
|
4324
4294
|
'id'?: string;
|
|
4295
|
+
/**
|
|
4296
|
+
*
|
|
4297
|
+
* @type {string}
|
|
4298
|
+
* @memberof DoctorModel
|
|
4299
|
+
*/
|
|
4300
|
+
'languageCode'?: string | null;
|
|
4325
4301
|
/**
|
|
4326
4302
|
*
|
|
4327
4303
|
* @type {string}
|
|
@@ -4360,16 +4336,16 @@ export interface DoctorModel {
|
|
|
4360
4336
|
'slug'?: string | null;
|
|
4361
4337
|
/**
|
|
4362
4338
|
*
|
|
4363
|
-
* @type {
|
|
4339
|
+
* @type {boolean}
|
|
4364
4340
|
* @memberof DoctorModel
|
|
4365
4341
|
*/
|
|
4366
|
-
'
|
|
4342
|
+
'confirmed'?: boolean;
|
|
4367
4343
|
/**
|
|
4368
4344
|
*
|
|
4369
4345
|
* @type {string}
|
|
4370
4346
|
* @memberof DoctorModel
|
|
4371
4347
|
*/
|
|
4372
|
-
'
|
|
4348
|
+
'userType'?: string | null;
|
|
4373
4349
|
/**
|
|
4374
4350
|
*
|
|
4375
4351
|
* @type {string}
|
|
@@ -4384,64 +4360,58 @@ export interface DoctorModel {
|
|
|
4384
4360
|
'photoThumbnail'?: string | null;
|
|
4385
4361
|
/**
|
|
4386
4362
|
*
|
|
4387
|
-
* @type {
|
|
4388
|
-
* @memberof DoctorModel
|
|
4389
|
-
*/
|
|
4390
|
-
'gender'?: Gender;
|
|
4391
|
-
/**
|
|
4392
|
-
*
|
|
4393
|
-
* @type {Date}
|
|
4363
|
+
* @type {AuditableEntity}
|
|
4394
4364
|
* @memberof DoctorModel
|
|
4395
4365
|
*/
|
|
4396
|
-
'
|
|
4366
|
+
'auditableEntity'?: AuditableEntity;
|
|
4397
4367
|
/**
|
|
4398
4368
|
*
|
|
4399
4369
|
* @type {string}
|
|
4400
4370
|
* @memberof DoctorModel
|
|
4401
4371
|
*/
|
|
4402
|
-
'
|
|
4372
|
+
'phone'?: string | null;
|
|
4403
4373
|
/**
|
|
4404
4374
|
*
|
|
4405
4375
|
* @type {string}
|
|
4406
4376
|
* @memberof DoctorModel
|
|
4407
4377
|
*/
|
|
4408
|
-
'
|
|
4378
|
+
'email'?: string | null;
|
|
4409
4379
|
/**
|
|
4410
4380
|
*
|
|
4411
|
-
* @type {
|
|
4381
|
+
* @type {Gender}
|
|
4412
4382
|
* @memberof DoctorModel
|
|
4413
4383
|
*/
|
|
4414
|
-
'
|
|
4384
|
+
'gender'?: Gender;
|
|
4415
4385
|
/**
|
|
4416
4386
|
*
|
|
4417
|
-
* @type {
|
|
4387
|
+
* @type {Date}
|
|
4418
4388
|
* @memberof DoctorModel
|
|
4419
4389
|
*/
|
|
4420
|
-
'
|
|
4390
|
+
'dateOfBirth'?: Date | null;
|
|
4421
4391
|
/**
|
|
4422
4392
|
*
|
|
4423
|
-
* @type {
|
|
4393
|
+
* @type {string}
|
|
4424
4394
|
* @memberof DoctorModel
|
|
4425
4395
|
*/
|
|
4426
|
-
'
|
|
4396
|
+
'timeZone'?: string | null;
|
|
4427
4397
|
/**
|
|
4428
4398
|
*
|
|
4429
|
-
* @type {
|
|
4399
|
+
* @type {string}
|
|
4430
4400
|
* @memberof DoctorModel
|
|
4431
4401
|
*/
|
|
4432
|
-
'
|
|
4402
|
+
'communicationUserId'?: string | null;
|
|
4433
4403
|
/**
|
|
4434
4404
|
*
|
|
4435
|
-
* @type {
|
|
4405
|
+
* @type {Array<UserLanguageModel>}
|
|
4436
4406
|
* @memberof DoctorModel
|
|
4437
4407
|
*/
|
|
4438
|
-
'
|
|
4408
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
4439
4409
|
/**
|
|
4440
4410
|
*
|
|
4441
|
-
* @type {
|
|
4411
|
+
* @type {Array<UserLocationModel>}
|
|
4442
4412
|
* @memberof DoctorModel
|
|
4443
4413
|
*/
|
|
4444
|
-
'
|
|
4414
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
4445
4415
|
/**
|
|
4446
4416
|
*
|
|
4447
4417
|
* @type {string}
|
|
@@ -4462,28 +4432,10 @@ export interface DoctorModel {
|
|
|
4462
4432
|
'content'?: string | null;
|
|
4463
4433
|
/**
|
|
4464
4434
|
*
|
|
4465
|
-
* @type {
|
|
4466
|
-
* @memberof DoctorModel
|
|
4467
|
-
*/
|
|
4468
|
-
'consultationEnabled'?: boolean | null;
|
|
4469
|
-
/**
|
|
4470
|
-
*
|
|
4471
|
-
* @type {number}
|
|
4472
|
-
* @memberof DoctorModel
|
|
4473
|
-
*/
|
|
4474
|
-
'consultationFee'?: number | null;
|
|
4475
|
-
/**
|
|
4476
|
-
*
|
|
4477
|
-
* @type {boolean}
|
|
4478
|
-
* @memberof DoctorModel
|
|
4479
|
-
*/
|
|
4480
|
-
'confirmed'?: boolean;
|
|
4481
|
-
/**
|
|
4482
|
-
*
|
|
4483
|
-
* @type {Array<DoctorAffiliationModel>}
|
|
4435
|
+
* @type {Date}
|
|
4484
4436
|
* @memberof DoctorModel
|
|
4485
4437
|
*/
|
|
4486
|
-
'
|
|
4438
|
+
'startPracticeDate'?: Date | null;
|
|
4487
4439
|
/**
|
|
4488
4440
|
*
|
|
4489
4441
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4625,25 +4577,25 @@ export interface DoctorSimpleItemModel {
|
|
|
4625
4577
|
* @type {string}
|
|
4626
4578
|
* @memberof DoctorSimpleItemModel
|
|
4627
4579
|
*/
|
|
4628
|
-
'
|
|
4580
|
+
'languageCode'?: string | null;
|
|
4629
4581
|
/**
|
|
4630
4582
|
*
|
|
4631
4583
|
* @type {string}
|
|
4632
4584
|
* @memberof DoctorSimpleItemModel
|
|
4633
4585
|
*/
|
|
4634
|
-
'
|
|
4586
|
+
'firstName'?: string | null;
|
|
4635
4587
|
/**
|
|
4636
4588
|
*
|
|
4637
4589
|
* @type {string}
|
|
4638
4590
|
* @memberof DoctorSimpleItemModel
|
|
4639
4591
|
*/
|
|
4640
|
-
'
|
|
4592
|
+
'middleName'?: string | null;
|
|
4641
4593
|
/**
|
|
4642
4594
|
*
|
|
4643
4595
|
* @type {string}
|
|
4644
4596
|
* @memberof DoctorSimpleItemModel
|
|
4645
4597
|
*/
|
|
4646
|
-
'
|
|
4598
|
+
'lastName'?: string | null;
|
|
4647
4599
|
/**
|
|
4648
4600
|
*
|
|
4649
4601
|
* @type {string}
|
|
@@ -4665,10 +4617,10 @@ export interface DoctorSimpleItemModel {
|
|
|
4665
4617
|
export interface DoctorSpecialtiesModel {
|
|
4666
4618
|
/**
|
|
4667
4619
|
*
|
|
4668
|
-
* @type {Array<
|
|
4620
|
+
* @type {Array<DoctorSpecialtyItemModel>}
|
|
4669
4621
|
* @memberof DoctorSpecialtiesModel
|
|
4670
4622
|
*/
|
|
4671
|
-
'items'?: Array<
|
|
4623
|
+
'items'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4672
4624
|
/**
|
|
4673
4625
|
*
|
|
4674
4626
|
* @type {PagedListMetaData}
|
|
@@ -4679,39 +4631,70 @@ export interface DoctorSpecialtiesModel {
|
|
|
4679
4631
|
/**
|
|
4680
4632
|
*
|
|
4681
4633
|
* @export
|
|
4682
|
-
* @interface
|
|
4634
|
+
* @interface DoctorSpecialtyItemModel
|
|
4683
4635
|
*/
|
|
4684
|
-
export interface
|
|
4636
|
+
export interface DoctorSpecialtyItemModel {
|
|
4685
4637
|
/**
|
|
4686
4638
|
*
|
|
4687
4639
|
* @type {string}
|
|
4688
|
-
* @memberof
|
|
4640
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4641
|
+
*/
|
|
4642
|
+
'languageCode'?: string | null;
|
|
4643
|
+
/**
|
|
4644
|
+
*
|
|
4645
|
+
* @type {string}
|
|
4646
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4689
4647
|
*/
|
|
4690
4648
|
'specialtyId'?: string;
|
|
4691
4649
|
/**
|
|
4692
4650
|
*
|
|
4693
4651
|
* @type {string}
|
|
4694
|
-
* @memberof
|
|
4652
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4695
4653
|
*/
|
|
4696
4654
|
'specialtyName'?: string | null;
|
|
4697
4655
|
/**
|
|
4698
4656
|
*
|
|
4699
4657
|
* @type {string}
|
|
4700
|
-
* @memberof
|
|
4658
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4701
4659
|
*/
|
|
4702
4660
|
'specialtySlug'?: string | null;
|
|
4661
|
+
/**
|
|
4662
|
+
*
|
|
4663
|
+
* @type {number}
|
|
4664
|
+
* @memberof DoctorSpecialtyItemModel
|
|
4665
|
+
*/
|
|
4666
|
+
'order'?: number;
|
|
4667
|
+
}
|
|
4668
|
+
/**
|
|
4669
|
+
*
|
|
4670
|
+
* @export
|
|
4671
|
+
* @interface DoctorSpecialtyModel
|
|
4672
|
+
*/
|
|
4673
|
+
export interface DoctorSpecialtyModel {
|
|
4703
4674
|
/**
|
|
4704
4675
|
*
|
|
4705
4676
|
* @type {string}
|
|
4706
4677
|
* @memberof DoctorSpecialtyModel
|
|
4707
4678
|
*/
|
|
4708
|
-
'
|
|
4679
|
+
'languageCode'?: string | null;
|
|
4709
4680
|
/**
|
|
4710
4681
|
*
|
|
4711
4682
|
* @type {string}
|
|
4712
4683
|
* @memberof DoctorSpecialtyModel
|
|
4713
4684
|
*/
|
|
4714
|
-
'
|
|
4685
|
+
'specialtyId'?: string;
|
|
4686
|
+
/**
|
|
4687
|
+
*
|
|
4688
|
+
* @type {string}
|
|
4689
|
+
* @memberof DoctorSpecialtyModel
|
|
4690
|
+
*/
|
|
4691
|
+
'specialtyName'?: string | null;
|
|
4692
|
+
/**
|
|
4693
|
+
*
|
|
4694
|
+
* @type {string}
|
|
4695
|
+
* @memberof DoctorSpecialtyModel
|
|
4696
|
+
*/
|
|
4697
|
+
'specialtySlug'?: string | null;
|
|
4715
4698
|
/**
|
|
4716
4699
|
*
|
|
4717
4700
|
* @type {number}
|
|
@@ -4723,13 +4706,13 @@ export interface DoctorSpecialtyModel {
|
|
|
4723
4706
|
* @type {string}
|
|
4724
4707
|
* @memberof DoctorSpecialtyModel
|
|
4725
4708
|
*/
|
|
4726
|
-
'
|
|
4709
|
+
'specialtyTypeName'?: string | null;
|
|
4727
4710
|
/**
|
|
4728
4711
|
*
|
|
4729
4712
|
* @type {string}
|
|
4730
4713
|
* @memberof DoctorSpecialtyModel
|
|
4731
4714
|
*/
|
|
4732
|
-
'
|
|
4715
|
+
'specialtyTyeSlug'?: string | null;
|
|
4733
4716
|
}
|
|
4734
4717
|
/**
|
|
4735
4718
|
*
|
|
@@ -5463,24 +5446,6 @@ export interface HospitalEquipmentsModel {
|
|
|
5463
5446
|
* @interface HospitalEvaluationItemModel
|
|
5464
5447
|
*/
|
|
5465
5448
|
export interface HospitalEvaluationItemModel {
|
|
5466
|
-
/**
|
|
5467
|
-
*
|
|
5468
|
-
* @type {string}
|
|
5469
|
-
* @memberof HospitalEvaluationItemModel
|
|
5470
|
-
*/
|
|
5471
|
-
'id'?: string;
|
|
5472
|
-
/**
|
|
5473
|
-
*
|
|
5474
|
-
* @type {string}
|
|
5475
|
-
* @memberof HospitalEvaluationItemModel
|
|
5476
|
-
*/
|
|
5477
|
-
'hospitalId'?: string;
|
|
5478
|
-
/**
|
|
5479
|
-
*
|
|
5480
|
-
* @type {string}
|
|
5481
|
-
* @memberof HospitalEvaluationItemModel
|
|
5482
|
-
*/
|
|
5483
|
-
'hospitalName'?: string | null;
|
|
5484
5449
|
/**
|
|
5485
5450
|
*
|
|
5486
5451
|
* @type {string}
|
|
@@ -5493,18 +5458,6 @@ export interface HospitalEvaluationItemModel {
|
|
|
5493
5458
|
* @memberof HospitalEvaluationItemModel
|
|
5494
5459
|
*/
|
|
5495
5460
|
'stars'?: number;
|
|
5496
|
-
/**
|
|
5497
|
-
*
|
|
5498
|
-
* @type {string}
|
|
5499
|
-
* @memberof HospitalEvaluationItemModel
|
|
5500
|
-
*/
|
|
5501
|
-
'description'?: string | null;
|
|
5502
|
-
/**
|
|
5503
|
-
*
|
|
5504
|
-
* @type {string}
|
|
5505
|
-
* @memberof HospitalEvaluationItemModel
|
|
5506
|
-
*/
|
|
5507
|
-
'referenceUrl'?: string | null;
|
|
5508
5461
|
}
|
|
5509
5462
|
/**
|
|
5510
5463
|
*
|
|
@@ -5512,24 +5465,6 @@ export interface HospitalEvaluationItemModel {
|
|
|
5512
5465
|
* @interface HospitalEvaluationModel
|
|
5513
5466
|
*/
|
|
5514
5467
|
export interface HospitalEvaluationModel {
|
|
5515
|
-
/**
|
|
5516
|
-
*
|
|
5517
|
-
* @type {string}
|
|
5518
|
-
* @memberof HospitalEvaluationModel
|
|
5519
|
-
*/
|
|
5520
|
-
'id'?: string;
|
|
5521
|
-
/**
|
|
5522
|
-
*
|
|
5523
|
-
* @type {string}
|
|
5524
|
-
* @memberof HospitalEvaluationModel
|
|
5525
|
-
*/
|
|
5526
|
-
'hospitalId'?: string;
|
|
5527
|
-
/**
|
|
5528
|
-
*
|
|
5529
|
-
* @type {string}
|
|
5530
|
-
* @memberof HospitalEvaluationModel
|
|
5531
|
-
*/
|
|
5532
|
-
'hospitalName'?: string | null;
|
|
5533
5468
|
/**
|
|
5534
5469
|
*
|
|
5535
5470
|
* @type {string}
|
|
@@ -5591,73 +5526,31 @@ export interface HospitalItemModel {
|
|
|
5591
5526
|
* @type {string}
|
|
5592
5527
|
* @memberof HospitalItemModel
|
|
5593
5528
|
*/
|
|
5594
|
-
'
|
|
5595
|
-
/**
|
|
5596
|
-
*
|
|
5597
|
-
* @type {string}
|
|
5598
|
-
* @memberof HospitalItemModel
|
|
5599
|
-
*/
|
|
5600
|
-
'slug'?: string | null;
|
|
5601
|
-
/**
|
|
5602
|
-
*
|
|
5603
|
-
* @type {string}
|
|
5604
|
-
* @memberof HospitalItemModel
|
|
5605
|
-
*/
|
|
5606
|
-
'description'?: string | null;
|
|
5529
|
+
'languageCode'?: string | null;
|
|
5607
5530
|
/**
|
|
5608
5531
|
*
|
|
5609
5532
|
* @type {string}
|
|
5610
5533
|
* @memberof HospitalItemModel
|
|
5611
5534
|
*/
|
|
5612
|
-
'
|
|
5535
|
+
'name'?: string | null;
|
|
5613
5536
|
/**
|
|
5614
5537
|
*
|
|
5615
5538
|
* @type {string}
|
|
5616
5539
|
* @memberof HospitalItemModel
|
|
5617
5540
|
*/
|
|
5618
|
-
'
|
|
5619
|
-
/**
|
|
5620
|
-
*
|
|
5621
|
-
* @type {number}
|
|
5622
|
-
* @memberof HospitalItemModel
|
|
5623
|
-
*/
|
|
5624
|
-
'bedsCount'?: number | null;
|
|
5625
|
-
/**
|
|
5626
|
-
*
|
|
5627
|
-
* @type {number}
|
|
5628
|
-
* @memberof HospitalItemModel
|
|
5629
|
-
*/
|
|
5630
|
-
'operationsPerYear'?: number | null;
|
|
5631
|
-
/**
|
|
5632
|
-
*
|
|
5633
|
-
* @type {number}
|
|
5634
|
-
* @memberof HospitalItemModel
|
|
5635
|
-
*/
|
|
5636
|
-
'foundationYear'?: number | null;
|
|
5637
|
-
/**
|
|
5638
|
-
*
|
|
5639
|
-
* @type {number}
|
|
5640
|
-
* @memberof HospitalItemModel
|
|
5641
|
-
*/
|
|
5642
|
-
'medicalStaffCount'?: number | null;
|
|
5643
|
-
/**
|
|
5644
|
-
*
|
|
5645
|
-
* @type {number}
|
|
5646
|
-
* @memberof HospitalItemModel
|
|
5647
|
-
*/
|
|
5648
|
-
'doctorCount'?: number | null;
|
|
5541
|
+
'slug'?: string | null;
|
|
5649
5542
|
/**
|
|
5650
5543
|
*
|
|
5651
|
-
* @type {
|
|
5544
|
+
* @type {boolean}
|
|
5652
5545
|
* @memberof HospitalItemModel
|
|
5653
5546
|
*/
|
|
5654
|
-
'
|
|
5547
|
+
'confirmed'?: boolean;
|
|
5655
5548
|
/**
|
|
5656
5549
|
*
|
|
5657
5550
|
* @type {string}
|
|
5658
5551
|
* @memberof HospitalItemModel
|
|
5659
5552
|
*/
|
|
5660
|
-
'
|
|
5553
|
+
'logo'?: string | null;
|
|
5661
5554
|
/**
|
|
5662
5555
|
*
|
|
5663
5556
|
* @type {MarketingType}
|
|
@@ -5690,58 +5583,10 @@ export interface HospitalItemModel {
|
|
|
5690
5583
|
'websiteUrl'?: string | null;
|
|
5691
5584
|
/**
|
|
5692
5585
|
*
|
|
5693
|
-
* @type {
|
|
5694
|
-
* @memberof HospitalItemModel
|
|
5695
|
-
*/
|
|
5696
|
-
'articlesCount'?: number;
|
|
5697
|
-
/**
|
|
5698
|
-
*
|
|
5699
|
-
* @type {number}
|
|
5700
|
-
* @memberof HospitalItemModel
|
|
5701
|
-
*/
|
|
5702
|
-
'packagesCount'?: number;
|
|
5703
|
-
/**
|
|
5704
|
-
*
|
|
5705
|
-
* @type {number}
|
|
5706
|
-
* @memberof HospitalItemModel
|
|
5707
|
-
*/
|
|
5708
|
-
'equipmentsCount'?: number;
|
|
5709
|
-
/**
|
|
5710
|
-
*
|
|
5711
|
-
* @type {number}
|
|
5712
|
-
* @memberof HospitalItemModel
|
|
5713
|
-
*/
|
|
5714
|
-
'reviewsCount'?: number;
|
|
5715
|
-
/**
|
|
5716
|
-
*
|
|
5717
|
-
* @type {number}
|
|
5718
|
-
* @memberof HospitalItemModel
|
|
5719
|
-
*/
|
|
5720
|
-
'departmentsCount'?: number;
|
|
5721
|
-
/**
|
|
5722
|
-
*
|
|
5723
|
-
* @type {number}
|
|
5724
|
-
* @memberof HospitalItemModel
|
|
5725
|
-
*/
|
|
5726
|
-
'specialtiesCount'?: number;
|
|
5727
|
-
/**
|
|
5728
|
-
*
|
|
5729
|
-
* @type {number}
|
|
5730
|
-
* @memberof HospitalItemModel
|
|
5731
|
-
*/
|
|
5732
|
-
'accreditationsCount'?: number;
|
|
5733
|
-
/**
|
|
5734
|
-
*
|
|
5735
|
-
* @type {number}
|
|
5736
|
-
* @memberof HospitalItemModel
|
|
5737
|
-
*/
|
|
5738
|
-
'doctorAffiliationsCount'?: number;
|
|
5739
|
-
/**
|
|
5740
|
-
*
|
|
5741
|
-
* @type {number}
|
|
5586
|
+
* @type {boolean}
|
|
5742
5587
|
* @memberof HospitalItemModel
|
|
5743
5588
|
*/
|
|
5744
|
-
'
|
|
5589
|
+
'paymentEnabled'?: boolean;
|
|
5745
5590
|
/**
|
|
5746
5591
|
*
|
|
5747
5592
|
* @type {string}
|
|
@@ -5750,52 +5595,28 @@ export interface HospitalItemModel {
|
|
|
5750
5595
|
'specialtiesSummerized'?: string | null;
|
|
5751
5596
|
/**
|
|
5752
5597
|
*
|
|
5753
|
-
* @type {
|
|
5754
|
-
* @memberof HospitalItemModel
|
|
5755
|
-
*/
|
|
5756
|
-
'paymentEnabled'?: boolean;
|
|
5757
|
-
/**
|
|
5758
|
-
*
|
|
5759
|
-
* @type {boolean}
|
|
5598
|
+
* @type {string}
|
|
5760
5599
|
* @memberof HospitalItemModel
|
|
5761
5600
|
*/
|
|
5762
|
-
'
|
|
5601
|
+
'countryId'?: string;
|
|
5763
5602
|
/**
|
|
5764
5603
|
*
|
|
5765
|
-
* @type {Array<
|
|
5604
|
+
* @type {Array<HospitalAccreditationItemModel>}
|
|
5766
5605
|
* @memberof HospitalItemModel
|
|
5767
5606
|
*/
|
|
5768
|
-
'
|
|
5607
|
+
'accreditations'?: Array<HospitalAccreditationItemModel> | null;
|
|
5769
5608
|
/**
|
|
5770
5609
|
*
|
|
5771
5610
|
* @type {Array<MediaModel>}
|
|
5772
5611
|
* @memberof HospitalItemModel
|
|
5773
5612
|
*/
|
|
5774
5613
|
'medias'?: Array<MediaModel> | null;
|
|
5775
|
-
/**
|
|
5776
|
-
*
|
|
5777
|
-
* @type {Array<AccreditationModel>}
|
|
5778
|
-
* @memberof HospitalItemModel
|
|
5779
|
-
*/
|
|
5780
|
-
'accreditations'?: Array<AccreditationModel> | null;
|
|
5781
|
-
/**
|
|
5782
|
-
*
|
|
5783
|
-
* @type {Array<HospitalEvaluationModel>}
|
|
5784
|
-
* @memberof HospitalItemModel
|
|
5785
|
-
*/
|
|
5786
|
-
'evaluations'?: Array<HospitalEvaluationModel> | null;
|
|
5787
5614
|
/**
|
|
5788
5615
|
*
|
|
5789
5616
|
* @type {LocationModel}
|
|
5790
5617
|
* @memberof HospitalItemModel
|
|
5791
5618
|
*/
|
|
5792
5619
|
'location'?: LocationModel;
|
|
5793
|
-
/**
|
|
5794
|
-
*
|
|
5795
|
-
* @type {AuditableEntity}
|
|
5796
|
-
* @memberof HospitalItemModel
|
|
5797
|
-
*/
|
|
5798
|
-
'auditableEntity'?: AuditableEntity;
|
|
5799
5620
|
}
|
|
5800
5621
|
/**
|
|
5801
5622
|
*
|
|
@@ -5814,73 +5635,31 @@ export interface HospitalModel {
|
|
|
5814
5635
|
* @type {string}
|
|
5815
5636
|
* @memberof HospitalModel
|
|
5816
5637
|
*/
|
|
5817
|
-
'
|
|
5818
|
-
/**
|
|
5819
|
-
*
|
|
5820
|
-
* @type {string}
|
|
5821
|
-
* @memberof HospitalModel
|
|
5822
|
-
*/
|
|
5823
|
-
'slug'?: string | null;
|
|
5824
|
-
/**
|
|
5825
|
-
*
|
|
5826
|
-
* @type {string}
|
|
5827
|
-
* @memberof HospitalModel
|
|
5828
|
-
*/
|
|
5829
|
-
'description'?: string | null;
|
|
5638
|
+
'languageCode'?: string | null;
|
|
5830
5639
|
/**
|
|
5831
5640
|
*
|
|
5832
5641
|
* @type {string}
|
|
5833
5642
|
* @memberof HospitalModel
|
|
5834
5643
|
*/
|
|
5835
|
-
'
|
|
5644
|
+
'name'?: string | null;
|
|
5836
5645
|
/**
|
|
5837
5646
|
*
|
|
5838
5647
|
* @type {string}
|
|
5839
5648
|
* @memberof HospitalModel
|
|
5840
5649
|
*/
|
|
5841
|
-
'
|
|
5842
|
-
/**
|
|
5843
|
-
*
|
|
5844
|
-
* @type {number}
|
|
5845
|
-
* @memberof HospitalModel
|
|
5846
|
-
*/
|
|
5847
|
-
'bedsCount'?: number | null;
|
|
5848
|
-
/**
|
|
5849
|
-
*
|
|
5850
|
-
* @type {number}
|
|
5851
|
-
* @memberof HospitalModel
|
|
5852
|
-
*/
|
|
5853
|
-
'operationsPerYear'?: number | null;
|
|
5854
|
-
/**
|
|
5855
|
-
*
|
|
5856
|
-
* @type {number}
|
|
5857
|
-
* @memberof HospitalModel
|
|
5858
|
-
*/
|
|
5859
|
-
'foundationYear'?: number | null;
|
|
5860
|
-
/**
|
|
5861
|
-
*
|
|
5862
|
-
* @type {number}
|
|
5863
|
-
* @memberof HospitalModel
|
|
5864
|
-
*/
|
|
5865
|
-
'medicalStaffCount'?: number | null;
|
|
5866
|
-
/**
|
|
5867
|
-
*
|
|
5868
|
-
* @type {number}
|
|
5869
|
-
* @memberof HospitalModel
|
|
5870
|
-
*/
|
|
5871
|
-
'doctorCount'?: number | null;
|
|
5650
|
+
'slug'?: string | null;
|
|
5872
5651
|
/**
|
|
5873
5652
|
*
|
|
5874
|
-
* @type {
|
|
5653
|
+
* @type {boolean}
|
|
5875
5654
|
* @memberof HospitalModel
|
|
5876
5655
|
*/
|
|
5877
|
-
'
|
|
5656
|
+
'confirmed'?: boolean;
|
|
5878
5657
|
/**
|
|
5879
5658
|
*
|
|
5880
5659
|
* @type {string}
|
|
5881
5660
|
* @memberof HospitalModel
|
|
5882
5661
|
*/
|
|
5883
|
-
'
|
|
5662
|
+
'logo'?: string | null;
|
|
5884
5663
|
/**
|
|
5885
5664
|
*
|
|
5886
5665
|
* @type {MarketingType}
|
|
@@ -5913,142 +5692,118 @@ export interface HospitalModel {
|
|
|
5913
5692
|
'websiteUrl'?: string | null;
|
|
5914
5693
|
/**
|
|
5915
5694
|
*
|
|
5916
|
-
* @type {
|
|
5917
|
-
* @memberof HospitalModel
|
|
5918
|
-
*/
|
|
5919
|
-
'articlesCount'?: number;
|
|
5920
|
-
/**
|
|
5921
|
-
*
|
|
5922
|
-
* @type {number}
|
|
5923
|
-
* @memberof HospitalModel
|
|
5924
|
-
*/
|
|
5925
|
-
'packagesCount'?: number;
|
|
5926
|
-
/**
|
|
5927
|
-
*
|
|
5928
|
-
* @type {number}
|
|
5929
|
-
* @memberof HospitalModel
|
|
5930
|
-
*/
|
|
5931
|
-
'equipmentsCount'?: number;
|
|
5932
|
-
/**
|
|
5933
|
-
*
|
|
5934
|
-
* @type {number}
|
|
5695
|
+
* @type {boolean}
|
|
5935
5696
|
* @memberof HospitalModel
|
|
5936
5697
|
*/
|
|
5937
|
-
'
|
|
5698
|
+
'paymentEnabled'?: boolean;
|
|
5938
5699
|
/**
|
|
5939
5700
|
*
|
|
5940
|
-
* @type {
|
|
5701
|
+
* @type {string}
|
|
5941
5702
|
* @memberof HospitalModel
|
|
5942
5703
|
*/
|
|
5943
|
-
'
|
|
5704
|
+
'specialtiesSummerized'?: string | null;
|
|
5944
5705
|
/**
|
|
5945
5706
|
*
|
|
5946
|
-
* @type {
|
|
5707
|
+
* @type {string}
|
|
5947
5708
|
* @memberof HospitalModel
|
|
5948
5709
|
*/
|
|
5949
|
-
'
|
|
5710
|
+
'countryId'?: string;
|
|
5950
5711
|
/**
|
|
5951
5712
|
*
|
|
5952
|
-
* @type {
|
|
5713
|
+
* @type {Array<HospitalAccreditationItemModel>}
|
|
5953
5714
|
* @memberof HospitalModel
|
|
5954
5715
|
*/
|
|
5955
|
-
'
|
|
5716
|
+
'accreditations'?: Array<HospitalAccreditationItemModel> | null;
|
|
5956
5717
|
/**
|
|
5957
5718
|
*
|
|
5958
|
-
* @type {
|
|
5719
|
+
* @type {Array<MediaModel>}
|
|
5959
5720
|
* @memberof HospitalModel
|
|
5960
5721
|
*/
|
|
5961
|
-
'
|
|
5722
|
+
'medias'?: Array<MediaModel> | null;
|
|
5962
5723
|
/**
|
|
5963
5724
|
*
|
|
5964
|
-
* @type {
|
|
5725
|
+
* @type {LocationModel}
|
|
5965
5726
|
* @memberof HospitalModel
|
|
5966
5727
|
*/
|
|
5967
|
-
'
|
|
5728
|
+
'location'?: LocationModel;
|
|
5968
5729
|
/**
|
|
5969
5730
|
*
|
|
5970
5731
|
* @type {string}
|
|
5971
5732
|
* @memberof HospitalModel
|
|
5972
5733
|
*/
|
|
5973
|
-
'
|
|
5974
|
-
/**
|
|
5975
|
-
*
|
|
5976
|
-
* @type {boolean}
|
|
5977
|
-
* @memberof HospitalModel
|
|
5978
|
-
*/
|
|
5979
|
-
'paymentEnabled'?: boolean;
|
|
5734
|
+
'description'?: string | null;
|
|
5980
5735
|
/**
|
|
5981
5736
|
*
|
|
5982
|
-
* @type {
|
|
5737
|
+
* @type {string}
|
|
5983
5738
|
* @memberof HospitalModel
|
|
5984
5739
|
*/
|
|
5985
|
-
'
|
|
5740
|
+
'overview'?: string | null;
|
|
5986
5741
|
/**
|
|
5987
5742
|
*
|
|
5988
|
-
* @type {
|
|
5743
|
+
* @type {string}
|
|
5989
5744
|
* @memberof HospitalModel
|
|
5990
5745
|
*/
|
|
5991
|
-
'
|
|
5746
|
+
'content'?: string | null;
|
|
5992
5747
|
/**
|
|
5993
5748
|
*
|
|
5994
|
-
* @type {Array<
|
|
5749
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5995
5750
|
* @memberof HospitalModel
|
|
5996
5751
|
*/
|
|
5997
|
-
'
|
|
5752
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5998
5753
|
/**
|
|
5999
5754
|
*
|
|
6000
|
-
* @type {
|
|
5755
|
+
* @type {number}
|
|
6001
5756
|
* @memberof HospitalModel
|
|
6002
5757
|
*/
|
|
6003
|
-
'
|
|
5758
|
+
'bedsCount'?: number | null;
|
|
6004
5759
|
/**
|
|
6005
5760
|
*
|
|
6006
|
-
* @type {
|
|
5761
|
+
* @type {number}
|
|
6007
5762
|
* @memberof HospitalModel
|
|
6008
5763
|
*/
|
|
6009
|
-
'
|
|
5764
|
+
'operationsPerYear'?: number | null;
|
|
6010
5765
|
/**
|
|
6011
5766
|
*
|
|
6012
|
-
* @type {
|
|
5767
|
+
* @type {number}
|
|
6013
5768
|
* @memberof HospitalModel
|
|
6014
5769
|
*/
|
|
6015
|
-
'
|
|
5770
|
+
'foundationYear'?: number | null;
|
|
6016
5771
|
/**
|
|
6017
5772
|
*
|
|
6018
|
-
* @type {
|
|
5773
|
+
* @type {number}
|
|
6019
5774
|
* @memberof HospitalModel
|
|
6020
5775
|
*/
|
|
6021
|
-
'
|
|
5776
|
+
'medicalStaffCount'?: number | null;
|
|
6022
5777
|
/**
|
|
6023
5778
|
*
|
|
6024
|
-
* @type {
|
|
5779
|
+
* @type {number}
|
|
6025
5780
|
* @memberof HospitalModel
|
|
6026
5781
|
*/
|
|
6027
|
-
'
|
|
5782
|
+
'doctorCount'?: number | null;
|
|
6028
5783
|
/**
|
|
6029
5784
|
*
|
|
6030
5785
|
* @type {string}
|
|
6031
5786
|
* @memberof HospitalModel
|
|
6032
5787
|
*/
|
|
6033
|
-
'
|
|
5788
|
+
'contactTel'?: string | null;
|
|
6034
5789
|
/**
|
|
6035
5790
|
*
|
|
6036
5791
|
* @type {string}
|
|
6037
5792
|
* @memberof HospitalModel
|
|
6038
5793
|
*/
|
|
6039
|
-
'
|
|
5794
|
+
'contactEmail'?: string | null;
|
|
6040
5795
|
/**
|
|
6041
5796
|
*
|
|
6042
5797
|
* @type {string}
|
|
6043
5798
|
* @memberof HospitalModel
|
|
6044
5799
|
*/
|
|
6045
|
-
'
|
|
5800
|
+
'customStyle'?: string | null;
|
|
6046
5801
|
/**
|
|
6047
5802
|
*
|
|
6048
|
-
* @type {
|
|
5803
|
+
* @type {Array<HospitalEvaluationItemModel>}
|
|
6049
5804
|
* @memberof HospitalModel
|
|
6050
5805
|
*/
|
|
6051
|
-
'
|
|
5806
|
+
'evaluations'?: Array<HospitalEvaluationItemModel> | null;
|
|
6052
5807
|
/**
|
|
6053
5808
|
*
|
|
6054
5809
|
* @type {Array<WorkingDay>}
|
|
@@ -6063,10 +5818,10 @@ export interface HospitalModel {
|
|
|
6063
5818
|
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
6064
5819
|
/**
|
|
6065
5820
|
*
|
|
6066
|
-
* @type {Array<
|
|
5821
|
+
* @type {Array<AwardModel>}
|
|
6067
5822
|
* @memberof HospitalModel
|
|
6068
5823
|
*/
|
|
6069
|
-
'
|
|
5824
|
+
'awards'?: Array<AwardModel> | null;
|
|
6070
5825
|
}
|
|
6071
5826
|
/**
|
|
6072
5827
|
*
|
|
@@ -6449,6 +6204,12 @@ export interface HospitalSimpleItemModel {
|
|
|
6449
6204
|
* @memberof HospitalSimpleItemModel
|
|
6450
6205
|
*/
|
|
6451
6206
|
'id'?: string;
|
|
6207
|
+
/**
|
|
6208
|
+
*
|
|
6209
|
+
* @type {string}
|
|
6210
|
+
* @memberof HospitalSimpleItemModel
|
|
6211
|
+
*/
|
|
6212
|
+
'languageCode'?: string | null;
|
|
6452
6213
|
/**
|
|
6453
6214
|
*
|
|
6454
6215
|
* @type {string}
|
|
@@ -6542,49 +6303,7 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6542
6303
|
* @type {string}
|
|
6543
6304
|
* @memberof HospitalSpecialtyItemModel
|
|
6544
6305
|
*/
|
|
6545
|
-
'
|
|
6546
|
-
/**
|
|
6547
|
-
*
|
|
6548
|
-
* @type {string}
|
|
6549
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6550
|
-
*/
|
|
6551
|
-
'hospitalName'?: string | null;
|
|
6552
|
-
/**
|
|
6553
|
-
*
|
|
6554
|
-
* @type {string}
|
|
6555
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6556
|
-
*/
|
|
6557
|
-
'hospitalSlug'?: string | null;
|
|
6558
|
-
/**
|
|
6559
|
-
*
|
|
6560
|
-
* @type {string}
|
|
6561
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6562
|
-
*/
|
|
6563
|
-
'specialtyId'?: string;
|
|
6564
|
-
/**
|
|
6565
|
-
*
|
|
6566
|
-
* @type {string}
|
|
6567
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6568
|
-
*/
|
|
6569
|
-
'specialtyName'?: string | null;
|
|
6570
|
-
/**
|
|
6571
|
-
*
|
|
6572
|
-
* @type {string}
|
|
6573
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6574
|
-
*/
|
|
6575
|
-
'specialtyTypeId'?: string;
|
|
6576
|
-
/**
|
|
6577
|
-
*
|
|
6578
|
-
* @type {string}
|
|
6579
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6580
|
-
*/
|
|
6581
|
-
'specialtyTypeName'?: string | null;
|
|
6582
|
-
/**
|
|
6583
|
-
*
|
|
6584
|
-
* @type {MarketingType}
|
|
6585
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6586
|
-
*/
|
|
6587
|
-
'marketingType'?: MarketingType;
|
|
6306
|
+
'languageCode'?: string | null;
|
|
6588
6307
|
/**
|
|
6589
6308
|
*
|
|
6590
6309
|
* @type {string}
|
|
@@ -6605,16 +6324,10 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6605
6324
|
'description'?: string | null;
|
|
6606
6325
|
/**
|
|
6607
6326
|
*
|
|
6608
|
-
* @type {
|
|
6609
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6610
|
-
*/
|
|
6611
|
-
'serviceCount'?: number;
|
|
6612
|
-
/**
|
|
6613
|
-
*
|
|
6614
|
-
* @type {Array<HospitalServiceItemModel>}
|
|
6327
|
+
* @type {boolean}
|
|
6615
6328
|
* @memberof HospitalSpecialtyItemModel
|
|
6616
6329
|
*/
|
|
6617
|
-
'
|
|
6330
|
+
'confirmed'?: boolean;
|
|
6618
6331
|
/**
|
|
6619
6332
|
*
|
|
6620
6333
|
* @type {string}
|
|
@@ -6647,22 +6360,16 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6647
6360
|
'order'?: number;
|
|
6648
6361
|
/**
|
|
6649
6362
|
*
|
|
6650
|
-
* @type {
|
|
6651
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6652
|
-
*/
|
|
6653
|
-
'confirmed'?: boolean;
|
|
6654
|
-
/**
|
|
6655
|
-
*
|
|
6656
|
-
* @type {Array<MediaModel>}
|
|
6363
|
+
* @type {number}
|
|
6657
6364
|
* @memberof HospitalSpecialtyItemModel
|
|
6658
6365
|
*/
|
|
6659
|
-
'
|
|
6366
|
+
'servicesCount'?: number;
|
|
6660
6367
|
/**
|
|
6661
6368
|
*
|
|
6662
|
-
* @type {
|
|
6369
|
+
* @type {string}
|
|
6663
6370
|
* @memberof HospitalSpecialtyItemModel
|
|
6664
6371
|
*/
|
|
6665
|
-
'
|
|
6372
|
+
'specialtyId'?: string;
|
|
6666
6373
|
}
|
|
6667
6374
|
/**
|
|
6668
6375
|
*
|
|
@@ -6681,151 +6388,139 @@ export interface HospitalSpecialtyModel {
|
|
|
6681
6388
|
* @type {string}
|
|
6682
6389
|
* @memberof HospitalSpecialtyModel
|
|
6683
6390
|
*/
|
|
6684
|
-
'
|
|
6685
|
-
/**
|
|
6686
|
-
*
|
|
6687
|
-
* @type {string}
|
|
6688
|
-
* @memberof HospitalSpecialtyModel
|
|
6689
|
-
*/
|
|
6690
|
-
'hospitalName'?: string | null;
|
|
6391
|
+
'languageCode'?: string | null;
|
|
6691
6392
|
/**
|
|
6692
6393
|
*
|
|
6693
6394
|
* @type {string}
|
|
6694
6395
|
* @memberof HospitalSpecialtyModel
|
|
6695
6396
|
*/
|
|
6696
|
-
'
|
|
6397
|
+
'name'?: string | null;
|
|
6697
6398
|
/**
|
|
6698
6399
|
*
|
|
6699
6400
|
* @type {string}
|
|
6700
6401
|
* @memberof HospitalSpecialtyModel
|
|
6701
6402
|
*/
|
|
6702
|
-
'
|
|
6403
|
+
'slug'?: string | null;
|
|
6703
6404
|
/**
|
|
6704
6405
|
*
|
|
6705
6406
|
* @type {string}
|
|
6706
6407
|
* @memberof HospitalSpecialtyModel
|
|
6707
6408
|
*/
|
|
6708
|
-
'
|
|
6409
|
+
'description'?: string | null;
|
|
6709
6410
|
/**
|
|
6710
6411
|
*
|
|
6711
|
-
* @type {
|
|
6412
|
+
* @type {boolean}
|
|
6712
6413
|
* @memberof HospitalSpecialtyModel
|
|
6713
6414
|
*/
|
|
6714
|
-
'
|
|
6415
|
+
'confirmed'?: boolean;
|
|
6715
6416
|
/**
|
|
6716
6417
|
*
|
|
6717
6418
|
* @type {string}
|
|
6718
6419
|
* @memberof HospitalSpecialtyModel
|
|
6719
6420
|
*/
|
|
6720
|
-
'
|
|
6721
|
-
/**
|
|
6722
|
-
*
|
|
6723
|
-
* @type {MarketingType}
|
|
6724
|
-
* @memberof HospitalSpecialtyModel
|
|
6725
|
-
*/
|
|
6726
|
-
'marketingType'?: MarketingType;
|
|
6421
|
+
'photo'?: string | null;
|
|
6727
6422
|
/**
|
|
6728
6423
|
*
|
|
6729
6424
|
* @type {string}
|
|
6730
6425
|
* @memberof HospitalSpecialtyModel
|
|
6731
6426
|
*/
|
|
6732
|
-
'
|
|
6427
|
+
'photoThumbnail'?: string | null;
|
|
6733
6428
|
/**
|
|
6734
6429
|
*
|
|
6735
6430
|
* @type {string}
|
|
6736
6431
|
* @memberof HospitalSpecialtyModel
|
|
6737
6432
|
*/
|
|
6738
|
-
'
|
|
6433
|
+
'background'?: string | null;
|
|
6739
6434
|
/**
|
|
6740
6435
|
*
|
|
6741
6436
|
* @type {string}
|
|
6742
6437
|
* @memberof HospitalSpecialtyModel
|
|
6743
6438
|
*/
|
|
6744
|
-
'
|
|
6439
|
+
'backgroundThumbnail'?: string | null;
|
|
6745
6440
|
/**
|
|
6746
6441
|
*
|
|
6747
6442
|
* @type {number}
|
|
6748
6443
|
* @memberof HospitalSpecialtyModel
|
|
6749
6444
|
*/
|
|
6750
|
-
'
|
|
6445
|
+
'order'?: number;
|
|
6751
6446
|
/**
|
|
6752
6447
|
*
|
|
6753
|
-
* @type {
|
|
6448
|
+
* @type {number}
|
|
6754
6449
|
* @memberof HospitalSpecialtyModel
|
|
6755
6450
|
*/
|
|
6756
|
-
'
|
|
6451
|
+
'servicesCount'?: number;
|
|
6757
6452
|
/**
|
|
6758
6453
|
*
|
|
6759
6454
|
* @type {string}
|
|
6760
6455
|
* @memberof HospitalSpecialtyModel
|
|
6761
6456
|
*/
|
|
6762
|
-
'
|
|
6457
|
+
'specialtyId'?: string;
|
|
6763
6458
|
/**
|
|
6764
6459
|
*
|
|
6765
6460
|
* @type {string}
|
|
6766
6461
|
* @memberof HospitalSpecialtyModel
|
|
6767
6462
|
*/
|
|
6768
|
-
'
|
|
6463
|
+
'hospitalId'?: string;
|
|
6769
6464
|
/**
|
|
6770
6465
|
*
|
|
6771
6466
|
* @type {string}
|
|
6772
6467
|
* @memberof HospitalSpecialtyModel
|
|
6773
6468
|
*/
|
|
6774
|
-
'
|
|
6469
|
+
'customStyle'?: string | null;
|
|
6775
6470
|
/**
|
|
6776
6471
|
*
|
|
6777
6472
|
* @type {string}
|
|
6778
6473
|
* @memberof HospitalSpecialtyModel
|
|
6779
6474
|
*/
|
|
6780
|
-
'
|
|
6475
|
+
'content'?: string | null;
|
|
6781
6476
|
/**
|
|
6782
6477
|
*
|
|
6783
|
-
* @type {
|
|
6478
|
+
* @type {string}
|
|
6784
6479
|
* @memberof HospitalSpecialtyModel
|
|
6785
6480
|
*/
|
|
6786
|
-
'
|
|
6481
|
+
'hospitalName'?: string | null;
|
|
6787
6482
|
/**
|
|
6788
6483
|
*
|
|
6789
|
-
* @type {
|
|
6484
|
+
* @type {string}
|
|
6790
6485
|
* @memberof HospitalSpecialtyModel
|
|
6791
6486
|
*/
|
|
6792
|
-
'
|
|
6487
|
+
'hospitalSlug'?: string | null;
|
|
6793
6488
|
/**
|
|
6794
6489
|
*
|
|
6795
|
-
* @type {
|
|
6490
|
+
* @type {string}
|
|
6796
6491
|
* @memberof HospitalSpecialtyModel
|
|
6797
6492
|
*/
|
|
6798
|
-
'
|
|
6493
|
+
'specialtyName'?: string | null;
|
|
6799
6494
|
/**
|
|
6800
6495
|
*
|
|
6801
|
-
* @type {
|
|
6496
|
+
* @type {string}
|
|
6802
6497
|
* @memberof HospitalSpecialtyModel
|
|
6803
6498
|
*/
|
|
6804
|
-
'
|
|
6499
|
+
'specialtyTypeId'?: string;
|
|
6805
6500
|
/**
|
|
6806
6501
|
*
|
|
6807
6502
|
* @type {string}
|
|
6808
6503
|
* @memberof HospitalSpecialtyModel
|
|
6809
6504
|
*/
|
|
6810
|
-
'
|
|
6505
|
+
'specialtyTypeName'?: string | null;
|
|
6811
6506
|
/**
|
|
6812
6507
|
*
|
|
6813
|
-
* @type {
|
|
6508
|
+
* @type {MarketingType}
|
|
6814
6509
|
* @memberof HospitalSpecialtyModel
|
|
6815
6510
|
*/
|
|
6816
|
-
'
|
|
6511
|
+
'marketingType'?: MarketingType;
|
|
6817
6512
|
/**
|
|
6818
6513
|
*
|
|
6819
|
-
* @type {
|
|
6514
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6820
6515
|
* @memberof HospitalSpecialtyModel
|
|
6821
6516
|
*/
|
|
6822
|
-
'
|
|
6517
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6823
6518
|
/**
|
|
6824
6519
|
*
|
|
6825
|
-
* @type {Array<
|
|
6520
|
+
* @type {Array<MediaModel>}
|
|
6826
6521
|
* @memberof HospitalSpecialtyModel
|
|
6827
6522
|
*/
|
|
6828
|
-
'
|
|
6523
|
+
'medias'?: Array<MediaModel> | null;
|
|
6829
6524
|
}
|
|
6830
6525
|
/**
|
|
6831
6526
|
*
|
|
@@ -6839,6 +6534,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6839
6534
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6840
6535
|
*/
|
|
6841
6536
|
'id'?: string;
|
|
6537
|
+
/**
|
|
6538
|
+
*
|
|
6539
|
+
* @type {string}
|
|
6540
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6541
|
+
*/
|
|
6542
|
+
'languageCode'?: string | null;
|
|
6842
6543
|
/**
|
|
6843
6544
|
*
|
|
6844
6545
|
* @type {string}
|
|
@@ -6859,10 +6560,10 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6859
6560
|
'description'?: string | null;
|
|
6860
6561
|
/**
|
|
6861
6562
|
*
|
|
6862
|
-
* @type {
|
|
6563
|
+
* @type {boolean}
|
|
6863
6564
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6864
6565
|
*/
|
|
6865
|
-
'
|
|
6566
|
+
'confirmed'?: boolean;
|
|
6866
6567
|
/**
|
|
6867
6568
|
*
|
|
6868
6569
|
* @type {number}
|
|
@@ -6871,10 +6572,16 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6871
6572
|
'order'?: number;
|
|
6872
6573
|
/**
|
|
6873
6574
|
*
|
|
6874
|
-
* @type {
|
|
6575
|
+
* @type {number}
|
|
6875
6576
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6876
6577
|
*/
|
|
6877
|
-
'
|
|
6578
|
+
'servicesCount'?: number;
|
|
6579
|
+
/**
|
|
6580
|
+
*
|
|
6581
|
+
* @type {string}
|
|
6582
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6583
|
+
*/
|
|
6584
|
+
'specialtyId'?: string;
|
|
6878
6585
|
}
|
|
6879
6586
|
/**
|
|
6880
6587
|
*
|
|
@@ -7617,6 +7324,12 @@ export interface PatientModel {
|
|
|
7617
7324
|
* @memberof PatientModel
|
|
7618
7325
|
*/
|
|
7619
7326
|
'id'?: string;
|
|
7327
|
+
/**
|
|
7328
|
+
*
|
|
7329
|
+
* @type {string}
|
|
7330
|
+
* @memberof PatientModel
|
|
7331
|
+
*/
|
|
7332
|
+
'languageCode'?: string | null;
|
|
7620
7333
|
/**
|
|
7621
7334
|
*
|
|
7622
7335
|
* @type {string}
|
|
@@ -7655,16 +7368,16 @@ export interface PatientModel {
|
|
|
7655
7368
|
'slug'?: string | null;
|
|
7656
7369
|
/**
|
|
7657
7370
|
*
|
|
7658
|
-
* @type {
|
|
7371
|
+
* @type {boolean}
|
|
7659
7372
|
* @memberof PatientModel
|
|
7660
7373
|
*/
|
|
7661
|
-
'
|
|
7374
|
+
'confirmed'?: boolean;
|
|
7662
7375
|
/**
|
|
7663
7376
|
*
|
|
7664
7377
|
* @type {string}
|
|
7665
7378
|
* @memberof PatientModel
|
|
7666
7379
|
*/
|
|
7667
|
-
'
|
|
7380
|
+
'userType'?: string | null;
|
|
7668
7381
|
/**
|
|
7669
7382
|
*
|
|
7670
7383
|
* @type {string}
|
|
@@ -7679,40 +7392,46 @@ export interface PatientModel {
|
|
|
7679
7392
|
'photoThumbnail'?: string | null;
|
|
7680
7393
|
/**
|
|
7681
7394
|
*
|
|
7682
|
-
* @type {
|
|
7395
|
+
* @type {AuditableEntity}
|
|
7683
7396
|
* @memberof PatientModel
|
|
7684
7397
|
*/
|
|
7685
|
-
'
|
|
7398
|
+
'auditableEntity'?: AuditableEntity;
|
|
7686
7399
|
/**
|
|
7687
7400
|
*
|
|
7688
|
-
* @type {
|
|
7401
|
+
* @type {string}
|
|
7689
7402
|
* @memberof PatientModel
|
|
7690
7403
|
*/
|
|
7691
|
-
'
|
|
7404
|
+
'phone'?: string | null;
|
|
7692
7405
|
/**
|
|
7693
7406
|
*
|
|
7694
7407
|
* @type {string}
|
|
7695
7408
|
* @memberof PatientModel
|
|
7696
7409
|
*/
|
|
7697
|
-
'
|
|
7410
|
+
'email'?: string | null;
|
|
7698
7411
|
/**
|
|
7699
7412
|
*
|
|
7700
|
-
* @type {
|
|
7413
|
+
* @type {Gender}
|
|
7701
7414
|
* @memberof PatientModel
|
|
7702
7415
|
*/
|
|
7703
|
-
'
|
|
7416
|
+
'gender'?: Gender;
|
|
7704
7417
|
/**
|
|
7705
7418
|
*
|
|
7706
|
-
* @type {
|
|
7419
|
+
* @type {Date}
|
|
7707
7420
|
* @memberof PatientModel
|
|
7708
7421
|
*/
|
|
7709
|
-
'
|
|
7422
|
+
'dateOfBirth'?: Date | null;
|
|
7710
7423
|
/**
|
|
7711
7424
|
*
|
|
7712
7425
|
* @type {string}
|
|
7713
7426
|
* @memberof PatientModel
|
|
7714
7427
|
*/
|
|
7715
|
-
'
|
|
7428
|
+
'timeZone'?: string | null;
|
|
7429
|
+
/**
|
|
7430
|
+
*
|
|
7431
|
+
* @type {string}
|
|
7432
|
+
* @memberof PatientModel
|
|
7433
|
+
*/
|
|
7434
|
+
'communicationUserId'?: string | null;
|
|
7716
7435
|
/**
|
|
7717
7436
|
*
|
|
7718
7437
|
* @type {Array<UserLanguageModel>}
|
|
@@ -9792,6 +9511,12 @@ export interface UserModel {
|
|
|
9792
9511
|
* @memberof UserModel
|
|
9793
9512
|
*/
|
|
9794
9513
|
'id'?: string;
|
|
9514
|
+
/**
|
|
9515
|
+
*
|
|
9516
|
+
* @type {string}
|
|
9517
|
+
* @memberof UserModel
|
|
9518
|
+
*/
|
|
9519
|
+
'languageCode'?: string | null;
|
|
9795
9520
|
/**
|
|
9796
9521
|
*
|
|
9797
9522
|
* @type {string}
|
|
@@ -9830,16 +9555,16 @@ export interface UserModel {
|
|
|
9830
9555
|
'slug'?: string | null;
|
|
9831
9556
|
/**
|
|
9832
9557
|
*
|
|
9833
|
-
* @type {
|
|
9558
|
+
* @type {boolean}
|
|
9834
9559
|
* @memberof UserModel
|
|
9835
9560
|
*/
|
|
9836
|
-
'
|
|
9561
|
+
'confirmed'?: boolean;
|
|
9837
9562
|
/**
|
|
9838
9563
|
*
|
|
9839
9564
|
* @type {string}
|
|
9840
9565
|
* @memberof UserModel
|
|
9841
9566
|
*/
|
|
9842
|
-
'
|
|
9567
|
+
'userType'?: string | null;
|
|
9843
9568
|
/**
|
|
9844
9569
|
*
|
|
9845
9570
|
* @type {string}
|
|
@@ -9854,40 +9579,46 @@ export interface UserModel {
|
|
|
9854
9579
|
'photoThumbnail'?: string | null;
|
|
9855
9580
|
/**
|
|
9856
9581
|
*
|
|
9857
|
-
* @type {
|
|
9582
|
+
* @type {AuditableEntity}
|
|
9858
9583
|
* @memberof UserModel
|
|
9859
9584
|
*/
|
|
9860
|
-
'
|
|
9585
|
+
'auditableEntity'?: AuditableEntity;
|
|
9861
9586
|
/**
|
|
9862
9587
|
*
|
|
9863
|
-
* @type {
|
|
9588
|
+
* @type {string}
|
|
9864
9589
|
* @memberof UserModel
|
|
9865
9590
|
*/
|
|
9866
|
-
'
|
|
9591
|
+
'phone'?: string | null;
|
|
9867
9592
|
/**
|
|
9868
9593
|
*
|
|
9869
9594
|
* @type {string}
|
|
9870
9595
|
* @memberof UserModel
|
|
9871
9596
|
*/
|
|
9872
|
-
'
|
|
9597
|
+
'email'?: string | null;
|
|
9873
9598
|
/**
|
|
9874
9599
|
*
|
|
9875
|
-
* @type {
|
|
9600
|
+
* @type {Gender}
|
|
9876
9601
|
* @memberof UserModel
|
|
9877
9602
|
*/
|
|
9878
|
-
'
|
|
9603
|
+
'gender'?: Gender;
|
|
9879
9604
|
/**
|
|
9880
9605
|
*
|
|
9881
|
-
* @type {
|
|
9606
|
+
* @type {Date}
|
|
9882
9607
|
* @memberof UserModel
|
|
9883
9608
|
*/
|
|
9884
|
-
'
|
|
9609
|
+
'dateOfBirth'?: Date | null;
|
|
9885
9610
|
/**
|
|
9886
9611
|
*
|
|
9887
9612
|
* @type {string}
|
|
9888
9613
|
* @memberof UserModel
|
|
9889
9614
|
*/
|
|
9890
|
-
'
|
|
9615
|
+
'timeZone'?: string | null;
|
|
9616
|
+
/**
|
|
9617
|
+
*
|
|
9618
|
+
* @type {string}
|
|
9619
|
+
* @memberof UserModel
|
|
9620
|
+
*/
|
|
9621
|
+
'communicationUserId'?: string | null;
|
|
9891
9622
|
/**
|
|
9892
9623
|
*
|
|
9893
9624
|
* @type {Array<UserLanguageModel>}
|
|
@@ -12942,22 +12673,25 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12942
12673
|
* @param {string} [doctorName]
|
|
12943
12674
|
* @param {string} [specialtyId]
|
|
12944
12675
|
* @param {string} [specialtyName]
|
|
12676
|
+
* @param {string} [languageCode]
|
|
12677
|
+
* @param {boolean} [showHidden]
|
|
12945
12678
|
* @param {number} [page]
|
|
12946
12679
|
* @param {number} [limit]
|
|
12947
12680
|
* @param {Date} [lastRetrieved]
|
|
12948
12681
|
* @param {*} [options] Override http request option.
|
|
12949
12682
|
* @throws {RequiredError}
|
|
12950
12683
|
*/
|
|
12951
|
-
apiV2DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12684
|
+
apiV2DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12952
12685
|
/**
|
|
12953
12686
|
*
|
|
12954
12687
|
* @summary Get DoctorSpecialty
|
|
12955
12688
|
* @param {string} doctorId
|
|
12956
12689
|
* @param {string} specialtyId
|
|
12690
|
+
* @param {string} [languageCode]
|
|
12957
12691
|
* @param {*} [options] Override http request option.
|
|
12958
12692
|
* @throws {RequiredError}
|
|
12959
12693
|
*/
|
|
12960
|
-
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12694
|
+
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12961
12695
|
/**
|
|
12962
12696
|
*
|
|
12963
12697
|
* @summary Get all Doctors.
|
|
@@ -13174,22 +12908,25 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
13174
12908
|
* @param {string} [doctorName]
|
|
13175
12909
|
* @param {string} [specialtyId]
|
|
13176
12910
|
* @param {string} [specialtyName]
|
|
12911
|
+
* @param {string} [languageCode]
|
|
12912
|
+
* @param {boolean} [showHidden]
|
|
13177
12913
|
* @param {number} [page]
|
|
13178
12914
|
* @param {number} [limit]
|
|
13179
12915
|
* @param {Date} [lastRetrieved]
|
|
13180
12916
|
* @param {*} [options] Override http request option.
|
|
13181
12917
|
* @throws {RequiredError}
|
|
13182
12918
|
*/
|
|
13183
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
12919
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
13184
12920
|
/**
|
|
13185
12921
|
*
|
|
13186
12922
|
* @summary Get DoctorSpecialty
|
|
13187
12923
|
* @param {string} doctorId
|
|
13188
12924
|
* @param {string} specialtyId
|
|
12925
|
+
* @param {string} [languageCode]
|
|
13189
12926
|
* @param {*} [options] Override http request option.
|
|
13190
12927
|
* @throws {RequiredError}
|
|
13191
12928
|
*/
|
|
13192
|
-
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
12929
|
+
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
13193
12930
|
/**
|
|
13194
12931
|
*
|
|
13195
12932
|
* @summary Get all Doctors.
|
|
@@ -13406,22 +13143,25 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
13406
13143
|
* @param {string} [doctorName]
|
|
13407
13144
|
* @param {string} [specialtyId]
|
|
13408
13145
|
* @param {string} [specialtyName]
|
|
13146
|
+
* @param {string} [languageCode]
|
|
13147
|
+
* @param {boolean} [showHidden]
|
|
13409
13148
|
* @param {number} [page]
|
|
13410
13149
|
* @param {number} [limit]
|
|
13411
13150
|
* @param {Date} [lastRetrieved]
|
|
13412
13151
|
* @param {*} [options] Override http request option.
|
|
13413
13152
|
* @throws {RequiredError}
|
|
13414
13153
|
*/
|
|
13415
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
|
|
13154
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
|
|
13416
13155
|
/**
|
|
13417
13156
|
*
|
|
13418
13157
|
* @summary Get DoctorSpecialty
|
|
13419
13158
|
* @param {string} doctorId
|
|
13420
13159
|
* @param {string} specialtyId
|
|
13160
|
+
* @param {string} [languageCode]
|
|
13421
13161
|
* @param {*} [options] Override http request option.
|
|
13422
13162
|
* @throws {RequiredError}
|
|
13423
13163
|
*/
|
|
13424
|
-
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
13164
|
+
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
13425
13165
|
/**
|
|
13426
13166
|
*
|
|
13427
13167
|
* @summary Get all Doctors.
|
|
@@ -13653,6 +13393,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13653
13393
|
* @param {string} [doctorName]
|
|
13654
13394
|
* @param {string} [specialtyId]
|
|
13655
13395
|
* @param {string} [specialtyName]
|
|
13396
|
+
* @param {string} [languageCode]
|
|
13397
|
+
* @param {boolean} [showHidden]
|
|
13656
13398
|
* @param {number} [page]
|
|
13657
13399
|
* @param {number} [limit]
|
|
13658
13400
|
* @param {Date} [lastRetrieved]
|
|
@@ -13660,17 +13402,18 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13660
13402
|
* @throws {RequiredError}
|
|
13661
13403
|
* @memberof DoctorsApi
|
|
13662
13404
|
*/
|
|
13663
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel, any>>;
|
|
13405
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel, any>>;
|
|
13664
13406
|
/**
|
|
13665
13407
|
*
|
|
13666
13408
|
* @summary Get DoctorSpecialty
|
|
13667
13409
|
* @param {string} doctorId
|
|
13668
13410
|
* @param {string} specialtyId
|
|
13411
|
+
* @param {string} [languageCode]
|
|
13669
13412
|
* @param {*} [options] Override http request option.
|
|
13670
13413
|
* @throws {RequiredError}
|
|
13671
13414
|
* @memberof DoctorsApi
|
|
13672
13415
|
*/
|
|
13673
|
-
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel, any>>;
|
|
13416
|
+
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel, any>>;
|
|
13674
13417
|
/**
|
|
13675
13418
|
*
|
|
13676
13419
|
* @summary Get all Doctors.
|