ch-admin-api-client-typescript 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
@@ -988,37 +988,6 @@ export interface AuditableEntity {
988
988
  */
989
989
  'isDeleted'?: boolean;
990
990
  }
991
- /**
992
- *
993
- * @export
994
- * @interface AwardModel
995
- */
996
- export interface AwardModel {
997
- /**
998
- *
999
- * @type {string}
1000
- * @memberof AwardModel
1001
- */
1002
- 'id'?: string;
1003
- /**
1004
- *
1005
- * @type {string}
1006
- * @memberof AwardModel
1007
- */
1008
- 'name'?: string | null;
1009
- /**
1010
- *
1011
- * @type {string}
1012
- * @memberof AwardModel
1013
- */
1014
- 'image'?: string | null;
1015
- /**
1016
- *
1017
- * @type {Date}
1018
- * @memberof AwardModel
1019
- */
1020
- 'date'?: Date;
1021
- }
1022
991
  /**
1023
992
  *
1024
993
  * @export
@@ -6222,43 +6191,31 @@ export interface DoctorItemModel {
6222
6191
  * @type {string}
6223
6192
  * @memberof DoctorItemModel
6224
6193
  */
6225
- 'userName'?: string | null;
6226
- /**
6227
- *
6228
- * @type {string}
6229
- * @memberof DoctorItemModel
6230
- */
6231
- 'firstName'?: string | null;
6232
- /**
6233
- *
6234
- * @type {string}
6235
- * @memberof DoctorItemModel
6236
- */
6237
- 'middleName'?: string | null;
6194
+ 'name'?: string | null;
6238
6195
  /**
6239
6196
  *
6240
6197
  * @type {string}
6241
6198
  * @memberof DoctorItemModel
6242
6199
  */
6243
- 'lastName'?: string | null;
6200
+ 'slug'?: string | null;
6244
6201
  /**
6245
6202
  *
6246
- * @type {string}
6203
+ * @type {boolean}
6247
6204
  * @memberof DoctorItemModel
6248
6205
  */
6249
- 'fullName'?: string | null;
6206
+ 'consultationEnabled'?: boolean | null;
6250
6207
  /**
6251
6208
  *
6252
- * @type {string}
6209
+ * @type {number}
6253
6210
  * @memberof DoctorItemModel
6254
6211
  */
6255
- 'slug'?: string | null;
6212
+ 'consultationFee'?: number | null;
6256
6213
  /**
6257
6214
  *
6258
- * @type {string}
6215
+ * @type {boolean}
6259
6216
  * @memberof DoctorItemModel
6260
6217
  */
6261
- 'phone'?: string | null;
6218
+ 'confirmed'?: boolean;
6262
6219
  /**
6263
6220
  *
6264
6221
  * @type {string}
@@ -6277,84 +6234,24 @@ export interface DoctorItemModel {
6277
6234
  * @memberof DoctorItemModel
6278
6235
  */
6279
6236
  'photoThumbnail'?: string | null;
6280
- /**
6281
- *
6282
- * @type {Gender}
6283
- * @memberof DoctorItemModel
6284
- */
6285
- 'gender'?: Gender;
6286
- /**
6287
- *
6288
- * @type {Date}
6289
- * @memberof DoctorItemModel
6290
- */
6291
- 'dateOfBirth'?: Date | null;
6292
6237
  /**
6293
6238
  *
6294
6239
  * @type {string}
6295
6240
  * @memberof DoctorItemModel
6296
6241
  */
6297
- 'timeZone'?: string | null;
6242
+ 'hospitalSlug'?: string | null;
6298
6243
  /**
6299
6244
  *
6300
- * @type {string}
6245
+ * @type {Array<DoctorAffiliationItemModel>}
6301
6246
  * @memberof DoctorItemModel
6302
6247
  */
6303
- 'communicationUserId'?: string | null;
6248
+ 'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
6304
6249
  /**
6305
6250
  *
6306
6251
  * @type {AuditableEntity}
6307
6252
  * @memberof DoctorItemModel
6308
6253
  */
6309
6254
  'auditableEntity'?: AuditableEntity;
