ch-admin-api-client-typescript 4.3.9 → 4.4.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/lib/api.d.ts CHANGED
@@ -916,6 +916,12 @@ export interface ArticleModel {
916
916
  * @memberof ArticleModel
917
917
  */
918
918
  'content'?: string | null;
919
+ /**
920
+ *
921
+ * @type {string}
922
+ * @memberof ArticleModel
923
+ */
924
+ 'customStyle'?: string | null;
919
925
  }
920
926
  /**
921
927
  *
@@ -1089,6 +1095,218 @@ export interface AuditableEntity {
1089
1095
  */
1090
1096
  'isDeleted'?: boolean;
1091
1097
  }
1098
+ /**
1099
+ *
1100
+ * @export
1101
+ * @interface BatchAddHospitalConsultationTimetableModel
1102
+ */
1103
+ export interface BatchAddHospitalConsultationTimetableModel {
1104
+ /**
1105
+ *
1106
+ * @type {DayOfWeek}
1107
+ * @memberof BatchAddHospitalConsultationTimetableModel
1108
+ */
1109
+ 'dayOfWeek'?: DayOfWeek;
1110
+ /**
1111
+ *
1112
+ * @type {string}
1113
+ * @memberof BatchAddHospitalConsultationTimetableModel
1114
+ */
1115
+ 'start'?: string | null;
1116
+ /**
1117
+ *
1118
+ * @type {string}
1119
+ * @memberof BatchAddHospitalConsultationTimetableModel
1120
+ */
1121
+ 'end'?: string | null;
1122
+ }
1123
+ /**
1124
+ *
1125
+ * @export
1126
+ * @interface BatchAddHospitalConsultationTimetableOverrideModel
1127
+ */
1128
+ export interface BatchAddHospitalConsultationTimetableOverrideModel {
1129
+ /**
1130
+ *
1131
+ * @type {Date}
1132
+ * @memberof BatchAddHospitalConsultationTimetableOverrideModel
1133
+ */
1134
+ 'date'?: Date;
1135
+ /**
1136
+ *
1137
+ * @type {string}
1138
+ * @memberof BatchAddHospitalConsultationTimetableOverrideModel
1139
+ */
1140
+ 'start'?: string | null;
1141
+ /**
1142
+ *
1143
+ * @type {string}
1144
+ * @memberof BatchAddHospitalConsultationTimetableOverrideModel
1145
+ */
1146
+ 'end'?: string | null;
1147
+ }
1148
+ /**
1149
+ *
1150
+ * @export
1151
+ * @interface BatchHospitalConsultationTimetableOverridesCommand
1152
+ */
1153
+ export interface BatchHospitalConsultationTimetableOverridesCommand {
1154
+ /**
1155
+ *
1156
+ * @type {Array<BatchAddHospitalConsultationTimetableOverrideModel>}
1157
+ * @memberof BatchHospitalConsultationTimetableOverridesCommand
1158
+ */
1159
+ 'adds'?: Array<BatchAddHospitalConsultationTimetableOverrideModel> | null;
1160
+ /**
1161
+ *
1162
+ * @type {Array<BatchUpdateHospitalConsultationTimetableOverrideModel>}
1163
+ * @memberof BatchHospitalConsultationTimetableOverridesCommand
1164
+ */
1165
+ 'updates'?: Array<BatchUpdateHospitalConsultationTimetableOverrideModel> | null;
1166
+ /**
1167
+ *
1168
+ * @type {Array<string>}
1169
+ * @memberof BatchHospitalConsultationTimetableOverridesCommand
1170
+ */
1171
+ 'deletes'?: Array<string> | null;
1172
+ }
1173
+ /**
1174
+ *
1175
+ * @export
1176
+ * @interface BatchHospitalConsultationTimetableOverridesResultModel
1177
+ */
1178
+ export interface BatchHospitalConsultationTimetableOverridesResultModel {
1179
+ /**
1180
+ *
1181
+ * @type {Array<HospitalConsultationTimetableOverrideModel>}
1182
+ * @memberof BatchHospitalConsultationTimetableOverridesResultModel
1183
+ */
1184
+ 'adds'?: Array<HospitalConsultationTimetableOverrideModel> | null;
1185
+ /**
1186
+ *
1187
+ * @type {Array<HospitalConsultationTimetableOverrideModel>}
1188
+ * @memberof BatchHospitalConsultationTimetableOverridesResultModel
1189
+ */
1190
+ 'updates'?: Array<HospitalConsultationTimetableOverrideModel> | null;
1191
+ /**
1192
+ *
1193
+ * @type {Array<string>}
1194
+ * @memberof BatchHospitalConsultationTimetableOverridesResultModel
1195
+ */
1196
+ 'deletes'?: Array<string> | null;
1197
+ }
1198
+ /**
1199
+ *
1200
+ * @export
1201
+ * @interface BatchHospitalConsultationTimetableResultModel
1202
+ */
1203
+ export interface BatchHospitalConsultationTimetableResultModel {
1204
+ /**
1205
+ *
1206
+ * @type {Array<HospitalConsultationTimetableModel>}
1207
+ * @memberof BatchHospitalConsultationTimetableResultModel
1208
+ */
1209
+ 'adds'?: Array<HospitalConsultationTimetableModel> | null;
1210
+ /**
1211
+ *
1212
+ * @type {Array<HospitalConsultationTimetableModel>}
1213
+ * @memberof BatchHospitalConsultationTimetableResultModel
1214
+ */
1215
+ 'updates'?: Array<HospitalConsultationTimetableModel> | null;
1216
+ /**
1217
+ *
1218
+ * @type {Array<string>}
1219
+ * @memberof BatchHospitalConsultationTimetableResultModel
1220
+ */
1221
+ 'deletes'?: Array<string> | null;
1222
+ }
1223
+ /**
1224
+ *
1225
+ * @export
1226
+ * @interface BatchHospitalConsultationTimetablesCommand
1227
+ */
1228
+ export interface BatchHospitalConsultationTimetablesCommand {
1229
+ /**
1230
+ *
1231
+ * @type {Array<BatchAddHospitalConsultationTimetableModel>}
1232
+ * @memberof BatchHospitalConsultationTimetablesCommand
1233
+ */
1234
+ 'adds'?: Array<BatchAddHospitalConsultationTimetableModel> | null;
1235
+ /**
1236
+ *
1237
+ * @type {Array<BatchUpdateHospitalConsultationTimetableModel>}
1238
+ * @memberof BatchHospitalConsultationTimetablesCommand
1239
+ */
1240
+ 'updates'?: Array<BatchUpdateHospitalConsultationTimetableModel> | null;
1241
+ /**
1242
+ *
1243
+ * @type {Array<string>}
1244
+ * @memberof BatchHospitalConsultationTimetablesCommand
1245
+ */
1246
+ 'deletes'?: Array<string> | null;
1247
+ }
1248
+ /**
1249
+ *
1250
+ * @export
1251
+ * @interface BatchUpdateHospitalConsultationTimetableModel
1252
+ */
1253
+ export interface BatchUpdateHospitalConsultationTimetableModel {
1254
+ /**
1255
+ *
1256
+ * @type {string}
1257
+ * @memberof BatchUpdateHospitalConsultationTimetableModel
1258
+ */
1259
+ 'id'?: string;
1260
+ /**
1261
+ *
1262
+ * @type {DayOfWeek}
1263
+ * @memberof BatchUpdateHospitalConsultationTimetableModel
1264
+ */
1265
+ 'dayOfWeek'?: DayOfWeek;
1266
+ /**
1267
+ *
1268
+ * @type {string}
1269
+ * @memberof BatchUpdateHospitalConsultationTimetableModel
1270
+ */
1271
+ 'start'?: string | null;
1272
+ /**
1273
+ *
1274
+ * @type {string}
1275
+ * @memberof BatchUpdateHospitalConsultationTimetableModel
1276
+ */
1277
+ 'end'?: string | null;
1278
+ }
1279
+ /**
1280
+ *
1281
+ * @export
1282
+ * @interface BatchUpdateHospitalConsultationTimetableOverrideModel
1283
+ */
1284
+ export interface BatchUpdateHospitalConsultationTimetableOverrideModel {
1285
+ /**
1286
+ *
1287
+ * @type {Date}
1288
+ * @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
1289
+ */
1290
+ 'date'?: Date;
1291
+ /**
1292
+ *
1293
+ * @type {string}
1294
+ * @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
1295
+ */
1296
+ 'start'?: string | null;
1297
+ /**
1298
+ *
1299
+ * @type {string}
1300
+ * @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
1301
+ */
1302
+ 'end'?: string | null;
1303
+ /**
1304
+ *
1305
+ * @type {string}
1306
+ * @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
1307
+ */
1308
+ 'id'?: string;
1309
+ }
1092
1310
  /**
1093
1311
  *
1094
1312
  * @export
@@ -3203,6 +3421,12 @@ export interface CountryModel {
3203
3421
  * @memberof CountryModel
3204
3422
  */
