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/src/api.ts CHANGED
@@ -4138,103 +4138,13 @@ export interface DoctorItemModel {
4138
4138
  * @type {string}
4139
4139
  * @memberof DoctorItemModel
4140
4140
  */
4141
- 'userName'?: string | null;
4142
- /**
4143
- *
4144
- * @type {string}
4145
- * @memberof DoctorItemModel
4146
- */
4147
- 'firstName'?: string | null;
4148
- /**
4149
- *
4150
- * @type {string}
4151
- * @memberof DoctorItemModel
4152
- */
4153
- 'middleName'?: string | null;
4154
- /**
4155
- *
4156
- * @type {string}
4157
- * @memberof DoctorItemModel
4158
- */
4159
- 'lastName'?: string | null;
4160
- /**
4161
- *
4162
- * @type {string}
4163
- * @memberof DoctorItemModel
4164
- */
4165
- 'fullName'?: string | null;
4141
+ 'name'?: string | null;
4166
4142
  /**
4167
4143
  *
4168
4144
  * @type {string}
4169
4145
  * @memberof DoctorItemModel
4170
4146
  */
4171
4147
  'slug'?: string | null;
4172
- /**
4173
- *
4174
- * @type {string}
4175
- * @memberof DoctorItemModel
4176
- */
4177
- 'phone'?: string | null;
4178
- /**
4179
- *
4180
- * @type {string}
4181
- * @memberof DoctorItemModel
4182
- */
4183
- 'email'?: string | null;
4184
- /**
4185
- *
4186
- * @type {string}
4187
- * @memberof DoctorItemModel
4188
- */
4189
- 'photo'?: string | null;
4190
- /**
4191
- *
4192
- * @type {string}
4193
- * @memberof DoctorItemModel
4194
- */
4195
- 'photoThumbnail'?: string | null;
4196
- /**
4197
- *
4198
- * @type {Gender}
4199
- * @memberof DoctorItemModel
4200
- */
4201
- 'gender'?: Gender;
4202
- /**
4203
- *
4204
- * @type {Date}
4205
- * @memberof DoctorItemModel
4206
- */
4207
- 'dateOfBirth'?: Date | null;
4208
- /**
4209
- *
4210
- * @type {string}
4211
- * @memberof DoctorItemModel
4212
- */
4213
- 'timeZone'?: string | null;
4214
- /**
4215
- *
4216
- * @type {string}
4217
- * @memberof DoctorItemModel
4218
- */
4219
- 'communicationUserId'?: string | null;
4220
- /**
4221
- *
4222
- * @type {AuditableEntity}
4223
- * @memberof DoctorItemModel
4224
- */
4225
- 'auditableEntity'?: AuditableEntity;
4226
- /**
4227
- *
4228
- * @type {Date}
4229
- * @memberof DoctorItemModel
4230
- */
4231
- 'startPracticeDate'?: Date | null;
4232
- /**
4233
- *
4234
- * @type {string}
4235
- * @memberof DoctorItemModel
4236
- */
4237
- 'overview'?: string | null;
4238
4148
  /**
4239
4149
  *
4240
4150
  * @type {boolean}
@@ -4255,10 +4165,16 @@ export interface DoctorItemModel {
4255
4165
  'confirmed'?: boolean;
4256
4166
  /**
4257
4167
  *
4258
- * @type {Array<DoctorAffiliationModel>}
4168
+ * @type {Array<DoctorSpecialtyItemModel>}
4259
4169
  * @memberof DoctorItemModel
4260
4170
  */
4261
- 'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
4171
+ 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
4172
+ /**
4173
+ *
4174
+ * @type {Array<DoctorAffiliationItemModel>}
4175
+ * @memberof DoctorItemModel
4176
+ */
4177
+ 'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
4262
4178
  }
4263
4179
  /**
4264
4180
  *
@@ -4497,12 +4413,24 @@ export interface DoctorModel {
4497
4413
  * @memberof DoctorModel
4498
4414
  */
4499
4415
  'confirmed'?: boolean;
4416
+ /**
4417
+ *
4418
+ * @type {Array<DoctorSpecialtyItemModel>}
4419
+ * @memberof DoctorModel
4420
+ */
4421
+ 'doctorSpecialties'?: Array<DoctorSpecialtyItemModel> | null;
4500
4422
  /**
4501
4423
  *
4502
4424
  * @type {Array<DoctorAffiliationModel>}
4503
4425
  * @memberof DoctorModel
4504
4426
  */
4505
4427
  'doctorAffiliations'?: Array<DoctorAffiliationModel> | null;
