ch-admin-api-client-typescript 3.3.1 → 3.3.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 CHANGED
@@ -977,37 +977,6 @@ export interface AuditableEntity {
977
977
  */
978
978
  'isDeleted'?: boolean;
979
979
  }
980
- /**
981
- *
982
- * @export
983
- * @interface AwardModel
984
- */
985
- export interface AwardModel {
986
- /**
987
- *
988
- * @type {string}
989
- * @memberof AwardModel
990
- */
991
- 'id'?: string;
992
- /**
993
- *
994
- * @type {string}
995
- * @memberof AwardModel
996
- */
997
- 'name'?: string | null;
998
- /**
999
- *
1000
- * @type {string}
1001
- * @memberof AwardModel
1002
- */
1003
- 'image'?: string | null;
1004
- /**
1005
- *
1006
- * @type {Date}
1007
- * @memberof AwardModel
1008
- */
1009
- 'date'?: Date;
1010
- }
1011
980
  /**
1012
981
  *
1013
982
  * @export
@@ -4525,7 +4494,7 @@ export interface CreateHospitalServiceCommand {
4525
4494
  * @type {number}
4526
4495
  * @memberof CreateHospitalServiceCommand
4527
4496
  */
4528
- 'order'?: number;
4497
+ 'order'?: number | null;
4529
4498
  /**
4530
4499
  *
4531
4500
  * @type {string}
@@ -6203,43 +6172,31 @@ export interface DoctorItemModel {
6203
6172
  * @type {string}
6204
6173
  * @memberof DoctorItemModel
6205
6174
  */
6206
- 'userName'?: string | null;
6207
- /**
6208
- *
6209
- * @type {string}
6210
- * @memberof DoctorItemModel
6211
- */
6212
- 'firstName'?: string | null;
6213
- /**
6214
- *
6215
- * @type {string}
6216
- * @memberof DoctorItemModel
6217
- */
6218
- 'middleName'?: string | null;
6175
+ 'name'?: string | null;
6219
6176
  /**
6220
6177
  *
6221
6178
  * @type {string}
6222
6179
  * @memberof DoctorItemModel
6223
6180
  */
6224
- 'lastName'?: string | null;
6181
+ 'slug'?: string | null;
6225
6182
  /**
6226
6183
  *
6227
- * @type {string}
6184
+ * @type {boolean}
6228
6185
  * @memberof DoctorItemModel
6229
6186
  */
6230
- 'fullName'?: string | null;
6187
+ 'consultationEnabled'?: boolean | null;
6231
6188
  /**
6232
6189
  *
6233
- * @type {string}
6190
+ * @type {number}
6234
6191
  * @memberof DoctorItemModel
6235
6192
  */
6236
- 'slug'?: string | null;
6193
+ 'consultationFee'?: number | null;
6237
6194
  /**
6238
6195
  *
6239
- * @type {string}
6196
+ * @type {boolean}
6240
6197
  * @memberof DoctorItemModel
6241
6198
  */
6242
- 'phone'?: string | null;
6199
+ 'confirmed'?: boolean;
6243
6200
  /**
6244
6201
  *
6245
6202
  * @type {string}
@@ -6258,84 +6215,24 @@ export interface DoctorItemModel {
6258
6215
  * @memberof DoctorItemModel
6259
6216
  */
6260
6217
  'photoThumbnail'?: string | null;
6261
- /**
6262
- *
6263
- * @type {Gender}
6264
- * @memberof DoctorItemModel
6265
- */
6266
- 'gender'?: Gender;
6267
- /**
6268
- *
6269
- * @type {Date}
6270
- * @memberof DoctorItemModel
6271
- */
6272
- 'dateOfBirth'?: Date | null;
6273
6218
  /**
6274
6219
  *
6275
6220
  * @type {string}
6276
6221
  * @memberof DoctorItemModel
6277
6222
  */
6278
- 'timeZone'?: string | null;
6223
+ 'hospitalSlug'?: string | null;
6279
6224
  /**
6280
6225
  *
6281
- * @type {string}
6226
+ * @type {Array<DoctorAffiliationItemModel>}
6282
6227
  * @memberof DoctorItemModel
6283
6228
  */
6284
- 'communicationUserId'?: string | null;
6229
+ 'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
6285
6230
  /**
6286
6231
  *
6287
6232
  * @type {AuditableEntity}
6288
6233
  * @memberof DoctorItemModel
6289
6234
  */
6290
6235
  'auditableEntity'?: AuditableEntity;
6291
- /**
6292
- *
6293
- * @type {string}
6294
- * @memberof DoctorItemModel
6295
- */
6296
- 'hospitalId'?: string | null;
6297
- /**
6298
- *
6299
- * @type {string}
6300
- * @memberof DoctorItemModel
6301
- */
6302
- 'hospitalName'?: string | null;
6303
- /**
6304
- *
6305
- * @type {string}
6306
- * @memberof DoctorItemModel
6307
- */
6308
- 'hospitalSlug'?: string | null;
6309
- /**
6310
- *
6311
- * @type {Date}
6312
- * @memberof DoctorItemModel
6313
- */
6314
- 'startPracticeDate'?: Date | null;
6315
- /**
6316
- *
6317
- * @type {string}
6318
- * @memberof DoctorItemModel
6319
- */
6320
- 'overview'?: string | null;
6321
- /**
6322
- *
6323
- * @type {boolean}
6324
- * @memberof DoctorItemModel
6325
- */
6326
- 'consultationEnabled'?: boolean | null;
6327
- /**
6328
- *
6329
- * @type {number}
6330
- * @memberof DoctorItemModel
6331
- */
6332
- 'consultationFee'?: number | null;
6333
- /**
6334
- *
6335
- * @type {boolean}
6336
- * @memberof DoctorItemModel
6337
- */
6338
- 'confirmed'?: boolean;
6339
6236
  }