3205
3423
  'content'?: string | null;
3424
+ /**
3425
+ *
3426
+ * @type {string}
3427
+ * @memberof CountryModel
3428
+ */
3429
+ 'customStyle'?: string | null;
3206
3430
  /**
3207
3431
  *
3208
3432
  * @type {Array<MediaModel>}
@@ -3393,6 +3617,12 @@ export interface CreateArticleCommand {
3393
3617
  * @memberof CreateArticleCommand
3394
3618
  */
3395
3619
  'backgroundThumbnail'?: string | null;
3620
+ /**
3621
+ *
3622
+ * @type {string}
3623
+ * @memberof CreateArticleCommand
3624
+ */
3625
+ 'customStyle'?: string | null;
3396
3626
  /**
3397
3627
  *
3398
3628
  * @type {Array<ArticleTagItemModel>}
@@ -3756,6 +3986,12 @@ export interface CreateCountryCommand {
3756
3986
  * @memberof CreateCountryCommand
3757
3987
  */
3758
3988
  'logo'?: string | null;
3989
+ /**
3990
+ *
3991
+ * @type {string}
3992
+ * @memberof CreateCountryCommand
3993
+ */
3994
+ 'customStyle'?: string | null;
3759
3995
  /**
3760
3996
  *
3761
3997
  * @type {Array<MediaModel>}
@@ -4248,6 +4484,12 @@ export interface CreateFaqCommand {
4248
4484
  * @memberof CreateFaqCommand
4249
4485
  */
4250
4486
  'order'?: number;
4487
+ /**
4488
+ *
4489
+ * @type {string}
4490
+ * @memberof CreateFaqCommand
4491
+ */
4492
+ 'customStyle'?: string | null;
4251
4493
  /**
4252
4494
  *
4253
4495
  * @type {string}
@@ -4425,6 +4667,62 @@ export interface CreateHospitalCommand {
4425
4667
  * @memberof CreateHospitalCommand
4426
4668
  */
4427
4669
  'location'?: LocationModel;
4670
+ /**
4671
+ *
4672
+ * @type {HospitalConsultationOptionModel}
4673
+ * @memberof CreateHospitalCommand
4674
+ */
4675
+ 'consultationOption'?: HospitalConsultationOptionModel;
4676
+ }
4677
+ /**
4678
+ *
4679
+ * @export
4680
+ * @interface CreateHospitalConsultationTimetableCommand
4681
+ */
4682
+ export interface CreateHospitalConsultationTimetableCommand {
4683
+ /**
4684
+ *
4685
+ * @type {DayOfWeek}
4686
+ * @memberof CreateHospitalConsultationTimetableCommand
4687
+ */
4688
+ 'dayOfWeek'?: DayOfWeek;
4689
+ /**
4690
+ *
4691
+ * @type {string}
4692
+ * @memberof CreateHospitalConsultationTimetableCommand
4693
+ */
4694
+ 'start'?: string | null;
4695
+ /**
4696
+ *
4697
+ * @type {string}
4698
+ * @memberof CreateHospitalConsultationTimetableCommand
4699
+ */
4700
+ 'end'?: string | null;
4701
+ }
4702
+ /**
4703
+ *
4704
+ * @export
4705
+ * @interface CreateHospitalConsultationTimetableOverrideCommand
4706
+ */
4707
+ export interface CreateHospitalConsultationTimetableOverrideCommand {
4708
+ /**
4709
+ *
4710
+ * @type {Date}
4711
+ * @memberof CreateHospitalConsultationTimetableOverrideCommand
4712
+ */
4713
+ 'date'?: Date;
4714
+ /**
4715
+ *
4716
+ * @type {string}
4717
+ * @memberof CreateHospitalConsultationTimetableOverrideCommand
4718
+ */
4719
+ 'start'?: string | null;
4720
+ /**
4721
+ *
4722
+ * @type {string}
4723
+ * @memberof CreateHospitalConsultationTimetableOverrideCommand
4724
+ */
4725
+ 'end'?: string | null;
4428
4726
  }
4429
4727
  /**
4430
4728
  *
@@ -5175,6 +5473,12 @@ export interface CreateSpecialtyCommand {
5175
5473
  * @memberof CreateSpecialtyCommand
5176
5474
  */
5177
5475
  'backgroundThumbnail'?: string | null;
5476
+ /**
5477
+ *
5478
+ * @type {string}
5479
+ * @memberof CreateSpecialtyCommand
5480
+ */
5481
+ 'customStyle'?: string | null;
5178
5482
  /**
5179
5483
  *
5180
5484
  * @type {string}
@@ -5242,6 +5546,12 @@ export interface CreateSpecialtyTypeCommand {
5242
5546
  * @memberof CreateSpecialtyTypeCommand
5243
5547
  */
5244
5548
  'backgroundThumbnail'?: string | null;