4428
+ /**
4429
+ *
4430
+ * @type {Array<UserTranslationModel>}
4431
+ * @memberof DoctorModel
4432
+ */
4433
+ 'translations'?: Array<UserTranslationModel> | null;
4506
4434
  /**
4507
4435
  *
4508
4436
  * @type {Array<LocalizedUrlModel>}
@@ -4698,57 +4626,64 @@ export interface DoctorSpecialtiesModel {
4698
4626
  /**
4699
4627
  *
4700
4628
  * @export
4701
- * @interface DoctorSpecialtyModel
4629
+ * @interface DoctorSpecialtyItemModel
4702
4630
  */
4703
- export interface DoctorSpecialtyModel {
4631
+ export interface DoctorSpecialtyItemModel {
4704
4632
  /**
4705
4633
  *
4706
4634
  * @type {string}
4707
- * @memberof DoctorSpecialtyModel
4635
+ * @memberof DoctorSpecialtyItemModel
4708
4636
  */
4709
4637
  'specialtyId'?: string;
4710
4638
  /**
4711
4639
  *
4712
4640
  * @type {string}
4713
- * @memberof DoctorSpecialtyModel
4641
+ * @memberof DoctorSpecialtyItemModel
4714
4642
  */
4715
4643
  'specialtyName'?: string | null;
4716
4644
  /**
4717
4645
  *
4718
4646
  * @type {string}
4719
- * @memberof DoctorSpecialtyModel
4647
+ * @memberof DoctorSpecialtyItemModel
4720
4648
  */
4721
4649
  'specialtySlug'?: string | null;
4722
4650
  /**
4723
4651
  *
4724
- * @type {string}
4725
- * @memberof DoctorSpecialtyModel
4652
+ * @type {number}
4653
+ * @memberof DoctorSpecialtyItemModel
4726
4654
  */
4727
- 'specialtyTypeId'?: string;
4655
+ 'order'?: number;
4656
+ }
4657
+ /**
4658
+ *
4659
+ * @export
4660
+ * @interface DoctorSpecialtyModel
4661
+ */
4662
+ export interface DoctorSpecialtyModel {
4728
4663
  /**
4729
4664
  *
4730
4665
  * @type {string}
4731
4666
  * @memberof DoctorSpecialtyModel
4732
4667
  */
4733
- 'specialtyTypeName'?: string | null;
4668
+ 'specialtyId'?: string;
4734
4669
  /**
4735
4670
  *
4736
- * @type {number}
4671
+ * @type {string}
4737
4672
  * @memberof DoctorSpecialtyModel
4738
4673
  */
4739
- 'order'?: number;
4674
+ 'specialtyName'?: string | null;
4740
4675
  /**
4741
4676
  *
4742
4677
  * @type {string}
4743
4678
  * @memberof DoctorSpecialtyModel
4744
4679
  */
4745
- 'doctorId'?: string;
4680
+ 'specialtySlug'?: string | null;
4746
4681
  /**
4747
4682
  *
4748
- * @type {string}
4683
+ * @type {number}
4749
4684
  * @memberof DoctorSpecialtyModel
4750
4685
  */
4751
- 'doctorName'?: string | null;
4686
+ 'order'?: number;
4752
4687
  }
4753
4688
  /**
4754
4689
  *
@@ -5484,24 +5419,6 @@ export interface HospitalEquipmentsModel {
5484
5419
  * @interface HospitalEvaluationItemModel
5485
5420
  */
5486
5421
  export interface HospitalEvaluationItemModel {
5487
- /**
5488
- *
5489
- * @type {string}
5490
- * @memberof HospitalEvaluationItemModel
5491
- */
5492
- 'id'?: string;
5493
- /**
5494
- *
5495
- * @type {string}
5496
- * @memberof HospitalEvaluationItemModel
5497
- */
5498
- 'hospitalId'?: string;
5499
- /**
5500
- *
5501
- * @type {string}
5502
- * @memberof HospitalEvaluationItemModel
5503
- */
5504
- 'hospitalName'?: string | null;
5505
5422
  /**
5506
5423
  *
5507
5424
  * @type {string}
@@ -5514,18 +5431,6 @@ export interface HospitalEvaluationItemModel {
5514
5431
  * @memberof HospitalEvaluationItemModel
5515
5432
  */
5516
5433
  'stars'?: number;
5517
- /**
5518
- *
5519
- * @type {string}
5520
- * @memberof HospitalEvaluationItemModel
5521
- */
5522
- 'description'?: string | null;
5523
- /**
5524
- *
5525
- * @type {string}
5526
- * @memberof HospitalEvaluationItemModel
5527
- */
5528
- 'referenceUrl'?: string | null;
5529
5434
  }
5530
5435
  /**
5531
5436
  *
@@ -5533,24 +5438,6 @@ export interface HospitalEvaluationItemModel {
5533
5438
  * @interface HospitalEvaluationModel
5534
5439
  */
5535
5440
  export interface HospitalEvaluationModel {
5536
- /**
5537
- *
5538
- * @type {string}
5539
- * @memberof HospitalEvaluationModel
5540
- */
5541
- 'id'?: string;
5542
- /**
5543
- *
5544
- * @type {string}
5545
- * @memberof HospitalEvaluationModel
5546
- */
5547
- 'hospitalId'?: string;
5548
- /**
5549
- *
5550
- * @type {string}
5551
- * @memberof HospitalEvaluationModel
5552
- */
5553
- 'hospitalName'?: string | null;
5554
5441
  /**
5555
5442
  *
5556
5443
  * @type {string}
@@ -5619,12 +5506,6 @@ export interface HospitalItemModel {
5619
5506
  * @memberof HospitalItemModel
5620
5507
  */
5621
5508
  'slug'?: string | null;
5622
- /**
5623
- *
5624
- * @type {string}
5625
- * @memberof HospitalItemModel
5626
- */
5627
- 'description'?: string | null;
5628
5509
  /**
5629
5510
  *
5630
5511
  * @type {string}
@@ -5633,52 +5514,28 @@ export interface HospitalItemModel {
5633
5514
  'logo'?: string | null;
5634
5515
  /**
5635
5516
  *
5636
- * @type {string}
5637
- * @memberof HospitalItemModel
5638
- */
5639
- 'overview'?: string | null;
5640
- /**
5641
- *
5642
- * @type {number}
5643
- * @memberof HospitalItemModel
5644
- */
5645
- 'bedsCount'?: number | null;
5646
- /**
5647
- *
5648
- * @type {number}
5649
- * @memberof HospitalItemModel
5650
- */
5651
- 'operationsPerYear'?: number | null;
5652
- /**
5653
- *
5654
- * @type {number}
5655
- * @memberof HospitalItemModel
5656
- */
5657
- 'foundationYear'?: number | null;
5658
- /**
5659
- *
5660
- * @type {number}
5517
+ * @type {boolean}
5661
5518
  * @memberof HospitalItemModel
5662
5519
  */
5663
- 'medicalStaffCount'?: number | null;
5520
+ 'confirmed'?: boolean;
5664
5521
  /**
5665
5522
  *
5666
- * @type {number}
5523
+ * @type {string}
5667
5524
  * @memberof HospitalItemModel
5668
5525
  */
5669
- 'doctorCount'?: number | null;
5526
+ 'countryId'?: string;
5670
5527
  /**
5671
5528
  *
5672
5529
  * @type {string}
5673
5530
  * @memberof HospitalItemModel
5674
5531
  */
5675
- 'countryId'?: string;
5532
+ 'countryName'?: string | null;
5676
5533
  /**
5677
5534
  *
5678
5535
  * @type {string}
5679
5536
  * @memberof HospitalItemModel
5680
5537
  */
5681
- 'countryName'?: string | null;
5538
+ 'countrySlug'?: string | null;
5682
5539
  /**
5683
5540
  *
5684
5541
  * @type {MarketingType}
@@ -5709,66 +5566,6 @@ export interface HospitalItemModel {
5709
5566
  * @memberof HospitalItemModel
5710
5567
  */
5711
5568
  'websiteUrl'?: string | null;
5712
- /**
5713
- *
5714
- * @type {number}
5715
- * @memberof HospitalItemModel
5716
- */
5717
- 'articlesCount'?: number;
5718
- /**
5719
- *
5720
- * @type {number}
5721
- * @memberof HospitalItemModel
5722
- */
5723
- 'packagesCount'?: number;
5724
- /**
5725
- *
5726
- * @type {number}
5727
- * @memberof HospitalItemModel
5728
- */
5729
- 'equipmentsCount'?: number;
5730
- /**
5731
- *
5732
- * @type {number}
5733
- * @memberof HospitalItemModel
5734
- */
5735
- 'reviewsCount'?: number;
5736
- /**
5737
- *
5738
- * @type {number}
5739
- * @memberof HospitalItemModel
5740
- */
5741
- 'departmentsCount'?: number;
5742
- /**
5743
- *
5744
- * @type {number}
5745
- * @memberof HospitalItemModel
5746
- */
5747
- 'specialtiesCount'?: number;
5748
- /**
5749
- *
5750
- * @type {number}
5751
- * @memberof HospitalItemModel
5752
- */
5753
- 'accreditationsCount'?: number;
5754
- /**
5755
- *
5756
- * @type {number}
5757
- * @memberof HospitalItemModel
5758
- */
5759
- 'doctorAffiliationsCount'?: number;
5760
- /**
5761
- *
5762
- * @type {number}
5763
- * @memberof HospitalItemModel
5764
- */
5765
- 'managerAffiliationsCount'?: number;
5766
- /**
5767
- *
5768
- * @type {string}
5769
- * @memberof HospitalItemModel
5770
- */
5771
- 'specialtiesSummerized'?: string | null;
5772
5569
  /**
5773
5570
  *
5774
5571
  * @type {boolean}
@@ -5777,46 +5574,28 @@ export interface HospitalItemModel {
5777
5574
  'paymentEnabled'?: boolean;
5778
5575
  /**
5779
5576
  *
5780
- * @type {boolean}
5577
+ * @type {string}
5781
5578
  * @memberof HospitalItemModel
5782
5579
  */
5783
- 'confirmed'?: boolean;
5580
+ 'specialtiesSummerized'?: string | null;
5784
5581
  /**
5785
5582
  *
5786
- * @type {Array<AwardModel>}
5583
+ * @type {Array<HospitalAccreditationItemModel>}
5787
5584
  * @memberof HospitalItemModel
5788
5585
  */
5789
- 'awards'?: Array<AwardModel> | null;
5586
+ 'accreditations'?: Array<HospitalAccreditationItemModel> | null;
5790
5587
  /**
5791
5588
  *
5792
5589
  * @type {Array<MediaModel>}
5793
5590
  * @memberof HospitalItemModel
5794
5591
  */
5795
5592
  'medias'?: Array<MediaModel> | null;
5796
- /**
5797
- *
5798
- * @type {Array<AccreditationModel>}
5799
- * @memberof HospitalItemModel
5800
- */
5801
- 'accreditations'?: Array<AccreditationModel> | null;
5802
- /**
5803
- *
5804
- * @type {Array<HospitalEvaluationModel>}
5805
- * @memberof HospitalItemModel
5806
- */
5807
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
5808
5593
  /**
5809
5594
  *
5810
5595
  * @type {LocationModel}
5811
5596
  * @memberof HospitalItemModel
5812
5597
  */
5813
5598
  'location'?: LocationModel;
5814
- /**
5815
- *
5816
- * @type {AuditableEntity}
5817
- * @memberof HospitalItemModel
5818
- */
5819
- 'auditableEntity'?: AuditableEntity;
5820
5599
  }
5821
5600
  /**
5822
5601
  *
@@ -5842,12 +5621,6 @@ export interface HospitalModel {
5842
5621
  * @memberof HospitalModel
5843
5622
  */
5844
5623
  'slug'?: string | null;
5845
- /**
5846
- *
5847
- * @type {string}
5848
- * @memberof HospitalModel
5849
- */
5850
- 'description'?: string | null;
5851
5624
  /**
5852
5625
  *
5853
5626
  * @type {string}
@@ -5856,52 +5629,28 @@ export interface HospitalModel {
5856
5629
  'logo'?: string | null;
5857
5630
  /**
5858
5631
  *
5859
- * @type {string}
5860
- * @memberof HospitalModel
5861
- */
5862
- 'overview'?: string | null;
5863
- /**
5864
- *
5865
- * @type {number}
5866
- * @memberof HospitalModel
5867
- */
5868
- 'bedsCount'?: number | null;
5869
- /**
5870
- *
5871
- * @type {number}
5872
- * @memberof HospitalModel
5873
- */
5874
- 'operationsPerYear'?: number | null;
5875
- /**
5876
- *
5877
- * @type {number}
5878
- * @memberof HospitalModel
5879
- */
5880
- 'foundationYear'?: number | null;
5881
- /**
5882
- *
5883
- * @type {number}
5632
+ * @type {boolean}
5884
5633
  * @memberof HospitalModel
5885
5634
  */
5886
- 'medicalStaffCount'?: number | null;
5635
+ 'confirmed'?: boolean;
5887
5636
  /**
5888
5637
  *
5889
- * @type {number}
5638
+ * @type {string}
5890
5639
  * @memberof HospitalModel
5891
5640
  */
5892
- 'doctorCount'?: number | null;
5641
+ 'countryId'?: string;
5893
5642
  /**
5894
5643
  *
5895
5644
  * @type {string}
5896
5645
  * @memberof HospitalModel
5897
5646
  */
5898
- 'countryId'?: string;
5647
+ 'countryName'?: string | null;
5899
5648
  /**
5900
5649
  *
5901
5650
  * @type {string}
5902
5651
  * @memberof HospitalModel
5903
5652
  */
5904
- 'countryName'?: string | null;
5653
+ 'countrySlug'?: string | null;
5905
5654
  /**
5906
5655
  *
5907
5656
  * @type {MarketingType}
@@ -5934,124 +5683,88 @@ export interface HospitalModel {
5934
5683
  'websiteUrl'?: string | null;
5935
5684
  /**
5936
5685
  *
5937
- * @type {number}
5938
- * @memberof HospitalModel
5939
- */
5940
- 'articlesCount'?: number;
5941
- /**
5942
- *
5943
- * @type {number}
5944
- * @memberof HospitalModel
5945
- */
5946
- 'packagesCount'?: number;
5947
- /**
5948
- *
5949
- * @type {number}
5950
- * @memberof HospitalModel
5951
- */
5952
- 'equipmentsCount'?: number;
5953
- /**
5954
- *
5955
- * @type {number}
5956
- * @memberof HospitalModel
5957
- */
5958
- 'reviewsCount'?: number;
5959
- /**
5960
- *
5961
- * @type {number}
5962
- * @memberof HospitalModel
5963
- */
5964
- 'departmentsCount'?: number;
5965
- /**
5966
- *
5967
- * @type {number}
5968
- * @memberof HospitalModel
5969
- */
5970
- 'specialtiesCount'?: number;
5971
- /**
5972
- *
5973
- * @type {number}
5686
+ * @type {boolean}
5974
5687
  * @memberof HospitalModel
5975
5688
  */
5976
- 'accreditationsCount'?: number;
5689
+ 'paymentEnabled'?: boolean;
5977
5690
  /**
5978
5691
  *
5979
- * @type {number}
5692
+ * @type {string}
5980
5693
  * @memberof HospitalModel
5981
5694
  */
5982
- 'doctorAffiliationsCount'?: number;
5695
+ 'specialtiesSummerized'?: string | null;
5983
5696
  /**
5984
5697
  *
5985
- * @type {number}
5698
+ * @type {Array<HospitalAccreditationItemModel>}
5986
5699
  * @memberof HospitalModel
5987
5700
  */
5988
- 'managerAffiliationsCount'?: number;
5701
+ 'accreditations'?: Array<HospitalAccreditationItemModel> | null;
5989
5702
  /**
5990
5703
  *
5991
- * @type {string}
5704
+ * @type {Array<MediaModel>}
5992
5705
  * @memberof HospitalModel
5993
5706
  */
5994
- 'specialtiesSummerized'?: string | null;
5707
+ 'medias'?: Array<MediaModel> | null;
5995
5708
  /**
5996
5709
  *
5997
- * @type {boolean}
5710
+ * @type {LocationModel}
5998
5711
  * @memberof HospitalModel
5999
5712
  */
6000
- 'paymentEnabled'?: boolean;
5713
+ 'location'?: LocationModel;
6001
5714
  /**
6002
5715
  *
6003
- * @type {boolean}
5716
+ * @type {string}
6004
5717
  * @memberof HospitalModel
6005
5718
  */
6006
- 'confirmed'?: boolean;
5719
+ 'languageCode'?: string | null;
6007
5720
  /**
6008
5721
  *
6009
- * @type {Array<AwardModel>}
5722
+ * @type {string}
6010
5723
  * @memberof HospitalModel
6011
5724
  */
6012
- 'awards'?: Array<AwardModel> | null;
5725
+ 'description'?: string | null;
6013
5726
  /**
6014
5727
  *
6015
- * @type {Array<MediaModel>}
5728
+ * @type {string}
6016
5729
  * @memberof HospitalModel
6017
5730
  */
6018
- 'medias'?: Array<MediaModel> | null;
5731
+ 'overview'?: string | null;
6019
5732
  /**
6020
5733
  *
6021
- * @type {Array<AccreditationModel>}
5734
+ * @type {string}
6022
5735
  * @memberof HospitalModel
6023
5736
  */
6024
- 'accreditations'?: Array<AccreditationModel> | null;
5737
+ 'content'?: string | null;
6025
5738
  /**
6026
5739
  *
6027
- * @type {Array<HospitalEvaluationModel>}
5740
+ * @type {number}
6028
5741
  * @memberof HospitalModel
6029
5742
  */
6030
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
5743
+ 'bedsCount'?: number | null;
6031
5744
  /**
6032
5745
  *
6033
- * @type {LocationModel}
5746
+ * @type {number}
6034
5747
  * @memberof HospitalModel
6035
5748
  */
6036
- 'location'?: LocationModel;
5749
+ 'operationsPerYear'?: number | null;
6037
5750
  /**
6038
5751
  *
6039
- * @type {AuditableEntity}
5752
+ * @type {number}
6040
5753
  * @memberof HospitalModel
6041
5754
  */
6042
- 'auditableEntity'?: AuditableEntity;
5755
+ 'foundationYear'?: number | null;
6043
5756
  /**
6044
5757
  *
6045
- * @type {string}
5758
+ * @type {number}
6046
5759
  * @memberof HospitalModel
6047
5760
  */
6048
- 'languageCode'?: string | null;
5761
+ 'medicalStaffCount'?: number | null;
6049
5762
  /**
6050
5763
  *
6051
- * @type {string}
5764
+ * @type {number}
6052
5765
  * @memberof HospitalModel
6053
5766
  */
6054
- 'content'?: string | null;
5767
+ 'doctorCount'?: number | null;
6055
5768
  /**
6056
5769
  *
6057
5770
  * @type {string}
@@ -6070,6 +5783,12 @@ export interface HospitalModel {
6070
5783
  * @memberof HospitalModel
6071
5784
  */
6072
5785
  'customStyle'?: string | null;
5786
+ /**
5787
+ *
5788
+ * @type {Array<HospitalEvaluationItemModel>}
5789
+ * @memberof HospitalModel
5790
+ */
5791
+ 'evaluations'?: Array<HospitalEvaluationItemModel> | null;
6073
5792
  /**
6074
5793
  *
6075
5794
  * @type {Array<WorkingDay>}
@@ -6088,6 +5807,12 @@ export interface HospitalModel {
6088
5807
  * @memberof HospitalModel
6089
5808
  */
6090
5809
  'localizedUrls'?: Array<LocalizedUrlModel> | null;
5810
+ /**
5811
+ *
5812
+ * @type {Array<AwardModel>}
5813
+ * @memberof HospitalModel
5814
+ */
5815
+ 'awards'?: Array<AwardModel> | null;
6091
5816
  }
