ch-api-client-typescript2 3.3.2 → 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 CHANGED
@@ -4119,103 +4119,13 @@ export interface DoctorItemModel {
4119
4119
  * @type {string}
4120
4120
  * @memberof DoctorItemModel
4121
4121
  */
4122
- 'userName'?: string | null;
4123
- /**
4124
- *
4125
- * @type {string}
4126
- * @memberof DoctorItemModel
4127
- */
4128
- 'firstName'?: string | null;
4129
- /**
4130
- *
4131
- * @type {string}
4132
- * @memberof DoctorItemModel
4133
- */
4134
- 'middleName'?: string | null;
4135
- /**
4136
- *
4137
- * @type {string}
4138
- * @memberof DoctorItemModel
4139
- */
4140
- 'lastName'?: string | null;
4141
- /**
4142
- *
4143
- * @type {string}
4144
- * @memberof DoctorItemModel
4145
- */
4146
- 'fullName'?: string | null;
4122
+ 'name'?: string | null;
4147
4123
  /**
4148
4124
  *
4149
4125
  * @type {string}
4150
4126
  * @memberof DoctorItemModel
4151
4127
  */
4152
4128
  'slug'?: string | null;
4153
- /**
4154
- *
4155
- * @type {string}
4156
- * @memberof DoctorItemModel
4157
- */
4158
- 'phone'?: string | null;
4159
- /**
4160
- *
4161
- * @type {string}
4162
- * @memberof DoctorItemModel
4163
- */
4164
- 'email'?: string | null;
4165
- /**
4166
- *
4167
- * @type {string}
4168
- * @memberof DoctorItemModel
4169
- */
4170
- 'photo'?: string | null;
4171
- /**
4172
- *
4173
- * @type {string}
4174
- * @memberof DoctorItemModel
4175
- */
4176
- '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
- /**
4202
- *
4203
- * @type {AuditableEntity}
4204
- * @memberof DoctorItemModel
4205
- */
4206
- '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
4129
  /**
4220
4130
  *
4221
4131
  * @type {boolean}
@@ -4236,10 +4146,16 @@ export interface DoctorItemModel {
4236
4146
  'confirmed'?: boolean;
4237
4147
  /**
4238
4148
  *
4239
- * @type {Array<DoctorAffiliationModel>}
4149
+ * @type {Array<DoctorSpecialtyItemModel>}
4240
4150
  * @memberof DoctorItemModel
4241
4151
  */
4242
- 'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
4152
+ 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
4153
+ /**
4154
+ *
4155
+ * @type {Array<DoctorAffiliationItemModel>}
4156
+ * @memberof DoctorItemModel
4157
+ */
4158
+ 'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
4243
4159
  }
4244
4160
  /**
4245
4161
  *
@@ -4478,12 +4394,24 @@ export interface DoctorModel {
4478
4394
  * @memberof DoctorModel
4479
4395
  */
4480
4396
  'confirmed'?: boolean;
4397
+ /**
4398
+ *
4399
+ * @type {Array<DoctorSpecialtyItemModel>}
4400
+ * @memberof DoctorModel
4401
+ */
4402
+ 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
4481
4403
  /**
4482
4404
  *
4483
4405
  * @type {Array<DoctorAffiliationModel>}
4484
4406
  * @memberof DoctorModel
4485
4407
  */
4486
4408
  'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
4409
+ /**
4410
+ *
4411
+ * @type {Array<UserTranslationModel>}
4412
+ * @memberof DoctorModel
4413
+ */
4414
+ 'translations'?: Array<UserTranslationModel> | null;
4487
4415
  /**
4488
4416
  *
4489
4417
  * @type {Array<LocalizedUrlModel>}
@@ -4679,57 +4607,64 @@ export interface DoctorSpecialtiesModel {
4679
4607
  /**
4680
4608
  *
4681
4609
  * @export
4682
- * @interface DoctorSpecialtyModel
4610
+ * @interface DoctorSpecialtyItemModel
4683
4611
  */