6310
- /**
6311
- *
6312
- * @type {string}
6313
- * @memberof DoctorItemModel
6314
- */
6315
- 'hospitalId'?: string | null;
6316
- /**
6317
- *
6318
- * @type {string}
6319
- * @memberof DoctorItemModel
6320
- */
6321
- 'hospitalName'?: string | null;
6322
- /**
6323
- *
6324
- * @type {string}
6325
- * @memberof DoctorItemModel
6326
- */
6327
- 'hospitalSlug'?: string | null;
6328
- /**
6329
- *
6330
- * @type {Date}
6331
- * @memberof DoctorItemModel
6332
- */
6333
- 'startPracticeDate'?: Date | null;
6334
- /**
6335
- *
6336
- * @type {string}
6337
- * @memberof DoctorItemModel
6338
- */
6339
- 'overview'?: string | null;
6340
- /**
6341
- *
6342
- * @type {boolean}
6343
- * @memberof DoctorItemModel
6344
- */
6345
- 'consultationEnabled'?: boolean | null;
6346
- /**
6347
- *
6348
- * @type {number}
6349
- * @memberof DoctorItemModel
6350
- */
6351
- 'consultationFee'?: number | null;
6352
- /**
6353
- *
6354
- * @type {boolean}
6355
- * @memberof DoctorItemModel
6356
- */
6357
- 'confirmed'?: boolean;
6358
6255
  }
6359
6256
  /**
6360
6257
  *
@@ -6551,30 +6448,6 @@ export interface DoctorModel {
6551
6448
  * @memberof DoctorModel
6552
6449
  */
6553
6450
  'languageCode'?: string | null;
6554
- /**
6555
- *
6556
- * @type {string}
6557
- * @memberof DoctorModel
6558
- */
6559
- 'hospitalId'?: string | null;
6560
- /**
6561
- *
6562
- * @type {string}
6563
- * @memberof DoctorModel
6564
- */
6565
- 'hospitalName'?: string | null;
6566
- /**
6567
- *
6568
- * @type {string}
6569
- * @memberof DoctorModel
6570
- */
6571
- 'hospitalSlug'?: string | null;
6572
- /**
6573
- *
6574
- * @type {Date}
6575
- * @memberof DoctorModel
6576
- */
6577
- 'startPracticeDate'?: Date | null;
6578
6451
  /**
6579
6452
  *
6580
6453
  * @type {string}
@@ -6613,10 +6486,16 @@ export interface DoctorModel {
6613
6486
  'confirmed'?: boolean;
6614
6487
  /**
6615
6488
  *
6616
- * @type {Array<LocalizedUrlModel>}
6489
+ * @type {Date}
6617
6490
  * @memberof DoctorModel
6618
6491
  */
6619
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6492
+ 'startPracticeDate'?: Date | null;
6493
+ /**
6494
+ *
6495
+ * @type {Array<DoctorAffiliationItemModel>}
6496
+ * @memberof DoctorModel
6497
+ */
6498
+ 'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
6620
6499
  }
6621
6500
  /**
6622
6501
  *
@@ -7746,224 +7625,152 @@ export interface HospitalItemModel {
7746
7625
  * @type {string}
7747
7626
  * @memberof HospitalItemModel
7748
7627
  */
7749
- 'description'?: string | null;
7628
+ 'logo'?: string | null;
7750
7629
  /**
7751
7630
  *
7752
7631
  * @type {string}
7753
7632
  * @memberof HospitalItemModel
7754
7633
  */
7755
- 'logo'?: string | null;
7634
+ 'countryId'?: string;
7756
7635
  /**
7757
7636
  *
7758
7637
  * @type {string}
7759
7638
  * @memberof HospitalItemModel
7760
7639
  */
7761
- 'overview'?: string | null;
7640
+ 'countryName'?: string | null;
7762
7641
  /**
7763
7642
  *
7764
- * @type {number}
7643
+ * @type {MarketingType}
7765
7644
  * @memberof HospitalItemModel
7766
7645
  */
7767
- 'bedsCount'?: number | null;
7646
+ 'marketingType'?: MarketingType;
7768
7647
  /**
7769
7648
  *
7770
- * @type {number}
7649
+ * @type {string}
7771
7650
  * @memberof HospitalItemModel
7772
7651
  */
7773
- 'operationsPerYear'?: number | null;
7652
+ 'timeZone'?: string | null;
7774
7653
  /**
7775
7654
  *
7776
- * @type {number}
7655
+ * @type {string}
7777
7656
  * @memberof HospitalItemModel
7778
7657
  */