6092
5817
  /**
6093
5818
  *
@@ -6558,54 +6283,6 @@ export interface HospitalSpecialtyItemModel {
6558
6283
  * @memberof HospitalSpecialtyItemModel
6559
6284
  */
6560
6285
  'id'?: string;
6561
- /**
6562
- *
6563
- * @type {string}
6564
- * @memberof HospitalSpecialtyItemModel
6565
- */
6566
- 'hospitalId'?: string;
6567
- /**
6568
- *
6569
- * @type {string}
6570
- * @memberof HospitalSpecialtyItemModel
6571
- */
6572
- 'hospitalName'?: string | null;
6573
- /**
6574
- *
6575
- * @type {string}
6576
- * @memberof HospitalSpecialtyItemModel
6577
- */
6578
- 'hospitalSlug'?: string | null;
6579
- /**
6580
- *
6581
- * @type {string}
6582
- * @memberof HospitalSpecialtyItemModel
6583
- */
6584
- 'specialtyId'?: string;
6585
- /**
6586
- *
6587
- * @type {string}
6588
- * @memberof HospitalSpecialtyItemModel
6589
- */
6590
- 'specialtyName'?: string | null;
6591
- /**
6592
- *
6593
- * @type {string}
6594
- * @memberof HospitalSpecialtyItemModel
6595
- */
6596
- 'specialtyTypeId'?: string;
6597
- /**
6598
- *
6599
- * @type {string}
6600
- * @memberof HospitalSpecialtyItemModel
6601
- */
6602
- 'specialtyTypeName'?: string | null;
6603
- /**
6604
- *
6605
- * @type {MarketingType}
6606
- * @memberof HospitalSpecialtyItemModel
6607
- */
6608
- 'marketingType'?: MarketingType;
6609
6286
  /**
6610
6287
  *
6611
6288
  * @type {string}
@@ -6626,16 +6303,10 @@ export interface HospitalSpecialtyItemModel {
6626
6303
  'description'?: string | null;
6627
6304
  /**
6628
6305
  *
6629
- * @type {number}
6630
- * @memberof HospitalSpecialtyItemModel
6631
- */
6632
- 'serviceCount'?: number;
6633
- /**
6634
- *
6635
- * @type {Array<HospitalServiceItemModel>}
6306
+ * @type {MarketingType}
6636
6307
  * @memberof HospitalSpecialtyItemModel
6637
6308
  */