6340
6237
  /**
6341
6238
  *
@@ -6532,30 +6429,6 @@ export interface DoctorModel {
6532
6429
  * @memberof DoctorModel
6533
6430
  */
6534
6431
  'languageCode'?: string | null;
6535
- /**
6536
- *
6537
- * @type {string}
6538
- * @memberof DoctorModel
6539
- */
6540
- 'hospitalId'?: string | null;
6541
- /**
6542
- *
6543
- * @type {string}
6544
- * @memberof DoctorModel
6545
- */
6546
- 'hospitalName'?: string | null;
6547
- /**
6548
- *
6549
- * @type {string}
6550
- * @memberof DoctorModel
6551
- */
6552
- 'hospitalSlug'?: string | null;
6553
- /**
6554
- *
6555
- * @type {Date}
6556
- * @memberof DoctorModel
6557
- */
6558
- 'startPracticeDate'?: Date | null;
6559
6432
  /**
6560
6433
  *
6561
6434
  * @type {string}
@@ -6594,10 +6467,16 @@ export interface DoctorModel {
6594
6467
  'confirmed'?: boolean;
6595
6468
  /**
6596
6469
  *
6597
- * @type {Array<LocalizedUrlModel>}
6470
+ * @type {Date}
6598
6471
  * @memberof DoctorModel
6599
6472
  */
6600
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6473
+ 'startPracticeDate'?: Date | null;
6474
+ /**
6475
+ *
6476
+ * @type {Array<DoctorAffiliationItemModel>}
6477
+ * @memberof DoctorModel
6478
+ */
6479
+ 'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
6601
6480
  }
6602
6481
  /**
6603
6482
  *
@@ -7718,54 +7597,12 @@ export interface HospitalItemModel {
7718
7597
  * @memberof HospitalItemModel
7719
7598
  */
7720
7599
  'slug'?: string | null;
7721
- /**
7722
- *
7723
- * @type {string}
7724
- * @memberof HospitalItemModel
7725
- */
7726
- 'description'?: string | null;
7727
7600
  /**
7728
7601
  *
7729
7602
  * @type {string}
7730
7603
  * @memberof HospitalItemModel
7731
7604
  */
7732
7605
  'logo'?: string | null;
7733
- /**
7734
- *
7735
- * @type {string}
7736
- * @memberof HospitalItemModel
7737
- */
7738
- 'overview'?: string | null;
7739
- /**
7740
- *
7741
- * @type {number}
7742
- * @memberof HospitalItemModel
7743
- */
7744
- 'bedsCount'?: number | null;
7745
- /**
7746
- *
7747
- * @type {number}
7748
- * @memberof HospitalItemModel
7749
- */
7750
- 'operationsPerYear'?: number | null;
7751
- /**
7752
- *
7753
- * @type {number}
7754
- * @memberof HospitalItemModel
7755
- */
7756
- 'foundationYear'?: number | null;
7757
- /**
7758
- *
7759
- * @type {number}
7760
- * @memberof HospitalItemModel
7761
- */
7762
- 'medicalStaffCount'?: number | null;
7763
- /**
7764
- *
7765
- * @type {number}
7766
- * @memberof HospitalItemModel
7767
- */
7768
- 'doctorCount'?: number | null;
7769
7606
  /**
7770
7607
  *
7771
7608
  * @type {string}
@@ -7784,18 +7621,6 @@ export interface HospitalItemModel {
7784
7621
  * @memberof HospitalItemModel
7785
7622
  */
7786
7623
  'marketingType'?: MarketingType;
7787
- /**
7788
- *
7789
- * @type {boolean}
7790
- * @memberof HospitalItemModel
7791
- */
7792
- 'consultationEnabled'?: boolean | null;
7793
- /**
7794
- *
7795
- * @type {number}
7796
- * @memberof HospitalItemModel
7797
- */
7798
- 'consultationFee'?: number | null;
7799
7624
  /**
7800
7625
  *
7801
7626
  * @type {string}
@@ -7808,66 +7633,6 @@ export interface HospitalItemModel {
7808
7633
  * @memberof HospitalItemModel
7809
7634
  */
7810
7635
  'websiteUrl'?: string | null;