7779
- 'foundationYear'?: number | null;
7658
+ 'websiteUrl'?: string | null;
7780
7659
  /**
7781
7660
  *
7782
- * @type {number}
7661
+ * @type {boolean}
7783
7662
  * @memberof HospitalItemModel
7784
7663
  */
7785
- 'medicalStaffCount'?: number | null;
7664
+ 'paymentEnabled'?: boolean;
7786
7665
  /**
7787
7666
  *
7788
- * @type {number}
7667
+ * @type {boolean}
7789
7668
  * @memberof HospitalItemModel
7790
7669
  */
7791
- 'doctorCount'?: number | null;
7670
+ 'confirmed'?: boolean;
7792
7671
  /**
7793
7672
  *
7794
- * @type {string}
7673
+ * @type {LocationModel}
7795
7674
  * @memberof HospitalItemModel
7796
7675
  */
7797
- 'countryId'?: string;
7676
+ 'location'?: LocationModel;
7798
7677
  /**
7799
7678
  *
7800
- * @type {string}
7679
+ * @type {AuditableEntity}
7801
7680
  * @memberof HospitalItemModel
7802
7681
  */
7803
- 'countryName'?: string | null;
7682
+ 'auditableEntity'?: AuditableEntity;
7683
+ }
7684
+ /**
7685
+ *
7686
+ * @export
7687
+ * @interface HospitalModel
7688
+ */
7689
+ export interface HospitalModel {
7804
7690
  /**
7805
7691
  *
7806
- * @type {MarketingType}
7807
- * @memberof HospitalItemModel
7692
+ * @type {string}
7693
+ * @memberof HospitalModel
7808
7694
  */
7809
- 'marketingType'?: MarketingType;
7695
+ 'id'?: string;
7810
7696
  /**
7811
7697
  *
7812
- * @type {boolean}
7813
- * @memberof HospitalItemModel
7698
+ * @type {string}
7699
+ * @memberof HospitalModel
7814
7700
  */
7815
- 'consultationEnabled'?: boolean | null;
7701
+ 'name'?: string | null;
7816
7702
  /**
7817
7703
  *
7818
- * @type {number}
7819
- * @memberof HospitalItemModel
7704
+ * @type {string}
7705
+ * @memberof HospitalModel
7820
7706
  */
7821
- 'consultationFee'?: number | null;
7707
+ 'slug'?: string | null;
7822
7708
  /**
7823
7709
  *
7824
7710
  * @type {string}
7825
- * @memberof HospitalItemModel
7711
+ * @memberof HospitalModel
7826
7712
  */
7827
- 'timeZone'?: string | null;
7713
+ 'logo'?: string | null;
7828
7714
  /**
7829
7715
  *
7830
7716
  * @type {string}
7831
- * @memberof HospitalItemModel
7717
+ * @memberof HospitalModel
7832
7718
  */
7833
- 'websiteUrl'?: string | null;
7719
+ 'countryId'?: string;
7834
7720
  /**
7835
7721
  *
7836
- * @type {number}
7837
- * @memberof HospitalItemModel
7722
+ * @type {string}
7723
+ * @memberof HospitalModel
7838
7724
  */
7839
- 'articlesCount'?: number;
7725
+ 'countryName'?: string | null;
7840
7726
  /**
7841
7727
  *
7842
- * @type {number}
7843
- * @memberof HospitalItemModel
7728
+ * @type {MarketingType}
7729
+ * @memberof HospitalModel
7844
7730
  */
7845
- 'packagesCount'?: number;
7731
+ 'marketingType'?: MarketingType;
7846
7732
  /**
7847
7733
  *
7848
- * @type {number}
7849
- * @memberof HospitalItemModel
7734
+ * @type {string}
7735
+ * @memberof HospitalModel
7850
7736
  */
7851
- 'equipmentsCount'?: number;
7737
+ 'timeZone'?: string | null;
7852
7738
  /**
7853
7739
  *
7854
- * @type {number}
7855
- * @memberof HospitalItemModel
7740
+ * @type {string}
7741
+ * @memberof HospitalModel
7856
7742
  */
7857
- 'reviewsCount'?: number;
7743
+ 'websiteUrl'?: string | null;
7858
7744
  /**
7859
7745
  *
7860
- * @type {number}
7861
- * @memberof HospitalItemModel
7746
+ * @type {boolean}
7747
+ * @memberof HospitalModel
7862
7748
  */
7863
- 'departmentsCount'?: number;
7749
+ 'paymentEnabled'?: boolean;
7864
7750
  /**
7865
7751
  *
7866
- * @type {number}
7867
- * @memberof HospitalItemModel
7752
+ * @type {boolean}
7753
+ * @memberof HospitalModel
7868
7754
  */
7869
- 'specialtiesCount'?: number;
7755
+ 'confirmed'?: boolean;
7870
7756
  /**
7871
7757
  *
7872
- * @type {number}
7873
- * @memberof HospitalItemModel
7758
+ * @type {LocationModel}
7759
+ * @memberof HospitalModel
7874
7760
  */
7875
- 'accreditationsCount'?: number;
7876
- /**
7877
- *
7878
- * @type {number}
7879
- * @memberof HospitalItemModel
7880
- */
7881
- 'doctorAffiliationsCount'?: number;
7882
- /**
7883
- *
7884
- * @type {number}
7885
- * @memberof HospitalItemModel
7886
- */
7887
- 'managerAffiliationsCount'?: number;
7888
- /**
7889
- *
7890
- * @type {string}
7891
- * @memberof HospitalItemModel
7892
- */
7893
- 'specialtiesSummerized'?: string | null;
7894
- /**
7895
- *
7896
- * @type {boolean}
7897
- * @memberof HospitalItemModel
7898
- */
7899
- 'paymentEnabled'?: boolean;
7900
- /**
7901
- *
7902
- * @type {boolean}
7903
- * @memberof HospitalItemModel
7904
- */
7905
- 'confirmed'?: boolean;
7906
- /**
7907
- *
7908
- * @type {Array<AwardModel>}
7909
- * @memberof HospitalItemModel
7910
- */
7911
- 'awards'?: Array<AwardModel> | null;
7912
- /**
7913
- *
7914
- * @type {Array<MediaModel>}
7915
- * @memberof HospitalItemModel
7916
- */
7917
- 'medias'?: Array<MediaModel> | null;
7918
- /**
7919
- *
7920
- * @type {Array<AccreditationModel>}
7921
- * @memberof HospitalItemModel
7922
- */
7923
- 'accreditations'?: Array<AccreditationModel> | null;
7924
- /**
7925
- *
7926
- * @type {Array<HospitalEvaluationModel>}
7927
- * @memberof HospitalItemModel
7928
- */
7929
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
7930
- /**
7931
- *
7932
- * @type {LocationModel}
7933
- * @memberof HospitalItemModel
7934
- */
7935
- 'location'?: LocationModel;
7761
+ 'location'?: LocationModel;
7936
7762
  /**
7937
7763
  *
7938
7764
  * @type {AuditableEntity}
7939
- * @memberof HospitalItemModel
7940
- */
7941
- 'auditableEntity'?: AuditableEntity;
7942
- }
7943
- /**
7944
- *
7945
- * @export
7946
- * @interface HospitalModel
7947
- */
7948
- export interface HospitalModel {
7949
- /**
7950
- *
7951
- * @type {string}
7952
- * @memberof HospitalModel
7953
- */
7954
- 'id'?: string;
7955
- /**
7956
- *
7957
- * @type {string}
7958
7765
  * @memberof HospitalModel
7959
7766
  */
7960
- 'name'?: string | null;
7767
+ 'auditableEntity'?: AuditableEntity;
7961
7768
  /**
7962
7769
  *
7963
7770
  * @type {string}
7964
7771
  * @memberof HospitalModel
7965
7772
  */
7966
- 'slug'?: string | null;
7773
+ 'languageCode'?: string | null;
7967
7774
  /**
7968
7775
  *
7969
7776
  * @type {string}
@@ -7975,13 +7782,13 @@ export interface HospitalModel {
7975
7782
  * @type {string}
7976
7783
  * @memberof HospitalModel
7977
7784
  */
7978
- 'logo'?: string | null;
7785
+ 'overview'?: string | null;
7979
7786
  /**
7980
7787
  *
7981
7788
  * @type {string}
7982
7789
  * @memberof HospitalModel
7983
7790
  */
7984
- 'overview'?: string | null;
7791
+ 'content'?: string | null;
7985
7792
  /**
7986
7793
  *
7987
7794
  * @type {number}
@@ -8012,24 +7819,6 @@ export interface HospitalModel {
8012
7819
  * @memberof HospitalModel
8013
7820
  */
8014
7821
  'doctorCount'?: number | null;
8015
- /**
8016
- *
8017
- * @type {string}
8018
- * @memberof HospitalModel
8019
- */
8020
- 'countryId'?: string;
8021
- /**
8022
- *
8023
- * @type {string}
8024
- * @memberof HospitalModel
8025
- */
8026
- 'countryName'?: string | null;
8027
- /**
8028
- *
8029
- * @type {MarketingType}
8030
- * @memberof HospitalModel
8031
- */
8032
- 'marketingType'?: MarketingType;
8033
7822
  /**
8034
7823
  *
8035
7824
  * @type {boolean}
@@ -8042,138 +7831,6 @@ export interface HospitalModel {
8042
7831
  * @memberof HospitalModel
8043
7832
  */
8044
7833
  'consultationFee'?: number | null;
8045
- /**
8046
- *
8047
- * @type {string}
8048
- * @memberof HospitalModel
8049
- */
8050
- 'timeZone'?: string | null;
8051
- /**
8052
- *
8053
- * @type {string}
8054
- * @memberof HospitalModel
8055
- */
8056
- 'websiteUrl'?: string | null;
8057
- /**
8058
- *
8059
- * @type {number}
8060
- * @memberof HospitalModel
8061
- */
8062
- 'articlesCount'?: number;
8063
- /**
8064
- *
8065
- * @type {number}
8066
- * @memberof HospitalModel
8067
- */
8068
- 'packagesCount'?: number;
8069
- /**
8070
- *
8071
- * @type {number}
8072
- * @memberof HospitalModel
8073
- */
8074
- 'equipmentsCount'?: number;
8075
- /**
8076
- *
8077
- * @type {number}
8078
- * @memberof HospitalModel
8079
- */
8080
- 'reviewsCount'?: number;
8081
- /**
8082
- *
8083
- * @type {number}
8084
- * @memberof HospitalModel
8085
- */
8086
- 'departmentsCount'?: number;
8087
- /**
8088
- *
8089
- * @type {number}
8090
- * @memberof HospitalModel
8091
- */
8092
- 'specialtiesCount'?: number;
8093
- /**
8094
- *
8095
- * @type {number}
8096
- * @memberof HospitalModel
8097
- */
8098
- 'accreditationsCount'?: number;
8099
- /**
8100
- *
8101
- * @type {number}
8102
- * @memberof HospitalModel
8103
- */
8104
- 'doctorAffiliationsCount'?: number;
8105
- /**
8106
- *
8107
- * @type {number}
8108
- * @memberof HospitalModel
8109
- */
8110
- 'managerAffiliationsCount'?: number;
8111
- /**
8112
- *
8113
- * @type {string}
8114
- * @memberof HospitalModel
8115
- */
8116
- 'specialtiesSummerized'?: string | null;
8117
- /**
8118
- *
8119
- * @type {boolean}
8120
- * @memberof HospitalModel
8121
- */
8122
- 'paymentEnabled'?: boolean;
8123
- /**
8124
- *
8125
- * @type {boolean}
8126
- * @memberof HospitalModel
8127
- */
8128
- 'confirmed'?: boolean;
8129
- /**
8130
- *
8131
- * @type {Array<AwardModel>}
8132
- * @memberof HospitalModel
8133
- */
8134
- 'awards'?: Array<AwardModel> | null;
8135
- /**
8136
- *
8137
- * @type {Array<MediaModel>}
8138
- * @memberof HospitalModel
8139
- */
8140
- 'medias'?: Array<MediaModel> | null;
8141
- /**
8142
- *
8143
- * @type {Array<AccreditationModel>}
8144
- * @memberof HospitalModel
8145
- */
8146
- 'accreditations'?: Array<AccreditationModel> | null;
8147
- /**
8148
- *
8149
- * @type {Array<HospitalEvaluationModel>}
8150
- * @memberof HospitalModel
8151
- */
8152
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
8153
- /**
8154
- *
8155
- * @type {LocationModel}
8156
- * @memberof HospitalModel
8157
- */
8158
- 'location'?: LocationModel;
8159
- /**
8160
- *
8161
- * @type {AuditableEntity}
8162
- * @memberof HospitalModel
8163
- */
8164
- 'auditableEntity'?: AuditableEntity;
8165
- /**
8166
- *
8167
- * @type {string}
8168
- * @memberof HospitalModel
8169
- */
8170
- 'languageCode'?: string | null;
8171
- /**
8172
- *
8173
- * @type {string}
8174
- * @memberof HospitalModel
8175
- */
8176
- 'content'?: string | null;
8177
7834
  /**
8178
7835
  *
8179
7836
  * @type {string}
@@ -8194,22 +7851,10 @@ export interface HospitalModel {
8194
7851
  'customStyle'?: string | null;
8195
7852
  /**
8196
7853
  *
8197
- * @type {Array<WorkingDay>}
8198
- * @memberof HospitalModel
8199
- */
8200
- 'hospitalWorkingDays'?: Array<WorkingDay> | null;
8201
- /**
8202
- *
8203
- * @type {Array<SnsHandle>}
8204
- * @memberof HospitalModel
8205
- */
8206
- 'hospitalSnsHandles'?: Array<SnsHandle> | null;
8207
- /**
8208
- *
8209
- * @type {Array<LocalizedUrlModel>}
7854
+ * @type {Array<MediaModel>}
8210
7855
  * @memberof HospitalModel
8211
7856
  */
8212
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
7857
+ 'medias'?: Array<MediaModel> | null;
8213
7858
  }