6638
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
6309
+ 'marketingType'?: MarketingType;
6639
6310
  /**
6640
6311
  *
6641
6312
  * @type {string}
@@ -6672,18 +6343,6 @@ export interface HospitalSpecialtyItemModel {
6672
6343
  * @memberof HospitalSpecialtyItemModel
6673
6344
  */
6674
6345
  'confirmed'?: boolean;
6675
- /**
6676
- *
6677
- * @type {Array<MediaModel>}
6678
- * @memberof HospitalSpecialtyItemModel
6679
- */
6680
- 'medias'?: Array<MediaModel> | null;
6681
- /**
6682
- *
6683
- * @type {AuditableEntity}
6684
- * @memberof HospitalSpecialtyItemModel
6685
- */
6686
- 'auditableEntity'?: AuditableEntity;
6687
6346
  }
6688
6347
  /**
6689
6348
  *
@@ -6702,151 +6361,145 @@ export interface HospitalSpecialtyModel {
6702
6361
  * @type {string}
6703
6362
  * @memberof HospitalSpecialtyModel
6704
6363
  */
6705
- 'hospitalId'?: string;
6364
+ 'name'?: string | null;
6706
6365
  /**
6707
6366
  *
6708
6367
  * @type {string}
6709
6368
  * @memberof HospitalSpecialtyModel
6710
6369
  */
