ch-api-client-typescript2 4.8.3 → 4.8.4
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 +131 -71
- package/lib/api.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api.ts +131 -71
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -2767,6 +2767,24 @@ export interface CountryItemModel {
|
|
|
2767
2767
|
* @memberof CountryItemModel
|
|
2768
2768
|
*/
|
|
2769
2769
|
'languageCode'?: string | null;
|
|
2770
|
+
/**
|
|
2771
|
+
*
|
|
2772
|
+
* @type {number}
|
|
2773
|
+
* @memberof CountryItemModel
|
|
2774
|
+
*/
|
|
2775
|
+
'hospitalsCount'?: number;
|
|
2776
|
+
/**
|
|
2777
|
+
*
|
|
2778
|
+
* @type {number}
|
|
2779
|
+
* @memberof CountryItemModel
|
|
2780
|
+
*/
|
|
2781
|
+
'doctorsCount'?: number;
|
|
2782
|
+
/**
|
|
2783
|
+
*
|
|
2784
|
+
* @type {number}
|
|
2785
|
+
* @memberof CountryItemModel
|
|
2786
|
+
*/
|
|
2787
|
+
'dealsCount'?: number;
|
|
2770
2788
|
/**
|
|
2771
2789
|
*
|
|
2772
2790
|
* @type {string}
|
|
@@ -2779,6 +2797,12 @@ export interface CountryItemModel {
|
|
|
2779
2797
|
* @memberof CountryItemModel
|
|
2780
2798
|
*/
|
|
2781
2799
|
'slug'?: string | null;
|
|
2800
|
+
/**
|
|
2801
|
+
*
|
|
2802
|
+
* @type {string}
|
|
2803
|
+
* @memberof CountryItemModel
|
|
2804
|
+
*/
|
|
2805
|
+
'description'?: string | null;
|
|
2782
2806
|
/**
|
|
2783
2807
|
*
|
|
2784
2808
|
* @type {boolean}
|
|
@@ -2822,6 +2846,24 @@ export interface CountryModel {
|
|
|
2822
2846
|
* @memberof CountryModel
|
|
2823
2847
|
*/
|
|
2824
2848
|
'languageCode'?: string | null;
|
|
2849
|
+
/**
|
|
2850
|
+
*
|
|
2851
|
+
* @type {number}
|
|
2852
|
+
* @memberof CountryModel
|
|
2853
|
+
*/
|
|
2854
|
+
'hospitalsCount'?: number;
|
|
2855
|
+
/**
|
|
2856
|
+
*
|
|
2857
|
+
* @type {number}
|
|
2858
|
+
* @memberof CountryModel
|
|
2859
|
+
*/
|
|
2860
|
+
'doctorsCount'?: number;
|
|
2861
|
+
/**
|
|
2862
|
+
*
|
|
2863
|
+
* @type {number}
|
|
2864
|
+
* @memberof CountryModel
|
|
2865
|
+
*/
|
|
2866
|
+
'dealsCount'?: number;
|
|
2825
2867
|
/**
|
|
2826
2868
|
*
|
|
2827
2869
|
* @type {string}
|
|
@@ -2834,6 +2876,12 @@ export interface CountryModel {
|
|
|
2834
2876
|
* @memberof CountryModel
|
|
2835
2877
|
*/
|
|
2836
2878
|
'slug'?: string | null;
|
|
2879
|
+
/**
|
|
2880
|
+
*
|
|
2881
|
+
* @type {string}
|
|
2882
|
+
* @memberof CountryModel
|
|
2883
|
+
*/
|
|
2884
|
+
'description'?: string | null;
|
|
2837
2885
|
/**
|
|
2838
2886
|
*
|
|
2839
2887
|
* @type {boolean}
|
|
@@ -2858,12 +2906,6 @@ export interface CountryModel {
|
|
|
2858
2906
|
* @memberof CountryModel
|
|
2859
2907
|
*/
|
|
2860
2908
|
'auditableEntity'?: AuditableEntity;
|
|
2861
|
-
/**
|
|
2862
|
-
*
|
|
2863
|
-
* @type {string}
|
|
2864
|
-
* @memberof CountryModel
|
|
2865
|
-
*/
|
|
2866
|
-
'description'?: string | null;
|
|
2867
2909
|
/**
|
|
2868
2910
|
*
|
|
2869
2911
|
* @type {string}
|
|
@@ -6711,6 +6753,12 @@ export interface HospitalServiceItemModel {
|
|
|
6711
6753
|
* @memberof HospitalServiceItemModel
|
|
6712
6754
|
*/
|
|
6713
6755
|
'slug'?: string | null;
|
|
6756
|
+
/**
|
|
6757
|
+
*
|
|
6758
|
+
* @type {string}
|
|
6759
|
+
* @memberof HospitalServiceItemModel
|
|
6760
|
+
*/
|
|
6761
|
+
'description'?: string | null;
|
|
6714
6762
|
/**
|
|
6715
6763
|
*
|
|
6716
6764
|
* @type {boolean}
|
|
@@ -6814,6 +6862,12 @@ export interface HospitalServiceModel {
|
|
|
6814
6862
|
* @memberof HospitalServiceModel
|
|
6815
6863
|
*/
|
|
6816
6864
|
'slug'?: string | null;
|
|
6865
|
+
/**
|
|
6866
|
+
*
|
|
6867
|
+
* @type {string}
|
|
6868
|
+
* @memberof HospitalServiceModel
|
|
6869
|
+
*/
|
|
6870
|
+
'description'?: string | null;
|
|
6817
6871
|
/**
|
|
6818
6872
|
*
|
|
6819
6873
|
* @type {boolean}
|
|
@@ -6886,12 +6940,6 @@ export interface HospitalServiceModel {
|
|
|
6886
6940
|
* @memberof HospitalServiceModel
|
|
6887
6941
|
*/
|
|
6888
6942
|
'auditableEntity'?: AuditableEntity;
|
|
6889
|
-
/**
|
|
6890
|
-
*
|
|
6891
|
-
* @type {string}
|
|
6892
|
-
* @memberof HospitalServiceModel
|
|
6893
|
-
*/
|
|
6894
|
-
'description'?: string | null;
|
|
6895
6943
|
/**
|
|
6896
6944
|
*
|
|
6897
6945
|
* @type {string}
|
|
@@ -9582,6 +9630,12 @@ export interface SpecialtyItemModel {
|
|
|
9582
9630
|
* @memberof SpecialtyItemModel
|
|
9583
9631
|
*/
|
|
9584
9632
|
'slug'?: string | null;
|
|
9633
|
+
/**
|
|
9634
|
+
*
|
|
9635
|
+
* @type {string}
|
|
9636
|
+
* @memberof SpecialtyItemModel
|
|
9637
|
+
*/
|
|
9638
|
+
'description'?: string | null;
|
|
9585
9639
|
/**
|
|
9586
9640
|
*
|
|
9587
9641
|
* @type {boolean}
|
|
@@ -9716,6 +9770,12 @@ export interface SpecialtyModel {
|
|
|
9716
9770
|
* @memberof SpecialtyModel
|
|
9717
9771
|
*/
|
|
9718
9772
|
'slug'?: string | null;
|
|
9773
|
+
/**
|
|
9774
|
+
*
|
|
9775
|
+
* @type {string}
|
|
9776
|
+
* @memberof SpecialtyModel
|
|
9777
|
+
*/
|
|
9778
|
+
'description'?: string | null;
|
|
9719
9779
|
/**
|
|
9720
9780
|
*
|
|
9721
9781
|
* @type {boolean}
|
|
@@ -9776,12 +9836,6 @@ export interface SpecialtyModel {
|
|
|
9776
9836
|
* @memberof SpecialtyModel
|
|
9777
9837
|
*/
|
|
9778
9838
|
'auditableEntity'?: AuditableEntity;
|
|
9779
|
-
/**
|
|
9780
|
-
*
|
|
9781
|
-
* @type {string}
|
|
9782
|
-
* @memberof SpecialtyModel
|
|
9783
|
-
*/
|
|
9784
|
-
'description'?: string | null;
|
|
9785
9839
|
/**
|
|
9786
9840
|
*
|
|
9787
9841
|
* @type {string}
|
|
@@ -9827,10 +9881,10 @@ export interface SpecialtyTypeItemModel {
|
|
|
9827
9881
|
'languageCode'?: string | null;
|
|
9828
9882
|
/**
|
|
9829
9883
|
*
|
|
9830
|
-
* @type {Array<
|
|
9884
|
+
* @type {Array<TranslationSimpleWithDescriptionModel>}
|
|
9831
9885
|
* @memberof SpecialtyTypeItemModel
|
|
9832
9886
|
*/
|
|
9833
|
-
'simpleTranslations'?: Array<
|
|
9887
|
+
'simpleTranslations'?: Array<TranslationSimpleWithDescriptionModel> | null;
|
|
9834
9888
|
/**
|
|
9835
9889
|
*
|
|
9836
9890
|
* @type {string}
|
|
@@ -9924,10 +9978,10 @@ export interface SpecialtyTypeModel {
|
|
|
9924
9978
|
'languageCode'?: string | null;
|
|
9925
9979
|
/**
|
|
9926
9980
|
*
|
|
9927
|
-
* @type {Array<
|
|
9981
|
+
* @type {Array<TranslationSimpleWithDescriptionModel>}
|
|
9928
9982
|
* @memberof SpecialtyTypeModel
|
|
9929
9983
|
*/
|
|
9930
|
-
'simpleTranslations'?: Array<
|
|
9984
|
+
'simpleTranslations'?: Array<TranslationSimpleWithDescriptionModel> | null;
|
|
9931
9985
|
/**
|
|
9932
9986
|
*
|
|
9933
9987
|
* @type {string}
|
|
@@ -10006,6 +10060,12 @@ export interface SpecialtyTypeModel {
|
|
|
10006
10060
|
* @memberof SpecialtyTypeModel
|
|
10007
10061
|
*/
|
|
10008
10062
|
'content'?: string | null;
|
|
10063
|
+
/**
|
|
10064
|
+
*
|
|
10065
|
+
* @type {string}
|
|
10066
|
+
* @memberof SpecialtyTypeModel
|
|
10067
|
+
*/
|
|
10068
|
+
'overview'?: string | null;
|
|
10009
10069
|
/**
|
|
10010
10070
|
*
|
|
10011
10071
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -10056,55 +10116,6 @@ export interface SpecialtyTypeSimpleItemModel {
|
|
|
10056
10116
|
*/
|
|
10057
10117
|
'confirmed'?: boolean;
|
|
10058
10118
|
}
|
|
10059
|
-
/**
|
|
10060
|
-
*
|
|
10061
|
-
* @export
|
|
10062
|
-
* @interface SpecialtyTypeTranslationSimpleModel
|
|
10063
|
-
*/
|
|
10064
|
-
export interface SpecialtyTypeTranslationSimpleModel {
|
|
10065
|
-
/**
|
|
10066
|
-
*
|
|
10067
|
-
* @type {string}
|
|
10068
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
10069
|
-
*/
|
|
10070
|
-
'languageCode'?: string | null;
|
|
10071
|
-
/**
|
|
10072
|
-
*
|
|
10073
|
-
* @type {string}
|
|
10074
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
10075
|
-
*/
|
|
10076
|
-
'name'?: string | null;
|
|
10077
|
-
/**
|
|
10078
|
-
*
|
|
10079
|
-
* @type {string}
|
|
10080
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
10081
|
-
*/
|
|
10082
|
-
'normalizedName'?: string | null;
|
|
10083
|
-
/**
|
|
10084
|
-
*
|
|
10085
|
-
* @type {string}
|
|
10086
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
10087
|
-
*/
|
|
10088
|
-
'slug'?: string | null;
|
|
10089
|
-
/**
|
|
10090
|
-
*
|
|
10091
|
-
* @type {Date}
|
|
10092
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
10093
|
-
*/
|
|
10094
|
-
'updatedDate'?: Date | null;
|
|
10095
|
-
/**
|
|
10096
|
-
*
|
|
10097
|
-
* @type {boolean}
|
|
10098
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
10099
|
-
*/
|
|
10100
|
-
'isConfirmed'?: boolean;
|
|
10101
|
-
/**
|
|
10102
|
-
*
|
|
10103
|
-
* @type {string}
|
|
10104
|
-
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
10105
|
-
*/
|
|
10106
|
-
'description'?: string | null;
|
|
10107
|
-
}
|
|
10108
10119
|
/**
|
|
10109
10120
|
*
|
|
10110
10121
|
* @export
|
|
@@ -10575,6 +10586,55 @@ export interface TranslationSimpleModel {
|
|
|
10575
10586
|
*/
|
|
10576
10587
|
'isConfirmed'?: boolean;
|
|
10577
10588
|
}
|
|
10589
|
+
/**
|
|
10590
|
+
*
|
|
10591
|
+
* @export
|
|
10592
|
+
* @interface TranslationSimpleWithDescriptionModel
|
|
10593
|
+
*/
|
|
10594
|
+
export interface TranslationSimpleWithDescriptionModel {
|
|
10595
|
+
/**
|
|
10596
|
+
*
|
|
10597
|
+
* @type {string}
|
|
10598
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10599
|
+
*/
|
|
10600
|
+
'languageCode'?: string | null;
|
|
10601
|
+
/**
|
|
10602
|
+
*
|
|
10603
|
+
* @type {string}
|
|
10604
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10605
|
+
*/
|
|
10606
|
+
'name'?: string | null;
|
|
10607
|
+
/**
|
|
10608
|
+
*
|
|
10609
|
+
* @type {string}
|
|
10610
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10611
|
+
*/
|
|
10612
|
+
'normalizedName'?: string | null;
|
|
10613
|
+
/**
|
|
10614
|
+
*
|
|
10615
|
+
* @type {string}
|
|
10616
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10617
|
+
*/
|
|
10618
|
+
'slug'?: string | null;
|
|
10619
|
+
/**
|
|
10620
|
+
*
|
|
10621
|
+
* @type {Date}
|
|
10622
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10623
|
+
*/
|
|
10624
|
+
'updatedDate'?: Date | null;
|
|
10625
|
+
/**
|
|
10626
|
+
*
|
|
10627
|
+
* @type {boolean}
|
|
10628
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10629
|
+
*/
|
|
10630
|
+
'isConfirmed'?: boolean;
|
|
10631
|
+
/**
|
|
10632
|
+
*
|
|
10633
|
+
* @type {string}
|
|
10634
|
+
* @memberof TranslationSimpleWithDescriptionModel
|
|
10635
|
+
*/
|
|
10636
|
+
'description'?: string | null;
|
|
10637
|
+
}
|
|
10578
10638
|
/**
|
|
10579
10639
|
*
|
|
10580
10640
|
* @export
|