8214
7859
  /**
8215
7860
  *
@@ -8685,19 +8330,13 @@ export interface HospitalSpecialtyItemModel {
8685
8330
  * @type {string}
8686
8331
  * @memberof HospitalSpecialtyItemModel
8687
8332
  */
8688
- 'hospitalId'?: string;
8689
- /**
8690
- *
8691
- * @type {string}
8692
- * @memberof HospitalSpecialtyItemModel
8693
- */
8694
- 'hospitalName'?: string | null;
8333
+ 'name'?: string | null;
8695
8334
  /**
8696
8335
  *
8697
8336
  * @type {string}
8698
8337
  * @memberof HospitalSpecialtyItemModel
8699
8338
  */
8700
- 'hospitalSlug'?: string | null;
8339
+ 'slug'?: string | null;
8701
8340
  /**
8702
8341
  *
8703
8342
  * @type {string}
@@ -8715,73 +8354,13 @@ export interface HospitalSpecialtyItemModel {
8715
8354
  * @type {string}
8716
8355
  * @memberof HospitalSpecialtyItemModel
8717
8356
  */
8718
- 'specialtyTypeId'?: string;
8719
- /**
8720
- *
8721
- * @type {string}
8722
- * @memberof HospitalSpecialtyItemModel
8723
- */
8724
- 'specialtyTypeName'?: string | null;
8357
+ 'specialtySlug'?: string | null;
8725
8358
  /**
8726
8359
  *
8727
8360
  * @type {MarketingType}
8728
8361
  * @memberof HospitalSpecialtyItemModel
8729
8362
  */