7811
- /**
7812
- *
7813
- * @type {number}
7814
- * @memberof HospitalItemModel
7815
- */
7816
- 'articlesCount'?: number;
7817
- /**
7818
- *
7819
- * @type {number}
7820
- * @memberof HospitalItemModel
7821
- */
7822
- 'packagesCount'?: number;
7823
- /**
7824
- *
7825
- * @type {number}
7826
- * @memberof HospitalItemModel
7827
- */
7828
- 'equipmentsCount'?: number;
7829
- /**
7830
- *
7831
- * @type {number}
7832
- * @memberof HospitalItemModel
7833
- */
7834
- 'reviewsCount'?: number;
7835
- /**
7836
- *
7837
- * @type {number}
7838
- * @memberof HospitalItemModel
7839
- */
7840
- 'departmentsCount'?: number;
7841
- /**
7842
- *
7843
- * @type {number}
7844
- * @memberof HospitalItemModel
7845
- */
7846
- 'specialtiesCount'?: number;
7847
- /**
7848
- *
7849
- * @type {number}
7850
- * @memberof HospitalItemModel
7851
- */
7852
- 'accreditationsCount'?: number;
7853
- /**
7854
- *
7855
- * @type {number}
7856
- * @memberof HospitalItemModel
7857
- */
7858
- 'doctorAffiliationsCount'?: number;
7859
- /**
7860
- *
7861
- * @type {number}
7862
- * @memberof HospitalItemModel
7863
- */
7864
- 'managerAffiliationsCount'?: number;
7865
- /**
7866
- *
7867
- * @type {string}
7868
- * @memberof HospitalItemModel
7869
- */
7870
- 'specialtiesSummerized'?: string | null;
7871
7636
  /**
7872
7637
  *
7873
7638
  * @type {boolean}
@@ -7880,30 +7645,6 @@ export interface HospitalItemModel {
7880
7645
  * @memberof HospitalItemModel
7881
7646
  */
7882
7647
  'confirmed'?: boolean;
7883
- /**
7884
- *
7885
- * @type {Array<AwardModel>}
7886
- * @memberof HospitalItemModel
7887
- */
7888
- 'awards'?: Array<AwardModel> | null;
7889
- /**
7890
- *
7891
- * @type {Array<MediaModel>}
7892
- * @memberof HospitalItemModel
7893
- */
7894
- 'medias'?: Array<MediaModel> | null;
7895
- /**
7896
- *
7897
- * @type {Array<AccreditationModel>}
7898
- * @memberof HospitalItemModel
7899
- */
7900
- 'accreditations'?: Array<AccreditationModel> | null;
7901
- /**
7902
- *
7903
- * @type {Array<HospitalEvaluationModel>}
7904
- * @memberof HospitalItemModel
7905
- */
7906
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
7907
7648
  /**
7908
7649
  *
7909
7650
  * @type {LocationModel}
@@ -7941,54 +7682,12 @@ export interface HospitalModel {
7941
7682
  * @memberof HospitalModel
7942
7683
  */
7943
7684
  'slug'?: string | null;
7944
- /**
7945
- *
7946
- * @type {string}
7947
- * @memberof HospitalModel
7948
- */
7949
- 'description'?: string | null;
7950
7685
  /**
7951
7686
  *
7952
7687
  * @type {string}
7953
7688
  * @memberof HospitalModel
7954
7689
  */
7955
7690
  'logo'?: string | null;
7956
- /**
7957
- *
7958
- * @type {string}
7959
- * @memberof HospitalModel
7960
- */
7961
- 'overview'?: string | null;
7962
- /**
7963
- *
7964
- * @type {number}
7965
- * @memberof HospitalModel
7966
- */
7967
- 'bedsCount'?: number | null;
7968
- /**
7969
- *
7970
- * @type {number}
7971
- * @memberof HospitalModel
7972
- */
7973
- 'operationsPerYear'?: number | null;
7974
- /**
7975
- *
7976
- * @type {number}
7977
- * @memberof HospitalModel
7978
- */
7979
- 'foundationYear'?: number | null;
7980
- /**
7981
- *
7982
- * @type {number}
7983
- * @memberof HospitalModel
7984
- */
7985
- 'medicalStaffCount'?: number | null;
7986
- /**
7987
- *
7988
- * @type {number}
7989
- * @memberof HospitalModel
7990
- */
7991
- 'doctorCount'?: number | null;
7992
7691
  /**
7993
7692
  *
7994
7693
  * @type {string}
@@ -8007,18 +7706,6 @@ export interface HospitalModel {
8007
7706
  * @memberof HospitalModel
8008
7707
  */
8009
7708
  'marketingType'?: MarketingType;
8010
- /**
8011
- *
8012
- * @type {boolean}
8013
- * @memberof HospitalModel
8014
- */
8015
- 'consultationEnabled'?: boolean | null;
8016
- /**
8017
- *
8018
- * @type {number}
8019
- * @memberof HospitalModel
8020
- */
8021
- 'consultationFee'?: number | null;
8022
7709
  /**
8023
7710
  *
8024
7711
  * @type {string}
@@ -8033,124 +7720,94 @@ export interface HospitalModel {
8033
7720
  'websiteUrl'?: string | null;
8034
7721
  /**
8035
7722
  *
8036
- * @type {number}
8037
- * @memberof HospitalModel
8038
- */
8039
- 'articlesCount'?: number;
8040
- /**
8041
- *
8042
- * @type {number}
8043
- * @memberof HospitalModel
8044
- */
8045
- 'packagesCount'?: number;
8046
- /**
8047
- *
8048
- * @type {number}
8049
- * @memberof HospitalModel
8050
- */
8051
- 'equipmentsCount'?: number;
8052
- /**
8053
- *
8054
- * @type {number}
8055
- * @memberof HospitalModel
8056
- */
8057
- 'reviewsCount'?: number;
8058
- /**
8059
- *
8060
- * @type {number}
8061
- * @memberof HospitalModel
8062
- */
8063
- 'departmentsCount'?: number;
8064
- /**
8065
- *
8066
- * @type {number}
7723
+ * @type {boolean}
8067
7724
  * @memberof HospitalModel
8068
7725
  */
