ch-api-client-typescript2 4.7.1 → 4.7.2

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
@@ -513,6 +513,12 @@ export interface ArticleContributorModel {
513
513
  * @memberof ArticleContributorModel
514
514
  */
515
515
  'auditableEntity'?: AuditableEntity;
516
+ /**
517
+ *
518
+ * @type {ContributorMappingModel}
519
+ * @memberof ArticleContributorModel
520
+ */
521
+ 'contributor'?: ContributorMappingModel;
516
522
  /**
517
523
  *
518
524
  * @type {string}
@@ -2537,6 +2543,19 @@ export interface ContributorItemModel {
2537
2543
  */
2538
2544
  'auditableEntity'?: AuditableEntity;
2539
2545
  }
2546
+ /**
2547
+ *
2548
+ * @export
2549
+ * @interface ContributorMappingModel
2550
+ */
2551
+ export interface ContributorMappingModel {
2552
+ /**
2553
+ *
2554
+ * @type {Array<TranslationModel>}
2555
+ * @memberof ContributorMappingModel
2556
+ */
2557
+ 'translations'?: Array<TranslationModel> | null;
2558
+ }
2540
2559
  /**
2541
2560
  *
2542
2561
  * @export
@@ -3751,6 +3770,12 @@ export interface DealPackageModel {
3751
3770
  * @memberof DealPackageModel
3752
3771
  */
3753
3772
  'hospitalSlug'?: string | null;
3773
+ /**
3774
+ *
3775
+ * @type {string}
3776
+ * @memberof DealPackageModel
3777
+ */
3778
+ 'additionalServices'?: string | null;
3754
3779
  /**
3755
3780
  *
3756
3781
  * @type {RefundPolicy}
@@ -3775,12 +3800,6 @@ export interface DealPackageModel {
3775
3800
  * @memberof DealPackageModel
3776
3801
  */
3777
3802
  'auditableEntity'?: AuditableEntity;
3778
- /**
3779
- *
3780
- * @type {string}
3781
- * @memberof DealPackageModel
3782
- */
3783
- 'additionalServices'?: string | null;
3784
3803
  /**
3785
3804
  *
3786
3805
  * @type {string}
@@ -5286,12 +5305,6 @@ export interface FaqCategoryItemModel {
5286
5305
  * @memberof FaqCategoryItemModel
5287
5306
  */
5288
5307
  'hospitalWebsiteUrl'?: string | null;
5289
- /**
5290
- *
5291
- * @type {Array<MediaModel>}
5292
- * @memberof FaqCategoryItemModel
5293
- */
5294
- 'medias'?: Array<MediaModel> | null;
5295
5308
  /**
5296
5309
  *
5297
5310
  * @type {AuditableEntity}
@@ -5371,12 +5384,6 @@ export interface FaqCategoryModel {
5371
5384
  * @memberof FaqCategoryModel
5372
5385
  */
5373
5386
  'hospitalWebsiteUrl'?: string | null;
5374
- /**
5375
- *
5376
- * @type {Array<MediaModel>}
5377
- * @memberof FaqCategoryModel
5378
- */
5379
- 'medias'?: Array<MediaModel> | null;
5380
5387
  /**
5381
5388
  *
5382
5389
  * @type {AuditableEntity}
@@ -5461,7 +5468,13 @@ export interface FaqItemModel {
5461
5468
  * @type {string}
5462
5469
  * @memberof FaqItemModel
5463
5470
  */
5464
- 'hospitalId'?: string;
5471
+ 'hospitalId'?: string | null;
5472
+ /**
5473
+ *
5474
+ * @type {TranslationSimpleModel}
5475
+ * @memberof FaqItemModel
5476
+ */
5477
+ 'hospitalTranslation'?: TranslationSimpleModel;
5465
5478
  /**
5466
5479
  *
5467
5480
  * @type {string}
@@ -5564,7 +5577,13 @@ export interface FaqModel {
5564
5577
  * @type {string}
5565
5578
  * @memberof FaqModel
5566
5579
  */
5567
- 'hospitalId'?: string;
5580
+ 'hospitalId'?: string | null;
5581
+ /**
5582
+ *
5583
+ * @type {TranslationSimpleModel}
5584
+ * @memberof FaqModel
5585
+ */
5586
+ 'hospitalTranslation'?: TranslationSimpleModel;
5568
5587
  /**
5569
5588
  *
5570
5589
  * @type {string}
@@ -9511,6 +9530,12 @@ export interface SpecialtyTypeItemModel {
9511
9530
  * @memberof SpecialtyTypeItemModel
9512
9531
  */
9513
9532
  'languageCode'?: string | null;
9533
+ /**
9534
+ *
9535
+ * @type {Array<SpecialtyTypeTranslationSimpleModel>}
9536
+ * @memberof SpecialtyTypeItemModel
9537
+ */
9538
+ 'simpleTranslations'?: Array<SpecialtyTypeTranslationSimpleModel> | null;
9514
9539
  /**
9515
9540
  *
9516
9541
  * @type {string}
@@ -9602,6 +9627,12 @@ export interface SpecialtyTypeModel {
9602
9627
  * @memberof SpecialtyTypeModel
9603
9628
  */
9604
9629
  'languageCode'?: string | null;