4684
- export interface DoctorSpecialtyModel {
4612
+ export interface DoctorSpecialtyItemModel {
4685
4613
  /**
4686
4614
  *
4687
4615
  * @type {string}
4688
- * @memberof DoctorSpecialtyModel
4616
+ * @memberof DoctorSpecialtyItemModel
4689
4617
  */
4690
4618
  'specialtyId'?: string;
4691
4619
  /**
4692
4620
  *
4693
4621
  * @type {string}
4694
- * @memberof DoctorSpecialtyModel
4622
+ * @memberof DoctorSpecialtyItemModel
4695
4623
  */
4696
4624
  'specialtyName'?: string | null;
4697
4625
  /**
4698
4626
  *
4699
4627
  * @type {string}
4700
- * @memberof DoctorSpecialtyModel
4628
+ * @memberof DoctorSpecialtyItemModel
4701
4629
  */
4702
4630
  'specialtySlug'?: string | null;
4703
4631
  /**
4704
4632
  *
4705
- * @type {string}
4706
- * @memberof DoctorSpecialtyModel
4633
+ * @type {number}
4634
+ * @memberof DoctorSpecialtyItemModel
4707
4635
  */
4708
- 'specialtyTypeId'?: string;
4636
+ 'order'?: number;
4637
+ }
4638
+ /**
4639
+ *
4640
+ * @export
4641
+ * @interface DoctorSpecialtyModel
4642
+ */
4643
+ export interface DoctorSpecialtyModel {
4709
4644
  /**
4710
4645
  *
4711
4646
  * @type {string}
4712
4647
  * @memberof DoctorSpecialtyModel
4713
4648
  */
4714
- 'specialtyTypeName'?: string | null;
4649
+ 'specialtyId'?: string;
4715
4650
  /**
4716
4651
  *
4717
- * @type {number}
4652
+ * @type {string}
4718
4653
  * @memberof DoctorSpecialtyModel
4719
4654
  */
4720
- 'order'?: number;
4655
+ 'specialtyName'?: string | null;
4721
4656
  /**
4722
4657
  *
4723
4658
  * @type {string}
4724
4659
  * @memberof DoctorSpecialtyModel
4725
4660
  */
4726
- 'doctorId'?: string;
4661
+ 'specialtySlug'?: string | null;
4727
4662
  /**
4728
4663
  *
4729
- * @type {string}
4664
+ * @type {number}
4730
4665
  * @memberof DoctorSpecialtyModel
4731
4666
  */
4732
- 'doctorName'?: string | null;
4667
+ 'order'?: number;
4733
4668
  }
4734
4669
  /**
4735
4670
  *
@@ -5463,24 +5398,6 @@ export interface HospitalEquipmentsModel {
5463
5398
  * @interface HospitalEvaluationItemModel
5464
5399
  */
5465
5400
  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
5401
  /**
5485
5402
  *
5486
5403
  * @type {string}
@@ -5493,18 +5410,6 @@ export interface HospitalEvaluationItemModel {
5493
5410
  * @memberof HospitalEvaluationItemModel
5494
5411
  */
5495
5412
  '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
5413
  }
5509
5414
  /**
5510
5415
  *
@@ -5512,24 +5417,6 @@ export interface HospitalEvaluationItemModel {
5512
5417
  * @interface HospitalEvaluationModel
5513
5418
  */
5514
5419
  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
5420
  /**
5534
5421
  *
5535
5422
  * @type {string}
@@ -5598,12 +5485,6 @@ export interface HospitalItemModel {
5598
5485
  * @memberof HospitalItemModel
5599
5486
  */
5600
5487
  'slug'?: string | null;
5601
- /**
5602
- *
5603
- * @type {string}
5604
- * @memberof HospitalItemModel
5605
- */
5606
- 'description'?: string | null;
5607
5488
  /**
5608
5489
  *
5609
5490
  * @type {string}
@@ -5612,52 +5493,28 @@ export interface HospitalItemModel {
5612
5493
  'logo'?: string | null;
5613
5494
  /**
5614
5495
  *
5615
- * @type {string}
5616
- * @memberof HospitalItemModel
5617
- */
5618
- 'overview'?: string | null;
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}
5496
+ * @type {boolean}
5640
5497
  * @memberof HospitalItemModel
5641
5498
  */
5642
- 'medicalStaffCount'?: number | null;
5499
+ 'confirmed'?: boolean;
5643
5500
  /**
5644
5501
  *
5645
- * @type {number}
5502
+ * @type {string}
5646
5503
  * @memberof HospitalItemModel
5647
5504
  */
5648
- 'doctorCount'?: number | null;
5505
+ 'countryId'?: string;
5649
5506
  /**
5650
5507
  *
5651
5508
  * @type {string}
5652
5509
  * @memberof HospitalItemModel
5653
5510
  */