8069
- 'specialtiesCount'?: number;
7726
+ 'paymentEnabled'?: boolean;
8070
7727
  /**
8071
7728
  *
8072
- * @type {number}
7729
+ * @type {boolean}
8073
7730
  * @memberof HospitalModel
8074
7731
  */
8075
- 'accreditationsCount'?: number;
7732
+ 'confirmed'?: boolean;
8076
7733
  /**
8077
7734
  *
8078
- * @type {number}
7735
+ * @type {LocationModel}
8079
7736
  * @memberof HospitalModel
8080
7737
  */
8081
- 'doctorAffiliationsCount'?: number;
7738
+ 'location'?: LocationModel;
8082
7739
  /**
8083
7740
  *
8084
- * @type {number}
7741
+ * @type {AuditableEntity}
8085
7742
  * @memberof HospitalModel
8086
7743
  */
8087
- 'managerAffiliationsCount'?: number;
7744
+ 'auditableEntity'?: AuditableEntity;
8088
7745
  /**
8089
7746
  *
8090
7747
  * @type {string}
8091
7748
  * @memberof HospitalModel
8092
7749
  */
8093
- 'specialtiesSummerized'?: string | null;
7750
+ 'languageCode'?: string | null;
8094
7751
  /**
8095
7752
  *
8096
- * @type {boolean}
7753
+ * @type {string}
8097
7754
  * @memberof HospitalModel
8098
7755
  */
8099
- 'paymentEnabled'?: boolean;
7756
+ 'description'?: string | null;
8100
7757
  /**
8101
7758
  *
8102
- * @type {boolean}
7759
+ * @type {string}
8103
7760
  * @memberof HospitalModel
8104
7761
  */
8105
- 'confirmed'?: boolean;
7762
+ 'overview'?: string | null;
8106
7763
  /**
8107
7764
  *
8108
- * @type {Array<AwardModel>}
7765
+ * @type {string}
8109
7766
  * @memberof HospitalModel
8110
7767
  */
8111
- 'awards'?: Array<AwardModel> | null;
7768
+ 'content'?: string | null;
8112
7769
  /**
8113
7770
  *
8114
- * @type {Array<MediaModel>}
7771
+ * @type {number}
8115
7772
  * @memberof HospitalModel
8116
7773
  */
8117
- 'medias'?: Array<MediaModel> | null;
7774
+ 'bedsCount'?: number | null;
8118
7775
  /**
8119
7776
  *
8120
- * @type {Array<AccreditationModel>}
7777
+ * @type {number}
8121
7778
  * @memberof HospitalModel
8122
7779
  */
8123
- 'accreditations'?: Array<AccreditationModel> | null;
7780
+ 'operationsPerYear'?: number | null;
8124
7781
  /**
8125
7782
  *
8126
- * @type {Array<HospitalEvaluationModel>}
7783
+ * @type {number}
8127
7784
  * @memberof HospitalModel
8128
7785
  */
8129
- 'evaluations'?: Array<HospitalEvaluationModel> | null;
7786
+ 'foundationYear'?: number | null;
8130
7787
  /**
8131
7788
  *
8132
- * @type {LocationModel}
7789
+ * @type {number}
8133
7790
  * @memberof HospitalModel
8134
7791
  */
8135
- 'location'?: LocationModel;
7792
+ 'medicalStaffCount'?: number | null;
8136
7793
  /**
8137
7794
  *
8138
- * @type {AuditableEntity}
7795
+ * @type {number}
8139
7796
  * @memberof HospitalModel
8140
7797
  */
8141
- 'auditableEntity'?: AuditableEntity;
7798
+ 'doctorCount'?: number | null;
8142
7799
  /**
8143
7800
  *
8144
- * @type {string}
7801
+ * @type {boolean}
8145
7802
  * @memberof HospitalModel
8146
7803
  */
8147
- 'languageCode'?: string | null;
7804
+ 'consultationEnabled'?: boolean | null;
8148
7805
  /**
8149
7806
  *
8150
- * @type {string}
7807
+ * @type {number}
8151
7808
  * @memberof HospitalModel
8152
7809
  */
8153
- 'content'?: string | null;
7810
+ 'consultationFee'?: number | null;
8154
7811
  /**
8155
7812
  *
8156
7813
  * @type {string}
@@ -8171,22 +7828,10 @@ export interface HospitalModel {
8171
7828
  'customStyle'?: string | null;
8172
7829
  /**
8173
7830
  *
8174
- * @type {Array<WorkingDay>}
8175
- * @memberof HospitalModel
8176
- */
8177
- 'hospitalWorkingDays'?: Array<WorkingDay> | null;
8178
- /**
8179
- *
8180
- * @type {Array<SnsHandle>}
8181
- * @memberof HospitalModel
8182
- */
8183
- 'hospitalSnsHandles'?: Array<SnsHandle> | null;
8184
- /**
8185
- *
8186
- * @type {Array<LocalizedUrlModel>}
7831
+ * @type {Array<MediaModel>}
8187
7832
  * @memberof HospitalModel
8188
7833
  */
8189
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
7834
+ 'medias'?: Array<MediaModel> | null;
8190
7835
  }