6711
- 'hospitalName'?: string | null;
6370
+ 'slug'?: string | null;
6712
6371
  /**
6713
6372
  *
6714
6373
  * @type {string}
6715
6374
  * @memberof HospitalSpecialtyModel
6716
6375
  */
6717
- 'hospitalSlug'?: string | null;
6376
+ 'description'?: string | null;
6718
6377
  /**
6719
6378
  *
6720
- * @type {string}
6379
+ * @type {MarketingType}
6721
6380
  * @memberof HospitalSpecialtyModel
6722
6381
  */
6723
- 'specialtyId'?: string;
6382
+ 'marketingType'?: MarketingType;
6724
6383
  /**
6725
6384
  *
6726
6385
  * @type {string}
6727
6386
  * @memberof HospitalSpecialtyModel
6728
6387
  */
6729
- 'specialtyName'?: string | null;
6388
+ 'photo'?: string | null;
6730
6389
  /**
6731
6390
  *
6732
6391
  * @type {string}
6733
6392
  * @memberof HospitalSpecialtyModel
6734
6393
  */
6735
- 'specialtyTypeId'?: string;
6394
+ 'photoThumbnail'?: string | null;
6736
6395
  /**
6737
6396
  *
6738
6397
  * @type {string}
6739
6398
  * @memberof HospitalSpecialtyModel
6740
6399
  */
