ch-api-client-typescript2 3.3.5 → 3.3.6
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 +137 -177
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +21 -28
- package/package.json +1 -1
- package/src/api.ts +147 -191
package/lib/api.d.ts
CHANGED
|
@@ -3805,6 +3805,12 @@ export interface DealsSimpleModel {
|
|
|
3805
3805
|
* @interface DoctorAffiliationItemModel
|
|
3806
3806
|
*/
|
|
3807
3807
|
export interface DoctorAffiliationItemModel {
|
|
3808
|
+
/**
|
|
3809
|
+
*
|
|
3810
|
+
* @type {string}
|
|
3811
|
+
* @memberof DoctorAffiliationItemModel
|
|
3812
|
+
*/
|
|
3813
|
+
'languageCode'?: string | null;
|
|
3808
3814
|
/**
|
|
3809
3815
|
*
|
|
3810
3816
|
* @type {string}
|
|
@@ -3823,6 +3829,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3823
3829
|
* @memberof DoctorAffiliationItemModel
|
|
3824
3830
|
*/
|
|
3825
3831
|
'hospitalSlug'?: string | null;
|
|
3832
|
+
/**
|
|
3833
|
+
*
|
|
3834
|
+
* @type {number}
|
|
3835
|
+
* @memberof DoctorAffiliationItemModel
|
|
3836
|
+
*/
|
|
3837
|
+
'order'?: number;
|
|
3826
3838
|
}
|
|
3827
3839
|
/**
|
|
3828
3840
|
*
|
|
@@ -3830,6 +3842,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3830
3842
|
* @interface DoctorAffiliationModel
|
|
3831
3843
|
*/
|
|
3832
3844
|
export interface DoctorAffiliationModel {
|
|
3845
|
+
/**
|
|
3846
|
+
*
|
|
3847
|
+
* @type {string}
|
|
3848
|
+
* @memberof DoctorAffiliationModel
|
|
3849
|
+
*/
|
|
3850
|
+
'languageCode'?: string | null;
|
|
3833
3851
|
/**
|
|
3834
3852
|
*
|
|
3835
3853
|
* @type {string}
|
|
@@ -3848,6 +3866,12 @@ export interface DoctorAffiliationModel {
|
|
|
3848
3866
|
* @memberof DoctorAffiliationModel
|
|
3849
3867
|
*/
|
|
3850
3868
|
'hospitalSlug'?: string | null;
|
|
3869
|
+
/**
|
|
3870
|
+
*
|
|
3871
|
+
* @type {number}
|
|
3872
|
+
* @memberof DoctorAffiliationModel
|
|
3873
|
+
*/
|
|
3874
|
+
'order'?: number;
|
|
3851
3875
|
}
|
|
3852
3876
|
/**
|
|
3853
3877
|
*
|
|
@@ -4436,6 +4460,30 @@ export interface DoctorModel {
|
|
|
4436
4460
|
* @memberof DoctorModel
|
|
4437
4461
|
*/
|
|
4438
4462
|
'startPracticeDate'?: Date | null;
|
|
4463
|
+
/**
|
|
4464
|
+
*
|
|
4465
|
+
* @type {boolean}
|
|
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 {Array<DoctorSpecialtyItemModel>}
|
|
4478
|
+
* @memberof DoctorModel
|
|
4479
|
+
*/
|
|
4480
|
+
'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
|
|
4481
|
+
/**
|
|
4482
|
+
*
|
|
4483
|
+
* @type {Array<DoctorAffiliationItemModel>}
|
|
4484
|
+
* @memberof DoctorModel
|
|
4485
|
+
*/
|
|
4486
|
+
'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
|
|
4439
4487
|
/**
|
|
4440
4488
|
*
|
|
4441
4489
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4601,13 +4649,13 @@ export interface DoctorSimpleItemModel {
|
|
|
4601
4649
|
* @type {string}
|
|
4602
4650
|
* @memberof DoctorSimpleItemModel
|
|
4603
4651
|
*/
|
|
4604
|
-
'
|
|
4652
|
+
'fullName'?: string | null;
|
|
4605
4653
|
/**
|
|
4606
4654
|
*
|
|
4607
4655
|
* @type {string}
|
|
4608
4656
|
* @memberof DoctorSimpleItemModel
|
|
4609
4657
|
*/
|
|
4610
|
-
'
|
|
4658
|
+
'slug'?: string | null;
|
|
4611
4659
|
}
|
|
4612
4660
|
/**
|
|
4613
4661
|
*
|
|
@@ -5592,13 +5640,13 @@ export interface HospitalItemModel {
|
|
|
5592
5640
|
* @type {string}
|
|
5593
5641
|
* @memberof HospitalItemModel
|
|
5594
5642
|
*/
|
|
5595
|
-
'
|
|
5643
|
+
'countryId'?: string;
|
|
5596
5644
|
/**
|
|
5597
5645
|
*
|
|
5598
5646
|
* @type {string}
|
|
5599
5647
|
* @memberof HospitalItemModel
|
|
5600
5648
|
*/
|
|
5601
|
-
'
|
|
5649
|
+
'specialtiesSummerized'?: string | null;
|
|
5602
5650
|
/**
|
|
5603
5651
|
*
|
|
5604
5652
|
* @type {Array<HospitalAccreditationItemModel>}
|
|
@@ -5701,13 +5749,13 @@ export interface HospitalModel {
|
|
|
5701
5749
|
* @type {string}
|
|
5702
5750
|
* @memberof HospitalModel
|
|
5703
5751
|
*/
|
|
5704
|
-
'
|
|
5752
|
+
'countryId'?: string;
|
|
5705
5753
|
/**
|
|
5706
5754
|
*
|
|
5707
5755
|
* @type {string}
|
|
5708
5756
|
* @memberof HospitalModel
|
|
5709
5757
|
*/
|
|
5710
|
-
'
|
|
5758
|
+
'specialtiesSummerized'?: string | null;
|
|
5711
5759
|
/**
|
|
5712
5760
|
*
|
|
5713
5761
|
* @type {Array<HospitalAccreditationItemModel>}
|
|
@@ -6318,16 +6366,10 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6318
6366
|
'slug'?: string | null;
|
|
6319
6367
|
/**
|
|
6320
6368
|
*
|
|
6321
|
-
* @type {
|
|
6322
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6323
|
-
*/
|
|
6324
|
-
'description'?: string | null;
|
|
6325
|
-
/**
|
|
6326
|
-
*
|
|
6327
|
-
* @type {boolean}
|
|
6369
|
+
* @type {number}
|
|
6328
6370
|
* @memberof HospitalSpecialtyItemModel
|
|
6329
6371
|
*/
|
|
6330
|
-
'
|
|
6372
|
+
'order'?: number;
|
|
6331
6373
|
/**
|
|
6332
6374
|
*
|
|
6333
6375
|
* @type {string}
|
|
@@ -6352,12 +6394,6 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6352
6394
|
* @memberof HospitalSpecialtyItemModel
|
|
6353
6395
|
*/
|
|
6354
6396
|
'backgroundThumbnail'?: string | null;
|
|
6355
|
-
/**
|
|
6356
|
-
*
|
|
6357
|
-
* @type {number}
|
|
6358
|
-
* @memberof HospitalSpecialtyItemModel
|
|
6359
|
-
*/
|
|
6360
|
-
'order'?: number;
|
|
6361
6397
|
/**
|
|
6362
6398
|
*
|
|
6363
6399
|
* @type {number}
|
|
@@ -6403,16 +6439,10 @@ export interface HospitalSpecialtyModel {
|
|
|
6403
6439
|
'slug'?: string | null;
|
|
6404
6440
|
/**
|
|
6405
6441
|
*
|
|
6406
|
-
* @type {
|
|
6407
|
-
* @memberof HospitalSpecialtyModel
|
|
6408
|
-
*/
|
|
6409
|
-
'description'?: string | null;
|
|
6410
|
-
/**
|
|
6411
|
-
*
|
|
6412
|
-
* @type {boolean}
|
|
6442
|
+
* @type {number}
|
|
6413
6443
|
* @memberof HospitalSpecialtyModel
|
|
6414
6444
|
*/
|
|
6415
|
-
'
|
|
6445
|
+
'order'?: number;
|
|
6416
6446
|
/**
|
|
6417
6447
|
*
|
|
6418
6448
|
* @type {string}
|
|
@@ -6442,25 +6472,31 @@ export interface HospitalSpecialtyModel {
|
|
|
6442
6472
|
* @type {number}
|
|
6443
6473
|
* @memberof HospitalSpecialtyModel
|
|
6444
6474
|
*/
|
|
6445
|
-
'
|
|
6475
|
+
'servicesCount'?: number;
|
|
6446
6476
|
/**
|
|
6447
6477
|
*
|
|
6448
|
-
* @type {
|
|
6478
|
+
* @type {string}
|
|
6449
6479
|
* @memberof HospitalSpecialtyModel
|
|
6450
6480
|
*/
|
|
6451
|
-
'
|
|
6481
|
+
'specialtyId'?: string;
|
|
6452
6482
|
/**
|
|
6453
6483
|
*
|
|
6454
6484
|
* @type {string}
|
|
6455
6485
|
* @memberof HospitalSpecialtyModel
|
|
6456
6486
|
*/
|
|
6457
|
-
'
|
|
6487
|
+
'description'?: string | null;
|
|
6458
6488
|
/**
|
|
6459
6489
|
*
|
|
6460
6490
|
* @type {string}
|
|
6461
6491
|
* @memberof HospitalSpecialtyModel
|
|
6462
6492
|
*/
|
|
6463
|
-
'
|
|
6493
|
+
'content'?: string | null;
|
|
6494
|
+
/**
|
|
6495
|
+
*
|
|
6496
|
+
* @type {boolean}
|
|
6497
|
+
* @memberof HospitalSpecialtyModel
|
|
6498
|
+
*/
|
|
6499
|
+
'confirmed'?: boolean;
|
|
6464
6500
|
/**
|
|
6465
6501
|
*
|
|
6466
6502
|
* @type {string}
|
|
@@ -6472,7 +6508,7 @@ export interface HospitalSpecialtyModel {
|
|
|
6472
6508
|
* @type {string}
|
|
6473
6509
|
* @memberof HospitalSpecialtyModel
|
|
6474
6510
|
*/
|
|
6475
|
-
'
|
|
6511
|
+
'hospitalId'?: string;
|
|
6476
6512
|
/**
|
|
6477
6513
|
*
|
|
6478
6514
|
* @type {string}
|
|
@@ -6552,36 +6588,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6552
6588
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6553
6589
|
*/
|
|
6554
6590
|
'slug'?: string | null;
|
|
6555
|
-
/**
|
|
6556
|
-
*
|
|
6557
|
-
* @type {string}
|
|
6558
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6559
|
-
*/
|
|
6560
|
-
'description'?: string | null;
|
|
6561
|
-
/**
|
|
6562
|
-
*
|
|
6563
|
-
* @type {boolean}
|
|
6564
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6565
|
-
*/
|
|
6566
|
-
'confirmed'?: boolean;
|
|
6567
6591
|
/**
|
|
6568
6592
|
*
|
|
6569
6593
|
* @type {number}
|
|
6570
6594
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6571
6595
|
*/
|
|
6572
6596
|
'order'?: number;
|
|
6573
|
-
/**
|
|
6574
|
-
*
|
|
6575
|
-
* @type {number}
|
|
6576
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6577
|
-
*/
|
|
6578
|
-
'servicesCount'?: number;
|
|
6579
|
-
/**
|
|
6580
|
-
*
|
|
6581
|
-
* @type {string}
|
|
6582
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
6583
|
-
*/
|
|
6584
|
-
'specialtyId'?: string;
|
|
6585
6597
|
}
|
|
6586
6598
|
/**
|
|
6587
6599
|
*
|
|
@@ -8460,37 +8472,37 @@ export interface SpecialtyItemModel {
|
|
|
8460
8472
|
* @type {string}
|
|
8461
8473
|
* @memberof SpecialtyItemModel
|
|
8462
8474
|
*/
|
|
8463
|
-
'
|
|
8475
|
+
'languageCode'?: string | null;
|
|
8464
8476
|
/**
|
|
8465
8477
|
*
|
|
8466
8478
|
* @type {string}
|
|
8467
8479
|
* @memberof SpecialtyItemModel
|
|
8468
8480
|
*/
|
|
8469
|
-
'
|
|
8481
|
+
'name'?: string | null;
|
|
8470
8482
|
/**
|
|
8471
8483
|
*
|
|
8472
8484
|
* @type {string}
|
|
8473
8485
|
* @memberof SpecialtyItemModel
|
|
8474
8486
|
*/
|
|
8475
|
-
'
|
|
8487
|
+
'slug'?: string | null;
|
|
8476
8488
|
/**
|
|
8477
8489
|
*
|
|
8478
|
-
* @type {
|
|
8490
|
+
* @type {boolean}
|
|
8479
8491
|
* @memberof SpecialtyItemModel
|
|
8480
8492
|
*/
|
|
8481
|
-
'
|
|
8493
|
+
'confirmed'?: boolean;
|
|
8482
8494
|
/**
|
|
8483
8495
|
*
|
|
8484
|
-
* @type {
|
|
8496
|
+
* @type {string}
|
|
8485
8497
|
* @memberof SpecialtyItemModel
|
|
8486
8498
|
*/
|
|
8487
|
-
'
|
|
8499
|
+
'specialtyTypeId'?: string;
|
|
8488
8500
|
/**
|
|
8489
8501
|
*
|
|
8490
8502
|
* @type {string}
|
|
8491
8503
|
* @memberof SpecialtyItemModel
|
|
8492
8504
|
*/
|
|
8493
|
-
'
|
|
8505
|
+
'description'?: string | null;
|
|
8494
8506
|
/**
|
|
8495
8507
|
*
|
|
8496
8508
|
* @type {string}
|
|
@@ -8499,28 +8511,16 @@ export interface SpecialtyItemModel {
|
|
|
8499
8511
|
'specialtyTypeName'?: string | null;
|
|
8500
8512
|
/**
|
|
8501
8513
|
*
|
|
8502
|
-
* @type {
|
|
8514
|
+
* @type {Array<MediaModel>}
|
|
8503
8515
|
* @memberof SpecialtyItemModel
|
|
8504
8516
|
*/
|
|
8505
|
-
'
|
|
8517
|
+
'medias'?: Array<MediaModel> | null;
|
|
8506
8518
|
/**
|
|
8507
8519
|
*
|
|
8508
8520
|
* @type {AuditableEntity}
|
|
8509
8521
|
* @memberof SpecialtyItemModel
|
|
8510
8522
|
*/
|
|
8511
8523
|
'auditableEntity'?: AuditableEntity;
|
|
8512
|
-
/**
|
|
8513
|
-
*
|
|
8514
|
-
* @type {boolean}
|
|
8515
|
-
* @memberof SpecialtyItemModel
|
|
8516
|
-
*/
|
|
8517
|
-
'returnDefaultValue'?: boolean | null;
|
|
8518
|
-
/**
|
|
8519
|
-
*
|
|
8520
|
-
* @type {Array<MediaModel>}
|
|
8521
|
-
* @memberof SpecialtyItemModel
|
|
8522
|
-
*/
|
|
8523
|
-
'medias'?: Array<MediaModel> | null;
|
|
8524
8524
|
}
|
|
8525
8525
|
/**
|
|
8526
8526
|
*
|
|
@@ -8539,25 +8539,31 @@ export interface SpecialtyItemSimpleModel {
|
|
|
8539
8539
|
* @type {string}
|
|
8540
8540
|
* @memberof SpecialtyItemSimpleModel
|
|
8541
8541
|
*/
|
|
8542
|
-
'
|
|
8542
|
+
'languageCode'?: string | null;
|
|
8543
8543
|
/**
|
|
8544
8544
|
*
|
|
8545
8545
|
* @type {string}
|
|
8546
8546
|
* @memberof SpecialtyItemSimpleModel
|
|
8547
8547
|
*/
|
|
8548
|
-
'
|
|
8548
|
+
'name'?: string | null;
|
|
8549
8549
|
/**
|
|
8550
8550
|
*
|
|
8551
8551
|
* @type {string}
|
|
8552
8552
|
* @memberof SpecialtyItemSimpleModel
|
|
8553
8553
|
*/
|
|
8554
|
-
'
|
|
8554
|
+
'slug'?: string | null;
|
|
8555
8555
|
/**
|
|
8556
8556
|
*
|
|
8557
8557
|
* @type {boolean}
|
|
8558
8558
|
* @memberof SpecialtyItemSimpleModel
|
|
8559
8559
|
*/
|
|
8560
8560
|
'confirmed'?: boolean;
|
|
8561
|
+
/**
|
|
8562
|
+
*
|
|
8563
|
+
* @type {string}
|
|
8564
|
+
* @memberof SpecialtyItemSimpleModel
|
|
8565
|
+
*/
|
|
8566
|
+
'specialtyTypeId'?: string;
|
|
8561
8567
|
}
|
|
8562
8568
|
/**
|
|
8563
8569
|
*
|
|
@@ -8576,31 +8582,25 @@ export interface SpecialtyModel {
|
|
|
8576
8582
|
* @type {string}
|
|
8577
8583
|
* @memberof SpecialtyModel
|
|
8578
8584
|
*/
|
|
8579
|
-
'
|
|
8585
|
+
'languageCode'?: string | null;
|
|
8580
8586
|
/**
|
|
8581
8587
|
*
|
|
8582
8588
|
* @type {string}
|
|
8583
8589
|
* @memberof SpecialtyModel
|
|
8584
8590
|
*/
|
|
8585
|
-
'
|
|
8591
|
+
'name'?: string | null;
|
|
8586
8592
|
/**
|
|
8587
8593
|
*
|
|
8588
8594
|
* @type {string}
|
|
8589
8595
|
* @memberof SpecialtyModel
|
|
8590
8596
|
*/
|
|
8591
|
-
'
|
|
8592
|
-
/**
|
|
8593
|
-
*
|
|
8594
|
-
* @type {number}
|
|
8595
|
-
* @memberof SpecialtyModel
|
|
8596
|
-
*/
|
|
8597
|
-
'hospitalSpecialtyCount'?: number;
|
|
8597
|
+
'slug'?: string | null;
|
|
8598
8598
|
/**
|
|
8599
8599
|
*
|
|
8600
|
-
* @type {
|
|
8600
|
+
* @type {boolean}
|
|
8601
8601
|
* @memberof SpecialtyModel
|
|
8602
8602
|
*/
|
|
8603
|
-
'
|
|
8603
|
+
'confirmed'?: boolean;
|
|
8604
8604
|
/**
|
|
8605
8605
|
*
|
|
8606
8606
|
* @type {string}
|
|
@@ -8612,25 +8612,13 @@ export interface SpecialtyModel {
|
|
|
8612
8612
|
* @type {string}
|
|
8613
8613
|
* @memberof SpecialtyModel
|
|
8614
8614
|
*/
|
|
8615
|
-
'
|
|
8616
|
-
/**
|
|
8617
|
-
*
|
|
8618
|
-
* @type {boolean}
|
|
8619
|
-
* @memberof SpecialtyModel
|
|
8620
|
-
*/
|
|
8621
|
-
'confirmed'?: boolean;
|
|
8622
|
-
/**
|
|
8623
|
-
*
|
|
8624
|
-
* @type {AuditableEntity}
|
|
8625
|
-
* @memberof SpecialtyModel
|
|
8626
|
-
*/
|
|
8627
|
-
'auditableEntity'?: AuditableEntity;
|
|
8615
|
+
'description'?: string | null;
|
|
8628
8616
|
/**
|
|
8629
8617
|
*
|
|
8630
|
-
* @type {
|
|
8618
|
+
* @type {string}
|
|
8631
8619
|
* @memberof SpecialtyModel
|
|
8632
8620
|
*/
|
|
8633
|
-
'
|
|
8621
|
+
'specialtyTypeName'?: string | null;
|
|
8634
8622
|
/**
|
|
8635
8623
|
*
|
|
8636
8624
|
* @type {Array<MediaModel>}
|
|
@@ -8639,10 +8627,10 @@ export interface SpecialtyModel {
|
|
|
8639
8627
|
'medias'?: Array<MediaModel> | null;
|
|
8640
8628
|
/**
|
|
8641
8629
|
*
|
|
8642
|
-
* @type {
|
|
8630
|
+
* @type {AuditableEntity}
|
|
8643
8631
|
* @memberof SpecialtyModel
|
|
8644
8632
|
*/
|
|
8645
|
-
'
|
|
8633
|
+
'auditableEntity'?: AuditableEntity;
|
|
8646
8634
|
/**
|
|
8647
8635
|
*
|
|
8648
8636
|
* @type {string}
|
|
@@ -8673,55 +8661,43 @@ export interface SpecialtyTypeItemModel {
|
|
|
8673
8661
|
* @type {string}
|
|
8674
8662
|
* @memberof SpecialtyTypeItemModel
|
|
8675
8663
|
*/
|
|
8676
|
-
'
|
|
8664
|
+
'languageCode'?: string | null;
|
|
8677
8665
|
/**
|
|
8678
8666
|
*
|
|
8679
8667
|
* @type {string}
|
|
8680
8668
|
* @memberof SpecialtyTypeItemModel
|
|
8681
8669
|
*/
|
|
8682
|
-
'
|
|
8670
|
+
'name'?: string | null;
|
|
8683
8671
|
/**
|
|
8684
8672
|
*
|
|
8685
8673
|
* @type {string}
|
|
8686
8674
|
* @memberof SpecialtyTypeItemModel
|
|
8687
8675
|
*/
|
|
8688
|
-
'
|
|
8676
|
+
'slug'?: string | null;
|
|
8689
8677
|
/**
|
|
8690
8678
|
*
|
|
8691
|
-
* @type {
|
|
8679
|
+
* @type {boolean}
|
|
8692
8680
|
* @memberof SpecialtyTypeItemModel
|
|
8693
8681
|
*/
|
|
8694
|
-
'
|
|
8682
|
+
'confirmed'?: boolean;
|
|
8695
8683
|
/**
|
|
8696
8684
|
*
|
|
8697
|
-
* @type {
|
|
8685
|
+
* @type {string}
|
|
8698
8686
|
* @memberof SpecialtyTypeItemModel
|
|
8699
8687
|
*/
|
|
8700
|
-
'
|
|
8688
|
+
'description'?: string | null;
|
|
8701
8689
|
/**
|
|
8702
8690
|
*
|
|
8703
|
-
* @type {
|
|
8691
|
+
* @type {MarketingType}
|
|
8704
8692
|
* @memberof SpecialtyTypeItemModel
|
|
8705
8693
|
*/
|
|
8706
|
-
'
|
|
8694
|
+
'marketingType'?: MarketingType;
|
|
8707
8695
|
/**
|
|
8708
8696
|
*
|
|
8709
8697
|
* @type {number}
|
|
8710
8698
|
* @memberof SpecialtyTypeItemModel
|
|
8711
8699
|
*/
|
|
8712
|
-
'
|
|
8713
|
-
/**
|
|
8714
|
-
*
|
|
8715
|
-
* @type {Date}
|
|
8716
|
-
* @memberof SpecialtyTypeItemModel
|
|
8717
|
-
*/
|
|
8718
|
-
'created'?: Date;
|
|
8719
|
-
/**
|
|
8720
|
-
*
|
|
8721
|
-
* @type {boolean}
|
|
8722
|
-
* @memberof SpecialtyTypeItemModel
|
|
8723
|
-
*/
|
|
8724
|
-
'confirmed'?: boolean;
|
|
8700
|
+
'specialtiesCount'?: number;
|
|
8725
8701
|
/**
|
|
8726
8702
|
*
|
|
8727
8703
|
* @type {Array<MediaModel>}
|
|
@@ -8752,55 +8728,43 @@ export interface SpecialtyTypeModel {
|
|
|
8752
8728
|
* @type {string}
|
|
8753
8729
|
* @memberof SpecialtyTypeModel
|
|
8754
8730
|
*/
|
|
8755
|
-
'
|
|
8731
|
+
'languageCode'?: string | null;
|
|
8756
8732
|
/**
|
|
8757
8733
|
*
|
|
8758
8734
|
* @type {string}
|
|
8759
8735
|
* @memberof SpecialtyTypeModel
|
|
8760
8736
|
*/
|
|
8761
|
-
'
|
|
8737
|
+
'name'?: string | null;
|
|
8762
8738
|
/**
|
|
8763
8739
|
*
|
|
8764
8740
|
* @type {string}
|
|
8765
8741
|
* @memberof SpecialtyTypeModel
|
|
8766
8742
|
*/
|
|
8767
|
-
'
|
|
8743
|
+
'slug'?: string | null;
|
|
8768
8744
|
/**
|
|
8769
8745
|
*
|
|
8770
|
-
* @type {
|
|
8746
|
+
* @type {boolean}
|
|
8771
8747
|
* @memberof SpecialtyTypeModel
|
|
8772
8748
|
*/
|
|
8773
|
-
'
|
|
8749
|
+
'confirmed'?: boolean;
|
|
8774
8750
|
/**
|
|
8775
8751
|
*
|
|
8776
|
-
* @type {
|
|
8752
|
+
* @type {string}
|
|
8777
8753
|
* @memberof SpecialtyTypeModel
|
|
8778
8754
|
*/
|
|
8779
|
-
'
|
|
8755
|
+
'description'?: string | null;
|
|
8780
8756
|
/**
|
|
8781
8757
|
*
|
|
8782
|
-
* @type {
|
|
8758
|
+
* @type {MarketingType}
|
|
8783
8759
|
* @memberof SpecialtyTypeModel
|
|
8784
8760
|
*/
|
|
8785
|
-
'
|
|
8761
|
+
'marketingType'?: MarketingType;
|
|
8786
8762
|
/**
|
|
8787
8763
|
*
|
|
8788
8764
|
* @type {number}
|
|
8789
8765
|
* @memberof SpecialtyTypeModel
|
|
8790
8766
|
*/
|
|
8791
|
-
'
|
|
8792
|
-
/**
|
|
8793
|
-
*
|
|
8794
|
-
* @type {Date}
|
|
8795
|
-
* @memberof SpecialtyTypeModel
|
|
8796
|
-
*/
|
|
8797
|
-
'created'?: Date;
|
|
8798
|
-
/**
|
|
8799
|
-
*
|
|
8800
|
-
* @type {boolean}
|
|
8801
|
-
* @memberof SpecialtyTypeModel
|
|
8802
|
-
*/
|
|
8803
|
-
'confirmed'?: boolean;
|
|
8767
|
+
'specialtiesCount'?: number;
|
|
8804
8768
|
/**
|
|
8805
8769
|
*
|
|
8806
8770
|
* @type {Array<MediaModel>}
|
|
@@ -8813,12 +8777,6 @@ export interface SpecialtyTypeModel {
|
|
|
8813
8777
|
* @memberof SpecialtyTypeModel
|
|
8814
8778
|
*/
|
|
8815
8779
|
'auditableEntity'?: AuditableEntity;
|
|
8816
|
-
/**
|
|
8817
|
-
*
|
|
8818
|
-
* @type {string}
|
|
8819
|
-
* @memberof SpecialtyTypeModel
|
|
8820
|
-
*/
|
|
8821
|
-
'languageCode'?: string | null;
|
|
8822
8780
|
/**
|
|
8823
8781
|
*
|
|
8824
8782
|
* @type {string}
|
|
@@ -8844,6 +8802,12 @@ export interface SpecialtyTypeSimpleItemModel {
|
|
|
8844
8802
|
* @memberof SpecialtyTypeSimpleItemModel
|
|
8845
8803
|
*/
|
|
8846
8804
|
'id'?: string;
|
|
8805
|
+
/**
|
|
8806
|
+
*
|
|
8807
|
+
* @type {string}
|
|
8808
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
8809
|
+
*/
|
|
8810
|
+
'languageCode'?: string | null;
|
|
8847
8811
|
/**
|
|
8848
8812
|
*
|
|
8849
8813
|
* @type {string}
|
|
@@ -12525,13 +12489,14 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12525
12489
|
* @summary Get all doctor affiliations.
|
|
12526
12490
|
* @param {string} doctorId
|
|
12527
12491
|
* @param {string} [hospitalName]
|
|
12492
|
+
* @param {string} [languageCode]
|
|
12528
12493
|
* @param {number} [page]
|
|
12529
12494
|
* @param {number} [limit]
|
|
12530
12495
|
* @param {Date} [lastRetrieved]
|
|
12531
12496
|
* @param {*} [options] Override http request option.
|
|
12532
12497
|
* @throws {RequiredError}
|
|
12533
12498
|
*/
|
|
12534
|
-
apiV2DoctorsDoctorIdAffiliationsGet: (doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12499
|
+
apiV2DoctorsDoctorIdAffiliationsGet: (doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12535
12500
|
/**
|
|
12536
12501
|
*
|
|
12537
12502
|
* @summary Get doctor affiliation.
|
|
@@ -12760,13 +12725,14 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
12760
12725
|
* @summary Get all doctor affiliations.
|
|
12761
12726
|
* @param {string} doctorId
|
|
12762
12727
|
* @param {string} [hospitalName]
|
|
12728
|
+
* @param {string} [languageCode]
|
|
12763
12729
|
* @param {number} [page]
|
|
12764
12730
|
* @param {number} [limit]
|
|
12765
12731
|
* @param {Date} [lastRetrieved]
|
|
12766
12732
|
* @param {*} [options] Override http request option.
|
|
12767
12733
|
* @throws {RequiredError}
|
|
12768
12734
|
*/
|
|
12769
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
12735
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
12770
12736
|
/**
|
|
12771
12737
|
*
|
|
12772
12738
|
* @summary Get doctor affiliation.
|
|
@@ -12995,13 +12961,14 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
12995
12961
|
* @summary Get all doctor affiliations.
|
|
12996
12962
|
* @param {string} doctorId
|
|
12997
12963
|
* @param {string} [hospitalName]
|
|
12964
|
+
* @param {string} [languageCode]
|
|
12998
12965
|
* @param {number} [page]
|
|
12999
12966
|
* @param {number} [limit]
|
|
13000
12967
|
* @param {Date} [lastRetrieved]
|
|
13001
12968
|
* @param {*} [options] Override http request option.
|
|
13002
12969
|
* @throws {RequiredError}
|
|
13003
12970
|
*/
|
|
13004
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
12971
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
13005
12972
|
/**
|
|
13006
12973
|
*
|
|
13007
12974
|
* @summary Get doctor affiliation.
|
|
@@ -13232,6 +13199,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13232
13199
|
* @summary Get all doctor affiliations.
|
|
13233
13200
|
* @param {string} doctorId
|
|
13234
13201
|
* @param {string} [hospitalName]
|
|
13202
|
+
* @param {string} [languageCode]
|
|
13235
13203
|
* @param {number} [page]
|
|
13236
13204
|
* @param {number} [limit]
|
|
13237
13205
|
* @param {Date} [lastRetrieved]
|
|
@@ -13239,7 +13207,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13239
13207
|
* @throws {RequiredError}
|
|
13240
13208
|
* @memberof DoctorsApi
|
|
13241
13209
|
*/
|
|
13242
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
13210
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
13243
13211
|
/**
|
|
13244
13212
|
*
|
|
13245
13213
|
* @summary Get doctor affiliation.
|
|
@@ -14458,12 +14426,10 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14458
14426
|
* @param {string} hospitalId
|
|
14459
14427
|
* @param {string} specialtyId
|
|
14460
14428
|
* @param {string} [languageCode]
|
|
14461
|
-
* @param {boolean} [returnDefaultValue]
|
|
14462
|
-
* @param {boolean} [includeServices]
|
|
14463
14429
|
* @param {*} [options] Override http request option.
|
|
14464
14430
|
* @throws {RequiredError}
|
|
14465
14431
|
*/
|
|
14466
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined,
|
|
14432
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14467
14433
|
/**
|
|
14468
14434
|
*
|
|
14469
14435
|
* @summary Get all HospitalServices.
|
|
@@ -14847,12 +14813,10 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14847
14813
|
* @param {string} hospitalId
|
|
14848
14814
|
* @param {string} specialtyId
|
|
14849
14815
|
* @param {string} [languageCode]
|
|
14850
|
-
* @param {boolean} [returnDefaultValue]
|
|
14851
|
-
* @param {boolean} [includeServices]
|
|
14852
14816
|
* @param {*} [options] Override http request option.
|
|
14853
14817
|
* @throws {RequiredError}
|
|
14854
14818
|
*/
|
|
14855
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined,
|
|
14819
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
14856
14820
|
/**
|
|
14857
14821
|
*
|
|
14858
14822
|
* @summary Get all HospitalServices.
|
|
@@ -15236,12 +15200,10 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15236
15200
|
* @param {string} hospitalId
|
|
15237
15201
|
* @param {string} specialtyId
|
|
15238
15202
|
* @param {string} [languageCode]
|
|
15239
|
-
* @param {boolean} [returnDefaultValue]
|
|
15240
|
-
* @param {boolean} [includeServices]
|
|
15241
15203
|
* @param {*} [options] Override http request option.
|
|
15242
15204
|
* @throws {RequiredError}
|
|
15243
15205
|
*/
|
|
15244
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined,
|
|
15206
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
15245
15207
|
/**
|
|
15246
15208
|
*
|
|
15247
15209
|
* @summary Get all HospitalServices.
|
|
@@ -15646,13 +15608,11 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15646
15608
|
* @param {string} hospitalId
|
|
15647
15609
|
* @param {string} specialtyId
|
|
15648
15610
|
* @param {string} [languageCode]
|
|
15649
|
-
* @param {boolean} [returnDefaultValue]
|
|
15650
|
-
* @param {boolean} [includeServices]
|
|
15651
15611
|
* @param {*} [options] Override http request option.
|
|
15652
15612
|
* @throws {RequiredError}
|
|
15653
15613
|
* @memberof HospitalsApi
|
|
15654
15614
|
*/
|
|
15655
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string,
|
|
15615
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
15656
15616
|
/**
|
|
15657
15617
|
*
|
|
15658
15618
|
* @summary Get all HospitalServices.
|