ch-admin-api-client-typescript 4.3.9 → 4.4.0
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 +1104 -47
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1242 -1
- package/package.json +1 -1
- package/src/api.ts +1603 -0
package/lib/api.d.ts
CHANGED
|
@@ -1089,6 +1089,218 @@ export interface AuditableEntity {
|
|
|
1089
1089
|
*/
|
|
1090
1090
|
'isDeleted'?: boolean;
|
|
1091
1091
|
}
|
|
1092
|
+
/**
|
|
1093
|
+
*
|
|
1094
|
+
* @export
|
|
1095
|
+
* @interface BatchAddHospitalConsultationTimetableModel
|
|
1096
|
+
*/
|
|
1097
|
+
export interface BatchAddHospitalConsultationTimetableModel {
|
|
1098
|
+
/**
|
|
1099
|
+
*
|
|
1100
|
+
* @type {DayOfWeek}
|
|
1101
|
+
* @memberof BatchAddHospitalConsultationTimetableModel
|
|
1102
|
+
*/
|
|
1103
|
+
'dayOfWeek'?: DayOfWeek;
|
|
1104
|
+
/**
|
|
1105
|
+
*
|
|
1106
|
+
* @type {string}
|
|
1107
|
+
* @memberof BatchAddHospitalConsultationTimetableModel
|
|
1108
|
+
*/
|
|
1109
|
+
'start'?: string | null;
|
|
1110
|
+
/**
|
|
1111
|
+
*
|
|
1112
|
+
* @type {string}
|
|
1113
|
+
* @memberof BatchAddHospitalConsultationTimetableModel
|
|
1114
|
+
*/
|
|
1115
|
+
'end'?: string | null;
|
|
1116
|
+
}
|
|
1117
|
+
/**
|
|
1118
|
+
*
|
|
1119
|
+
* @export
|
|
1120
|
+
* @interface BatchAddHospitalConsultationTimetableOverrideModel
|
|
1121
|
+
*/
|
|
1122
|
+
export interface BatchAddHospitalConsultationTimetableOverrideModel {
|
|
1123
|
+
/**
|
|
1124
|
+
*
|
|
1125
|
+
* @type {Date}
|
|
1126
|
+
* @memberof BatchAddHospitalConsultationTimetableOverrideModel
|
|
1127
|
+
*/
|
|
1128
|
+
'date'?: Date;
|
|
1129
|
+
/**
|
|
1130
|
+
*
|
|
1131
|
+
* @type {string}
|
|
1132
|
+
* @memberof BatchAddHospitalConsultationTimetableOverrideModel
|
|
1133
|
+
*/
|
|
1134
|
+
'start'?: string | null;
|
|
1135
|
+
/**
|
|
1136
|
+
*
|
|
1137
|
+
* @type {string}
|
|
1138
|
+
* @memberof BatchAddHospitalConsultationTimetableOverrideModel
|
|
1139
|
+
*/
|
|
1140
|
+
'end'?: string | null;
|
|
1141
|
+
}
|
|
1142
|
+
/**
|
|
1143
|
+
*
|
|
1144
|
+
* @export
|
|
1145
|
+
* @interface BatchHospitalConsultationTimetableOverridesCommand
|
|
1146
|
+
*/
|
|
1147
|
+
export interface BatchHospitalConsultationTimetableOverridesCommand {
|
|
1148
|
+
/**
|
|
1149
|
+
*
|
|
1150
|
+
* @type {Array<BatchAddHospitalConsultationTimetableOverrideModel>}
|
|
1151
|
+
* @memberof BatchHospitalConsultationTimetableOverridesCommand
|
|
1152
|
+
*/
|
|
1153
|
+
'adds'?: Array<BatchAddHospitalConsultationTimetableOverrideModel> | null;
|
|
1154
|
+
/**
|
|
1155
|
+
*
|
|
1156
|
+
* @type {Array<BatchUpdateHospitalConsultationTimetableOverrideModel>}
|
|
1157
|
+
* @memberof BatchHospitalConsultationTimetableOverridesCommand
|
|
1158
|
+
*/
|
|
1159
|
+
'updates'?: Array<BatchUpdateHospitalConsultationTimetableOverrideModel> | null;
|
|
1160
|
+
/**
|
|
1161
|
+
*
|
|
1162
|
+
* @type {Array<string>}
|
|
1163
|
+
* @memberof BatchHospitalConsultationTimetableOverridesCommand
|
|
1164
|
+
*/
|
|
1165
|
+
'deletes'?: Array<string> | null;
|
|
1166
|
+
}
|
|
1167
|
+
/**
|
|
1168
|
+
*
|
|
1169
|
+
* @export
|
|
1170
|
+
* @interface BatchHospitalConsultationTimetableOverridesResultModel
|
|
1171
|
+
*/
|
|
1172
|
+
export interface BatchHospitalConsultationTimetableOverridesResultModel {
|
|
1173
|
+
/**
|
|
1174
|
+
*
|
|
1175
|
+
* @type {Array<HospitalConsultationTimetableOverrideModel>}
|
|
1176
|
+
* @memberof BatchHospitalConsultationTimetableOverridesResultModel
|
|
1177
|
+
*/
|
|
1178
|
+
'adds'?: Array<HospitalConsultationTimetableOverrideModel> | null;
|
|
1179
|
+
/**
|
|
1180
|
+
*
|
|
1181
|
+
* @type {Array<HospitalConsultationTimetableOverrideModel>}
|
|
1182
|
+
* @memberof BatchHospitalConsultationTimetableOverridesResultModel
|
|
1183
|
+
*/
|
|
1184
|
+
'updates'?: Array<HospitalConsultationTimetableOverrideModel> | null;
|
|
1185
|
+
/**
|
|
1186
|
+
*
|
|
1187
|
+
* @type {Array<string>}
|
|
1188
|
+
* @memberof BatchHospitalConsultationTimetableOverridesResultModel
|
|
1189
|
+
*/
|
|
1190
|
+
'deletes'?: Array<string> | null;
|
|
1191
|
+
}
|
|
1192
|
+
/**
|
|
1193
|
+
*
|
|
1194
|
+
* @export
|
|
1195
|
+
* @interface BatchHospitalConsultationTimetableResultModel
|
|
1196
|
+
*/
|
|
1197
|
+
export interface BatchHospitalConsultationTimetableResultModel {
|
|
1198
|
+
/**
|
|
1199
|
+
*
|
|
1200
|
+
* @type {Array<HospitalConsultationTimetableModel>}
|
|
1201
|
+
* @memberof BatchHospitalConsultationTimetableResultModel
|
|
1202
|
+
*/
|
|
1203
|
+
'adds'?: Array<HospitalConsultationTimetableModel> | null;
|
|
1204
|
+
/**
|
|
1205
|
+
*
|
|
1206
|
+
* @type {Array<HospitalConsultationTimetableModel>}
|
|
1207
|
+
* @memberof BatchHospitalConsultationTimetableResultModel
|
|
1208
|
+
*/
|
|
1209
|
+
'updates'?: Array<HospitalConsultationTimetableModel> | null;
|
|
1210
|
+
/**
|
|
1211
|
+
*
|
|
1212
|
+
* @type {Array<string>}
|
|
1213
|
+
* @memberof BatchHospitalConsultationTimetableResultModel
|
|
1214
|
+
*/
|
|
1215
|
+
'deletes'?: Array<string> | null;
|
|
1216
|
+
}
|
|
1217
|
+
/**
|
|
1218
|
+
*
|
|
1219
|
+
* @export
|
|
1220
|
+
* @interface BatchHospitalConsultationTimetablesCommand
|
|
1221
|
+
*/
|
|
1222
|
+
export interface BatchHospitalConsultationTimetablesCommand {
|
|
1223
|
+
/**
|
|
1224
|
+
*
|
|
1225
|
+
* @type {Array<BatchAddHospitalConsultationTimetableModel>}
|
|
1226
|
+
* @memberof BatchHospitalConsultationTimetablesCommand
|
|
1227
|
+
*/
|
|
1228
|
+
'adds'?: Array<BatchAddHospitalConsultationTimetableModel> | null;
|
|
1229
|
+
/**
|
|
1230
|
+
*
|
|
1231
|
+
* @type {Array<BatchUpdateHospitalConsultationTimetableModel>}
|
|
1232
|
+
* @memberof BatchHospitalConsultationTimetablesCommand
|
|
1233
|
+
*/
|
|
1234
|
+
'updates'?: Array<BatchUpdateHospitalConsultationTimetableModel> | null;
|
|
1235
|
+
/**
|
|
1236
|
+
*
|
|
1237
|
+
* @type {Array<string>}
|
|
1238
|
+
* @memberof BatchHospitalConsultationTimetablesCommand
|
|
1239
|
+
*/
|
|
1240
|
+
'deletes'?: Array<string> | null;
|
|
1241
|
+
}
|
|
1242
|
+
/**
|
|
1243
|
+
*
|
|
1244
|
+
* @export
|
|
1245
|
+
* @interface BatchUpdateHospitalConsultationTimetableModel
|
|
1246
|
+
*/
|
|
1247
|
+
export interface BatchUpdateHospitalConsultationTimetableModel {
|
|
1248
|
+
/**
|
|
1249
|
+
*
|
|
1250
|
+
* @type {string}
|
|
1251
|
+
* @memberof BatchUpdateHospitalConsultationTimetableModel
|
|
1252
|
+
*/
|
|
1253
|
+
'id'?: string;
|
|
1254
|
+
/**
|
|
1255
|
+
*
|
|
1256
|
+
* @type {DayOfWeek}
|
|
1257
|
+
* @memberof BatchUpdateHospitalConsultationTimetableModel
|
|
1258
|
+
*/
|
|
1259
|
+
'dayOfWeek'?: DayOfWeek;
|
|
1260
|
+
/**
|
|
1261
|
+
*
|
|
1262
|
+
* @type {string}
|
|
1263
|
+
* @memberof BatchUpdateHospitalConsultationTimetableModel
|
|
1264
|
+
*/
|
|
1265
|
+
'start'?: string | null;
|
|
1266
|
+
/**
|
|
1267
|
+
*
|
|
1268
|
+
* @type {string}
|
|
1269
|
+
* @memberof BatchUpdateHospitalConsultationTimetableModel
|
|
1270
|
+
*/
|
|
1271
|
+
'end'?: string | null;
|
|
1272
|
+
}
|
|
1273
|
+
/**
|
|
1274
|
+
*
|
|
1275
|
+
* @export
|
|
1276
|
+
* @interface BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1277
|
+
*/
|
|
1278
|
+
export interface BatchUpdateHospitalConsultationTimetableOverrideModel {
|
|
1279
|
+
/**
|
|
1280
|
+
*
|
|
1281
|
+
* @type {Date}
|
|
1282
|
+
* @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1283
|
+
*/
|
|
1284
|
+
'date'?: Date;
|
|
1285
|
+
/**
|
|
1286
|
+
*
|
|
1287
|
+
* @type {string}
|
|
1288
|
+
* @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1289
|
+
*/
|
|
1290
|
+
'start'?: string | null;
|
|
1291
|
+
/**
|
|
1292
|
+
*
|
|
1293
|
+
* @type {string}
|
|
1294
|
+
* @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1295
|
+
*/
|
|
1296
|
+
'end'?: string | null;
|
|
1297
|
+
/**
|
|
1298
|
+
*
|
|
1299
|
+
* @type {string}
|
|
1300
|
+
* @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1301
|
+
*/
|
|
1302
|
+
'id'?: string;
|
|
1303
|
+
}
|
|
1092
1304
|
/**
|
|
1093
1305
|
*
|
|
1094
1306
|
* @export
|
|
@@ -4425,6 +4637,62 @@ export interface CreateHospitalCommand {
|
|
|
4425
4637
|
* @memberof CreateHospitalCommand
|
|
4426
4638
|
*/
|
|
4427
4639
|
'location'?: LocationModel;
|
|
4640
|
+
/**
|
|
4641
|
+
*
|
|
4642
|
+
* @type {HospitalConsultationOptionModel}
|
|
4643
|
+
* @memberof CreateHospitalCommand
|
|
4644
|
+
*/
|
|
4645
|
+
'consultationOption'?: HospitalConsultationOptionModel;
|
|
4646
|
+
}
|
|
4647
|
+
/**
|
|
4648
|
+
*
|
|
4649
|
+
* @export
|
|
4650
|
+
* @interface CreateHospitalConsultationTimetableCommand
|
|
4651
|
+
*/
|
|
4652
|
+
export interface CreateHospitalConsultationTimetableCommand {
|
|
4653
|
+
/**
|
|
4654
|
+
*
|
|
4655
|
+
* @type {DayOfWeek}
|
|
4656
|
+
* @memberof CreateHospitalConsultationTimetableCommand
|
|
4657
|
+
*/
|
|
4658
|
+
'dayOfWeek'?: DayOfWeek;
|
|
4659
|
+
/**
|
|
4660
|
+
*
|
|
4661
|
+
* @type {string}
|
|
4662
|
+
* @memberof CreateHospitalConsultationTimetableCommand
|
|
4663
|
+
*/
|
|
4664
|
+
'start'?: string | null;
|
|
4665
|
+
/**
|
|
4666
|
+
*
|
|
4667
|
+
* @type {string}
|
|
4668
|
+
* @memberof CreateHospitalConsultationTimetableCommand
|
|
4669
|
+
*/
|
|
4670
|
+
'end'?: string | null;
|
|
4671
|
+
}
|
|
4672
|
+
/**
|
|
4673
|
+
*
|
|
4674
|
+
* @export
|
|
4675
|
+
* @interface CreateHospitalConsultationTimetableOverrideCommand
|
|
4676
|
+
*/
|
|
4677
|
+
export interface CreateHospitalConsultationTimetableOverrideCommand {
|
|
4678
|
+
/**
|
|
4679
|
+
*
|
|
4680
|
+
* @type {Date}
|
|
4681
|
+
* @memberof CreateHospitalConsultationTimetableOverrideCommand
|
|
4682
|
+
*/
|
|
4683
|
+
'date'?: Date;
|
|
4684
|
+
/**
|
|
4685
|
+
*
|
|
4686
|
+
* @type {string}
|
|
4687
|
+
* @memberof CreateHospitalConsultationTimetableOverrideCommand
|
|
4688
|
+
*/
|
|
4689
|
+
'start'?: string | null;
|
|
4690
|
+
/**
|
|
4691
|
+
*
|
|
4692
|
+
* @type {string}
|
|
4693
|
+
* @memberof CreateHospitalConsultationTimetableOverrideCommand
|
|
4694
|
+
*/
|
|
4695
|
+
'end'?: string | null;
|
|
4428
4696
|
}
|
|
4429
4697
|
/**
|
|
4430
4698
|
*
|
|
@@ -5366,6 +5634,20 @@ export interface DashBoardModel {
|
|
|
5366
5634
|
*/
|
|
5367
5635
|
'totalHospitalsReleased'?: number;
|
|
5368
5636
|
}
|
|
5637
|
+
/**
|
|
5638
|
+
*
|
|
5639
|
+
* @export
|
|
5640
|
+
* @enum {string}
|
|
5641
|
+
*/
|
|
5642
|
+
export declare enum DayOfWeek {
|
|
5643
|
+
Sunday = "Sunday",
|
|
5644
|
+
Monday = "Monday",
|
|
5645
|
+
Tuesday = "Tuesday",
|
|
5646
|
+
Wednesday = "Wednesday",
|
|
5647
|
+
Thursday = "Thursday",
|
|
5648
|
+
Friday = "Friday",
|
|
5649
|
+
Saturday = "Saturday"
|
|
5650
|
+
}
|
|
5369
5651
|
/**
|
|
5370
5652
|
*
|
|
5371
5653
|
* @export
|
|
@@ -7684,114 +7966,301 @@ export interface HospitalAccreditationsModel {
|
|
|
7684
7966
|
/**
|
|
7685
7967
|
*
|
|
7686
7968
|
* @export
|
|
7687
|
-
* @interface
|
|
7969
|
+
* @interface HospitalConsultationOptionModel
|
|
7688
7970
|
*/
|
|
7689
|
-
export interface
|
|
7971
|
+
export interface HospitalConsultationOptionModel {
|
|
7690
7972
|
/**
|
|
7691
7973
|
*
|
|
7692
|
-
* @type {
|
|
7693
|
-
* @memberof
|
|
7974
|
+
* @type {boolean}
|
|
7975
|
+
* @memberof HospitalConsultationOptionModel
|
|
7694
7976
|
*/
|
|
7695
|
-
'
|
|
7977
|
+
'useTimetable'?: boolean;
|
|
7696
7978
|
/**
|
|
7697
7979
|
*
|
|
7698
|
-
* @type {
|
|
7699
|
-
* @memberof
|
|
7980
|
+
* @type {number}
|
|
7981
|
+
* @memberof HospitalConsultationOptionModel
|
|
7700
7982
|
*/
|
|
7701
|
-
'
|
|
7983
|
+
'beforeEventBufferMinutes'?: number | null;
|
|
7984
|
+
/**
|
|
7985
|
+
*
|
|
7986
|
+
* @type {number}
|
|
7987
|
+
* @memberof HospitalConsultationOptionModel
|
|
7988
|
+
*/
|
|
7989
|
+
'afterEventBufferMinutes'?: number | null;
|
|
7990
|
+
}
|
|
7991
|
+
/**
|
|
7992
|
+
*
|
|
7993
|
+
* @export
|
|
7994
|
+
* @interface HospitalConsultationTimetableItemModel
|
|
7995
|
+
*/
|
|
7996
|
+
export interface HospitalConsultationTimetableItemModel {
|
|
7702
7997
|
/**
|
|
7703
7998
|
*
|
|
7704
7999
|
* @type {string}
|
|
7705
|
-
* @memberof
|
|
8000
|
+
* @memberof HospitalConsultationTimetableItemModel
|
|
7706
8001
|
*/
|
|
7707
|
-
'
|
|
8002
|
+
'id'?: string;
|
|
7708
8003
|
/**
|
|
7709
8004
|
*
|
|
7710
|
-
* @type {
|
|
7711
|
-
* @memberof
|
|
8005
|
+
* @type {DayOfWeek}
|
|
8006
|
+
* @memberof HospitalConsultationTimetableItemModel
|
|
7712
8007
|
*/
|
|
7713
|
-
'
|
|
8008
|
+
'dayOfWeek'?: DayOfWeek;
|
|
7714
8009
|
/**
|
|
7715
8010
|
*
|
|
7716
|
-
* @type {
|
|
7717
|
-
* @memberof
|
|
8011
|
+
* @type {string}
|
|
8012
|
+
* @memberof HospitalConsultationTimetableItemModel
|
|
7718
8013
|
*/
|
|
7719
|
-
'
|
|
8014
|
+
'start'?: string | null;
|
|
8015
|
+
/**
|
|
8016
|
+
*
|
|
8017
|
+
* @type {string}
|
|
8018
|
+
* @memberof HospitalConsultationTimetableItemModel
|
|
8019
|
+
*/
|
|
8020
|
+
'end'?: string | null;
|
|
7720
8021
|
}
|
|
7721
8022
|
/**
|
|
7722
8023
|
*
|
|
7723
8024
|
* @export
|
|
7724
|
-
* @interface
|
|
8025
|
+
* @interface HospitalConsultationTimetableModel
|
|
7725
8026
|
*/
|
|
7726
|
-
export interface
|
|
8027
|
+
export interface HospitalConsultationTimetableModel {
|
|
7727
8028
|
/**
|
|
7728
8029
|
*
|
|
7729
8030
|
* @type {string}
|
|
7730
|
-
* @memberof
|
|
8031
|
+
* @memberof HospitalConsultationTimetableModel
|
|
7731
8032
|
*/
|
|
7732
8033
|
'id'?: string;
|
|
7733
8034
|
/**
|
|
7734
8035
|
*
|
|
7735
|
-
* @type {
|
|
7736
|
-
* @memberof
|
|
8036
|
+
* @type {DayOfWeek}
|
|
8037
|
+
* @memberof HospitalConsultationTimetableModel
|
|
7737
8038
|
*/
|
|
7738
|
-
'
|
|
8039
|
+
'dayOfWeek'?: DayOfWeek;
|
|
7739
8040
|
/**
|
|
7740
8041
|
*
|
|
7741
8042
|
* @type {string}
|
|
7742
|
-
* @memberof
|
|
7743
|
-
*/
|
|
7744
|
-
'description'?: string | null;
|
|
7745
|
-
/**
|
|
7746
|
-
*
|
|
7747
|
-
* @type {Array<MediaModel>}
|
|
7748
|
-
* @memberof HospitalEquipmentModel
|
|
8043
|
+
* @memberof HospitalConsultationTimetableModel
|
|
7749
8044
|
*/
|
|
7750
|
-
'
|
|
8045
|
+
'start'?: string | null;
|
|
7751
8046
|
/**
|
|
7752
8047
|
*
|
|
7753
|
-
* @type {
|
|
7754
|
-
* @memberof
|
|
8048
|
+
* @type {string}
|
|
8049
|
+
* @memberof HospitalConsultationTimetableModel
|
|
7755
8050
|
*/
|
|
7756
|
-
'
|
|
8051
|
+
'end'?: string | null;
|
|
7757
8052
|
}
|
|
7758
8053
|
/**
|
|
7759
8054
|
*
|
|
7760
8055
|
* @export
|
|
7761
|
-
* @interface
|
|
8056
|
+
* @interface HospitalConsultationTimetableOverrideItemModel
|
|
7762
8057
|
*/
|
|
7763
|
-
export interface
|
|
8058
|
+
export interface HospitalConsultationTimetableOverrideItemModel {
|
|
7764
8059
|
/**
|
|
7765
8060
|
*
|
|
7766
|
-
* @type {
|
|
7767
|
-
* @memberof
|
|
8061
|
+
* @type {string}
|
|
8062
|
+
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
7768
8063
|
*/
|
|
7769
|
-
'
|
|
8064
|
+
'id'?: string;
|
|
7770
8065
|
/**
|
|
7771
8066
|
*
|
|
7772
|
-
* @type {
|
|
7773
|
-
* @memberof
|
|
8067
|
+
* @type {Date}
|
|
8068
|
+
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
7774
8069
|
*/
|
|
7775
|
-
'
|
|
8070
|
+
'date'?: Date;
|
|
8071
|
+
/**
|
|
8072
|
+
*
|
|
8073
|
+
* @type {string}
|
|
8074
|
+
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
8075
|
+
*/
|
|
8076
|
+
'start'?: string | null;
|
|
8077
|
+
/**
|
|
8078
|
+
*
|
|
8079
|
+
* @type {string}
|
|
8080
|
+
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
8081
|
+
*/
|
|
8082
|
+
'end'?: string | null;
|
|
7776
8083
|
}
|
|
7777
8084
|
/**
|
|
7778
8085
|
*
|
|
7779
8086
|
* @export
|
|
7780
|
-
* @interface
|
|
8087
|
+
* @interface HospitalConsultationTimetableOverrideModel
|
|
7781
8088
|
*/
|
|
7782
|
-
export interface
|
|
8089
|
+
export interface HospitalConsultationTimetableOverrideModel {
|
|
7783
8090
|
/**
|
|
7784
8091
|
*
|
|
7785
8092
|
* @type {string}
|
|
7786
|
-
* @memberof
|
|
8093
|
+
* @memberof HospitalConsultationTimetableOverrideModel
|
|
7787
8094
|
*/
|
|
7788
8095
|
'id'?: string;
|
|
7789
8096
|
/**
|
|
7790
8097
|
*
|
|
7791
|
-
* @type {
|
|
7792
|
-
* @memberof
|
|
8098
|
+
* @type {Date}
|
|
8099
|
+
* @memberof HospitalConsultationTimetableOverrideModel
|
|
7793
8100
|
*/
|
|
7794
|
-
'
|
|
8101
|
+
'date'?: Date;
|
|
8102
|
+
/**
|
|
8103
|
+
*
|
|
8104
|
+
* @type {string}
|
|
8105
|
+
* @memberof HospitalConsultationTimetableOverrideModel
|
|
8106
|
+
*/
|
|
8107
|
+
'start'?: string | null;
|
|
8108
|
+
/**
|
|
8109
|
+
*
|
|
8110
|
+
* @type {string}
|
|
8111
|
+
* @memberof HospitalConsultationTimetableOverrideModel
|
|
8112
|
+
*/
|
|
8113
|
+
'end'?: string | null;
|
|
8114
|
+
}
|
|
8115
|
+
/**
|
|
8116
|
+
*
|
|
8117
|
+
* @export
|
|
8118
|
+
* @interface HospitalConsultationTimetableOverridesModel
|
|
8119
|
+
*/
|
|
8120
|
+
export interface HospitalConsultationTimetableOverridesModel {
|
|
8121
|
+
/**
|
|
8122
|
+
*
|
|
8123
|
+
* @type {Array<HospitalConsultationTimetableOverrideItemModel>}
|
|
8124
|
+
* @memberof HospitalConsultationTimetableOverridesModel
|
|
8125
|
+
*/
|
|
8126
|
+
'items'?: Array<HospitalConsultationTimetableOverrideItemModel> | null;
|
|
8127
|
+
/**
|
|
8128
|
+
*
|
|
8129
|
+
* @type {PagedListMetaData}
|
|
8130
|
+
* @memberof HospitalConsultationTimetableOverridesModel
|
|
8131
|
+
*/
|
|
8132
|
+
'metaData'?: PagedListMetaData;
|
|
8133
|
+
}
|
|
8134
|
+
/**
|
|
8135
|
+
*
|
|
8136
|
+
* @export
|
|
8137
|
+
* @interface HospitalConsultationTimetablesModel
|
|
8138
|
+
*/
|
|
8139
|
+
export interface HospitalConsultationTimetablesModel {
|
|
8140
|
+
/**
|
|
8141
|
+
*
|
|
8142
|
+
* @type {Array<HospitalConsultationTimetableItemModel>}
|
|
8143
|
+
* @memberof HospitalConsultationTimetablesModel
|
|
8144
|
+
*/
|
|
8145
|
+
'items'?: Array<HospitalConsultationTimetableItemModel> | null;
|
|
8146
|
+
/**
|
|
8147
|
+
*
|
|
8148
|
+
* @type {PagedListMetaData}
|
|
8149
|
+
* @memberof HospitalConsultationTimetablesModel
|
|
8150
|
+
*/
|
|
8151
|
+
'metaData'?: PagedListMetaData;
|
|
8152
|
+
}
|
|
8153
|
+
/**
|
|
8154
|
+
*
|
|
8155
|
+
* @export
|
|
8156
|
+
* @interface HospitalEquipmentItemModel
|
|
8157
|
+
*/
|
|
8158
|
+
export interface HospitalEquipmentItemModel {
|
|
8159
|
+
/**
|
|
8160
|
+
*
|
|
8161
|
+
* @type {string}
|
|
8162
|
+
* @memberof HospitalEquipmentItemModel
|
|
8163
|
+
*/
|
|
8164
|
+
'id'?: string;
|
|
8165
|
+
/**
|
|
8166
|
+
*
|
|
8167
|
+
* @type {string}
|
|
8168
|
+
* @memberof HospitalEquipmentItemModel
|
|
8169
|
+
*/
|
|
8170
|
+
'name'?: string | null;
|
|
8171
|
+
/**
|
|
8172
|
+
*
|
|
8173
|
+
* @type {string}
|
|
8174
|
+
* @memberof HospitalEquipmentItemModel
|
|
8175
|
+
*/
|
|
8176
|
+
'description'?: string | null;
|
|
8177
|
+
/**
|
|
8178
|
+
*
|
|
8179
|
+
* @type {Array<MediaModel>}
|
|
8180
|
+
* @memberof HospitalEquipmentItemModel
|
|
8181
|
+
*/
|
|
8182
|
+
'medias'?: Array<MediaModel> | null;
|
|
8183
|
+
/**
|
|
8184
|
+
*
|
|
8185
|
+
* @type {AuditableEntity}
|
|
8186
|
+
* @memberof HospitalEquipmentItemModel
|
|
8187
|
+
*/
|
|
8188
|
+
'auditableEntity'?: AuditableEntity;
|
|
8189
|
+
}
|
|
8190
|
+
/**
|
|
8191
|
+
*
|
|
8192
|
+
* @export
|
|
8193
|
+
* @interface HospitalEquipmentModel
|
|
8194
|
+
*/
|
|
8195
|
+
export interface HospitalEquipmentModel {
|
|
8196
|
+
/**
|
|
8197
|
+
*
|
|
8198
|
+
* @type {string}
|
|
8199
|
+
* @memberof HospitalEquipmentModel
|
|
8200
|
+
*/
|
|
8201
|
+
'id'?: string;
|
|
8202
|
+
/**
|
|
8203
|
+
*
|
|
8204
|
+
* @type {string}
|
|
8205
|
+
* @memberof HospitalEquipmentModel
|
|
8206
|
+
*/
|
|
8207
|
+
'name'?: string | null;
|
|
8208
|
+
/**
|
|
8209
|
+
*
|
|
8210
|
+
* @type {string}
|
|
8211
|
+
* @memberof HospitalEquipmentModel
|
|
8212
|
+
*/
|
|
8213
|
+
'description'?: string | null;
|
|
8214
|
+
/**
|
|
8215
|
+
*
|
|
8216
|
+
* @type {Array<MediaModel>}
|
|
8217
|
+
* @memberof HospitalEquipmentModel
|
|
8218
|
+
*/
|
|
8219
|
+
'medias'?: Array<MediaModel> | null;
|
|
8220
|
+
/**
|
|
8221
|
+
*
|
|
8222
|
+
* @type {AuditableEntity}
|
|
8223
|
+
* @memberof HospitalEquipmentModel
|
|
8224
|
+
*/
|
|
8225
|
+
'auditableEntity'?: AuditableEntity;
|
|
8226
|
+
}
|
|
8227
|
+
/**
|
|
8228
|
+
*
|
|
8229
|
+
* @export
|
|
8230
|
+
* @interface HospitalEquipmentsModel
|
|
8231
|
+
*/
|
|
8232
|
+
export interface HospitalEquipmentsModel {
|
|
8233
|
+
/**
|
|
8234
|
+
*
|
|
8235
|
+
* @type {Array<HospitalEquipmentItemModel>}
|
|
8236
|
+
* @memberof HospitalEquipmentsModel
|
|
8237
|
+
*/
|
|
8238
|
+
'items'?: Array<HospitalEquipmentItemModel> | null;
|
|
8239
|
+
/**
|
|
8240
|
+
*
|
|
8241
|
+
* @type {PagedListMetaData}
|
|
8242
|
+
* @memberof HospitalEquipmentsModel
|
|
8243
|
+
*/
|
|
8244
|
+
'metaData'?: PagedListMetaData;
|
|
8245
|
+
}
|
|
8246
|
+
/**
|
|
8247
|
+
*
|
|
8248
|
+
* @export
|
|
8249
|
+
* @interface HospitalEvaluationItemModel
|
|
8250
|
+
*/
|
|
8251
|
+
export interface HospitalEvaluationItemModel {
|
|
8252
|
+
/**
|
|
8253
|
+
*
|
|
8254
|
+
* @type {string}
|
|
8255
|
+
* @memberof HospitalEvaluationItemModel
|
|
8256
|
+
*/
|
|
8257
|
+
'id'?: string;
|
|
8258
|
+
/**
|
|
8259
|
+
*
|
|
8260
|
+
* @type {string}
|
|
8261
|
+
* @memberof HospitalEvaluationItemModel
|
|
8262
|
+
*/
|
|
8263
|
+
'name'?: string | null;
|
|
7795
8264
|
/**
|
|
7796
8265
|
*
|
|
7797
8266
|
* @type {number}
|
|
@@ -7975,6 +8444,12 @@ export interface HospitalItemModel {
|
|
|
7975
8444
|
* @memberof HospitalItemModel
|
|
7976
8445
|
*/
|
|
7977
8446
|
'auditableEntity'?: AuditableEntity;
|
|
8447
|
+
/**
|
|
8448
|
+
*
|
|
8449
|
+
* @type {HospitalConsultationOptionModel}
|
|
8450
|
+
* @memberof HospitalItemModel
|
|
8451
|
+
*/
|
|
8452
|
+
'consultationOption'?: HospitalConsultationOptionModel;
|
|
7978
8453
|
}
|
|
7979
8454
|
/**
|
|
7980
8455
|
*
|
|
@@ -8122,6 +8597,12 @@ export interface HospitalModel {
|
|
|
8122
8597
|
* @memberof HospitalModel
|
|
8123
8598
|
*/
|
|
8124
8599
|
'auditableEntity'?: AuditableEntity;
|
|
8600
|
+
/**
|
|
8601
|
+
*
|
|
8602
|
+
* @type {HospitalConsultationOptionModel}
|
|
8603
|
+
* @memberof HospitalModel
|
|
8604
|
+
*/
|
|
8605
|
+
'consultationOption'?: HospitalConsultationOptionModel;
|
|
8125
8606
|
/**
|
|
8126
8607
|
*
|
|
8127
8608
|
* @type {string}
|
|
@@ -13626,6 +14107,62 @@ export interface UpdateHospitalCommand {
|
|
|
13626
14107
|
* @memberof UpdateHospitalCommand
|
|
13627
14108
|
*/
|
|
13628
14109
|
'location'?: LocationModel;
|
|
14110
|
+
/**
|
|
14111
|
+
*
|
|
14112
|
+
* @type {HospitalConsultationOptionModel}
|
|
14113
|
+
* @memberof UpdateHospitalCommand
|
|
14114
|
+
*/
|
|
14115
|
+
'consultationOption'?: HospitalConsultationOptionModel;
|
|
14116
|
+
}
|
|
14117
|
+
/**
|
|
14118
|
+
*
|
|
14119
|
+
* @export
|
|
14120
|
+
* @interface UpdateHospitalConsultationTimetableCommand
|
|
14121
|
+
*/
|
|
14122
|
+
export interface UpdateHospitalConsultationTimetableCommand {
|
|
14123
|
+
/**
|
|
14124
|
+
*
|
|
14125
|
+
* @type {DayOfWeek}
|
|
14126
|
+
* @memberof UpdateHospitalConsultationTimetableCommand
|
|
14127
|
+
*/
|
|
14128
|
+
'dayOfWeek'?: DayOfWeek;
|
|
14129
|
+
/**
|
|
14130
|
+
*
|
|
14131
|
+
* @type {string}
|
|
14132
|
+
* @memberof UpdateHospitalConsultationTimetableCommand
|
|
14133
|
+
*/
|
|
14134
|
+
'start'?: string | null;
|
|
14135
|
+
/**
|
|
14136
|
+
*
|
|
14137
|
+
* @type {string}
|
|
14138
|
+
* @memberof UpdateHospitalConsultationTimetableCommand
|
|
14139
|
+
*/
|
|
14140
|
+
'end'?: string | null;
|
|
14141
|
+
}
|
|
14142
|
+
/**
|
|
14143
|
+
*
|
|
14144
|
+
* @export
|
|
14145
|
+
* @interface UpdateHospitalConsultationTimetableOverrideCommand
|
|
14146
|
+
*/
|
|
14147
|
+
export interface UpdateHospitalConsultationTimetableOverrideCommand {
|
|
14148
|
+
/**
|
|
14149
|
+
*
|
|
14150
|
+
* @type {Date}
|
|
14151
|
+
* @memberof UpdateHospitalConsultationTimetableOverrideCommand
|
|
14152
|
+
*/
|
|
14153
|
+
'date'?: Date;
|
|
14154
|
+
/**
|
|
14155
|
+
*
|
|
14156
|
+
* @type {string}
|
|
14157
|
+
* @memberof UpdateHospitalConsultationTimetableOverrideCommand
|
|
14158
|
+
*/
|
|
14159
|
+
'start'?: string | null;
|
|
14160
|
+
/**
|
|
14161
|
+
*
|
|
14162
|
+
* @type {string}
|
|
14163
|
+
* @memberof UpdateHospitalConsultationTimetableOverrideCommand
|
|
14164
|
+
*/
|
|
14165
|
+
'end'?: string | null;
|
|
13629
14166
|
}
|
|
13630
14167
|
/**
|
|
13631
14168
|
*
|
|
@@ -26889,6 +27426,526 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
26889
27426
|
*/
|
|
26890
27427
|
apiV1HospitalsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
26891
27428
|
}
|
|
27429
|
+
/**
|
|
27430
|
+
* HospitalsConsultationTimetableOverridesApi - axios parameter creator
|
|
27431
|
+
* @export
|
|
27432
|
+
*/
|
|
27433
|
+
export declare const HospitalsConsultationTimetableOverridesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
27434
|
+
/**
|
|
27435
|
+
*
|
|
27436
|
+
* @summary Add, Update and Delete item at once
|
|
27437
|
+
* @param {string} hospitalId
|
|
27438
|
+
* @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
|
|
27439
|
+
* @param {*} [options] Override http request option.
|
|
27440
|
+
* @throws {RequiredError}
|
|
27441
|
+
*/
|
|
27442
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost: (hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27443
|
+
/**
|
|
27444
|
+
*
|
|
27445
|
+
* @summary Get consultation timetable override items
|
|
27446
|
+
* @param {string} hospitalId
|
|
27447
|
+
* @param {number} [page]
|
|
27448
|
+
* @param {number} [limit]
|
|
27449
|
+
* @param {Date} [lastRetrieved]
|
|
27450
|
+
* @param {*} [options] Override http request option.
|
|
27451
|
+
* @throws {RequiredError}
|
|
27452
|
+
*/
|
|
27453
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet: (hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27454
|
+
/**
|
|
27455
|
+
*
|
|
27456
|
+
* @summary Delete timetable item
|
|
27457
|
+
* @param {string} hospitalId
|
|
27458
|
+
* @param {string} id
|
|
27459
|
+
* @param {*} [options] Override http request option.
|
|
27460
|
+
* @throws {RequiredError}
|
|
27461
|
+
*/
|
|
27462
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27463
|
+
/**
|
|
27464
|
+
*
|
|
27465
|
+
* @summary Get consultation timetable override item
|
|
27466
|
+
* @param {string} hospitalId
|
|
27467
|
+
* @param {string} id
|
|
27468
|
+
* @param {*} [options] Override http request option.
|
|
27469
|
+
* @throws {RequiredError}
|
|
27470
|
+
*/
|
|
27471
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27472
|
+
/**
|
|
27473
|
+
*
|
|
27474
|
+
* @summary Update timetable item
|
|
27475
|
+
* @param {string} hospitalId
|
|
27476
|
+
* @param {string} id
|
|
27477
|
+
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
27478
|
+
* @param {*} [options] Override http request option.
|
|
27479
|
+
* @throws {RequiredError}
|
|
27480
|
+
*/
|
|
27481
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdPut: (hospitalId: string, id: string, updateHospitalConsultationTimetableOverrideCommand?: UpdateHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27482
|
+
/**
|
|
27483
|
+
*
|
|
27484
|
+
* @summary Create timetable itme
|
|
27485
|
+
* @param {string} hospitalId
|
|
27486
|
+
* @param {CreateHospitalConsultationTimetableOverrideCommand} [createHospitalConsultationTimetableOverrideCommand]
|
|
27487
|
+
* @param {*} [options] Override http request option.
|
|
27488
|
+
* @throws {RequiredError}
|
|
27489
|
+
*/
|
|
27490
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost: (hospitalId: string, createHospitalConsultationTimetableOverrideCommand?: CreateHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27491
|
+
};
|
|
27492
|
+
/**
|
|
27493
|
+
* HospitalsConsultationTimetableOverridesApi - functional programming interface
|
|
27494
|
+
* @export
|
|
27495
|
+
*/
|
|
27496
|
+
export declare const HospitalsConsultationTimetableOverridesApiFp: (configuration?: Configuration | undefined) => {
|
|
27497
|
+
/**
|
|
27498
|
+
*
|
|
27499
|
+
* @summary Add, Update and Delete item at once
|
|
27500
|
+
* @param {string} hospitalId
|
|
27501
|
+
* @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
|
|
27502
|
+
* @param {*} [options] Override http request option.
|
|
27503
|
+
* @throws {RequiredError}
|
|
27504
|
+
*/
|
|
27505
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost(hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BatchHospitalConsultationTimetableOverridesResultModel>>;
|
|
27506
|
+
/**
|
|
27507
|
+
*
|
|
27508
|
+
* @summary Get consultation timetable override items
|
|
27509
|
+
* @param {string} hospitalId
|
|
27510
|
+
* @param {number} [page]
|
|
27511
|
+
* @param {number} [limit]
|
|
27512
|
+
* @param {Date} [lastRetrieved]
|
|
27513
|
+
* @param {*} [options] Override http request option.
|
|
27514
|
+
* @throws {RequiredError}
|
|
27515
|
+
*/
|
|
27516
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverridesModel>>;
|
|
27517
|
+
/**
|
|
27518
|
+
*
|
|
27519
|
+
* @summary Delete timetable item
|
|
27520
|
+
* @param {string} hospitalId
|
|
27521
|
+
* @param {string} id
|
|
27522
|
+
* @param {*} [options] Override http request option.
|
|
27523
|
+
* @throws {RequiredError}
|
|
27524
|
+
*/
|
|
27525
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
27526
|
+
/**
|
|
27527
|
+
*
|
|
27528
|
+
* @summary Get consultation timetable override item
|
|
27529
|
+
* @param {string} hospitalId
|
|
27530
|
+
* @param {string} id
|
|
27531
|
+
* @param {*} [options] Override http request option.
|
|
27532
|
+
* @throws {RequiredError}
|
|
27533
|
+
*/
|
|
27534
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverrideModel>>;
|
|
27535
|
+
/**
|
|
27536
|
+
*
|
|
27537
|
+
* @summary Update timetable item
|
|
27538
|
+
* @param {string} hospitalId
|
|
27539
|
+
* @param {string} id
|
|
27540
|
+
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
27541
|
+
* @param {*} [options] Override http request option.
|
|
27542
|
+
* @throws {RequiredError}
|
|
27543
|
+
*/
|
|
27544
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableOverrideCommand?: UpdateHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverrideModel>>;
|
|
27545
|
+
/**
|
|
27546
|
+
*
|
|
27547
|
+
* @summary Create timetable itme
|
|
27548
|
+
* @param {string} hospitalId
|
|
27549
|
+
* @param {CreateHospitalConsultationTimetableOverrideCommand} [createHospitalConsultationTimetableOverrideCommand]
|
|
27550
|
+
* @param {*} [options] Override http request option.
|
|
27551
|
+
* @throws {RequiredError}
|
|
27552
|
+
*/
|
|
27553
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, createHospitalConsultationTimetableOverrideCommand?: CreateHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverrideModel>>;
|
|
27554
|
+
};
|
|
27555
|
+
/**
|
|
27556
|
+
* HospitalsConsultationTimetableOverridesApi - factory interface
|
|
27557
|
+
* @export
|
|
27558
|
+
*/
|
|
27559
|
+
export declare const HospitalsConsultationTimetableOverridesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
27560
|
+
/**
|
|
27561
|
+
*
|
|
27562
|
+
* @summary Add, Update and Delete item at once
|
|
27563
|
+
* @param {string} hospitalId
|
|
27564
|
+
* @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
|
|
27565
|
+
* @param {*} [options] Override http request option.
|
|
27566
|
+
* @throws {RequiredError}
|
|
27567
|
+
*/
|
|
27568
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost(hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand | undefined, options?: any): AxiosPromise<BatchHospitalConsultationTimetableOverridesResultModel>;
|
|
27569
|
+
/**
|
|
27570
|
+
*
|
|
27571
|
+
* @summary Get consultation timetable override items
|
|
27572
|
+
* @param {string} hospitalId
|
|
27573
|
+
* @param {number} [page]
|
|
27574
|
+
* @param {number} [limit]
|
|
27575
|
+
* @param {Date} [lastRetrieved]
|
|
27576
|
+
* @param {*} [options] Override http request option.
|
|
27577
|
+
* @throws {RequiredError}
|
|
27578
|
+
*/
|
|
27579
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableOverridesModel>;
|
|
27580
|
+
/**
|
|
27581
|
+
*
|
|
27582
|
+
* @summary Delete timetable item
|
|
27583
|
+
* @param {string} hospitalId
|
|
27584
|
+
* @param {string} id
|
|
27585
|
+
* @param {*} [options] Override http request option.
|
|
27586
|
+
* @throws {RequiredError}
|
|
27587
|
+
*/
|
|
27588
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete(hospitalId: string, id: string, options?: any): AxiosPromise<boolean>;
|
|
27589
|
+
/**
|
|
27590
|
+
*
|
|
27591
|
+
* @summary Get consultation timetable override item
|
|
27592
|
+
* @param {string} hospitalId
|
|
27593
|
+
* @param {string} id
|
|
27594
|
+
* @param {*} [options] Override http request option.
|
|
27595
|
+
* @throws {RequiredError}
|
|
27596
|
+
*/
|
|
27597
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalConsultationTimetableOverrideModel>;
|
|
27598
|
+
/**
|
|
27599
|
+
*
|
|
27600
|
+
* @summary Update timetable item
|
|
27601
|
+
* @param {string} hospitalId
|
|
27602
|
+
* @param {string} id
|
|
27603
|
+
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
27604
|
+
* @param {*} [options] Override http request option.
|
|
27605
|
+
* @throws {RequiredError}
|
|
27606
|
+
*/
|
|
27607
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableOverrideCommand?: UpdateHospitalConsultationTimetableOverrideCommand | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableOverrideModel>;
|
|
27608
|
+
/**
|
|
27609
|
+
*
|
|
27610
|
+
* @summary Create timetable itme
|
|
27611
|
+
* @param {string} hospitalId
|
|
27612
|
+
* @param {CreateHospitalConsultationTimetableOverrideCommand} [createHospitalConsultationTimetableOverrideCommand]
|
|
27613
|
+
* @param {*} [options] Override http request option.
|
|
27614
|
+
* @throws {RequiredError}
|
|
27615
|
+
*/
|
|
27616
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, createHospitalConsultationTimetableOverrideCommand?: CreateHospitalConsultationTimetableOverrideCommand | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableOverrideModel>;
|
|
27617
|
+
};
|
|
27618
|
+
/**
|
|
27619
|
+
* HospitalsConsultationTimetableOverridesApi - object-oriented interface
|
|
27620
|
+
* @export
|
|
27621
|
+
* @class HospitalsConsultationTimetableOverridesApi
|
|
27622
|
+
* @extends {BaseAPI}
|
|
27623
|
+
*/
|
|
27624
|
+
export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI {
|
|
27625
|
+
/**
|
|
27626
|
+
*
|
|
27627
|
+
* @summary Add, Update and Delete item at once
|
|
27628
|
+
* @param {string} hospitalId
|
|
27629
|
+
* @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
|
|
27630
|
+
* @param {*} [options] Override http request option.
|
|
27631
|
+
* @throws {RequiredError}
|
|
27632
|
+
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
27633
|
+
*/
|
|
27634
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost(hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchHospitalConsultationTimetableOverridesResultModel>>;
|
|
27635
|
+
/**
|
|
27636
|
+
*
|
|
27637
|
+
* @summary Get consultation timetable override items
|
|
27638
|
+
* @param {string} hospitalId
|
|
27639
|
+
* @param {number} [page]
|
|
27640
|
+
* @param {number} [limit]
|
|
27641
|
+
* @param {Date} [lastRetrieved]
|
|
27642
|
+
* @param {*} [options] Override http request option.
|
|
27643
|
+
* @throws {RequiredError}
|
|
27644
|
+
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
27645
|
+
*/
|
|
27646
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverridesModel>>;
|
|
27647
|
+
/**
|
|
27648
|
+
*
|
|
27649
|
+
* @summary Delete timetable item
|
|
27650
|
+
* @param {string} hospitalId
|
|
27651
|
+
* @param {string} id
|
|
27652
|
+
* @param {*} [options] Override http request option.
|
|
27653
|
+
* @throws {RequiredError}
|
|
27654
|
+
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
27655
|
+
*/
|
|
27656
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
27657
|
+
/**
|
|
27658
|
+
*
|
|
27659
|
+
* @summary Get consultation timetable override item
|
|
27660
|
+
* @param {string} hospitalId
|
|
27661
|
+
* @param {string} id
|
|
27662
|
+
* @param {*} [options] Override http request option.
|
|
27663
|
+
* @throws {RequiredError}
|
|
27664
|
+
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
27665
|
+
*/
|
|
27666
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverrideModel>>;
|
|
27667
|
+
/**
|
|
27668
|
+
*
|
|
27669
|
+
* @summary Update timetable item
|
|
27670
|
+
* @param {string} hospitalId
|
|
27671
|
+
* @param {string} id
|
|
27672
|
+
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
27673
|
+
* @param {*} [options] Override http request option.
|
|
27674
|
+
* @throws {RequiredError}
|
|
27675
|
+
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
27676
|
+
*/
|
|
27677
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableOverrideCommand?: UpdateHospitalConsultationTimetableOverrideCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverrideModel>>;
|
|
27678
|
+
/**
|
|
27679
|
+
*
|
|
27680
|
+
* @summary Create timetable itme
|
|
27681
|
+
* @param {string} hospitalId
|
|
27682
|
+
* @param {CreateHospitalConsultationTimetableOverrideCommand} [createHospitalConsultationTimetableOverrideCommand]
|
|
27683
|
+
* @param {*} [options] Override http request option.
|
|
27684
|
+
* @throws {RequiredError}
|
|
27685
|
+
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
27686
|
+
*/
|
|
27687
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, createHospitalConsultationTimetableOverrideCommand?: CreateHospitalConsultationTimetableOverrideCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverrideModel>>;
|
|
27688
|
+
}
|
|
27689
|
+
/**
|
|
27690
|
+
* HospitalsConsultationTimetablesApi - axios parameter creator
|
|
27691
|
+
* @export
|
|
27692
|
+
*/
|
|
27693
|
+
export declare const HospitalsConsultationTimetablesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
27694
|
+
/**
|
|
27695
|
+
*
|
|
27696
|
+
* @summary Add, Update and Delete item at once
|
|
27697
|
+
* @param {string} hospitalId
|
|
27698
|
+
* @param {BatchHospitalConsultationTimetablesCommand} [batchHospitalConsultationTimetablesCommand]
|
|
27699
|
+
* @param {*} [options] Override http request option.
|
|
27700
|
+
* @throws {RequiredError}
|
|
27701
|
+
*/
|
|
27702
|
+
apiV1HospitalsHospitalIdConsultationtimetablesBatchPost: (hospitalId: string, batchHospitalConsultationTimetablesCommand?: BatchHospitalConsultationTimetablesCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27703
|
+
/**
|
|
27704
|
+
*
|
|
27705
|
+
* @summary Get consultation timetables
|
|
27706
|
+
* @param {string} hospitalId
|
|
27707
|
+
* @param {number} [page]
|
|
27708
|
+
* @param {number} [limit]
|
|
27709
|
+
* @param {Date} [lastRetrieved]
|
|
27710
|
+
* @param {*} [options] Override http request option.
|
|
27711
|
+
* @throws {RequiredError}
|
|
27712
|
+
*/
|
|
27713
|
+
apiV1HospitalsHospitalIdConsultationtimetablesGet: (hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27714
|
+
/**
|
|
27715
|
+
*
|
|
27716
|
+
* @summary Delete timetable item
|
|
27717
|
+
* @param {string} hospitalId
|
|
27718
|
+
* @param {string} id
|
|
27719
|
+
* @param {*} [options] Override http request option.
|
|
27720
|
+
* @throws {RequiredError}
|
|
27721
|
+
*/
|
|
27722
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdDelete: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27723
|
+
/**
|
|
27724
|
+
*
|
|
27725
|
+
* @summary Get consultation timetable
|
|
27726
|
+
* @param {string} hospitalId
|
|
27727
|
+
* @param {string} id
|
|
27728
|
+
* @param {*} [options] Override http request option.
|
|
27729
|
+
* @throws {RequiredError}
|
|
27730
|
+
*/
|
|
27731
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdGet: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27732
|
+
/**
|
|
27733
|
+
*
|
|
27734
|
+
* @summary Update timetable item
|
|
27735
|
+
* @param {string} hospitalId
|
|
27736
|
+
* @param {string} id
|
|
27737
|
+
* @param {UpdateHospitalConsultationTimetableCommand} [updateHospitalConsultationTimetableCommand]
|
|
27738
|
+
* @param {*} [options] Override http request option.
|
|
27739
|
+
* @throws {RequiredError}
|
|
27740
|
+
*/
|
|
27741
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdPut: (hospitalId: string, id: string, updateHospitalConsultationTimetableCommand?: UpdateHospitalConsultationTimetableCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27742
|
+
/**
|
|
27743
|
+
*
|
|
27744
|
+
* @summary Create timetable item
|
|
27745
|
+
* @param {string} hospitalId
|
|
27746
|
+
* @param {CreateHospitalConsultationTimetableCommand} [createHospitalConsultationTimetableCommand]
|
|
27747
|
+
* @param {*} [options] Override http request option.
|
|
27748
|
+
* @throws {RequiredError}
|
|
27749
|
+
*/
|
|
27750
|
+
apiV1HospitalsHospitalIdConsultationtimetablesPost: (hospitalId: string, createHospitalConsultationTimetableCommand?: CreateHospitalConsultationTimetableCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27751
|
+
};
|
|
27752
|
+
/**
|
|
27753
|
+
* HospitalsConsultationTimetablesApi - functional programming interface
|
|
27754
|
+
* @export
|
|
27755
|
+
*/
|
|
27756
|
+
export declare const HospitalsConsultationTimetablesApiFp: (configuration?: Configuration | undefined) => {
|
|
27757
|
+
/**
|
|
27758
|
+
*
|
|
27759
|
+
* @summary Add, Update and Delete item at once
|
|
27760
|
+
* @param {string} hospitalId
|
|
27761
|
+
* @param {BatchHospitalConsultationTimetablesCommand} [batchHospitalConsultationTimetablesCommand]
|
|
27762
|
+
* @param {*} [options] Override http request option.
|
|
27763
|
+
* @throws {RequiredError}
|
|
27764
|
+
*/
|
|
27765
|
+
apiV1HospitalsHospitalIdConsultationtimetablesBatchPost(hospitalId: string, batchHospitalConsultationTimetablesCommand?: BatchHospitalConsultationTimetablesCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BatchHospitalConsultationTimetableResultModel>>;
|
|
27766
|
+
/**
|
|
27767
|
+
*
|
|
27768
|
+
* @summary Get consultation timetables
|
|
27769
|
+
* @param {string} hospitalId
|
|
27770
|
+
* @param {number} [page]
|
|
27771
|
+
* @param {number} [limit]
|
|
27772
|
+
* @param {Date} [lastRetrieved]
|
|
27773
|
+
* @param {*} [options] Override http request option.
|
|
27774
|
+
* @throws {RequiredError}
|
|
27775
|
+
*/
|
|
27776
|
+
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetablesModel>>;
|
|
27777
|
+
/**
|
|
27778
|
+
*
|
|
27779
|
+
* @summary Delete timetable item
|
|
27780
|
+
* @param {string} hospitalId
|
|
27781
|
+
* @param {string} id
|
|
27782
|
+
* @param {*} [options] Override http request option.
|
|
27783
|
+
* @throws {RequiredError}
|
|
27784
|
+
*/
|
|
27785
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableModel>>;
|
|
27786
|
+
/**
|
|
27787
|
+
*
|
|
27788
|
+
* @summary Get consultation timetable
|
|
27789
|
+
* @param {string} hospitalId
|
|
27790
|
+
* @param {string} id
|
|
27791
|
+
* @param {*} [options] Override http request option.
|
|
27792
|
+
* @throws {RequiredError}
|
|
27793
|
+
*/
|
|
27794
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableModel>>;
|
|
27795
|
+
/**
|
|
27796
|
+
*
|
|
27797
|
+
* @summary Update timetable item
|
|
27798
|
+
* @param {string} hospitalId
|
|
27799
|
+
* @param {string} id
|
|
27800
|
+
* @param {UpdateHospitalConsultationTimetableCommand} [updateHospitalConsultationTimetableCommand]
|
|
27801
|
+
* @param {*} [options] Override http request option.
|
|
27802
|
+
* @throws {RequiredError}
|
|
27803
|
+
*/
|
|
27804
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableCommand?: UpdateHospitalConsultationTimetableCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableModel>>;
|
|
27805
|
+
/**
|
|
27806
|
+
*
|
|
27807
|
+
* @summary Create timetable item
|
|
27808
|
+
* @param {string} hospitalId
|
|
27809
|
+
* @param {CreateHospitalConsultationTimetableCommand} [createHospitalConsultationTimetableCommand]
|
|
27810
|
+
* @param {*} [options] Override http request option.
|
|
27811
|
+
* @throws {RequiredError}
|
|
27812
|
+
*/
|
|
27813
|
+
apiV1HospitalsHospitalIdConsultationtimetablesPost(hospitalId: string, createHospitalConsultationTimetableCommand?: CreateHospitalConsultationTimetableCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableModel>>;
|
|
27814
|
+
};
|
|
27815
|
+
/**
|
|
27816
|
+
* HospitalsConsultationTimetablesApi - factory interface
|
|
27817
|
+
* @export
|
|
27818
|
+
*/
|
|
27819
|
+
export declare const HospitalsConsultationTimetablesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
27820
|
+
/**
|
|
27821
|
+
*
|
|
27822
|
+
* @summary Add, Update and Delete item at once
|
|
27823
|
+
* @param {string} hospitalId
|
|
27824
|
+
* @param {BatchHospitalConsultationTimetablesCommand} [batchHospitalConsultationTimetablesCommand]
|
|
27825
|
+
* @param {*} [options] Override http request option.
|
|
27826
|
+
* @throws {RequiredError}
|
|
27827
|
+
*/
|
|
27828
|
+
apiV1HospitalsHospitalIdConsultationtimetablesBatchPost(hospitalId: string, batchHospitalConsultationTimetablesCommand?: BatchHospitalConsultationTimetablesCommand | undefined, options?: any): AxiosPromise<BatchHospitalConsultationTimetableResultModel>;
|
|
27829
|
+
/**
|
|
27830
|
+
*
|
|
27831
|
+
* @summary Get consultation timetables
|
|
27832
|
+
* @param {string} hospitalId
|
|
27833
|
+
* @param {number} [page]
|
|
27834
|
+
* @param {number} [limit]
|
|
27835
|
+
* @param {Date} [lastRetrieved]
|
|
27836
|
+
* @param {*} [options] Override http request option.
|
|
27837
|
+
* @throws {RequiredError}
|
|
27838
|
+
*/
|
|
27839
|
+
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetablesModel>;
|
|
27840
|
+
/**
|
|
27841
|
+
*
|
|
27842
|
+
* @summary Delete timetable item
|
|
27843
|
+
* @param {string} hospitalId
|
|
27844
|
+
* @param {string} id
|
|
27845
|
+
* @param {*} [options] Override http request option.
|
|
27846
|
+
* @throws {RequiredError}
|
|
27847
|
+
*/
|
|
27848
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdDelete(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalConsultationTimetableModel>;
|
|
27849
|
+
/**
|
|
27850
|
+
*
|
|
27851
|
+
* @summary Get consultation timetable
|
|
27852
|
+
* @param {string} hospitalId
|
|
27853
|
+
* @param {string} id
|
|
27854
|
+
* @param {*} [options] Override http request option.
|
|
27855
|
+
* @throws {RequiredError}
|
|
27856
|
+
*/
|
|
27857
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdGet(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalConsultationTimetableModel>;
|
|
27858
|
+
/**
|
|
27859
|
+
*
|
|
27860
|
+
* @summary Update timetable item
|
|
27861
|
+
* @param {string} hospitalId
|
|
27862
|
+
* @param {string} id
|
|
27863
|
+
* @param {UpdateHospitalConsultationTimetableCommand} [updateHospitalConsultationTimetableCommand]
|
|
27864
|
+
* @param {*} [options] Override http request option.
|
|
27865
|
+
* @throws {RequiredError}
|
|
27866
|
+
*/
|
|
27867
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableCommand?: UpdateHospitalConsultationTimetableCommand | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableModel>;
|
|
27868
|
+
/**
|
|
27869
|
+
*
|
|
27870
|
+
* @summary Create timetable item
|
|
27871
|
+
* @param {string} hospitalId
|
|
27872
|
+
* @param {CreateHospitalConsultationTimetableCommand} [createHospitalConsultationTimetableCommand]
|
|
27873
|
+
* @param {*} [options] Override http request option.
|
|
27874
|
+
* @throws {RequiredError}
|
|
27875
|
+
*/
|
|
27876
|
+
apiV1HospitalsHospitalIdConsultationtimetablesPost(hospitalId: string, createHospitalConsultationTimetableCommand?: CreateHospitalConsultationTimetableCommand | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableModel>;
|
|
27877
|
+
};
|
|
27878
|
+
/**
|
|
27879
|
+
* HospitalsConsultationTimetablesApi - object-oriented interface
|
|
27880
|
+
* @export
|
|
27881
|
+
* @class HospitalsConsultationTimetablesApi
|
|
27882
|
+
* @extends {BaseAPI}
|
|
27883
|
+
*/
|
|
27884
|
+
export declare class HospitalsConsultationTimetablesApi extends BaseAPI {
|
|
27885
|
+
/**
|
|
27886
|
+
*
|
|
27887
|
+
* @summary Add, Update and Delete item at once
|
|
27888
|
+
* @param {string} hospitalId
|
|
27889
|
+
* @param {BatchHospitalConsultationTimetablesCommand} [batchHospitalConsultationTimetablesCommand]
|
|
27890
|
+
* @param {*} [options] Override http request option.
|
|
27891
|
+
* @throws {RequiredError}
|
|
27892
|
+
* @memberof HospitalsConsultationTimetablesApi
|
|
27893
|
+
*/
|
|
27894
|
+
apiV1HospitalsHospitalIdConsultationtimetablesBatchPost(hospitalId: string, batchHospitalConsultationTimetablesCommand?: BatchHospitalConsultationTimetablesCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchHospitalConsultationTimetableResultModel>>;
|
|
27895
|
+
/**
|
|
27896
|
+
*
|
|
27897
|
+
* @summary Get consultation timetables
|
|
27898
|
+
* @param {string} hospitalId
|
|
27899
|
+
* @param {number} [page]
|
|
27900
|
+
* @param {number} [limit]
|
|
27901
|
+
* @param {Date} [lastRetrieved]
|
|
27902
|
+
* @param {*} [options] Override http request option.
|
|
27903
|
+
* @throws {RequiredError}
|
|
27904
|
+
* @memberof HospitalsConsultationTimetablesApi
|
|
27905
|
+
*/
|
|
27906
|
+
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetablesModel>>;
|
|
27907
|
+
/**
|
|
27908
|
+
*
|
|
27909
|
+
* @summary Delete timetable item
|
|
27910
|
+
* @param {string} hospitalId
|
|
27911
|
+
* @param {string} id
|
|
27912
|
+
* @param {*} [options] Override http request option.
|
|
27913
|
+
* @throws {RequiredError}
|
|
27914
|
+
* @memberof HospitalsConsultationTimetablesApi
|
|
27915
|
+
*/
|
|
27916
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableModel>>;
|
|
27917
|
+
/**
|
|
27918
|
+
*
|
|
27919
|
+
* @summary Get consultation timetable
|
|
27920
|
+
* @param {string} hospitalId
|
|
27921
|
+
* @param {string} id
|
|
27922
|
+
* @param {*} [options] Override http request option.
|
|
27923
|
+
* @throws {RequiredError}
|
|
27924
|
+
* @memberof HospitalsConsultationTimetablesApi
|
|
27925
|
+
*/
|
|
27926
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableModel>>;
|
|
27927
|
+
/**
|
|
27928
|
+
*
|
|
27929
|
+
* @summary Update timetable item
|
|
27930
|
+
* @param {string} hospitalId
|
|
27931
|
+
* @param {string} id
|
|
27932
|
+
* @param {UpdateHospitalConsultationTimetableCommand} [updateHospitalConsultationTimetableCommand]
|
|
27933
|
+
* @param {*} [options] Override http request option.
|
|
27934
|
+
* @throws {RequiredError}
|
|
27935
|
+
* @memberof HospitalsConsultationTimetablesApi
|
|
27936
|
+
*/
|
|
27937
|
+
apiV1HospitalsHospitalIdConsultationtimetablesIdPut(hospitalId: string, id: string, updateHospitalConsultationTimetableCommand?: UpdateHospitalConsultationTimetableCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableModel>>;
|
|
27938
|
+
/**
|
|
27939
|
+
*
|
|
27940
|
+
* @summary Create timetable item
|
|
27941
|
+
* @param {string} hospitalId
|
|
27942
|
+
* @param {CreateHospitalConsultationTimetableCommand} [createHospitalConsultationTimetableCommand]
|
|
27943
|
+
* @param {*} [options] Override http request option.
|
|
27944
|
+
* @throws {RequiredError}
|
|
27945
|
+
* @memberof HospitalsConsultationTimetablesApi
|
|
27946
|
+
*/
|
|
27947
|
+
apiV1HospitalsHospitalIdConsultationtimetablesPost(hospitalId: string, createHospitalConsultationTimetableCommand?: CreateHospitalConsultationTimetableCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableModel>>;
|
|
27948
|
+
}
|
|
26892
27949
|
/**
|
|
26893
27950
|
* ImagesApi - axios parameter creator
|
|
26894
27951
|
* @export
|