5654
- 'countryId'?: string;
5511
+ 'countryName'?: string | null;
5655
5512
  /**
5656
5513
  *
5657
5514
  * @type {string}
5658
5515
  * @memberof HospitalItemModel
5659
5516
  */
5660
- 'countryName'?: string | null;
5517
+ 'countrySlug'?: string | null;
5661
5518
  /**
5662
5519
  *
5663
5520
  * @type {MarketingType}
@@ -5688,66 +5545,6 @@ export interface HospitalItemModel {
5688
5545
  * @memberof HospitalItemModel
5689
5546
  */
5690
5547
  'websiteUrl'?: string | null;
5691
- /**
5692
- *
5693
- * @type {number}
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}
5742
- * @memberof HospitalItemModel
5743
- */
5744
- 'managerAffiliationsCount'?: number;
5745
- /**
5746
- *
5747
- * @type {string}
5748
- * @memberof HospitalItemModel
5749
- */
5750
- 'specialtiesSummerized'?: string | null;
5751
5548
  /**
5752
5549
  *
5753
5550
  * @type {boolean}
@@ -5756,46 +5553,28 @@ export interface HospitalItemModel {
5756
5553
  'paymentEnabled'?: boolean;
5757
5554
  /**
5758
5555
  *
5759
- * @type {boolean}
5556
+ * @type {string}
5760
5557
  * @memberof HospitalItemModel
5761
5558
  */
5762
- 'confirmed'?: boolean;
5559
+ 'specialtiesSummerized'?: string | null;
5763
5560
  /**
5764
5561
  *
5765
- * @type {Array<AwardModel>}
5562
+ * @type {Array<HospitalAccreditationItemModel>}
5766
5563
  * @memberof HospitalItemModel
5767
5564
  */
5768
- 'awards'?: Array<AwardModel> | null;
5565
+ 'accreditations'?: Array<HospitalAccreditationItemModel> | null;
5769
5566
  /**
5770
5567
  *
5771
5568
  * @type {Array<MediaModel>}
5772
5569
  * @memberof HospitalItemModel
5773
5570
  */
5774
5571
  '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
5572
  /**
5788
5573
  *
5789
5574
  * @type {LocationModel}
5790
5575
  * @memberof HospitalItemModel
5791
5576
  */
5792
5577
  'location'?: LocationModel;
5793
- /**
5794
- *
5795
- * @type {AuditableEntity}
5796
- * @memberof HospitalItemModel
5797
- */
5798
- 'auditableEntity'?: AuditableEntity;
5799
5578
  }
5800
5579
  /**
5801
5580
  *
@@ -5821,12 +5600,6 @@ export interface HospitalModel {
5821
5600
  * @memberof HospitalModel
5822
5601
  */
5823
5602
  'slug'?: string | null;
5824
- /**
5825
- *
5826
- * @type {string}
5827
- * @memberof HospitalModel
5828
- */
5829
- 'description'?: string | null;
5830
5603
  /**
5831
5604
  *
5832
5605
  * @type {string}
@@ -5835,52 +5608,28 @@ export interface HospitalModel {
5835
5608
  'logo'?: string | null;
5836
5609
  /**
5837
5610
  *
5838
- * @type {string}
5839
- * @memberof HospitalModel
5840
- */
5841
- 'overview'?: string | null;
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}
5611
+ * @type {boolean}
5863
5612
  * @memberof HospitalModel
5864
5613
  */
5865
- 'medicalStaffCount'?: number | null;
5614
+ 'confirmed'?: boolean;
5866
5615
  /**
5867
5616
  *
5868
- * @type {number}
5617
+ * @type {string}
5869
5618
  * @memberof HospitalModel
5870
5619
  */
5871
- 'doctorCount'?: number | null;
5620
+ 'countryId'?: string;
5872
5621
  /**
5873
5622
  *
5874
5623
  * @type {string}
5875
5624
  * @memberof HospitalModel
5876
5625
  */
5877
- 'countryId'?: string;
5626
+ 'countryName'?: string | null;
5878
5627
  /**
5879
5628
  *
5880
5629
  * @type {string}
5881
5630
  * @memberof HospitalModel
5882
5631
  */