8191
7836
  /**
8192
7837
  *
@@ -8648,63 +8293,15 @@ export interface HospitalSpecialtiesSimpleModel {
8648
8293
  /**
8649
8294
  *
8650
8295
  * @export
8651
- * @interface HospitalSpecialtyItemModel
8652
- */
8653
- export interface HospitalSpecialtyItemModel {
8654
- /**
8655
- *
8656
- * @type {string}
8657
- * @memberof HospitalSpecialtyItemModel
8658
- */
8659
- 'id'?: string;
8660
- /**
8661
- *
8662
- * @type {string}
8663
- * @memberof HospitalSpecialtyItemModel
8664
- */
8665
- 'hospitalId'?: string;
8666
- /**
8667
- *
8668
- * @type {string}
8669
- * @memberof HospitalSpecialtyItemModel
8670
- */
8671
- 'hospitalName'?: string | null;
8672
- /**
8673
- *
8674
- * @type {string}
8675
- * @memberof HospitalSpecialtyItemModel
8676
- */
8677
- 'hospitalSlug'?: string | null;
8678
- /**
8679
- *
8680
- * @type {string}
8681
- * @memberof HospitalSpecialtyItemModel
8682
- */
8683
- 'specialtyId'?: string;
8684
- /**
8685
- *
8686
- * @type {string}
8687
- * @memberof HospitalSpecialtyItemModel
8688
- */
8689
- 'specialtyName'?: string | null;
8690
- /**
8691
- *
8692
- * @type {string}
8693
- * @memberof HospitalSpecialtyItemModel
8694
- */
8695
- 'specialtyTypeId'?: string;
8696
- /**
8697
- *
8698
- * @type {string}
8699
- * @memberof HospitalSpecialtyItemModel
8700
- */
8701
- 'specialtyTypeName'?: string | null;
8296
+ * @interface HospitalSpecialtyItemModel
8297
+ */
8298
+ export interface HospitalSpecialtyItemModel {
8702
8299
  /**
8703
8300
  *
8704
- * @type {MarketingType}
8301
+ * @type {string}
8705
8302
  * @memberof HospitalSpecialtyItemModel
8706
8303
  */
8707
- 'marketingType'?: MarketingType;
8304
+ 'id'?: string;
8708
8305
  /**
8709
8306
  *
8710
8307
  * @type {string}
@@ -8719,64 +8316,46 @@ export interface HospitalSpecialtyItemModel {
8719
8316
  'slug'?: string | null;
8720
8317
  /**
8721
8318
  *
8722
- * @type {string}
8319
+ * @type {MarketingType}
8723
8320
  * @memberof HospitalSpecialtyItemModel
8724
8321
  */
8725
- 'description'?: string | null;
8322
+ 'marketingType'?: MarketingType;
8726
8323
  /**
8727
8324
  *
8728
8325
  * @type {number}
8729
8326
  * @memberof HospitalSpecialtyItemModel
8730
8327
  */
8731
- 'serviceCount'?: number;
8328
+ 'order'?: number;
8732
8329
  /**
8733
8330
  *
8734
- * @type {Array<HospitalServiceItemModel>}
8331
+ * @type {boolean}
8735
8332
  * @memberof HospitalSpecialtyItemModel
8736
8333
  */
8737
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
8334
+ 'confirmed'?: boolean;
8738
8335
  /**
8739
8336
  *
8740
- * @type {string}
8337
+ * @type {number}
8741
8338
  * @memberof HospitalSpecialtyItemModel
8742
8339
  */
8743
- 'photo'?: string | null;
8340
+ 'servicesCount'?: number;
8744
8341
  /**
8745
8342
  *
8746
8343
  * @type {string}
8747
8344
  * @memberof HospitalSpecialtyItemModel
8748
8345
  */
8749
- 'photoThumbnail'?: string | null;
8346
+ 'specialtyId'?: string;
8750
8347
  /**
8751
8348
  *
8752
8349
  * @type {string}
8753
8350
  * @memberof HospitalSpecialtyItemModel
8754
8351
  */
8755
- 'background'?: string | null;
8352
+ 'specialtyName'?: string | null;
8756
8353
  /**
8757
8354
  *
8758
8355
  * @type {string}
8759
8356
  * @memberof HospitalSpecialtyItemModel
8760
8357
  */
8761
- 'backgroundThumbnail'?: string | null;
8762
- /**
8763
- *
8764
- * @type {number}
8765
- * @memberof HospitalSpecialtyItemModel
8766
- */
8767
- 'order'?: number;
8768
- /**
8769
- *
8770
- * @type {boolean}
8771
- * @memberof HospitalSpecialtyItemModel
8772
- */
8773
- 'confirmed'?: boolean;
8774
- /**
8775
- *
8776
- * @type {Array<MediaModel>}
8777
- * @memberof HospitalSpecialtyItemModel
8778
- */
8779
- 'medias'?: Array<MediaModel> | null;
8358
+ 'specialtySlug'?: string | null;
8780
8359
  /**
8781
8360
  *
8782
8361
  * @type {AuditableEntity}
@@ -8801,151 +8380,145 @@ export interface HospitalSpecialtyModel {
8801
8380
  * @type {string}
8802
8381
  * @memberof HospitalSpecialtyModel
8803
8382
  */
8804
- 'hospitalId'?: string;
8383
+ 'name'?: string | null;
8805
8384
  /**
8806
8385
  *
8807
8386
  * @type {string}
8808
8387
  * @memberof HospitalSpecialtyModel
8809
8388
  */
8810
- 'hospitalName'?: string | null;
8389
+ 'slug'?: string | null;
8811
8390
  /**
8812
8391
  *
8813
- * @type {string}
8392
+ * @type {MarketingType}
8814
8393
  * @memberof HospitalSpecialtyModel
8815
8394
  */
8816
- 'hospitalSlug'?: string | null;
8395
+ 'marketingType'?: MarketingType;
8817
8396
  /**
8818
8397
  *
8819
- * @type {string}
8398
+ * @type {number}
8820
8399
  * @memberof HospitalSpecialtyModel
8821
8400
  */
8822
- 'specialtyId'?: string;
8401
+ 'order'?: number;
8823
8402
  /**
8824
8403
  *
8825
- * @type {string}
8404
+ * @type {boolean}
8826
8405
  * @memberof HospitalSpecialtyModel
8827
8406
  */
8828
- 'specialtyName'?: string | null;
8407
+ 'confirmed'?: boolean;
8829
8408
  /**
8830
8409
  *
8831
- * @type {string}
8410
+ * @type {number}
8832
8411
  * @memberof HospitalSpecialtyModel
8833
8412
  */
8834
- 'specialtyTypeId'?: string;
8413
+ 'servicesCount'?: number;
8835
8414
  /**
8836
8415
  *
8837
8416
  * @type {string}
8838
8417
  * @memberof HospitalSpecialtyModel
8839
8418
  */
8840
- 'specialtyTypeName'?: string | null;
8841
- /**
8842
- *
8843
- * @type {MarketingType}
8844
- * @memberof HospitalSpecialtyModel
8845
- */
8846
- 'marketingType'?: MarketingType;
8419
+ 'specialtyId'?: string;
8847
8420
  /**
8848
8421
  *
8849
8422
  * @type {string}
8850
8423
  * @memberof HospitalSpecialtyModel
8851
8424
  */
8852
- 'name'?: string | null;
8425
+ 'specialtyName'?: string | null;
8853
8426
  /**
8854
8427
  *
8855
8428
  * @type {string}
8856
8429
  * @memberof HospitalSpecialtyModel
8857
8430
  */
8858
- 'slug'?: string | null;
8431
+ 'specialtySlug'?: string | null;
8859
8432
  /**
8860
8433
  *
8861
- * @type {string}
8434
+ * @type {AuditableEntity}
8862
8435
  * @memberof HospitalSpecialtyModel
8863
8436
  */
8864
- 'description'?: string | null;
8437
+ 'auditableEntity'?: AuditableEntity;
8865
8438
  /**
8866
8439
  *
8867
- * @type {number}
8440
+ * @type {string}
8868
8441
  * @memberof HospitalSpecialtyModel
8869
8442
  */
8870
- 'serviceCount'?: number;
8443
+ 'languageCode'?: string | null;
8871
8444
  /**
8872
8445
  *
8873
- * @type {Array<HospitalServiceItemModel>}
8446
+ * @type {string}
8874
8447
  * @memberof HospitalSpecialtyModel
8875
8448
  */
8876
- 'serviceList'?: Array<HospitalServiceItemModel> | null;
8449
+ 'description'?: string | null;
8877
8450
  /**
8878
8451
  *
8879
8452
  * @type {string}
8880
8453
  * @memberof HospitalSpecialtyModel
8881
8454
  */
8882
- 'photo'?: string | null;
8455
+ 'content'?: string | null;
8883
8456
  /**
8884
8457
  *
8885
8458
  * @type {string}
8886
8459
  * @memberof HospitalSpecialtyModel
8887
8460
  */
8888
- 'photoThumbnail'?: string | null;
8461
+ 'hospitalId'?: string;
8889
8462
  /**
8890
8463
  *
8891
8464
  * @type {string}
8892
8465
  * @memberof HospitalSpecialtyModel
8893
8466
  */
8894
- 'background'?: string | null;
8467
+ 'hospitalName'?: string | null;
8895
8468
  /**
8896
8469
  *
8897
8470
  * @type {string}
8898
8471
  * @memberof HospitalSpecialtyModel
8899
8472
  */
8900
- 'backgroundThumbnail'?: string | null;
8473
+ 'hospitalSlug'?: string | null;
8901
8474
  /**
8902
8475
  *
8903
- * @type {number}
8476
+ * @type {string}
8904
8477
  * @memberof HospitalSpecialtyModel
8905
8478
  */
8906
- 'order'?: number;
8479
+ 'specialtyTypeId'?: string;
8907
8480
  /**
8908
8481
  *
8909
- * @type {boolean}
8482
+ * @type {string}
8910
8483
  * @memberof HospitalSpecialtyModel
8911
8484
  */
8912
- 'confirmed'?: boolean;
8485
+ 'specialtyTypeName'?: string | null;
8913
8486
  /**
8914
8487
  *
8915
- * @type {Array<MediaModel>}
8488
+ * @type {string}
8916
8489
  * @memberof HospitalSpecialtyModel
8917
8490
  */
8918
- 'medias'?: Array<MediaModel> | null;
8491
+ 'photo'?: string | null;
8919
8492
  /**
8920
8493
  *
8921
- * @type {AuditableEntity}
8494
+ * @type {string}
8922
8495
  * @memberof HospitalSpecialtyModel
8923
8496
  */
8924
- 'auditableEntity'?: AuditableEntity;
8497
+ 'photoThumbnail'?: string | null;
8925
8498
  /**
8926
8499
  *
8927
8500
  * @type {string}
8928
8501
  * @memberof HospitalSpecialtyModel
8929
8502
  */
8930
- 'content'?: string | null;
8503
+ 'background'?: string | null;
8931
8504
  /**
8932
8505
  *
8933
8506
  * @type {string}
8934
8507
  * @memberof HospitalSpecialtyModel
8935
8508
  */
8936
- 'customStyle'?: string | null;
8509
+ 'backgroundThumbnail'?: string | null;
8937
8510
  /**
8938
8511
  *
8939
8512
  * @type {string}
8940
8513
  * @memberof HospitalSpecialtyModel
8941
8514
  */
8942
- 'languageCode'?: string | null;
8515
+ 'customStyle'?: string | null;
8943
8516
  /**
8944
8517
  *
8945
- * @type {Array<LocalizedUrlModel>}
8518
+ * @type {Array<MediaModel>}
8946
8519
  * @memberof HospitalSpecialtyModel
8947
8520
  */
8948
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
8521
+ 'medias'?: Array<MediaModel> | null;
8949
8522
  }
8950
8523
  /**
8951
8524
  *
@@ -8973,28 +8546,40 @@ export interface HospitalSpecialtySimpleItemModel {
8973
8546
  'slug'?: string | null;
8974
8547
  /**
8975
8548
  *
8976
- * @type {string}
8549
+ * @type {number}
8977
8550
  * @memberof HospitalSpecialtySimpleItemModel
8978
8551
  */
8979
- 'description'?: string | null;
8552
+ 'order'?: number;
8980
8553
  /**
8981
8554
  *
8982
- * @type {string}
8555
+ * @type {boolean}
8983
8556
  * @memberof HospitalSpecialtySimpleItemModel
8984
8557
  */
8985
- 'specialtyName'?: string | null;
8558
+ 'confirmed'?: boolean;
8986
8559
  /**
8987
8560
  *
8988
8561
  * @type {number}
8989
8562
  * @memberof HospitalSpecialtySimpleItemModel
8990
8563
  */
8991
- 'order'?: number;
8564
+ 'servicesCount'?: number;
8992
8565
  /**
8993
8566
  *
8994
- * @type {boolean}
8567
+ * @type {string}
8995
8568
  * @memberof HospitalSpecialtySimpleItemModel
8996
8569
  */
8997
- 'confirmed'?: boolean;
8570
+ 'specialtyId'?: string;
8571
+ /**
8572
+ *
8573
+ * @type {string}
8574
+ * @memberof HospitalSpecialtySimpleItemModel
8575
+ */
8576
+ 'specialtyName'?: string | null;
8577
+ /**
8578
+ *
8579
+ * @type {string}
8580
+ * @memberof HospitalSpecialtySimpleItemModel
8581
+ */
8582
+ 'specialtySlug'?: string | null;
8998
8583
  }