8730
8363
  'marketingType'?: MarketingType;
8731
- /**
8732
- *
8733
- * @type {string}
8734
- * @memberof HospitalSpecialtyItemModel
8735
- */
8736
- 'name'?: string | null;
8737
- /**
8738
- *
8739
- * @type {string}
8740
- * @memberof HospitalSpecialtyItemModel
8741
- */
8742
- 'slug'?: string | null;
8743
- /**
8744
- *
8745
- * @type {string}
8746
- * @memberof HospitalSpecialtyItemModel
8747
- */
8748
- 'description'?: string | null;
8749
- /**
8750
- *
8751
- * @type {number}
8752
- * @memberof HospitalSpecialtyItemModel
8753
- */
8754
- 'serviceCount'?: number;
8755
- /**
8756
- *
8757
- * @type {Array<HospitalServiceItemModel>}
8758
- * @memberof HospitalSpecialtyItemModel
8759
- */
8760
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
8761
- /**
8762
- *
8763
- * @type {string}
8764
- * @memberof HospitalSpecialtyItemModel
8765
- */
8766
- 'photo'?: string | null;
8767
- /**
8768
- *
8769
- * @type {string}
8770
- * @memberof HospitalSpecialtyItemModel
8771
- */
8772
- 'photoThumbnail'?: string | null;
8773
- /**
8774
- *
8775
- * @type {string}
8776
- * @memberof HospitalSpecialtyItemModel
8777
- */
8778
- 'background'?: string | null;
8779
- /**
8780
- *
8781
- * @type {string}
8782
- * @memberof HospitalSpecialtyItemModel
8783
- */
8784
- 'backgroundThumbnail'?: string | null;
8785
8364
  /**
8786
8365
  *
8787
8366
  * @type {number}
@@ -8794,12 +8373,6 @@ export interface HospitalSpecialtyItemModel {
8794
8373
  * @memberof HospitalSpecialtyItemModel
8795
8374
  */