5549
+ /**
5550
+ *
5551
+ * @type {string}
5552
+ * @memberof CreateSpecialtyTypeCommand
5553
+ */
5554
+ 'customStyle'?: string | null;
5245
5555
  /**
5246
5556
  *
5247
5557
  * @type {Array<MediaModel>}
@@ -5366,6 +5676,20 @@ export interface DashBoardModel {
5366
5676
  */
5367
5677
  'totalHospitalsReleased'?: number;
5368
5678
  }
5679
+ /**
5680
+ *
5681
+ * @export
5682
+ * @enum {string}
5683
+ */
5684
+ export declare enum DayOfWeek {
5685
+ Sunday = "Sunday",
5686
+ Monday = "Monday",
5687
+ Tuesday = "Tuesday",
5688
+ Wednesday = "Wednesday",
5689
+ Thursday = "Thursday",
5690
+ Friday = "Friday",
5691
+ Saturday = "Saturday"
5692
+ }
5369
5693
  /**
5370
5694
  *
5371
5695
  * @export
@@ -7499,6 +7823,12 @@ export interface FaqModel {
7499
7823
  * @memberof FaqModel
7500
7824
  */
7501
7825
  'content'?: string | null;
7826
+ /**
7827
+ *
7828
+ * @type {string}
7829
+ * @memberof FaqModel
7830
+ */
7831
+ 'customStyle'?: string | null;
7502
7832
  }
7503
7833
  /**
7504
7834
  *
@@ -7684,50 +8014,237 @@ export interface HospitalAccreditationsModel {
7684
8014
  /**
7685
8015
  *
7686
8016
  * @export
7687
- * @interface HospitalEquipmentItemModel
8017
+ * @interface HospitalConsultationOptionModel
7688
8018
  */