5883
- 'countryName'?: string | null;
5632
+ 'countrySlug'?: string | null;
5884
5633
  /**
5885
5634
  *
5886
5635
  * @type {MarketingType}
@@ -5913,124 +5662,88 @@ export interface HospitalModel {
5913
5662
  'websiteUrl'?: string | null;
5914
5663
  /**
5915
5664
  *
5916
- * @type {number}
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}
5935
- * @memberof HospitalModel
5936
- */
5937
- 'reviewsCount'?: number;
5938
- /**
5939
- *
5940
- * @type {number}
5941
- * @memberof HospitalModel
5942
- */
5943
- 'departmentsCount'?: number;
5944
- /**
5945
- *
5946
- * @type {number}
5947
- * @memberof HospitalModel
5948
- */
5949
- 'specialtiesCount'?: number;
5950
- /**
5951
- *
5952
- * @type {number}
5665
+ * @type {boolean}
5953
5666
  * @memberof HospitalModel
5954
5667
  */
5955
- 'accreditationsCount'?: number;
5668
+ 'paymentEnabled'?: boolean;
5956
5669
  /**
5957
5670
  *
5958
- * @type {number}
5671
+ * @type {string}
5959
5672
  * @memberof HospitalModel
5960
5673
  */
5961
- 'doctorAffiliationsCount'?: number;
5674
+ 'specialtiesSummerized'?: string | null;
5962
5675
  /**
5963
5676
  *
5964
- * @type {number}
5677
+ * @type {Array<HospitalAccreditationItemModel>}
5965
5678
  * @memberof HospitalModel
5966
5679
  */
5967
- 'managerAffiliationsCount'?: number;
5680
+ 'accreditations'?: Array<HospitalAccreditationItemModel> | null;
5968
5681
  /**
5969
5682
  *
5970
- * @type {string}
5683
+ * @type {Array<MediaModel>}
5971
5684
  * @memberof HospitalModel
5972
5685
  */
5973
- 'specialtiesSummerized'?: string | null;
5686
+ 'medias'?: Array<MediaModel> | null;
5974
5687
  /**
5975
5688
  *
5976
- * @type {boolean}
5689
+ * @type {LocationModel}
5977
5690
  * @memberof HospitalModel
5978
5691
  */
5979
- 'paymentEnabled'?: boolean;
5692
+ 'location'?: LocationModel;
5980
5693
  /**
5981
5694
  *
5982
- * @type {boolean}
5695
+ * @type {string}
5983
5696
  * @memberof HospitalModel
5984
5697
  */
5985
- 'confirmed'?: boolean;
5698
+ 'languageCode'?: string | null;
5986
5699
  /**
5987
5700
  *
5988
- * @type {Array<AwardModel>}
5701
+ * @type {string}
5989
5702
  * @memberof HospitalModel
5990
5703
  */
5991
- 'awards'?: Array<AwardModel> | null;
5704
+ 'description'?: string | null;
5992
5705
  /**
5993
5706
  *
5994
- * @type {Array<MediaModel>}
5707
+ * @type {string}
5995
5708
  * @memberof HospitalModel
5996
5709
  */
5997
- 'medias'?: Array<MediaModel> | null;
5710
+ 'overview'?: string | null;
5998
5711
  /**
5999
5712
  *
6000
- * @type {Array<AccreditationModel>}
5713
+ * @type {string}
6001
5714
  * @memberof HospitalModel
6002
5715
  */
6003
- 'accreditations'?: Array<AccreditationModel> | null;
5716
+ 'content'?: string | null;
6004
5717
  /**
6005
5718
  *
6006
- * @type {Array<HospitalEvaluationModel>}
5719
+ * @type {number}
6007
5720
  * @memberof HospitalModel
6008
5721
  */
6009
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
5722
+ 'bedsCount'?: number | null;
6010
5723
  /**
6011
5724
  *
6012
- * @type {LocationModel}
5725
+ * @type {number}
6013
5726
  * @memberof HospitalModel
6014
5727
  */
6015
- 'location'?: LocationModel;
5728
+ 'operationsPerYear'?: number | null;
6016
5729
  /**
6017
5730
  *
6018
- * @type {AuditableEntity}
5731
+ * @type {number}
6019
5732
  * @memberof HospitalModel
6020
5733
  */
6021
- 'auditableEntity'?: AuditableEntity;
5734
+ 'foundationYear'?: number | null;
6022
5735
  /**
6023
5736
  *
6024
- * @type {string}
5737
+ * @type {number}
6025
5738
  * @memberof HospitalModel
6026
5739
  */