8796
8375
  'confirmed'?: boolean;
8797
- /**
8798
- *
8799
- * @type {Array<MediaModel>}
8800
- * @memberof HospitalSpecialtyItemModel
8801
- */
8802
- 'medias'?: Array<MediaModel> | null;
8803
8376
  /**
8804
8377
  *
8805
8378
  * @type {AuditableEntity}
@@ -8824,19 +8397,13 @@ export interface HospitalSpecialtyModel {
8824
8397
  * @type {string}
8825
8398
  * @memberof HospitalSpecialtyModel
8826
8399
  */
8827
- 'hospitalId'?: string;
8828
- /**
8829
- *
8830
- * @type {string}
8831
- * @memberof HospitalSpecialtyModel
8832
- */
8833
- 'hospitalName'?: string | null;
8400
+ 'name'?: string | null;
8834
8401
  /**
8835
8402
  *
8836
8403
  * @type {string}
8837
8404
  * @memberof HospitalSpecialtyModel
8838
8405
  */
8839
- 'hospitalSlug'?: string | null;
8406
+ 'slug'?: string | null;
8840
8407
  /**
8841
8408
  *
8842
8409
  * @type {string}
@@ -8854,13 +8421,7 @@ export interface HospitalSpecialtyModel {
8854
8421
  * @type {string}
8855
8422
  * @memberof HospitalSpecialtyModel
8856
8423
  */