7689
- export interface HospitalEquipmentItemModel {
7690
- /**
7691
- *
7692
- * @type {string}
7693
- * @memberof HospitalEquipmentItemModel
7694
- */
7695
- 'id'?: string;
7696
- /**
7697
- *
7698
- * @type {string}
7699
- * @memberof HospitalEquipmentItemModel
7700
- */
7701
- 'name'?: string | null;
8019
+ export interface HospitalConsultationOptionModel {
7702
8020
  /**
7703
8021
  *
7704
- * @type {string}
7705
- * @memberof HospitalEquipmentItemModel
8022
+ * @type {boolean}
8023
+ * @memberof HospitalConsultationOptionModel
7706
8024
  */
7707
- 'description'?: string | null;
8025
+ 'useTimetable'?: boolean;
7708
8026
  /**
7709
8027
  *
7710
- * @type {Array<MediaModel>}
7711
- * @memberof HospitalEquipmentItemModel
8028
+ * @type {number}
8029
+ * @memberof HospitalConsultationOptionModel
7712
8030
  */
7713
- 'medias'?: Array<MediaModel> | null;
8031
+ 'beforeEventBufferMinutes'?: number | null;
7714
8032
  /**
7715
8033
  *
7716
- * @type {AuditableEntity}
7717
- * @memberof HospitalEquipmentItemModel
8034
+ * @type {number}
8035
+ * @memberof HospitalConsultationOptionModel
7718
8036
  */
7719
- 'auditableEntity'?: AuditableEntity;
8037
+ 'afterEventBufferMinutes'?: number | null;
7720
8038
  }
7721
8039
  /**
7722
8040
  *
7723
8041
  * @export
7724
- * @interface HospitalEquipmentModel
8042
+ * @interface HospitalConsultationTimetableItemModel
7725
8043
  */
7726
- export interface HospitalEquipmentModel {
8044
+ export interface HospitalConsultationTimetableItemModel {
7727
8045
  /**
7728
8046
  *
7729
8047
  * @type {string}
7730
- * @memberof HospitalEquipmentModel
8048
+ * @memberof HospitalConsultationTimetableItemModel
8049
+ */
8050
+ 'id'?: string;
8051
+ /**
8052
+ *
8053
+ * @type {DayOfWeek}
8054
+ * @memberof HospitalConsultationTimetableItemModel
8055
+ */
8056
+ 'dayOfWeek'?: DayOfWeek;
8057
+ /**
8058
+ *
8059
+ * @type {string}
8060
+ * @memberof HospitalConsultationTimetableItemModel
8061
+ */
8062
+ 'start'?: string | null;
8063
+ /**
8064
+ *
8065
+ * @type {string}
8066
+ * @memberof HospitalConsultationTimetableItemModel
8067
+ */
8068
+ 'end'?: string | null;
8069
+ }
8070
+ /**
8071
+ *
8072
+ * @export
8073
+ * @interface HospitalConsultationTimetableModel
8074
+ */
8075
+ export interface HospitalConsultationTimetableModel {
8076
+ /**
8077
+ *
8078
+ * @type {string}
8079
+ * @memberof HospitalConsultationTimetableModel
8080
+ */
8081
+ 'id'?: string;
8082
+ /**
8083
+ *
8084
+ * @type {DayOfWeek}
8085
+ * @memberof HospitalConsultationTimetableModel
8086
+ */
8087
+ 'dayOfWeek'?: DayOfWeek;
8088
+ /**
8089
+ *
8090
+ * @type {string}
8091
+ * @memberof HospitalConsultationTimetableModel
8092
+ */
8093
+ 'start'?: string | null;
8094
+ /**
8095
+ *
8096
+ * @type {string}
8097
+ * @memberof HospitalConsultationTimetableModel
8098
+ */
8099
+ 'end'?: string | null;
8100
+ }
8101
+ /**
8102
+ *
8103
+ * @export
8104
+ * @interface HospitalConsultationTimetableOverrideItemModel
8105
+ */
8106
+ export interface HospitalConsultationTimetableOverrideItemModel {
8107
+ /**
8108
+ *
8109
+ * @type {string}
8110
+ * @memberof HospitalConsultationTimetableOverrideItemModel
8111
+ */
8112
+ 'id'?: string;
8113
+ /**
8114
+ *
8115
+ * @type {Date}
8116
+ * @memberof HospitalConsultationTimetableOverrideItemModel
8117
+ */
8118
+ 'date'?: Date;
8119
+ /**
8120
+ *
8121
+ * @type {string}
8122
+ * @memberof HospitalConsultationTimetableOverrideItemModel
8123
+ */
8124
+ 'start'?: string | null;
8125
+ /**
8126
+ *
8127
+ * @type {string}
8128
+ * @memberof HospitalConsultationTimetableOverrideItemModel
8129
+ */
8130
+ 'end'?: string | null;
8131
+ }
8132
+ /**
8133
+ *
8134
+ * @export
8135
+ * @interface HospitalConsultationTimetableOverrideModel
8136
+ */
8137
+ export interface HospitalConsultationTimetableOverrideModel {
8138
+ /**
8139
+ *
8140
+ * @type {string}
8141
+ * @memberof HospitalConsultationTimetableOverrideModel
8142
+ */
8143
+ 'id'?: string;
8144
+ /**
8145
+ *
8146
+ * @type {Date}
8147
+ * @memberof HospitalConsultationTimetableOverrideModel
8148
+ */
8149
+ 'date'?: Date;
8150
+ /**
8151
+ *
8152
+ * @type {string}
8153
+ * @memberof HospitalConsultationTimetableOverrideModel
8154
+ */
8155
+ 'start'?: string | null;
8156
+ /**
8157
+ *
8158
+ * @type {string}
8159
+ * @memberof HospitalConsultationTimetableOverrideModel
8160
+ */
8161
+ 'end'?: string | null;
8162
+ }
8163
+ /**
8164
+ *
8165
+ * @export
8166
+ * @interface HospitalConsultationTimetableOverridesModel
8167
+ */
8168
+ export interface HospitalConsultationTimetableOverridesModel {
8169
+ /**
8170
+ *
8171
+ * @type {Array<HospitalConsultationTimetableOverrideItemModel>}
8172
+ * @memberof HospitalConsultationTimetableOverridesModel
8173
+ */
8174
+ 'items'?: Array<HospitalConsultationTimetableOverrideItemModel> | null;
8175
+ /**
8176
+ *
8177
+ * @type {PagedListMetaData}
8178
+ * @memberof HospitalConsultationTimetableOverridesModel
8179
+ */
8180
+ 'metaData'?: PagedListMetaData;
8181
+ }
8182
+ /**
8183
+ *
8184
+ * @export
8185
+ * @interface HospitalConsultationTimetablesModel
8186
+ */
8187
+ export interface HospitalConsultationTimetablesModel {
8188
+ /**
8189
+ *
8190
+ * @type {Array<HospitalConsultationTimetableItemModel>}
8191
+ * @memberof HospitalConsultationTimetablesModel
8192
+ */
8193
+ 'items'?: Array<HospitalConsultationTimetableItemModel> | null;
8194
+ /**
8195
+ *
8196
+ * @type {PagedListMetaData}
8197
+ * @memberof HospitalConsultationTimetablesModel
8198
+ */
8199
+ 'metaData'?: PagedListMetaData;
8200
+ }
8201
+ /**
8202
+ *
8203
+ * @export
8204
+ * @interface HospitalEquipmentItemModel
8205
+ */
8206
+ export interface HospitalEquipmentItemModel {
8207
+ /**
8208
+ *
8209
+ * @type {string}
8210
+ * @memberof HospitalEquipmentItemModel
8211
+ */
8212
+ 'id'?: string;
8213
+ /**
8214
+ *
8215
+ * @type {string}
8216
+ * @memberof HospitalEquipmentItemModel
8217
+ */
8218
+ 'name'?: string | null;
8219
+ /**
8220
+ *
8221
+ * @type {string}
8222
+ * @memberof HospitalEquipmentItemModel
8223
+ */
8224
+ 'description'?: string | null;
8225
+ /**
8226
+ *
8227
+ * @type {Array<MediaModel>}
8228
+ * @memberof HospitalEquipmentItemModel
8229
+ */
8230
+ 'medias'?: Array<MediaModel> | null;
8231
+ /**
8232
+ *
8233
+ * @type {AuditableEntity}
8234
+ * @memberof HospitalEquipmentItemModel
8235
+ */
8236
+ 'auditableEntity'?: AuditableEntity;
8237
+ }
8238
+ /**
8239
+ *
8240
+ * @export
8241
+ * @interface HospitalEquipmentModel
8242
+ */
8243
+ export interface HospitalEquipmentModel {
8244
+ /**
8245
+ *
8246
+ * @type {string}
8247
+ * @memberof HospitalEquipmentModel
7731
8248
  */
7732
8249
  'id'?: string;
7733
8250
  /**
@@ -7975,6 +8492,12 @@ export interface HospitalItemModel {
7975
8492
  * @memberof HospitalItemModel
7976
8493
  */
7977
8494
  'auditableEntity'?: AuditableEntity;
8495
+ /**
8496
+ *
8497
+ * @type {HospitalConsultationOptionModel}
8498
+ * @memberof HospitalItemModel
8499
+ */
8500
+ 'consultationOption'?: HospitalConsultationOptionModel;
7978
8501
  }
7979
8502
  /**
7980
8503
  *
@@ -8122,6 +8645,12 @@ export interface HospitalModel {
8122
8645
  * @memberof HospitalModel
8123
8646
  */
8124
8647
  'auditableEntity'?: AuditableEntity;
8648
+ /**
8649
+ *
8650
+ * @type {HospitalConsultationOptionModel}
8651
+ * @memberof HospitalModel
8652
+ */
8653
+ 'consultationOption'?: HospitalConsultationOptionModel;
8125
8654
  /**
8126
8655
  *
8127
8656
  * @type {string}
@@ -11812,6 +12341,12 @@ export interface SpecialtyModel {
11812
12341
  * @memberof SpecialtyModel
11813
12342
  */
11814
12343
  'content'?: string | null;
12344
+ /**
12345
+ *
12346
+ * @type {string}
12347
+ * @memberof SpecialtyModel
12348
+ */
12349
+ 'customStyle'?: string | null;
11815
12350
  }
11816
12351
  /**
11817
12352
  *
@@ -12006,6 +12541,12 @@ export interface SpecialtyTypeModel {
12006
12541
  * @memberof SpecialtyTypeModel
12007
12542
  */
12008
12543
  'content'?: string | null;
12544
+ /**
12545
+ *
12546
+ * @type {string}
12547
+ * @memberof SpecialtyTypeModel
12548
+ */
12549
+ 'customStyle'?: string | null;
12009
12550
  }
12010
12551
  /**
12011
12552
  *
@@ -12567,6 +13108,12 @@ export interface UpdateArticleCommand {
12567
13108
  * @memberof UpdateArticleCommand
12568
13109
  */
12569
13110
  'backgroundThumbnail'?: string | null;
13111
+ /**
13112
+ *
13113
+ * @type {string}
13114
+ * @memberof UpdateArticleCommand
13115
+ */
13116
+ 'customStyle'?: string | null;
12570
13117
  /**
12571
13118
  *
12572
13119
  * @type {Array<ArticleTagItemModel>}
@@ -12929,6 +13476,12 @@ export interface UpdateCountryCommand {
12929
13476
  * @memberof UpdateCountryCommand
12930
13477
  */
12931
13478
  'content'?: string | null;
13479
+ /**
13480
+ *
13481
+ * @type {string}
13482
+ * @memberof UpdateCountryCommand
13483
+ */
13484
+ 'customStyle'?: string | null;
12932
13485
  /**
12933
13486
  *
12934
13487
  * @type {string}
@@ -13451,6 +14004,12 @@ export interface UpdateFaqCommand {
13451
14004
  * @memberof UpdateFaqCommand
13452
14005
  */