9630
+ /**
9631
+ *
9632
+ * @type {Array<SpecialtyTypeTranslationSimpleModel>}
9633
+ * @memberof SpecialtyTypeModel
9634
+ */
9635
+ 'simpleTranslations'?: Array<SpecialtyTypeTranslationSimpleModel> | null;
9605
9636
  /**
9606
9637
  *
9607
9638
  * @type {string}
@@ -9730,6 +9761,55 @@ export interface SpecialtyTypeSimpleItemModel {
9730
9761
  */
9731
9762
  'confirmed'?: boolean;
9732
9763
  }
9764
+ /**
9765
+ *
9766
+ * @export
9767
+ * @interface SpecialtyTypeTranslationSimpleModel
9768
+ */
9769
+ export interface SpecialtyTypeTranslationSimpleModel {
9770
+ /**
9771
+ *
9772
+ * @type {string}
9773
+ * @memberof SpecialtyTypeTranslationSimpleModel
9774
+ */
9775
+ 'languageCode'?: string | null;
9776
+ /**
9777
+ *
9778
+ * @type {string}
9779
+ * @memberof SpecialtyTypeTranslationSimpleModel
9780
+ */
9781
+ 'name'?: string | null;
9782
+ /**
9783
+ *
9784
+ * @type {string}
9785
+ * @memberof SpecialtyTypeTranslationSimpleModel
9786
+ */
9787
+ 'normalizedName'?: string | null;
9788
+ /**
9789
+ *
9790
+ * @type {string}
9791
+ * @memberof SpecialtyTypeTranslationSimpleModel
9792
+ */
9793
+ 'slug'?: string | null;
9794
+ /**
9795
+ *
9796
+ * @type {Date}
9797
+ * @memberof SpecialtyTypeTranslationSimpleModel
9798
+ */
9799
+ 'updatedDate'?: Date | null;
9800
+ /**
9801
+ *
9802
+ * @type {boolean}
9803
+ * @memberof SpecialtyTypeTranslationSimpleModel
9804
+ */
9805
+ 'isConfirmed'?: boolean;
9806
+ /**
9807
+ *
9808
+ * @type {string}
9809
+ * @memberof SpecialtyTypeTranslationSimpleModel
9810
+ */
9811
+ 'description'?: string | null;
9812
+ }
9733
9813
  /**
9734
9814
  *
9735
9815
  * @export
@@ -9874,6 +9954,110 @@ export interface TagsModel {
9874
9954
  */
9875
9955
  'metaData'?: PagedListMetaData;
9876
9956
  }
9957
+ /**
9958
+ *
9959
+ * @export
9960
+ * @interface TranslationModel
9961
+ */
9962
+ export interface TranslationModel {
9963
+ /**
9964
+ *
9965
+ * @type {string}
9966
+ * @memberof TranslationModel
9967
+ */
9968
+ 'languageCode'?: string | null;
9969
+ /**
9970
+ *
9971
+ * @type {string}
9972
+ * @memberof TranslationModel
9973
+ */
9974
+ 'name'?: string | null;
9975
+ /**
9976
+ *
9977
+ * @type {string}
9978
+ * @memberof TranslationModel
9979
+ */
9980
+ 'normalizedName'?: string | null;
9981
+ /**
9982
+ *
9983
+ * @type {string}
9984
+ * @memberof TranslationModel
9985
+ */
9986
+ 'slug'?: string | null;
9987
+ /**
9988
+ *
9989
+ * @type {Date}
9990
+ * @memberof TranslationModel
9991
+ */
9992
+ 'updatedDate'?: Date | null;
9993
+ /**
9994
+ *
9995
+ * @type {boolean}
9996
+ * @memberof TranslationModel
9997
+ */
9998
+ 'isConfirmed'?: boolean;
9999
+ /**
10000
+ *
10001
+ * @type {string}
10002
+ * @memberof TranslationModel
10003
+ */
10004
+ 'description'?: string | null;
10005
+ /**
10006
+ *
10007
+ * @type {string}
10008
+ * @memberof TranslationModel
10009
+ */
10010
+ 'overview'?: string | null;
10011
+ /**
10012
+ *
10013
+ * @type {string}
10014
+ * @memberof TranslationModel
10015
+ */
10016
+ 'content'?: string | null;
10017
+ }
10018
+ /**
10019
+ *
10020
+ * @export
10021
+ * @interface TranslationSimpleModel
10022
+ */
10023
+ export interface TranslationSimpleModel {
10024
+ /**
10025
+ *
10026
+ * @type {string}
10027
+ * @memberof TranslationSimpleModel
10028
+ */
10029
+ 'languageCode'?: string | null;
10030
+ /**
10031
+ *
10032
+ * @type {string}
10033
+ * @memberof TranslationSimpleModel
10034
+ */
10035
+ 'name'?: string | null;
10036
+ /**
10037
+ *
10038
+ * @type {string}
10039
+ * @memberof TranslationSimpleModel
10040
+ */
10041
+ 'normalizedName'?: string | null;
10042
+ /**
10043
+ *
10044
+ * @type {string}
10045
+ * @memberof TranslationSimpleModel
10046
+ */
10047
+ 'slug'?: string | null;
10048
+ /**
10049
+ *
10050
+ * @type {Date}
10051
+ * @memberof TranslationSimpleModel
10052
+ */
10053
+ 'updatedDate'?: Date | null;
10054
+ /**
10055
+ *
10056
+ * @type {boolean}
10057
+ * @memberof TranslationSimpleModel
10058
+ */
10059
+ 'isConfirmed'?: boolean;
10060
+ }
9877
10061
  /**
9878
10062
  *
9879
10063
  * @export