6027
- 'languageCode'?: string | null;
5740
+ 'medicalStaffCount'?: number | null;
6028
5741
  /**
6029
5742
  *
6030
- * @type {string}
5743
+ * @type {number}
6031
5744
  * @memberof HospitalModel
6032
5745
  */
6033
- 'content'?: string | null;
5746
+ 'doctorCount'?: number | null;
6034
5747
  /**
6035
5748
  *
6036
5749
  * @type {string}
@@ -6049,6 +5762,12 @@ export interface HospitalModel {
6049
5762
  * @memberof HospitalModel
6050
5763
  */
6051
5764
  'customStyle'?: string | null;
5765
+ /**
5766
+ *
5767
+ * @type {Array<HospitalEvaluationItemModel>}
5768
+ * @memberof HospitalModel
5769
+ */
5770
+ 'evaluations'?: Array<HospitalEvaluationItemModel> | null;
6052
5771
  /**
6053
5772
  *
6054
5773
  * @type {Array<WorkingDay>}
@@ -6067,6 +5786,12 @@ export interface HospitalModel {
6067
5786
  * @memberof HospitalModel
6068
5787
  */
6069
5788
  'localizedUrls'?: Array<LocalizedUrlModel> | null;
5789
+ /**
5790
+ *
5791
+ * @type {Array<AwardModel>}
5792
+ * @memberof HospitalModel
5793
+ */
5794
+ 'awards'?: Array<AwardModel> | null;
6070
5795
  }
6071
5796
  /**
6072
5797
  *
@@ -6537,54 +6262,6 @@ export interface HospitalSpecialtyItemModel {
6537
6262
  * @memberof HospitalSpecialtyItemModel
6538
6263
  */
6539
6264
  'id'?: string;
6540
- /**
6541
- *
6542
- * @type {string}
6543
- * @memberof HospitalSpecialtyItemModel
6544
- */
6545
- 'hospitalId'?: string;
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;
6588
6265
  /**
6589
6266
  *
6590
6267
  * @type {string}
@@ -6605,16 +6282,10 @@ export interface HospitalSpecialtyItemModel {
6605
6282
  'description'?: string | null;
6606
6283
  /**
6607
6284
  *
6608
- * @type {number}
6609
- * @memberof HospitalSpecialtyItemModel
6610
- */
6611
- 'serviceCount'?: number;
6612
- /**
6613
- *
6614
- * @type {Array<HospitalServiceItemModel>}
6285
+ * @type {MarketingType}
6615
6286
  * @memberof HospitalSpecialtyItemModel
6616
6287
  */
6617
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
6288
+ 'marketingType'?: MarketingType;
6618
6289
  /**
6619
6290
  *
6620
6291
  * @type {string}
@@ -6651,18 +6322,6 @@ export interface HospitalSpecialtyItemModel {
6651
6322
  * @memberof HospitalSpecialtyItemModel
6652
6323
  */
6653
6324
  'confirmed'?: boolean;
6654
- /**
6655
- *
6656
- * @type {Array<MediaModel>}
6657
- * @memberof HospitalSpecialtyItemModel
6658
- */
6659
- 'medias'?: Array<MediaModel> | null;
6660
- /**
6661
- *
6662
- * @type {AuditableEntity}
6663
- * @memberof HospitalSpecialtyItemModel
6664
- */
6665
- 'auditableEntity'?: AuditableEntity;
6666
6325
  }
6667
6326
  /**
6668
6327
  *
@@ -6681,151 +6340,145 @@ export interface HospitalSpecialtyModel {
6681
6340
  * @type {string}
6682
6341
  * @memberof HospitalSpecialtyModel
6683
6342
  */
6684
- 'hospitalId'?: string;
6343
+ 'name'?: string | null;
6685
6344
  /**
6686
6345
  *
6687
6346
  * @type {string}
6688
6347
  * @memberof HospitalSpecialtyModel
6689
6348
  */
6690
- 'hospitalName'?: string | null;
6349
+ 'slug'?: string | null;
6691
6350
  /**
6692
6351
  *
6693
6352
  * @type {string}
6694
6353
  * @memberof HospitalSpecialtyModel
6695
6354
  */