13453
14006
  'order'?: number;
14007
+ /**
14008
+ *
14009
+ * @type {string}
14010
+ * @memberof UpdateFaqCommand
14011
+ */
14012
+ 'customStyle'?: string | null;
13454
14013
  /**
13455
14014
  *
13456
14015
  * @type {Array<FaqTagItemModel>}
@@ -13626,6 +14185,62 @@ export interface UpdateHospitalCommand {
13626
14185
  * @memberof UpdateHospitalCommand
13627
14186
  */
13628
14187
  'location'?: LocationModel;
14188
+ /**
14189
+ *
14190
+ * @type {HospitalConsultationOptionModel}
14191
+ * @memberof UpdateHospitalCommand
14192
+ */
14193
+ 'consultationOption'?: HospitalConsultationOptionModel;
14194
+ }
14195
+ /**
14196
+ *
14197
+ * @export
14198
+ * @interface UpdateHospitalConsultationTimetableCommand
14199
+ */
14200
+ export interface UpdateHospitalConsultationTimetableCommand {
14201
+ /**
14202
+ *
14203
+ * @type {DayOfWeek}
14204
+ * @memberof UpdateHospitalConsultationTimetableCommand
14205
+ */
14206
+ 'dayOfWeek'?: DayOfWeek;
14207
+ /**
14208
+ *
14209
+ * @type {string}
14210
+ * @memberof UpdateHospitalConsultationTimetableCommand
14211
+ */
14212
+ 'start'?: string | null;
14213
+ /**
14214
+ *
14215
+ * @type {string}
14216
+ * @memberof UpdateHospitalConsultationTimetableCommand
14217
+ */
14218
+ 'end'?: string | null;
14219
+ }
14220
+ /**
14221
+ *
14222
+ * @export
14223
+ * @interface UpdateHospitalConsultationTimetableOverrideCommand
14224
+ */
14225
+ export interface UpdateHospitalConsultationTimetableOverrideCommand {
14226
+ /**
14227
+ *
14228
+ * @type {Date}
14229
+ * @memberof UpdateHospitalConsultationTimetableOverrideCommand
14230
+ */
14231
+ 'date'?: Date;
14232
+ /**
14233
+ *
14234
+ * @type {string}
14235
+ * @memberof UpdateHospitalConsultationTimetableOverrideCommand
14236
+ */
14237
+ 'start'?: string | null;
14238
+ /**
14239
+ *
14240
+ * @type {string}
14241
+ * @memberof UpdateHospitalConsultationTimetableOverrideCommand
14242
+ */
14243
+ 'end'?: string | null;
13629
14244
  }
13630
14245
  /**
13631
14246
  *
@@ -14447,6 +15062,12 @@ export interface UpdateSpecialtyCommand {
14447
15062
  * @memberof UpdateSpecialtyCommand
14448
15063
  */
14449
15064
  'backgroundThumbnail'?: string | null;
15065
+ /**
15066
+ *
15067
+ * @type {string}
15068
+ * @memberof UpdateSpecialtyCommand
15069
+ */
15070
+ 'customStyle'?: string | null;
14450
15071
  /**
14451
15072
  *
14452
15073
  * @type {string}
@@ -14526,6 +15147,12 @@ export interface UpdateSpecialtyTypeCommand {
14526
15147
  * @memberof UpdateSpecialtyTypeCommand
14527
15148
  */
14528
15149
  'backgroundThumbnail'?: string | null;
15150
+ /**
15151
+ *
15152
+ * @type {string}
15153
+ * @memberof UpdateSpecialtyTypeCommand
15154
+ */
15155
+ 'customStyle'?: string | null;
14529
15156
  /**
14530
15157
  *
14531
15158
  * @type {string}
@@ -26889,6 +27516,526 @@ export declare class HospitalsApi extends BaseAPI {
26889
27516
  */
26890
27517
  apiV1HospitalsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
26891
27518
  }