8999
8584
  /**
9000
8585
  *
@@ -12117,6 +11702,12 @@ export interface UpdateCHAdminCommand {
12117
11702
  * @memberof UpdateCHAdminCommand
12118
11703
  */
12119
11704
  'lastName'?: string | null;
11705
+ /**
11706
+ *
11707
+ * @type {string}
11708
+ * @memberof UpdateCHAdminCommand
11709
+ */
11710
+ 'slug'?: string | null;
12120
11711
  /**
12121
11712
  *
12122
11713
  * @type {string}
@@ -12190,6 +11781,12 @@ export interface UpdateCHManagerCommand {
12190
11781
  * @memberof UpdateCHManagerCommand
12191
11782
  */
12192
11783
  'lastName'?: string | null;
11784
+ /**
11785
+ *
11786
+ * @type {string}
11787
+ * @memberof UpdateCHManagerCommand
11788
+ */
11789
+ 'slug'?: string | null;
12193
11790
  /**
12194
11791
  *
12195
11792
  * @type {string}
@@ -13428,6 +13025,12 @@ export interface UpdateManagerCommand {
13428
13025
  * @memberof UpdateManagerCommand
13429
13026
  */
13430
13027
  'lastName'?: string | null;
13028
+ /**
13029
+ *
13030
+ * @type {string}
13031
+ * @memberof UpdateManagerCommand
13032
+ */
13033
+ 'slug'?: string | null;
13431
13034
  /**
13432
13035
  *
13433
13036
  * @type {string}
@@ -13538,6 +13141,12 @@ export interface UpdatePatientCommand {
13538
13141
  * @memberof UpdatePatientCommand
13539
13142
  */