8857
- 'specialtyTypeId'?: string;
8858
- /**
8859
- *
8860
- * @type {string}
8861
- * @memberof HospitalSpecialtyModel
8862
- */
8863
- 'specialtyTypeName'?: string | null;
8424
+ 'specialtySlug'?: string | null;
8864
8425
  /**
8865
8426
  *
8866
8427
  * @type {MarketingType}
@@ -8869,106 +8430,106 @@ export interface HospitalSpecialtyModel {
8869
8430
  'marketingType'?: MarketingType;
8870
8431
  /**
8871
8432
  *
8872
- * @type {string}
8433
+ * @type {number}
8873
8434
  * @memberof HospitalSpecialtyModel
8874
8435
  */
8875
- 'name'?: string | null;
8436
+ 'order'?: number;
8876
8437
  /**
8877
8438
  *
8878
- * @type {string}
8439
+ * @type {boolean}
8879
8440
  * @memberof HospitalSpecialtyModel
8880
8441
  */
8881
- 'slug'?: string | null;
8442
+ 'confirmed'?: boolean;
8882
8443
  /**
8883
8444
  *
8884
- * @type {string}
8445
+ * @type {AuditableEntity}
8885
8446
  * @memberof HospitalSpecialtyModel
8886
8447
  */
8887
- 'description'?: string | null;
8448
+ 'auditableEntity'?: AuditableEntity;
8888
8449
  /**
8889
8450
  *
8890
- * @type {number}
8451
+ * @type {string}
8891
8452
  * @memberof HospitalSpecialtyModel
8892
8453
  */
8893
- 'serviceCount'?: number;
8454
+ 'languageCode'?: string | null;
8894
8455
  /**
8895
8456
  *
8896
- * @type {Array<HospitalServiceItemModel>}
8457
+ * @type {string}
8897
8458
  * @memberof HospitalSpecialtyModel
8898
8459
  */
8899
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
8460
+ 'description'?: string | null;
8900
8461
  /**
8901
8462
  *
8902
8463
  * @type {string}
8903
8464
  * @memberof HospitalSpecialtyModel
8904
8465
  */
8905
- 'photo'?: string | null;
8466
+ 'content'?: string | null;
8906
8467
  /**
8907
8468
  *
8908
8469
  * @type {string}
8909
8470
  * @memberof HospitalSpecialtyModel
8910
8471
  */
8911
- 'photoThumbnail'?: string | null;
8472
+ 'hospitalId'?: string;
8912
8473
  /**
8913
8474
  *
8914
8475
  * @type {string}
8915
8476
  * @memberof HospitalSpecialtyModel
8916
8477
  */