27519
+ /**
27520
+ * HospitalsConsultationTimetableOverridesApi - axios parameter creator
27521
+ * @export
27522
+ */
27523
+ export declare const HospitalsConsultationTimetableOverridesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
27524
+ /**
27525
+ *
27526
+ * @summary Add, Update and Delete item at once
27527
+ * @param {string} hospitalId
27528
+ * @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
27529
+ * @param {*} [options] Override http request option.
27530
+ * @throws {RequiredError}
27531
+ */
27532
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost: (hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27533
+ /**
27534
+ *
27535
+ * @summary Get consultation timetable override items
27536
+ * @param {string} hospitalId
27537
+ * @param {number} [page]
27538
+ * @param {number} [limit]
27539
+ * @param {Date} [lastRetrieved]
27540
+ * @param {*} [options] Override http request option.
27541
+ * @throws {RequiredError}
27542
+ */
27543
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesGet: (hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27544
+ /**
27545
+ *
27546
+ * @summary Delete timetable item
27547
+ * @param {string} hospitalId
27548
+ * @param {string} id
27549
+ * @param {*} [options] Override http request option.
27550
+ * @throws {RequiredError}
27551
+ */
27552
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27553
+ /**
27554
+ *
27555
+ * @summary Get consultation timetable override item
27556
+ * @param {string} hospitalId
27557
+ * @param {string} id
27558
+ * @param {*} [options] Override http request option.
27559
+ * @throws {RequiredError}
27560
+ */
27561
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27562
+ /**
27563
+ *
27564
+ * @summary Update timetable item
27565
+ * @param {string} hospitalId
27566
+ * @param {string} id
27567
+ * @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
27568
+ * @param {*} [options] Override http request option.
27569
+ * @throws {RequiredError}
27570
+ */
27571
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdPut: (hospitalId: string, id: string, updateHospitalConsultationTimetableOverrideCommand?: UpdateHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27572
+ /**
27573
+ *
27574
+ * @summary Create timetable itme
27575
+ * @param {string} hospitalId
27576
+ * @param {CreateHospitalConsultationTimetableOverrideCommand} [createHospitalConsultationTimetableOverrideCommand]
27577
+ * @param {*} [options] Override http request option.
27578
+ * @throws {RequiredError}
27579
+ */
27580
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesPost: (hospitalId: string, createHospitalConsultationTimetableOverrideCommand?: CreateHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27581
+ };
27582
+ /**
27583
+ * HospitalsConsultationTimetableOverridesApi - functional programming interface
27584
+ * @export
27585
+ */
27586
+ export declare const HospitalsConsultationTimetableOverridesApiFp: (configuration?: Configuration | undefined) => {
27587
+ /**
27588
+ *
27589
+ * @summary Add, Update and Delete item at once
27590
+ * @param {string} hospitalId
27591
+ * @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
27592
+ * @param {*} [options] Override http request option.
27593
+ * @throws {RequiredError}
27594
+ */
27595
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost(hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BatchHospitalConsultationTimetableOverridesResultModel>>;
27596
+ /**
27597
+ *
27598
+ * @summary Get consultation timetable override items
27599
+ * @param {string} hospitalId
27600
+ * @param {number} [page]
27601
+ * @param {number} [limit]
27602
+ * @param {Date} [lastRetrieved]
27603
+ * @param {*} [options] Override http request option.
27604
+ * @throws {RequiredError}
27605
+ */
27606
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverridesModel>>;
27607
+ /**
27608
+ *
27609
+ * @summary Delete timetable item
27610
+ * @param {string} hospitalId
27611
+ * @param {string} id
27612
+ * @param {*} [options] Override http request option.
27613
+ * @throws {RequiredError}
27614
+ */
27615
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
27616
+ /**
27617
+ *
27618
+ * @summary Get consultation timetable override item
27619
+ * @param {string} hospitalId
27620
+ * @param {string} id
27621
+ * @param {*} [options] Override http request option.
27622
+ * @throws {RequiredError}
27623
+ */
27624
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverrideModel>>;
27625
+ /**
27626
+ *
27627
+ * @summary Update timetable item
27628
+ * @param {string} hospitalId
27629
+ * @param {string} id
27630
+ * @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
27631
+ * @param {*} [options] Override http request option.
27632
+ * @throws {RequiredError}
27633
+ */
27634
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableOverrideCommand?: UpdateHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverrideModel>>;
27635
+ /**
27636
+ *
27637
+ * @summary Create timetable itme
27638
+ * @param {string} hospitalId
27639
+ * @param {CreateHospitalConsultationTimetableOverrideCommand} [createHospitalConsultationTimetableOverrideCommand]
27640
+ * @param {*} [options] Override http request option.
27641
+ * @throws {RequiredError}
27642
+ */
27643
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, createHospitalConsultationTimetableOverrideCommand?: CreateHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverrideModel>>;
27644
+ };
27645
+ /**
27646
+ * HospitalsConsultationTimetableOverridesApi - factory interface
27647
+ * @export
27648
+ */
27649
+ export declare const HospitalsConsultationTimetableOverridesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
27650
+ /**
27651
+ *
27652
+ * @summary Add, Update and Delete item at once
27653
+ * @param {string} hospitalId
27654
+ * @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
27655
+ * @param {*} [options] Override http request option.
27656
+ * @throws {RequiredError}
27657
+ */
27658
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost(hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand | undefined, options?: any): AxiosPromise<BatchHospitalConsultationTimetableOverridesResultModel>;
27659
+ /**
27660
+ *
27661
+ * @summary Get consultation timetable override items
27662
+ * @param {string} hospitalId
27663
+ * @param {number} [page]
27664
+ * @param {number} [limit]
27665
+ * @param {Date} [lastRetrieved]
27666
+ * @param {*} [options] Override http request option.
27667
+ * @throws {RequiredError}
27668
+ */
27669
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableOverridesModel>;
27670
+ /**
27671
+ *
27672
+ * @summary Delete timetable item
27673
+ * @param {string} hospitalId
27674
+ * @param {string} id
27675
+ * @param {*} [options] Override http request option.
27676
+ * @throws {RequiredError}
27677
+ */
27678
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete(hospitalId: string, id: string, options?: any): AxiosPromise<boolean>;
27679
+ /**
27680
+ *
27681
+ * @summary Get consultation timetable override item
27682
+ * @param {string} hospitalId
27683
+ * @param {string} id
27684
+ * @param {*} [options] Override http request option.
27685
+ * @throws {RequiredError}
27686
+ */
27687
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalConsultationTimetableOverrideModel>;
27688
+ /**
27689
+ *
27690
+ * @summary Update timetable item
27691
+ * @param {string} hospitalId
27692
+ * @param {string} id
27693
+ * @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
27694
+ * @param {*} [options] Override http request option.
27695
+ * @throws {RequiredError}
27696
+ */
27697
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableOverrideCommand?: UpdateHospitalConsultationTimetableOverrideCommand | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableOverrideModel>;
27698
+ /**
27699
+ *
27700
+ * @summary Create timetable itme
27701
+ * @param {string} hospitalId
27702
+ * @param {CreateHospitalConsultationTimetableOverrideCommand} [createHospitalConsultationTimetableOverrideCommand]
27703
+ * @param {*} [options] Override http request option.
27704
+ * @throws {RequiredError}
27705
+ */
27706
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, createHospitalConsultationTimetableOverrideCommand?: CreateHospitalConsultationTimetableOverrideCommand | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableOverrideModel>;
27707
+ };
27708
+ /**
27709
+ * HospitalsConsultationTimetableOverridesApi - object-oriented interface
27710
+ * @export
27711
+ * @class HospitalsConsultationTimetableOverridesApi
27712
+ * @extends {BaseAPI}
27713
+ */
27714
+ export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI {
27715
+ /**
27716
+ *
27717
+ * @summary Add, Update and Delete item at once
27718
+ * @param {string} hospitalId
27719
+ * @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
27720
+ * @param {*} [options] Override http request option.
27721
+ * @throws {RequiredError}
27722
+ * @memberof HospitalsConsultationTimetableOverridesApi
27723
+ */
27724
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost(hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchHospitalConsultationTimetableOverridesResultModel>>;
27725
+ /**
27726
+ *
27727
+ * @summary Get consultation timetable override items
27728
+ * @param {string} hospitalId
27729
+ * @param {number} [page]
27730
+ * @param {number} [limit]
27731
+ * @param {Date} [lastRetrieved]
27732
+ * @param {*} [options] Override http request option.
27733
+ * @throws {RequiredError}
27734
+ * @memberof HospitalsConsultationTimetableOverridesApi
27735
+ */
27736
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverridesModel>>;
27737
+ /**
27738
+ *
27739
+ * @summary Delete timetable item
27740
+ * @param {string} hospitalId
27741
+ * @param {string} id
27742
+ * @param {*} [options] Override http request option.
27743
+ * @throws {RequiredError}
27744
+ * @memberof HospitalsConsultationTimetableOverridesApi
27745
+ */
27746
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
27747
+ /**
27748
+ *
27749
+ * @summary Get consultation timetable override item
27750
+ * @param {string} hospitalId
27751
+ * @param {string} id
27752
+ * @param {*} [options] Override http request option.
27753
+ * @throws {RequiredError}
27754
+ * @memberof HospitalsConsultationTimetableOverridesApi
27755
+ */
27756
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverrideModel>>;
27757
+ /**
27758
+ *
27759
+ * @summary Update timetable item
27760
+ * @param {string} hospitalId
27761
+ * @param {string} id
27762
+ * @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
27763
+ * @param {*} [options] Override http request option.
27764
+ * @throws {RequiredError}
27765
+ * @memberof HospitalsConsultationTimetableOverridesApi
27766
+ */
27767
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableOverrideCommand?: UpdateHospitalConsultationTimetableOverrideCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverrideModel>>;
27768
+ /**
27769
+ *
27770
+ * @summary Create timetable itme
27771
+ * @param {string} hospitalId
27772
+ * @param {CreateHospitalConsultationTimetableOverrideCommand} [createHospitalConsultationTimetableOverrideCommand]
27773
+ * @param {*} [options] Override http request option.
27774
+ * @throws {RequiredError}
27775
+ * @memberof HospitalsConsultationTimetableOverridesApi
27776
+ */
27777
+ apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, createHospitalConsultationTimetableOverrideCommand?: CreateHospitalConsultationTimetableOverrideCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverrideModel>>;
27778
+ }
27779
+ /**
27780
+ * HospitalsConsultationTimetablesApi - axios parameter creator
27781
+ * @export
27782
+ */
27783
+ export declare const HospitalsConsultationTimetablesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
27784
+ /**
27785
+ *
27786
+ * @summary Add, Update and Delete item at once
27787
+ * @param {string} hospitalId
27788
+ * @param {BatchHospitalConsultationTimetablesCommand} [batchHospitalConsultationTimetablesCommand]
27789
+ * @param {*} [options] Override http request option.
27790
+ * @throws {RequiredError}
27791
+ */
27792
+ apiV1HospitalsHospitalIdConsultationtimetablesBatchPost: (hospitalId: string, batchHospitalConsultationTimetablesCommand?: BatchHospitalConsultationTimetablesCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27793
+ /**
27794
+ *
27795
+ * @summary Get consultation timetables
27796
+ * @param {string} hospitalId
27797
+ * @param {number} [page]
27798
+ * @param {number} [limit]
27799
+ * @param {Date} [lastRetrieved]
27800
+ * @param {*} [options] Override http request option.
27801
+ * @throws {RequiredError}
27802
+ */
27803
+ apiV1HospitalsHospitalIdConsultationtimetablesGet: (hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27804
+ /**
27805
+ *
27806
+ * @summary Delete timetable item
27807
+ * @param {string} hospitalId
27808
+ * @param {string} id
27809
+ * @param {*} [options] Override http request option.
27810
+ * @throws {RequiredError}
27811
+ */
27812
+ apiV1HospitalsHospitalIdConsultationtimetablesIdDelete: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27813
+ /**
27814
+ *
27815
+ * @summary Get consultation timetable
27816
+ * @param {string} hospitalId
27817
+ * @param {string} id
27818
+ * @param {*} [options] Override http request option.
27819
+ * @throws {RequiredError}
27820
+ */
27821
+ apiV1HospitalsHospitalIdConsultationtimetablesIdGet: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27822
+ /**
27823
+ *
27824
+ * @summary Update timetable item
27825
+ * @param {string} hospitalId
27826
+ * @param {string} id
27827
+ * @param {UpdateHospitalConsultationTimetableCommand} [updateHospitalConsultationTimetableCommand]
27828
+ * @param {*} [options] Override http request option.
27829
+ * @throws {RequiredError}
27830
+ */
27831
+ apiV1HospitalsHospitalIdConsultationtimetablesIdPut: (hospitalId: string, id: string, updateHospitalConsultationTimetableCommand?: UpdateHospitalConsultationTimetableCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27832
+ /**
27833
+ *
27834
+ * @summary Create timetable item
27835
+ * @param {string} hospitalId
27836
+ * @param {CreateHospitalConsultationTimetableCommand} [createHospitalConsultationTimetableCommand]
27837
+ * @param {*} [options] Override http request option.
27838
+ * @throws {RequiredError}
27839
+ */
27840
+ apiV1HospitalsHospitalIdConsultationtimetablesPost: (hospitalId: string, createHospitalConsultationTimetableCommand?: CreateHospitalConsultationTimetableCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27841
+ };
27842
+ /**
27843
+ * HospitalsConsultationTimetablesApi - functional programming interface
27844
+ * @export
27845
+ */
27846
+ export declare const HospitalsConsultationTimetablesApiFp: (configuration?: Configuration | undefined) => {
27847
+ /**
27848
+ *
27849
+ * @summary Add, Update and Delete item at once
27850
+ * @param {string} hospitalId
27851
+ * @param {BatchHospitalConsultationTimetablesCommand} [batchHospitalConsultationTimetablesCommand]
27852
+ * @param {*} [options] Override http request option.
27853
+ * @throws {RequiredError}
27854
+ */
27855
+ apiV1HospitalsHospitalIdConsultationtimetablesBatchPost(hospitalId: string, batchHospitalConsultationTimetablesCommand?: BatchHospitalConsultationTimetablesCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BatchHospitalConsultationTimetableResultModel>>;
27856
+ /**
27857
+ *
27858
+ * @summary Get consultation timetables
27859
+ * @param {string} hospitalId
27860
+ * @param {number} [page]
27861
+ * @param {number} [limit]
27862
+ * @param {Date} [lastRetrieved]
27863
+ * @param {*} [options] Override http request option.
27864
+ * @throws {RequiredError}
27865
+ */
27866
+ apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetablesModel>>;
27867
+ /**
27868
+ *
27869
+ * @summary Delete timetable item
27870
+ * @param {string} hospitalId
27871
+ * @param {string} id
27872
+ * @param {*} [options] Override http request option.
27873
+ * @throws {RequiredError}
27874
+ */
27875
+ apiV1HospitalsHospitalIdConsultationtimetablesIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableModel>>;
27876
+ /**
27877
+ *
27878
+ * @summary Get consultation timetable
27879
+ * @param {string} hospitalId
27880
+ * @param {string} id
27881
+ * @param {*} [options] Override http request option.
27882
+ * @throws {RequiredError}
27883
+ */
27884
+ apiV1HospitalsHospitalIdConsultationtimetablesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableModel>>;
27885
+ /**
27886
+ *
27887
+ * @summary Update timetable item
27888
+ * @param {string} hospitalId
27889
+ * @param {string} id
27890
+ * @param {UpdateHospitalConsultationTimetableCommand} [updateHospitalConsultationTimetableCommand]
27891
+ * @param {*} [options] Override http request option.
27892
+ * @throws {RequiredError}
27893
+ */
27894
+ apiV1HospitalsHospitalIdConsultationtimetablesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableCommand?: UpdateHospitalConsultationTimetableCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableModel>>;
27895
+ /**
27896
+ *
27897
+ * @summary Create timetable item
27898
+ * @param {string} hospitalId
27899
+ * @param {CreateHospitalConsultationTimetableCommand} [createHospitalConsultationTimetableCommand]
27900
+ * @param {*} [options] Override http request option.
27901
+ * @throws {RequiredError}
27902
+ */
27903
+ apiV1HospitalsHospitalIdConsultationtimetablesPost(hospitalId: string, createHospitalConsultationTimetableCommand?: CreateHospitalConsultationTimetableCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableModel>>;
27904
+ };
27905
+ /**
27906
+ * HospitalsConsultationTimetablesApi - factory interface
27907
+ * @export
27908
+ */
27909
+ export declare const HospitalsConsultationTimetablesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
27910
+ /**
27911
+ *
27912
+ * @summary Add, Update and Delete item at once
27913
+ * @param {string} hospitalId
27914
+ * @param {BatchHospitalConsultationTimetablesCommand} [batchHospitalConsultationTimetablesCommand]
27915
+ * @param {*} [options] Override http request option.
27916
+ * @throws {RequiredError}
27917
+ */
27918
+ apiV1HospitalsHospitalIdConsultationtimetablesBatchPost(hospitalId: string, batchHospitalConsultationTimetablesCommand?: BatchHospitalConsultationTimetablesCommand | undefined, options?: any): AxiosPromise<BatchHospitalConsultationTimetableResultModel>;
27919
+ /**
27920
+ *
27921
+ * @summary Get consultation timetables
27922
+ * @param {string} hospitalId
27923
+ * @param {number} [page]
27924
+ * @param {number} [limit]
27925
+ * @param {Date} [lastRetrieved]
27926
+ * @param {*} [options] Override http request option.
27927
+ * @throws {RequiredError}
27928
+ */
27929
+ apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetablesModel>;
27930
+ /**
27931
+ *
27932
+ * @summary Delete timetable item
27933
+ * @param {string} hospitalId
27934
+ * @param {string} id
27935
+ * @param {*} [options] Override http request option.
27936
+ * @throws {RequiredError}
27937
+ */
27938
+ apiV1HospitalsHospitalIdConsultationtimetablesIdDelete(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalConsultationTimetableModel>;
27939
+ /**
27940
+ *
27941
+ * @summary Get consultation timetable
27942
+ * @param {string} hospitalId
27943
+ * @param {string} id
27944
+ * @param {*} [options] Override http request option.
27945
+ * @throws {RequiredError}
27946
+ */
27947
+ apiV1HospitalsHospitalIdConsultationtimetablesIdGet(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalConsultationTimetableModel>;
27948
+ /**
27949
+ *
27950
+ * @summary Update timetable item
27951
+ * @param {string} hospitalId
27952
+ * @param {string} id
27953
+ * @param {UpdateHospitalConsultationTimetableCommand} [updateHospitalConsultationTimetableCommand]
27954
+ * @param {*} [options] Override http request option.
27955
+ * @throws {RequiredError}
27956
+ */
27957
+ apiV1HospitalsHospitalIdConsultationtimetablesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableCommand?: UpdateHospitalConsultationTimetableCommand | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableModel>;
27958
+ /**
27959
+ *
27960
+ * @summary Create timetable item
27961
+ * @param {string} hospitalId
27962
+ * @param {CreateHospitalConsultationTimetableCommand} [createHospitalConsultationTimetableCommand]
27963
+ * @param {*} [options] Override http request option.
27964
+ * @throws {RequiredError}
27965
+ */
27966
+ apiV1HospitalsHospitalIdConsultationtimetablesPost(hospitalId: string, createHospitalConsultationTimetableCommand?: CreateHospitalConsultationTimetableCommand | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableModel>;
27967
+ };
27968
+ /**
27969
+ * HospitalsConsultationTimetablesApi - object-oriented interface
27970
+ * @export
27971
+ * @class HospitalsConsultationTimetablesApi
27972
+ * @extends {BaseAPI}
27973
+ */
27974
+ export declare class HospitalsConsultationTimetablesApi extends BaseAPI {
27975
+ /**
27976
+ *
27977
+ * @summary Add, Update and Delete item at once
27978
+ * @param {string} hospitalId
27979
+ * @param {BatchHospitalConsultationTimetablesCommand} [batchHospitalConsultationTimetablesCommand]
27980
+ * @param {*} [options] Override http request option.
27981
+ * @throws {RequiredError}
27982
+ * @memberof HospitalsConsultationTimetablesApi
27983
+ */
27984
+ apiV1HospitalsHospitalIdConsultationtimetablesBatchPost(hospitalId: string, batchHospitalConsultationTimetablesCommand?: BatchHospitalConsultationTimetablesCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchHospitalConsultationTimetableResultModel>>;
27985
+ /**
27986
+ *
27987
+ * @summary Get consultation timetables
27988
+ * @param {string} hospitalId
27989
+ * @param {number} [page]
27990
+ * @param {number} [limit]
27991
+ * @param {Date} [lastRetrieved]
27992
+ * @param {*} [options] Override http request option.
27993
+ * @throws {RequiredError}
27994
+ * @memberof HospitalsConsultationTimetablesApi
27995
+ */
27996
+ apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetablesModel>>;
27997
+ /**
27998
+ *
27999
+ * @summary Delete timetable item
28000
+ * @param {string} hospitalId
28001
+ * @param {string} id
28002
+ * @param {*} [options] Override http request option.
28003
+ * @throws {RequiredError}
28004
+ * @memberof HospitalsConsultationTimetablesApi
28005
+ */
28006
+ apiV1HospitalsHospitalIdConsultationtimetablesIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableModel>>;
28007
+ /**
28008
+ *
28009
+ * @summary Get consultation timetable
28010
+ * @param {string} hospitalId
28011
+ * @param {string} id
28012
+ * @param {*} [options] Override http request option.
28013
+ * @throws {RequiredError}
28014
+ * @memberof HospitalsConsultationTimetablesApi
28015
+ */
28016
+ apiV1HospitalsHospitalIdConsultationtimetablesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableModel>>;
28017
+ /**
28018
+ *
28019
+ * @summary Update timetable item
28020
+ * @param {string} hospitalId
28021
+ * @param {string} id
28022
+ * @param {UpdateHospitalConsultationTimetableCommand} [updateHospitalConsultationTimetableCommand]
28023
+ * @param {*} [options] Override http request option.
28024
+ * @throws {RequiredError}
28025
+ * @memberof HospitalsConsultationTimetablesApi
28026
+ */
28027
+ apiV1HospitalsHospitalIdConsultationtimetablesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableCommand?: UpdateHospitalConsultationTimetableCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableModel>>;
28028
+ /**
28029
+ *
28030
+ * @summary Create timetable item
28031
+ * @param {string} hospitalId
28032
+ * @param {CreateHospitalConsultationTimetableCommand} [createHospitalConsultationTimetableCommand]
28033
+ * @param {*} [options] Override http request option.
28034
+ * @throws {RequiredError}
28035
+ * @memberof HospitalsConsultationTimetablesApi
28036
+ */
28037
+ apiV1HospitalsHospitalIdConsultationtimetablesPost(hospitalId: string, createHospitalConsultationTimetableCommand?: CreateHospitalConsultationTimetableCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableModel>>;
28038
+ }
26892
28039
  /**
26893
28040
  * ImagesApi - axios parameter creator
26894
28041
  * @export