13540
13143
  'lastName'?: string | null;
13144
+ /**
13145
+ *
13146
+ * @type {string}
13147
+ * @memberof UpdatePatientCommand
13148
+ */
13149
+ 'slug'?: string | null;
13541
13150
  /**
13542
13151
  *
13543
13152
  * @type {string}
@@ -14167,43 +13776,6 @@ export interface UserModel {
14167
13776
  */
14168
13777
  'locations'?: Array<UserLocationModel> | null;
14169
13778
  }
14170
- /**
14171
- *
14172
- * @export
14173
- * @interface WorkingDay
14174
- */
14175
- export interface WorkingDay {
14176
- /**
14177
- *
14178
- * @type {string}
14179
- * @memberof WorkingDay
14180
- */
14181
- 'id'?: string;
14182
- /**
14183
- *
14184
- * @type {string}
14185
- * @memberof WorkingDay
14186
- */
14187
- 'dayOfWeek'?: string | null;
14188
- /**
14189
- *
14190
- * @type {Date}
14191
- * @memberof WorkingDay
14192
- */
14193
- 'timeFrom'?: Date;
14194
- /**
14195
- *
14196
- * @type {Date}
14197
- * @memberof WorkingDay
14198
- */
14199
- 'timeTo'?: Date;
14200
- /**
14201
- *
14202
- * @type {boolean}
14203
- * @memberof WorkingDay
14204
- */
14205
- 'checkHoliday'?: boolean;
14206
- }
14207
13779
  /**
14208
13780
  *
14209
13781
  * @export
@@ -22655,6 +22227,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22655
22227
  * @throws {RequiredError}
22656
22228
  */