6741
- 'specialtyTypeName'?: string | null;
6742
- /**
6743
- *
6744
- * @type {MarketingType}
6745
- * @memberof HospitalSpecialtyModel
6746
- */
6747
- 'marketingType'?: MarketingType;
6400
+ 'background'?: string | null;
6748
6401
  /**
6749
6402
  *
6750
6403
  * @type {string}
6751
6404
  * @memberof HospitalSpecialtyModel
6752
6405
  */
6753
- 'name'?: string | null;
6406
+ 'backgroundThumbnail'?: string | null;
6754
6407
  /**
6755
6408
  *
6756
- * @type {string}
6409
+ * @type {number}
6757
6410
  * @memberof HospitalSpecialtyModel
6758
6411
  */
6759
- 'slug'?: string | null;
6412
+ 'order'?: number;
6760
6413
  /**
6761
6414
  *
6762
- * @type {string}
6415
+ * @type {boolean}
6763
6416
  * @memberof HospitalSpecialtyModel
6764
6417
  */
6765
- 'description'?: string | null;
6418
+ 'confirmed'?: boolean;
6766
6419
  /**
6767
6420
  *
6768
- * @type {number}
6421
+ * @type {string}
6769
6422
  * @memberof HospitalSpecialtyModel
6770
6423
  */