8917
- 'background'?: string | null;
8478
+ 'hospitalName'?: string | null;
8918
8479
  /**
8919
8480
  *
8920
8481
  * @type {string}
8921
8482
  * @memberof HospitalSpecialtyModel
8922
8483
  */
8923
- 'backgroundThumbnail'?: string | null;
8484
+ 'hospitalSlug'?: string | null;
8924
8485
  /**
8925
8486
  *
8926
- * @type {number}
8487
+ * @type {string}
8927
8488
  * @memberof HospitalSpecialtyModel
8928
8489
  */
8929
- 'order'?: number;
8490
+ 'specialtyTypeId'?: string;
8930
8491
  /**
8931
8492
  *
8932
- * @type {boolean}
8493
+ * @type {string}
8933
8494
  * @memberof HospitalSpecialtyModel
8934
8495
  */
8935
- 'confirmed'?: boolean;
8496
+ 'specialtyTypeName'?: string | null;
8936
8497
  /**
8937
8498
  *
8938
- * @type {Array<MediaModel>}
8499
+ * @type {string}
8939
8500
  * @memberof HospitalSpecialtyModel
8940
8501
  */
8941
- 'medias'?: Array<MediaModel> | null;
8502
+ 'photo'?: string | null;
8942
8503
  /**
8943
8504
  *
8944
- * @type {AuditableEntity}
8505
+ * @type {string}
8945
8506
  * @memberof HospitalSpecialtyModel
8946
8507
  */
8947
- 'auditableEntity'?: AuditableEntity;
8508
+ 'photoThumbnail'?: string | null;
8948
8509
  /**
8949
8510
  *
8950
8511
  * @type {string}
8951
8512
  * @memberof HospitalSpecialtyModel
8952
8513
  */
8953
- 'content'?: string | null;
8514
+ 'background'?: string | null;
8954
8515
  /**
8955
8516
  *
8956
8517
  * @type {string}
8957
8518
  * @memberof HospitalSpecialtyModel
8958
8519
  */
8959
- 'customStyle'?: string | null;
8520
+ 'backgroundThumbnail'?: string | null;
8960
8521
  /**
8961
8522
  *
8962
8523
  * @type {string}
8963
8524
  * @memberof HospitalSpecialtyModel
8964
8525
  */
8965
- 'languageCode'?: string | null;
8526
+ 'customStyle'?: string | null;
8966
8527
  /**
8967
8528
  *
8968
- * @type {Array<LocalizedUrlModel>}
8529
+ * @type {Array<MediaModel>}
8969
8530
  * @memberof HospitalSpecialtyModel
8970
8531
  */
8971
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8532
+ 'medias'?: Array<MediaModel> | null;
8972
8533
  }
8973
8534
  /**
8974
8535
  *
@@ -8994,12 +8555,6 @@ export interface HospitalSpecialtySimpleItemModel {
8994
8555
  * @memberof HospitalSpecialtySimpleItemModel
8995
8556
  */
8996
8557
  'slug'?: string | null;
8997
- /**
8998
- *
8999
- * @type {string}
9000
- * @memberof HospitalSpecialtySimpleItemModel
9001
- */
9002
- 'description'?: string | null;
9003
8558
  /**
9004
8559
  *
9005
8560
  * @type {string}
@@ -14213,43 +13768,6 @@ export interface UserModel {
14213
13768
  */
14214
13769
  'locations'?: Array<UserLocationModel> | null;
14215
13770
  }
14216
- /**
14217
- *
14218
- * @export
14219
- * @interface WorkingDay
14220
- */
14221
- export interface WorkingDay {
14222
- /**
14223
- *
14224
- * @type {string}
14225
- * @memberof WorkingDay
14226
- */
14227
- 'id'?: string;
14228
- /**
14229
- *
14230
- * @type {string}
14231
- * @memberof WorkingDay
14232
- */
14233
- 'dayOfWeek'?: string | null;
14234
- /**
14235
- *
14236
- * @type {Date}
14237
- * @memberof WorkingDay
14238
- */
14239
- 'timeFrom'?: Date;
14240
- /**
14241
- *
14242
- * @type {Date}
14243
- * @memberof WorkingDay
14244
- */
14245
- 'timeTo'?: Date;
14246
- /**
14247
- *
14248
- * @type {boolean}
14249
- * @memberof WorkingDay
14250
- */
14251
- 'checkHoliday'?: boolean;
14252
- }
14253
13771
  /**
14254
13772
  *
14255
13773
  * @export