6696
- 'hospitalSlug'?: string | null;
6355
+ 'description'?: string | null;
6697
6356
  /**
6698
6357
  *
6699
- * @type {string}
6358
+ * @type {MarketingType}
6700
6359
  * @memberof HospitalSpecialtyModel
6701
6360
  */
6702
- 'specialtyId'?: string;
6361
+ 'marketingType'?: MarketingType;
6703
6362
  /**
6704
6363
  *
6705
6364
  * @type {string}
6706
6365
  * @memberof HospitalSpecialtyModel
6707
6366
  */
6708
- 'specialtyName'?: string | null;
6367
+ 'photo'?: string | null;
6709
6368
  /**
6710
6369
  *
6711
6370
  * @type {string}
6712
6371
  * @memberof HospitalSpecialtyModel
6713
6372
  */
6714
- 'specialtyTypeId'?: string;
6373
+ 'photoThumbnail'?: string | null;
6715
6374
  /**
6716
6375
  *
6717
6376
  * @type {string}
6718
6377
  * @memberof HospitalSpecialtyModel
6719
6378
  */
6720
- 'specialtyTypeName'?: string | null;
6721
- /**
6722
- *
6723
- * @type {MarketingType}
6724
- * @memberof HospitalSpecialtyModel
6725
- */
6726
- 'marketingType'?: MarketingType;
6379
+ 'background'?: string | null;
6727
6380
  /**
6728
6381
  *
6729
6382
  * @type {string}
6730
6383
  * @memberof HospitalSpecialtyModel
6731
6384
  */
6732
- 'name'?: string | null;
6385
+ 'backgroundThumbnail'?: string | null;
6733
6386
  /**
6734
6387
  *
6735
- * @type {string}
6388
+ * @type {number}
6736
6389
  * @memberof HospitalSpecialtyModel
6737
6390
  */
6738
- 'slug'?: string | null;
6391
+ 'order'?: number;
6739
6392
  /**
6740
6393
  *
6741
- * @type {string}
6394
+ * @type {boolean}
6742
6395
  * @memberof HospitalSpecialtyModel
6743
6396
  */
6744
- 'description'?: string | null;
6397
+ 'confirmed'?: boolean;
6745
6398
  /**
6746
6399
  *
6747
- * @type {number}
6400
+ * @type {string}
6748
6401
  * @memberof HospitalSpecialtyModel
6749
6402
  */
6750
- 'serviceCount'?: number;
6403
+ 'hospitalId'?: string;
6751
6404
  /**
6752
6405
  *
6753
- * @type {Array<HospitalServiceItemModel>}
6406
+ * @type {string}
6754
6407
  * @memberof HospitalSpecialtyModel
6755
6408
  */
6756
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
6409
+ 'hospitalName'?: string | null;
6757
6410
  /**
6758
6411
  *
6759
6412
  * @type {string}
6760
6413
  * @memberof HospitalSpecialtyModel
6761
6414
  */
6762
- 'photo'?: string | null;
6415
+ 'hospitalSlug'?: string | null;
6763
6416
  /**
6764
6417
  *
6765
6418
  * @type {string}
6766
6419
  * @memberof HospitalSpecialtyModel
6767
6420
  */
6768
- 'photoThumbnail'?: string | null;
6421
+ 'content'?: string | null;
6769
6422
  /**
6770
6423
  *
6771
6424
  * @type {string}
6772
6425
  * @memberof HospitalSpecialtyModel
6773
6426
  */
6774
- 'background'?: string | null;
6427
+ 'customStyle'?: string | null;
6775
6428
  /**
6776
6429
  *
6777
6430
  * @type {string}
6778
6431
  * @memberof HospitalSpecialtyModel
6779
6432
  */
6780
- 'backgroundThumbnail'?: string | null;
6433
+ 'languageCode'?: string | null;
6781
6434
  /**
6782
6435
  *
6783
- * @type {number}
6436
+ * @type {string}
6784
6437
  * @memberof HospitalSpecialtyModel
6785
6438
  */
6786
- 'order'?: number;
6439
+ 'specialtyId'?: string;
6787
6440
  /**
6788
6441
  *
6789
- * @type {boolean}
6442
+ * @type {string}
6790
6443
  * @memberof HospitalSpecialtyModel
6791
6444
  */