6771
- 'serviceCount'?: number;
6424
+ 'hospitalId'?: string;
6772
6425
  /**
6773
6426
  *
6774
- * @type {Array<HospitalServiceItemModel>}
6427
+ * @type {string}
6775
6428
  * @memberof HospitalSpecialtyModel
6776
6429
  */
6777
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
6430
+ 'hospitalName'?: string | null;
6778
6431
  /**
6779
6432
  *
6780
6433
  * @type {string}
6781
6434
  * @memberof HospitalSpecialtyModel
6782
6435
  */
6783
- 'photo'?: string | null;
6436
+ 'hospitalSlug'?: string | null;
6784
6437
  /**
6785
6438
  *
6786
6439
  * @type {string}
6787
6440
  * @memberof HospitalSpecialtyModel
6788
6441
  */
6789
- 'photoThumbnail'?: string | null;
6442
+ 'content'?: string | null;
6790
6443
  /**
6791
6444
  *
6792
6445
  * @type {string}
6793
6446
  * @memberof HospitalSpecialtyModel
6794
6447
  */
6795
- 'background'?: string | null;
6448
+ 'customStyle'?: string | null;
6796
6449
  /**
6797
6450
  *
6798
6451
  * @type {string}
6799
6452
  * @memberof HospitalSpecialtyModel
6800
6453
  */
6801
- 'backgroundThumbnail'?: string | null;
6454
+ 'languageCode'?: string | null;
6802
6455
  /**
6803
6456
  *
6804
- * @type {number}
6457
+ * @type {string}
6805
6458
  * @memberof HospitalSpecialtyModel
6806
6459
  */