22657
22229
  apiV1HospitalsHospitalIdPut: (hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22230
+ /**
22231
+ *
22232
+ * @summary Delete HospitalSpecialty.
22233
+ * @param {string} hospitalId
22234
+ * @param {*} [options] Override http request option.
22235
+ * @throws {RequiredError}
22236
+ */
22237
+ apiV1HospitalsHospitalIdReactivePut: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22658
22238
  /**
22659
22239
  *
22660
22240
  * @summary Get all HospitalSpecialties.
@@ -22983,6 +22563,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22983
22563
  * @throws {RequiredError}
22984
22564
  */
22985
22565
  apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut: (hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22566
+ /**
22567
+ *
22568
+ * @summary Delete HospitalSpecialty.
22569
+ * @param {string} hospitalSpecialtyId
22570
+ * @param {*} [options] Override http request option.
22571
+ * @throws {RequiredError}
22572
+ */
22573
+ apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivePut: (hospitalSpecialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22986
22574
  /**
22987
22575
  *
22988
22576
  * @summary Create Hospital.
@@ -23381,6 +22969,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
23381
22969
  * @throws {RequiredError}
23382
22970
  */
23383
22971
  apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
22972
+ /**
22973
+ *
22974
+ * @summary Delete HospitalSpecialty.
22975
+ * @param {string} hospitalId
22976
+ * @param {*} [options] Override http request option.
22977
+ * @throws {RequiredError}
22978
+ */
22979
+ apiV1HospitalsHospitalIdReactivePut(hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
23384
22980
  /**
23385
22981
  *
23386
22982
  * @summary Get all HospitalSpecialties.
@@ -23709,6 +23305,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
23709
23305
  * @throws {RequiredError}
23710
23306
  */
23711
23307
  apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
23308
+ /**
23309
+ *
23310
+ * @summary Delete HospitalSpecialty.
23311
+ * @param {string} hospitalSpecialtyId
23312
+ * @param {*} [options] Override http request option.
23313
+ * @throws {RequiredError}
23314
+ */
23315
+ apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivePut(hospitalSpecialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
23712
23316
  /**
23713
23317
  *
23714
23318
  * @summary Create Hospital.
@@ -24107,6 +23711,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
24107
23711
  * @throws {RequiredError}
24108
23712
  */
24109
23713
  apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: any): AxiosPromise<HospitalModel>;
23714
+ /**
23715
+ *
23716
+ * @summary Delete HospitalSpecialty.
23717
+ * @param {string} hospitalId
23718
+ * @param {*} [options] Override http request option.
23719
+ * @throws {RequiredError}
23720
+ */
23721
+ apiV1HospitalsHospitalIdReactivePut(hospitalId: string, options?: any): AxiosPromise<boolean>;
24110
23722
  /**
24111
23723
  *
24112
23724
  * @summary Get all HospitalSpecialties.
@@ -24435,6 +24047,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
24435
24047
  * @throws {RequiredError}
24436
24048
  */
24437
24049
  apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<WorkingDayModel>;
24050
+ /**
24051
+ *
24052
+ * @summary Delete HospitalSpecialty.
24053
+ * @param {string} hospitalSpecialtyId
24054
+ * @param {*} [options] Override http request option.
24055
+ * @throws {RequiredError}
24056
+ */
24057
+ apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivePut(hospitalSpecialtyId: string, options?: any): AxiosPromise<boolean>;
24438
24058
  /**
24439
24059
  *
24440
24060
  * @summary Create Hospital.
@@ -24868,6 +24488,15 @@ export declare class HospitalsApi extends BaseAPI {
24868
24488
  * @memberof HospitalsApi
24869
24489
  */
24870
24490
  apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
24491
+ /**
24492
+ *
24493
+ * @summary Delete HospitalSpecialty.
24494
+ * @param {string} hospitalId
24495
+ * @param {*} [options] Override http request option.
24496
+ * @throws {RequiredError}
24497
+ * @memberof HospitalsApi
24498
+ */
24499
+ apiV1HospitalsHospitalIdReactivePut(hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
24871
24500
  /**
24872
24501
  *
24873
24502
  * @summary Get all HospitalSpecialties.
@@ -25223,6 +24852,15 @@ export declare class HospitalsApi extends BaseAPI {
25223
24852
  * @memberof HospitalsApi
25224
24853
  */
25225
24854
  apiV1HospitalsHospitalIdWorkingdaysWorkingDayIdPut(hospitalId: string, workingDayId: string, updateHospitalWorkingDayCommand?: UpdateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
24855
+ /**
24856
+ *
24857
+ * @summary Delete HospitalSpecialty.
24858
+ * @param {string} hospitalSpecialtyId
24859
+ * @param {*} [options] Override http request option.
24860
+ * @throws {RequiredError}
24861
+ * @memberof HospitalsApi
24862
+ */
24863
+ apiV1HospitalsHospitalSpecialtyIdSpecialtiesReactivePut(hospitalSpecialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
25226
24864
  /**
25227
24865
  *
25228
24866
  * @summary Create Hospital.