6792
- 'confirmed'?: boolean;
6445
+ 'specialtyName'?: string | null;
6793
6446
  /**
6794
6447
  *
6795
- * @type {Array<MediaModel>}
6448
+ * @type {string}
6796
6449
  * @memberof HospitalSpecialtyModel
6797
6450
  */
6798
- 'medias'?: Array<MediaModel> | null;
6451
+ 'specialtyTypeId'?: string;
6799
6452
  /**
6800
6453
  *
6801
- * @type {AuditableEntity}
6454
+ * @type {string}
6802
6455
  * @memberof HospitalSpecialtyModel
6803
6456
  */
6804
- 'auditableEntity'?: AuditableEntity;
6457
+ 'specialtyTypeName'?: string | null;
6805
6458
  /**
6806
6459
  *
6807
- * @type {string}
6460
+ * @type {number}
6808
6461
  * @memberof HospitalSpecialtyModel
6809
6462
  */
6810
- 'content'?: string | null;
6463
+ 'serviceCount'?: number;
6811
6464
  /**
6812
6465
  *
6813
- * @type {string}
6466
+ * @type {Array<HospitalServiceItemModel>}
6814
6467
  * @memberof HospitalSpecialtyModel
6815
6468
  */
6816
- 'customStyle'?: string | null;
6469
+ 'serviceList'?: Array<HospitalServiceItemModel> | null;
6817
6470
  /**
6818
6471
  *
6819
- * @type {string}
6472
+ * @type {Array<LocalizedUrlModel>}
6820
6473
  * @memberof HospitalSpecialtyModel
6821
6474
  */
6822
- 'languageCode'?: string | null;
6475
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6823
6476
  /**
6824
6477
  *
6825
- * @type {Array<LocalizedUrlModel>}
6478
+ * @type {Array<MediaModel>}
6826
6479
  * @memberof HospitalSpecialtyModel
6827
6480
  */
6828
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6481
+ 'medias'?: Array<MediaModel> | null;
6829
6482
  }
6830
6483
  /**
6831
6484
  *
@@ -9901,6 +9554,79 @@ export interface UserModel {
9901
9554
  */
9902
9555
  'locations'?: Array<UserLocationModel> | null;
9903
9556
  }
9557
+ /**
9558
+ *
9559
+ * @export
9560
+ * @interface UserTranslationModel
9561
+ */
9562
+ export interface UserTranslationModel {
9563
+ /**
9564
+ *
9565
+ * @type {string}
9566
+ * @memberof UserTranslationModel
9567
+ */
9568
+ 'userId'?: string;
9569
+ /**
9570
+ *
9571
+ * @type {string}
9572
+ * @memberof UserTranslationModel
9573
+ */
9574
+ 'languageCode'?: string | null;
9575
+ /**
9576
+ *
9577
+ * @type {string}
9578
+ * @memberof UserTranslationModel
9579
+ */
9580
+ 'firstName'?: string | null;
9581
+ /**
9582
+ *
9583
+ * @type {string}
9584
+ * @memberof UserTranslationModel
9585
+ */
9586
+ 'middleName'?: string | null;
9587
+ /**
9588
+ *
9589
+ * @type {string}
9590
+ * @memberof UserTranslationModel
9591
+ */
9592
+ 'lastName'?: string | null;
9593
+ /**
9594
+ *
9595
+ * @type {string}
9596
+ * @memberof UserTranslationModel
9597
+ */
9598
+ 'slug'?: string | null;
9599
+ /**
9600
+ *
9601
+ * @type {string}
9602
+ * @memberof UserTranslationModel
9603
+ */
9604
+ 'overview'?: string | null;
9605
+ /**
9606
+ *
9607
+ * @type {string}
9608
+ * @memberof UserTranslationModel
9609
+ */
9610
+ 'description'?: string | null;
9611
+ /**
9612
+ *
9613
+ * @type {string}
9614
+ * @memberof UserTranslationModel
9615
+ */
9616
+ 'content'?: string | null;
9617
+ /**
9618
+ *
9619
+ * @type {boolean}
9620
+ * @memberof UserTranslationModel
9621
+ */
9622
+ 'confirmed'?: boolean;
9623
+ /**
9624
+ *
9625
+ * @type {AuditableEntity}
9626
+ * @memberof UserTranslationModel
9627
+ */
9628
+ 'auditableEntity'?: AuditableEntity;
9629
+ }
9904
9630
  /**
9905
9631
  *
9906
9632
  * @export