6807
- 'order'?: number;
6460
+ 'specialtyId'?: string;
6808
6461
  /**
6809
6462
  *
6810
- * @type {boolean}
6463
+ * @type {string}
6811
6464
  * @memberof HospitalSpecialtyModel
6812
6465
  */
6813
- 'confirmed'?: boolean;
6466
+ 'specialtyName'?: string | null;
6814
6467
  /**
6815
6468
  *
6816
- * @type {Array<MediaModel>}
6469
+ * @type {string}
6817
6470
  * @memberof HospitalSpecialtyModel
6818
6471
  */
6819
- 'medias'?: Array<MediaModel> | null;
6472
+ 'specialtyTypeId'?: string;
6820
6473
  /**
6821
6474
  *
6822
- * @type {AuditableEntity}
6475
+ * @type {string}
6823
6476
  * @memberof HospitalSpecialtyModel
6824
6477
  */
6825
- 'auditableEntity'?: AuditableEntity;
6478
+ 'specialtyTypeName'?: string | null;
6826
6479
  /**
6827
6480
  *
6828
- * @type {string}
6481
+ * @type {number}
6829
6482
  * @memberof HospitalSpecialtyModel
6830
6483
  */
6831
- 'content'?: string | null;
6484
+ 'serviceCount'?: number;
6832
6485
  /**
6833
6486
  *
6834
- * @type {string}
6487
+ * @type {Array<HospitalServiceItemModel>}
6835
6488
  * @memberof HospitalSpecialtyModel
6836
6489
  */
6837
- 'customStyle'?: string | null;
6490
+ 'serviceList'?: Array<HospitalServiceItemModel> | null;
6838
6491
  /**
6839
6492
  *
6840
- * @type {string}
6493
+ * @type {Array<LocalizedUrlModel>}
6841
6494
  * @memberof HospitalSpecialtyModel
6842
6495
  */
6843
- 'languageCode'?: string | null;
6496
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6844
6497
  /**
6845
6498
  *
6846
- * @type {Array<LocalizedUrlModel>}
6499
+ * @type {Array<MediaModel>}
6847
6500
  * @memberof HospitalSpecialtyModel
6848
6501
  */
6849
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6502
+ 'medias'?: Array<MediaModel> | null;
6850
6503
  }
6851
6504
  /**
6852
6505
  *
@@ -9943,6 +9596,79 @@ export interface UserModel {
9943
9596
  */
9944
9597
  'locations'?: Array<UserLocationModel> | null;
9945
9598
  }
9599
+ /**
9600
+ *
9601
+ * @export
9602
+ * @interface UserTranslationModel
9603
+ */
9604
+ export interface UserTranslationModel {
9605
+ /**
9606
+ *
9607
+ * @type {string}
9608
+ * @memberof UserTranslationModel
9609
+ */
9610
+ 'userId'?: string;
9611
+ /**
9612
+ *
9613
+ * @type {string}
9614
+ * @memberof UserTranslationModel
9615
+ */
9616
+ 'languageCode'?: string | null;
9617
+ /**
9618
+ *
9619
+ * @type {string}
9620
+ * @memberof UserTranslationModel
9621
+ */
9622
+ 'firstName'?: string | null;
9623
+ /**
9624
+ *
9625
+ * @type {string}
9626
+ * @memberof UserTranslationModel
9627
+ */
9628
+ 'middleName'?: string | null;
9629
+ /**
9630
+ *
9631
+ * @type {string}
9632
+ * @memberof UserTranslationModel
9633
+ */
9634
+ 'lastName'?: string | null;
9635
+ /**
9636
+ *
9637
+ * @type {string}
9638
+ * @memberof UserTranslationModel
9639
+ */
9640
+ 'slug'?: string | null;
9641
+ /**
9642
+ *
9643
+ * @type {string}
9644
+ * @memberof UserTranslationModel
9645
+ */
9646
+ 'overview'?: string | null;
9647
+ /**
9648
+ *
9649
+ * @type {string}
9650
+ * @memberof UserTranslationModel
9651
+ */
9652
+ 'description'?: string | null;
9653
+ /**
9654
+ *
9655
+ * @type {string}
9656
+ * @memberof UserTranslationModel
9657
+ */
9658
+ 'content'?: string | null;
9659
+ /**
9660
+ *
9661
+ * @type {boolean}
9662
+ * @memberof UserTranslationModel
9663
+ */
9664
+ 'confirmed'?: boolean;
9665
+ /**
9666
+ *
9667
+ * @type {AuditableEntity}
9668
+ * @memberof UserTranslationModel
9669
+ */
9670
+ 'auditableEntity'?: AuditableEntity;
9671
+ }
9946
9672
  /**
9947
9673
  *
9948
9674
  * @export