ch-admin-api-client-typescript 4.4.7 → 4.4.8
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 +248 -613
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +151 -474
- package/package.json +1 -1
- package/src/api.ts +296 -806
package/lib/api.d.ts
CHANGED
|
@@ -1120,137 +1120,6 @@ export interface BatchAddHospitalConsultationTimetableModel {
|
|
|
1120
1120
|
*/
|
|
1121
1121
|
'end'?: string | null;
|
|
1122
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
|
-
* @type {boolean}
|
|
1150
|
-
* @memberof BatchAddHospitalConsultationTimetableOverrideModel
|
|
1151
|
-
*/
|
|
1152
|
-
'isUnavailable'?: boolean | null;
|
|
1153
|
-
}
|
|
1154
|
-
/**
|
|
1155
|
-
*
|
|
1156
|
-
* @export
|
|
1157
|
-
* @interface BatchHeaderNavigationItemResultModel
|
|
1158
|
-
*/
|
|
1159
|
-
export interface BatchHeaderNavigationItemResultModel {
|
|
1160
|
-
/**
|
|
1161
|
-
*
|
|
1162
|
-
* @type {Array<HeaderNavigationItemModel>}
|
|
1163
|
-
* @memberof BatchHeaderNavigationItemResultModel
|
|
1164
|
-
*/
|
|
1165
|
-
'added'?: Array<HeaderNavigationItemModel> | null;
|
|
1166
|
-
/**
|
|
1167
|
-
*
|
|
1168
|
-
* @type {Array<HeaderNavigationItemModel>}
|
|
1169
|
-
* @memberof BatchHeaderNavigationItemResultModel
|
|
1170
|
-
*/
|
|
1171
|
-
'updated'?: Array<HeaderNavigationItemModel> | null;
|
|
1172
|
-
/**
|
|
1173
|
-
*
|
|
1174
|
-
* @type {Array<string>}
|
|
1175
|
-
* @memberof BatchHeaderNavigationItemResultModel
|
|
1176
|
-
*/
|
|
1177
|
-
'deleted'?: Array<string> | null;
|
|
1178
|
-
}
|
|
1179
|
-
/**
|
|
1180
|
-
*
|
|
1181
|
-
* @export
|
|
1182
|
-
* @interface BatchHeaderNavigationItemsCommand
|
|
1183
|
-
*/
|
|
1184
|
-
export interface BatchHeaderNavigationItemsCommand {
|
|
1185
|
-
/**
|
|
1186
|
-
*
|
|
1187
|
-
* @type {Array<CreateHeaderNavigationItemModel>}
|
|
1188
|
-
* @memberof BatchHeaderNavigationItemsCommand
|
|
1189
|
-
*/
|
|
1190
|
-
'adds'?: Array<CreateHeaderNavigationItemModel> | null;
|
|
1191
|
-
/**
|
|
1192
|
-
*
|
|
1193
|
-
* @type {Array<UpdateHeaderNavigationItemModel>}
|
|
1194
|
-
* @memberof BatchHeaderNavigationItemsCommand
|
|
1195
|
-
*/
|
|
1196
|
-
'updates'?: Array<UpdateHeaderNavigationItemModel> | null;
|
|
1197
|
-
/**
|
|
1198
|
-
*
|
|
1199
|
-
* @type {Array<string>}
|
|
1200
|
-
* @memberof BatchHeaderNavigationItemsCommand
|
|
1201
|
-
*/
|
|
1202
|
-
'deletes'?: Array<string> | null;
|
|
1203
|
-
}
|
|
1204
|
-
/**
|
|
1205
|
-
*
|
|
1206
|
-
* @export
|
|
1207
|
-
* @interface BatchHospitalConsultationTimetableOverridesCommand
|
|
1208
|
-
*/
|
|
1209
|
-
export interface BatchHospitalConsultationTimetableOverridesCommand {
|
|
1210
|
-
/**
|
|
1211
|
-
*
|
|
1212
|
-
* @type {Array<BatchAddHospitalConsultationTimetableOverrideModel>}
|
|
1213
|
-
* @memberof BatchHospitalConsultationTimetableOverridesCommand
|
|
1214
|
-
*/
|
|
1215
|
-
'adds'?: Array<BatchAddHospitalConsultationTimetableOverrideModel> | null;
|
|
1216
|
-
/**
|
|
1217
|
-
*
|
|
1218
|
-
* @type {Array<BatchUpdateHospitalConsultationTimetableOverrideModel>}
|
|
1219
|
-
* @memberof BatchHospitalConsultationTimetableOverridesCommand
|
|
1220
|
-
*/
|
|
1221
|
-
'updates'?: Array<BatchUpdateHospitalConsultationTimetableOverrideModel> | null;
|
|
1222
|
-
/**
|
|
1223
|
-
*
|
|
1224
|
-
* @type {Array<string>}
|
|
1225
|
-
* @memberof BatchHospitalConsultationTimetableOverridesCommand
|
|
1226
|
-
*/
|
|
1227
|
-
'deletes'?: Array<string> | null;
|
|
1228
|
-
}
|
|
1229
|
-
/**
|
|
1230
|
-
*
|
|
1231
|
-
* @export
|
|
1232
|
-
* @interface BatchHospitalConsultationTimetableOverridesResultModel
|
|
1233
|
-
*/
|
|
1234
|
-
export interface BatchHospitalConsultationTimetableOverridesResultModel {
|
|
1235
|
-
/**
|
|
1236
|
-
*
|
|
1237
|
-
* @type {Array<HospitalConsultationTimetableOverrideModel>}
|
|
1238
|
-
* @memberof BatchHospitalConsultationTimetableOverridesResultModel
|
|
1239
|
-
*/
|
|
1240
|
-
'adds'?: Array<HospitalConsultationTimetableOverrideModel> | null;
|
|
1241
|
-
/**
|
|
1242
|
-
*
|
|
1243
|
-
* @type {Array<HospitalConsultationTimetableOverrideModel>}
|
|
1244
|
-
* @memberof BatchHospitalConsultationTimetableOverridesResultModel
|
|
1245
|
-
*/
|
|
1246
|
-
'updates'?: Array<HospitalConsultationTimetableOverrideModel> | null;
|
|
1247
|
-
/**
|
|
1248
|
-
*
|
|
1249
|
-
* @type {Array<string>}
|
|
1250
|
-
* @memberof BatchHospitalConsultationTimetableOverridesResultModel
|
|
1251
|
-
*/
|
|
1252
|
-
'deletes'?: Array<string> | null;
|
|
1253
|
-
}
|
|
1254
1123
|
/**
|
|
1255
1124
|
*
|
|
1256
1125
|
* @export
|
|
@@ -1332,43 +1201,6 @@ export interface BatchUpdateHospitalConsultationTimetableModel {
|
|
|
1332
1201
|
*/
|
|
1333
1202
|
'end'?: string | null;
|
|
1334
1203
|
}
|
|
1335
|
-
/**
|
|
1336
|
-
*
|
|
1337
|
-
* @export
|
|
1338
|
-
* @interface BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1339
|
-
*/
|
|
1340
|
-
export interface BatchUpdateHospitalConsultationTimetableOverrideModel {
|
|
1341
|
-
/**
|
|
1342
|
-
*
|
|
1343
|
-
* @type {Date}
|
|
1344
|
-
* @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1345
|
-
*/
|
|
1346
|
-
'date'?: Date;
|
|
1347
|
-
/**
|
|
1348
|
-
*
|
|
1349
|
-
* @type {string}
|
|
1350
|
-
* @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1351
|
-
*/
|
|
1352
|
-
'start'?: string | null;
|
|
1353
|
-
/**
|
|
1354
|
-
*
|
|
1355
|
-
* @type {string}
|
|
1356
|
-
* @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1357
|
-
*/
|
|
1358
|
-
'end'?: string | null;
|
|
1359
|
-
/**
|
|
1360
|
-
*
|
|
1361
|
-
* @type {boolean}
|
|
1362
|
-
* @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1363
|
-
*/
|
|
1364
|
-
'isUnavailable'?: boolean | null;
|
|
1365
|
-
/**
|
|
1366
|
-
*
|
|
1367
|
-
* @type {string}
|
|
1368
|
-
* @memberof BatchUpdateHospitalConsultationTimetableOverrideModel
|
|
1369
|
-
*/
|
|
1370
|
-
'id'?: string;
|
|
1371
|
-
}
|
|
1372
1204
|
/**
|
|
1373
1205
|
*
|
|
1374
1206
|
* @export
|
|
@@ -4590,80 +4422,6 @@ export interface CreateFaqTagCommand {
|
|
|
4590
4422
|
*/
|
|
4591
4423
|
'tagId'?: string | null;
|
|
4592
4424
|
}
|
|
4593
|
-
/**
|
|
4594
|
-
*
|
|
4595
|
-
* @export
|
|
4596
|
-
* @interface CreateHeaderNavigationItemCommand
|
|
4597
|
-
*/
|
|
4598
|
-
export interface CreateHeaderNavigationItemCommand {
|
|
4599
|
-
/**
|
|
4600
|
-
*
|
|
4601
|
-
* @type {string}
|
|
4602
|
-
* @memberof CreateHeaderNavigationItemCommand
|
|
4603
|
-
*/
|
|
4604
|
-
'languageCode'?: string | null;
|
|
4605
|
-
/**
|
|
4606
|
-
*
|
|
4607
|
-
* @type {string}
|
|
4608
|
-
* @memberof CreateHeaderNavigationItemCommand
|
|
4609
|
-
*/
|
|
4610
|
-
'name'?: string | null;
|
|
4611
|
-
/**
|
|
4612
|
-
*
|
|
4613
|
-
* @type {string}
|
|
4614
|
-
* @memberof CreateHeaderNavigationItemCommand
|
|
4615
|
-
*/
|
|
4616
|
-
'url'?: string | null;
|
|
4617
|
-
/**
|
|
4618
|
-
*
|
|
4619
|
-
* @type {number}
|
|
4620
|
-
* @memberof CreateHeaderNavigationItemCommand
|
|
4621
|
-
*/
|
|
4622
|
-
'order'?: number;
|
|
4623
|
-
/**
|
|
4624
|
-
*
|
|
4625
|
-
* @type {string}
|
|
4626
|
-
* @memberof CreateHeaderNavigationItemCommand
|
|
4627
|
-
*/
|
|
4628
|
-
'parentId'?: string | null;
|
|
4629
|
-
}
|
|
4630
|
-
/**
|
|
4631
|
-
*
|
|
4632
|
-
* @export
|
|
4633
|
-
* @interface CreateHeaderNavigationItemModel
|
|
4634
|
-
*/
|
|
4635
|
-
export interface CreateHeaderNavigationItemModel {
|
|
4636
|
-
/**
|
|
4637
|
-
*
|
|
4638
|
-
* @type {string}
|
|
4639
|
-
* @memberof CreateHeaderNavigationItemModel
|
|
4640
|
-
*/
|
|
4641
|
-
'languageCode'?: string | null;
|
|
4642
|
-
/**
|
|
4643
|
-
*
|
|
4644
|
-
* @type {string}
|
|
4645
|
-
* @memberof CreateHeaderNavigationItemModel
|
|
4646
|
-
*/
|
|
4647
|
-
'name'?: string | null;
|
|
4648
|
-
/**
|
|
4649
|
-
*
|
|
4650
|
-
* @type {string}
|
|
4651
|
-
* @memberof CreateHeaderNavigationItemModel
|
|
4652
|
-
*/
|
|
4653
|
-
'url'?: string | null;
|
|
4654
|
-
/**
|
|
4655
|
-
*
|
|
4656
|
-
* @type {number}
|
|
4657
|
-
* @memberof CreateHeaderNavigationItemModel
|
|
4658
|
-
*/
|
|
4659
|
-
'order'?: number;
|
|
4660
|
-
/**
|
|
4661
|
-
*
|
|
4662
|
-
* @type {string}
|
|
4663
|
-
* @memberof CreateHeaderNavigationItemModel
|
|
4664
|
-
*/
|
|
4665
|
-
'parentId'?: string | null;
|
|
4666
|
-
}
|
|
4667
4425
|
/**
|
|
4668
4426
|
*
|
|
4669
4427
|
* @export
|
|
@@ -4835,37 +4593,6 @@ export interface CreateHospitalConsultationTimetableCommand {
|
|
|
4835
4593
|
*/
|
|
4836
4594
|
'end'?: string | null;
|
|
4837
4595
|
}
|
|
4838
|
-
/**
|
|
4839
|
-
*
|
|
4840
|
-
* @export
|
|
4841
|
-
* @interface CreateHospitalConsultationTimetableOverrideCommand
|
|
4842
|
-
*/
|
|
4843
|
-
export interface CreateHospitalConsultationTimetableOverrideCommand {
|
|
4844
|
-
/**
|
|
4845
|
-
*
|
|
4846
|
-
* @type {Date}
|
|
4847
|
-
* @memberof CreateHospitalConsultationTimetableOverrideCommand
|
|
4848
|
-
*/
|
|
4849
|
-
'date'?: Date;
|
|
4850
|
-
/**
|
|
4851
|
-
*
|
|
4852
|
-
* @type {string}
|
|
4853
|
-
* @memberof CreateHospitalConsultationTimetableOverrideCommand
|
|
4854
|
-
*/
|
|
4855
|
-
'start'?: string | null;
|
|
4856
|
-
/**
|
|
4857
|
-
*
|
|
4858
|
-
* @type {string}
|
|
4859
|
-
* @memberof CreateHospitalConsultationTimetableOverrideCommand
|
|
4860
|
-
*/
|
|
4861
|
-
'end'?: string | null;
|
|
4862
|
-
/**
|
|
4863
|
-
*
|
|
4864
|
-
* @type {boolean}
|
|
4865
|
-
* @memberof CreateHospitalConsultationTimetableOverrideCommand
|
|
4866
|
-
*/
|
|
4867
|
-
'isUnavailable'?: boolean | null;
|
|
4868
|
-
}
|
|
4869
4596
|
/**
|
|
4870
4597
|
*
|
|
4871
4598
|
* @export
|
|
@@ -6481,6 +6208,37 @@ export interface DeleteFaqTagCommand {
|
|
|
6481
6208
|
*/
|
|
6482
6209
|
'tagId'?: string | null;
|
|
6483
6210
|
}
|
|
6211
|
+
/**
|
|
6212
|
+
*
|
|
6213
|
+
* @export
|
|
6214
|
+
* @interface DeleteHospitalConsultationTimetableOverrideCommand
|
|
6215
|
+
*/
|
|
6216
|
+
export interface DeleteHospitalConsultationTimetableOverrideCommand {
|
|
6217
|
+
/**
|
|
6218
|
+
*
|
|
6219
|
+
* @type {Array<string>}
|
|
6220
|
+
* @memberof DeleteHospitalConsultationTimetableOverrideCommand
|
|
6221
|
+
*/
|
|
6222
|
+
'ids'?: Array<string> | null;
|
|
6223
|
+
/**
|
|
6224
|
+
*
|
|
6225
|
+
* @type {Date}
|
|
6226
|
+
* @memberof DeleteHospitalConsultationTimetableOverrideCommand
|
|
6227
|
+
*/
|
|
6228
|
+
'dateOnly'?: Date | null;
|
|
6229
|
+
/**
|
|
6230
|
+
*
|
|
6231
|
+
* @type {DayOfWeek}
|
|
6232
|
+
* @memberof DeleteHospitalConsultationTimetableOverrideCommand
|
|
6233
|
+
*/
|
|
6234
|
+
'dayOfWeek'?: DayOfWeek;
|
|
6235
|
+
/**
|
|
6236
|
+
*
|
|
6237
|
+
* @type {Date}
|
|
6238
|
+
* @memberof DeleteHospitalConsultationTimetableOverrideCommand
|
|
6239
|
+
*/
|
|
6240
|
+
'dateBefore'?: Date | null;
|
|
6241
|
+
}
|
|
6484
6242
|
/**
|
|
6485
6243
|
*
|
|
6486
6244
|
* @export
|
|
@@ -8108,6 +7866,12 @@ export interface HeaderNavigationItemModel {
|
|
|
8108
7866
|
* @memberof HeaderNavigationItemModel
|
|
8109
7867
|
*/
|
|
8110
7868
|
'order'?: number;
|
|
7869
|
+
/**
|
|
7870
|
+
*
|
|
7871
|
+
* @type {string}
|
|
7872
|
+
* @memberof HeaderNavigationItemModel
|
|
7873
|
+
*/
|
|
7874
|
+
'parentId'?: string | null;
|
|
8111
7875
|
/**
|
|
8112
7876
|
*
|
|
8113
7877
|
* @type {Array<HeaderNavigationItemModel>}
|
|
@@ -8301,6 +8065,12 @@ export interface HospitalConsultationTimetableOverrideItemModel {
|
|
|
8301
8065
|
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
8302
8066
|
*/
|
|
8303
8067
|
'date'?: Date;
|
|
8068
|
+
/**
|
|
8069
|
+
*
|
|
8070
|
+
* @type {DayOfWeek}
|
|
8071
|
+
* @memberof HospitalConsultationTimetableOverrideItemModel
|
|
8072
|
+
*/
|
|
8073
|
+
'dayOfWeek'?: DayOfWeek;
|
|
8304
8074
|
/**
|
|
8305
8075
|
*
|
|
8306
8076
|
* @type {string}
|
|
@@ -8338,6 +8108,12 @@ export interface HospitalConsultationTimetableOverrideModel {
|
|
|
8338
8108
|
* @memberof HospitalConsultationTimetableOverrideModel
|
|
8339
8109
|
*/
|
|
8340
8110
|
'date'?: Date;
|
|
8111
|
+
/**
|
|
8112
|
+
*
|
|
8113
|
+
* @type {DayOfWeek}
|
|
8114
|
+
* @memberof HospitalConsultationTimetableOverrideModel
|
|
8115
|
+
*/
|
|
8116
|
+
'dayOfWeek'?: DayOfWeek;
|
|
8341
8117
|
/**
|
|
8342
8118
|
*
|
|
8343
8119
|
* @type {string}
|
|
@@ -11521,28 +11297,122 @@ export interface RejectConsultationCommand {
|
|
|
11521
11297
|
* @type {string}
|
|
11522
11298
|
* @memberof RejectConsultationCommand
|
|
11523
11299
|
*/
|
|
11524
|
-
'rejectComment'?: string | null;
|
|
11525
|
-
}
|
|
11526
|
-
/**
|
|
11527
|
-
*
|
|
11528
|
-
* @export
|
|
11529
|
-
* @enum {string}
|
|
11530
|
-
*/
|
|
11531
|
-
export declare enum RejectReason {
|
|
11532
|
-
AssessmentNotCompleted = "AssessmentNotCompleted",
|
|
11533
|
-
PaymentNotCompleted = "PaymentNotCompleted",
|
|
11534
|
-
ScheduleNotAvailable = "ScheduleNotAvailable",
|
|
11535
|
-
OtherReason = "OtherReason"
|
|
11300
|
+
'rejectComment'?: string | null;
|
|
11301
|
+
}
|
|
11302
|
+
/**
|
|
11303
|
+
*
|
|
11304
|
+
* @export
|
|
11305
|
+
* @enum {string}
|
|
11306
|
+
*/
|
|
11307
|
+
export declare enum RejectReason {
|
|
11308
|
+
AssessmentNotCompleted = "AssessmentNotCompleted",
|
|
11309
|
+
PaymentNotCompleted = "PaymentNotCompleted",
|
|
11310
|
+
ScheduleNotAvailable = "ScheduleNotAvailable",
|
|
11311
|
+
OtherReason = "OtherReason"
|
|
11312
|
+
}
|
|
11313
|
+
/**
|
|
11314
|
+
*
|
|
11315
|
+
* @export
|
|
11316
|
+
* @enum {string}
|
|
11317
|
+
*/
|
|
11318
|
+
export declare enum ReviewType {
|
|
11319
|
+
Photo = "Photo",
|
|
11320
|
+
SurgeryReview = "SurgeryReview",
|
|
11321
|
+
RealStory = "RealStory"
|
|
11322
|
+
}
|
|
11323
|
+
/**
|
|
11324
|
+
*
|
|
11325
|
+
* @export
|
|
11326
|
+
* @interface SaveHeaderNavigationItemModel
|
|
11327
|
+
*/
|
|
11328
|
+
export interface SaveHeaderNavigationItemModel {
|
|
11329
|
+
/**
|
|
11330
|
+
*
|
|
11331
|
+
* @type {string}
|
|
11332
|
+
* @memberof SaveHeaderNavigationItemModel
|
|
11333
|
+
*/
|
|
11334
|
+
'id'?: string | null;
|
|
11335
|
+
/**
|
|
11336
|
+
*
|
|
11337
|
+
* @type {string}
|
|
11338
|
+
* @memberof SaveHeaderNavigationItemModel
|
|
11339
|
+
*/
|
|
11340
|
+
'name'?: string | null;
|
|
11341
|
+
/**
|
|
11342
|
+
*
|
|
11343
|
+
* @type {string}
|
|
11344
|
+
* @memberof SaveHeaderNavigationItemModel
|
|
11345
|
+
*/
|
|
11346
|
+
'url'?: string | null;
|
|
11347
|
+
/**
|
|
11348
|
+
*
|
|
11349
|
+
* @type {number}
|
|
11350
|
+
* @memberof SaveHeaderNavigationItemModel
|
|
11351
|
+
*/
|
|
11352
|
+
'order'?: number;
|
|
11353
|
+
/**
|
|
11354
|
+
*
|
|
11355
|
+
* @type {Array<SaveHeaderNavigationItemModel>}
|
|
11356
|
+
* @memberof SaveHeaderNavigationItemModel
|
|
11357
|
+
*/
|
|
11358
|
+
'subItems'?: Array<SaveHeaderNavigationItemModel> | null;
|
|
11359
|
+
}
|
|
11360
|
+
/**
|
|
11361
|
+
*
|
|
11362
|
+
* @export
|
|
11363
|
+
* @interface SaveHeaderNavigationsCommand
|
|
11364
|
+
*/
|
|
11365
|
+
export interface SaveHeaderNavigationsCommand {
|
|
11366
|
+
/**
|
|
11367
|
+
*
|
|
11368
|
+
* @type {SaveHeaderNavigationItemModel}
|
|
11369
|
+
* @memberof SaveHeaderNavigationsCommand
|
|
11370
|
+
*/
|
|
11371
|
+
'item'?: SaveHeaderNavigationItemModel;
|
|
11372
|
+
}
|
|
11373
|
+
/**
|
|
11374
|
+
*
|
|
11375
|
+
* @export
|
|
11376
|
+
* @interface SaveHospitalConsultationTimetableOverrideModel
|
|
11377
|
+
*/
|
|
11378
|
+
export interface SaveHospitalConsultationTimetableOverrideModel {
|
|
11379
|
+
/**
|
|
11380
|
+
*
|
|
11381
|
+
* @type {Date}
|
|
11382
|
+
* @memberof SaveHospitalConsultationTimetableOverrideModel
|
|
11383
|
+
*/
|
|
11384
|
+
'date'?: Date;
|
|
11385
|
+
/**
|
|
11386
|
+
*
|
|
11387
|
+
* @type {string}
|
|
11388
|
+
* @memberof SaveHospitalConsultationTimetableOverrideModel
|
|
11389
|
+
*/
|
|
11390
|
+
'start'?: string | null;
|
|
11391
|
+
/**
|
|
11392
|
+
*
|
|
11393
|
+
* @type {string}
|
|
11394
|
+
* @memberof SaveHospitalConsultationTimetableOverrideModel
|
|
11395
|
+
*/
|
|
11396
|
+
'end'?: string | null;
|
|
11397
|
+
/**
|
|
11398
|
+
*
|
|
11399
|
+
* @type {boolean}
|
|
11400
|
+
* @memberof SaveHospitalConsultationTimetableOverrideModel
|
|
11401
|
+
*/
|
|
11402
|
+
'isUnavailable'?: boolean | null;
|
|
11536
11403
|
}
|
|
11537
11404
|
/**
|
|
11538
11405
|
*
|
|
11539
11406
|
* @export
|
|
11540
|
-
* @
|
|
11407
|
+
* @interface SaveHospitalConsultationTimetableOverridesCommand
|
|
11541
11408
|
*/
|
|
11542
|
-
export
|
|
11543
|
-
|
|
11544
|
-
|
|
11545
|
-
|
|
11409
|
+
export interface SaveHospitalConsultationTimetableOverridesCommand {
|
|
11410
|
+
/**
|
|
11411
|
+
*
|
|
11412
|
+
* @type {Array<SaveHospitalConsultationTimetableOverrideModel>}
|
|
11413
|
+
* @memberof SaveHospitalConsultationTimetableOverridesCommand
|
|
11414
|
+
*/
|
|
11415
|
+
'items'?: Array<SaveHospitalConsultationTimetableOverrideModel> | null;
|
|
11546
11416
|
}
|
|
11547
11417
|
/**
|
|
11548
11418
|
*
|
|
@@ -14232,86 +14102,6 @@ export interface UpdateFaqCommand {
|
|
|
14232
14102
|
*/
|
|
14233
14103
|
'medias'?: Array<MediaModel> | null;
|
|
14234
14104
|
}
|
|
14235
|
-
/**
|
|
14236
|
-
*
|
|
14237
|
-
* @export
|
|
14238
|
-
* @interface UpdateHeaderNavigationItemCommand
|
|
14239
|
-
*/
|
|
14240
|
-
export interface UpdateHeaderNavigationItemCommand {
|
|
14241
|
-
/**
|
|
14242
|
-
*
|
|
14243
|
-
* @type {string}
|
|
14244
|
-
* @memberof UpdateHeaderNavigationItemCommand
|
|
14245
|
-
*/
|
|
14246
|
-
'languageCode'?: string | null;
|
|
14247
|
-
/**
|
|
14248
|
-
*
|
|
14249
|
-
* @type {string}
|
|
14250
|
-
* @memberof UpdateHeaderNavigationItemCommand
|
|
14251
|
-
*/
|
|
14252
|
-
'name'?: string | null;
|
|
14253
|
-
/**
|
|
14254
|
-
*
|
|
14255
|
-
* @type {string}
|
|
14256
|
-
* @memberof UpdateHeaderNavigationItemCommand
|
|
14257
|
-
*/
|
|
14258
|
-
'url'?: string | null;
|
|
14259
|
-
/**
|
|
14260
|
-
*
|
|
14261
|
-
* @type {number}
|
|
14262
|
-
* @memberof UpdateHeaderNavigationItemCommand
|
|
14263
|
-
*/
|
|
14264
|
-
'order'?: number;
|
|
14265
|
-
/**
|
|
14266
|
-
*
|
|
14267
|
-
* @type {string}
|
|
14268
|
-
* @memberof UpdateHeaderNavigationItemCommand
|
|
14269
|
-
*/
|
|
14270
|
-
'parentId'?: string | null;
|
|
14271
|
-
}
|
|
14272
|
-
/**
|
|
14273
|
-
*
|
|
14274
|
-
* @export
|
|
14275
|
-
* @interface UpdateHeaderNavigationItemModel
|
|
14276
|
-
*/
|
|
14277
|
-
export interface UpdateHeaderNavigationItemModel {
|
|
14278
|
-
/**
|
|
14279
|
-
*
|
|
14280
|
-
* @type {string}
|
|
14281
|
-
* @memberof UpdateHeaderNavigationItemModel
|
|
14282
|
-
*/
|
|
14283
|
-
'languageCode'?: string | null;
|
|
14284
|
-
/**
|
|
14285
|
-
*
|
|
14286
|
-
* @type {string}
|
|
14287
|
-
* @memberof UpdateHeaderNavigationItemModel
|
|
14288
|
-
*/
|
|
14289
|
-
'name'?: string | null;
|
|
14290
|
-
/**
|
|
14291
|
-
*
|
|
14292
|
-
* @type {string}
|
|
14293
|
-
* @memberof UpdateHeaderNavigationItemModel
|
|
14294
|
-
*/
|
|
14295
|
-
'url'?: string | null;
|
|
14296
|
-
/**
|
|
14297
|
-
*
|
|
14298
|
-
* @type {number}
|
|
14299
|
-
* @memberof UpdateHeaderNavigationItemModel
|
|
14300
|
-
*/
|
|
14301
|
-
'order'?: number;
|
|
14302
|
-
/**
|
|
14303
|
-
*
|
|
14304
|
-
* @type {string}
|
|
14305
|
-
* @memberof UpdateHeaderNavigationItemModel
|
|
14306
|
-
*/
|
|
14307
|
-
'parentId'?: string | null;
|
|
14308
|
-
/**
|
|
14309
|
-
*
|
|
14310
|
-
* @type {string}
|
|
14311
|
-
* @memberof UpdateHeaderNavigationItemModel
|
|
14312
|
-
*/
|
|
14313
|
-
'id'?: string;
|
|
14314
|
-
}
|
|
14315
14105
|
/**
|
|
14316
14106
|
*
|
|
14317
14107
|
* @export
|
|
@@ -14494,37 +14284,6 @@ export interface UpdateHospitalConsultationTimetableCommand {
|
|
|
14494
14284
|
*/
|
|
14495
14285
|
'end'?: string | null;
|
|
14496
14286
|
}
|
|
14497
|
-
/**
|
|
14498
|
-
*
|
|
14499
|
-
* @export
|
|
14500
|
-
* @interface UpdateHospitalConsultationTimetableOverrideCommand
|
|
14501
|
-
*/
|
|
14502
|
-
export interface UpdateHospitalConsultationTimetableOverrideCommand {
|
|
14503
|
-
/**
|
|
14504
|
-
*
|
|
14505
|
-
* @type {Date}
|
|
14506
|
-
* @memberof UpdateHospitalConsultationTimetableOverrideCommand
|
|
14507
|
-
*/
|
|
14508
|
-
'date'?: Date;
|
|
14509
|
-
/**
|
|
14510
|
-
*
|
|
14511
|
-
* @type {string}
|
|
14512
|
-
* @memberof UpdateHospitalConsultationTimetableOverrideCommand
|
|
14513
|
-
*/
|
|
14514
|
-
'start'?: string | null;
|
|
14515
|
-
/**
|
|
14516
|
-
*
|
|
14517
|
-
* @type {string}
|
|
14518
|
-
* @memberof UpdateHospitalConsultationTimetableOverrideCommand
|
|
14519
|
-
*/
|
|
14520
|
-
'end'?: string | null;
|
|
14521
|
-
/**
|
|
14522
|
-
*
|
|
14523
|
-
* @type {boolean}
|
|
14524
|
-
* @memberof UpdateHospitalConsultationTimetableOverrideCommand
|
|
14525
|
-
*/
|
|
14526
|
-
'isUnavailable'?: boolean | null;
|
|
14527
|
-
}
|
|
14528
14287
|
/**
|
|
14529
14288
|
*
|
|
14530
14289
|
* @export
|
|
@@ -24383,189 +24142,150 @@ export declare class GroupChannelsApi extends BaseAPI {
|
|
|
24383
24142
|
* @export
|
|
24384
24143
|
*/
|
|
24385
24144
|
export declare const HeaderNavigationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
24386
|
-
/**
|
|
24387
|
-
*
|
|
24388
|
-
* @summary Batch HeaderNavigationItems; Do Add, update, delete at one request
|
|
24389
|
-
* @param {BatchHeaderNavigationItemsCommand} [batchHeaderNavigationItemsCommand]
|
|
24390
|
-
* @param {*} [options] Override http request option.
|
|
24391
|
-
* @throws {RequiredError}
|
|
24392
|
-
*/
|
|
24393
|
-
apiV1HeadernavigationsBatchPost: (batchHeaderNavigationItemsCommand?: BatchHeaderNavigationItemsCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24394
24145
|
/**
|
|
24395
24146
|
*
|
|
24396
24147
|
* @summary Get all HeaderNavigationItems
|
|
24397
|
-
* @param {string}
|
|
24148
|
+
* @param {string} languageCode
|
|
24398
24149
|
* @param {*} [options] Override http request option.
|
|
24399
24150
|
* @throws {RequiredError}
|
|
24400
24151
|
*/
|
|
24401
|
-
|
|
24152
|
+
apiV1HeadernavigationsLanguageCodeGet: (languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24402
24153
|
/**
|
|
24403
24154
|
*
|
|
24404
24155
|
* @summary Delete HeaderNavigationItem
|
|
24156
|
+
* @param {string} languageCode
|
|
24405
24157
|
* @param {string} id
|
|
24406
24158
|
* @param {*} [options] Override http request option.
|
|
24407
24159
|
* @throws {RequiredError}
|
|
24408
24160
|
*/
|
|
24409
|
-
|
|
24161
|
+
apiV1HeadernavigationsLanguageCodeIdDelete: (languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24410
24162
|
/**
|
|
24411
24163
|
*
|
|
24412
24164
|
* @summary Get HeaderNavigationItem by id
|
|
24165
|
+
* @param {string} languageCode
|
|
24413
24166
|
* @param {string} id
|
|
24414
24167
|
* @param {*} [options] Override http request option.
|
|
24415
24168
|
* @throws {RequiredError}
|
|
24416
24169
|
*/
|
|
24417
|
-
|
|
24418
|
-
/**
|
|
24419
|
-
*
|
|
24420
|
-
* @summary Update HeaderNavigationItem
|
|
24421
|
-
* @param {string} id
|
|
24422
|
-
* @param {UpdateHeaderNavigationItemCommand} [updateHeaderNavigationItemCommand]
|
|
24423
|
-
* @param {*} [options] Override http request option.
|
|
24424
|
-
* @throws {RequiredError}
|
|
24425
|
-
*/
|
|
24426
|
-
apiV1HeadernavigationsIdPut: (id: string, updateHeaderNavigationItemCommand?: UpdateHeaderNavigationItemCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24170
|
+
apiV1HeadernavigationsLanguageCodeIdGet: (languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24427
24171
|
/**
|
|
24428
24172
|
*
|
|
24429
24173
|
* @summary Get HeaderNavigationItems by parent id
|
|
24174
|
+
* @param {string} languageCode
|
|
24430
24175
|
* @param {string} parentId
|
|
24431
24176
|
* @param {*} [options] Override http request option.
|
|
24432
24177
|
* @throws {RequiredError}
|
|
24433
24178
|
*/
|
|
24434
|
-
|
|
24179
|
+
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet: (languageCode: string, parentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24435
24180
|
/**
|
|
24436
24181
|
*
|
|
24437
|
-
* @summary
|
|
24438
|
-
* @param {
|
|
24182
|
+
* @summary Save HeaderNavigationItem
|
|
24183
|
+
* @param {string} languageCode
|
|
24184
|
+
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
24439
24185
|
* @param {*} [options] Override http request option.
|
|
24440
24186
|
* @throws {RequiredError}
|
|
24441
24187
|
*/
|
|
24442
|
-
|
|
24188
|
+
apiV1HeadernavigationsLanguageCodePost: (languageCode: string, saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24443
24189
|
};
|
|
24444
24190
|
/**
|
|
24445
24191
|
* HeaderNavigationsApi - functional programming interface
|
|
24446
24192
|
* @export
|
|
24447
24193
|
*/
|
|
24448
24194
|
export declare const HeaderNavigationsApiFp: (configuration?: Configuration | undefined) => {
|
|
24449
|
-
/**
|
|
24450
|
-
*
|
|
24451
|
-
* @summary Batch HeaderNavigationItems; Do Add, update, delete at one request
|
|
24452
|
-
* @param {BatchHeaderNavigationItemsCommand} [batchHeaderNavigationItemsCommand]
|
|
24453
|
-
* @param {*} [options] Override http request option.
|
|
24454
|
-
* @throws {RequiredError}
|
|
24455
|
-
*/
|
|
24456
|
-
apiV1HeadernavigationsBatchPost(batchHeaderNavigationItemsCommand?: BatchHeaderNavigationItemsCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BatchHeaderNavigationItemResultModel>>;
|
|
24457
24195
|
/**
|
|
24458
24196
|
*
|
|
24459
24197
|
* @summary Get all HeaderNavigationItems
|
|
24460
|
-
* @param {string}
|
|
24198
|
+
* @param {string} languageCode
|
|
24461
24199
|
* @param {*} [options] Override http request option.
|
|
24462
24200
|
* @throws {RequiredError}
|
|
24463
24201
|
*/
|
|
24464
|
-
|
|
24202
|
+
apiV1HeadernavigationsLanguageCodeGet(languageCode: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<HeaderNavigationItemModel>>>;
|
|
24465
24203
|
/**
|
|
24466
24204
|
*
|
|
24467
24205
|
* @summary Delete HeaderNavigationItem
|
|
24206
|
+
* @param {string} languageCode
|
|
24468
24207
|
* @param {string} id
|
|
24469
24208
|
* @param {*} [options] Override http request option.
|
|
24470
24209
|
* @throws {RequiredError}
|
|
24471
24210
|
*/
|
|
24472
|
-
|
|
24211
|
+
apiV1HeadernavigationsLanguageCodeIdDelete(languageCode: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
24473
24212
|
/**
|
|
24474
24213
|
*
|
|
24475
24214
|
* @summary Get HeaderNavigationItem by id
|
|
24215
|
+
* @param {string} languageCode
|
|
24476
24216
|
* @param {string} id
|
|
24477
24217
|
* @param {*} [options] Override http request option.
|
|
24478
24218
|
* @throws {RequiredError}
|
|
24479
24219
|
*/
|
|
24480
|
-
|
|
24481
|
-
/**
|
|
24482
|
-
*
|
|
24483
|
-
* @summary Update HeaderNavigationItem
|
|
24484
|
-
* @param {string} id
|
|
24485
|
-
* @param {UpdateHeaderNavigationItemCommand} [updateHeaderNavigationItemCommand]
|
|
24486
|
-
* @param {*} [options] Override http request option.
|
|
24487
|
-
* @throws {RequiredError}
|
|
24488
|
-
*/
|
|
24489
|
-
apiV1HeadernavigationsIdPut(id: string, updateHeaderNavigationItemCommand?: UpdateHeaderNavigationItemCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
24220
|
+
apiV1HeadernavigationsLanguageCodeIdGet(languageCode: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HeaderNavigationItemModel>>;
|
|
24490
24221
|
/**
|
|
24491
24222
|
*
|
|
24492
24223
|
* @summary Get HeaderNavigationItems by parent id
|
|
24224
|
+
* @param {string} languageCode
|
|
24493
24225
|
* @param {string} parentId
|
|
24494
24226
|
* @param {*} [options] Override http request option.
|
|
24495
24227
|
* @throws {RequiredError}
|
|
24496
24228
|
*/
|
|
24497
|
-
|
|
24229
|
+
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet(languageCode: string, parentId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<HeaderNavigationItemModel>>>;
|
|
24498
24230
|
/**
|
|
24499
24231
|
*
|
|
24500
|
-
* @summary
|
|
24501
|
-
* @param {
|
|
24232
|
+
* @summary Save HeaderNavigationItem
|
|
24233
|
+
* @param {string} languageCode
|
|
24234
|
+
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
24502
24235
|
* @param {*} [options] Override http request option.
|
|
24503
24236
|
* @throws {RequiredError}
|
|
24504
24237
|
*/
|
|
24505
|
-
|
|
24238
|
+
apiV1HeadernavigationsLanguageCodePost(languageCode: string, saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HeaderNavigationItemModel>>;
|
|
24506
24239
|
};
|
|
24507
24240
|
/**
|
|
24508
24241
|
* HeaderNavigationsApi - factory interface
|
|
24509
24242
|
* @export
|
|
24510
24243
|
*/
|
|
24511
24244
|
export declare const HeaderNavigationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
24512
|
-
/**
|
|
24513
|
-
*
|
|
24514
|
-
* @summary Batch HeaderNavigationItems; Do Add, update, delete at one request
|
|
24515
|
-
* @param {BatchHeaderNavigationItemsCommand} [batchHeaderNavigationItemsCommand]
|
|
24516
|
-
* @param {*} [options] Override http request option.
|
|
24517
|
-
* @throws {RequiredError}
|
|
24518
|
-
*/
|
|
24519
|
-
apiV1HeadernavigationsBatchPost(batchHeaderNavigationItemsCommand?: BatchHeaderNavigationItemsCommand | undefined, options?: any): AxiosPromise<BatchHeaderNavigationItemResultModel>;
|
|
24520
24245
|
/**
|
|
24521
24246
|
*
|
|
24522
24247
|
* @summary Get all HeaderNavigationItems
|
|
24523
|
-
* @param {string}
|
|
24248
|
+
* @param {string} languageCode
|
|
24524
24249
|
* @param {*} [options] Override http request option.
|
|
24525
24250
|
* @throws {RequiredError}
|
|
24526
24251
|
*/
|
|
24527
|
-
|
|
24252
|
+
apiV1HeadernavigationsLanguageCodeGet(languageCode: string, options?: any): AxiosPromise<Array<HeaderNavigationItemModel>>;
|
|
24528
24253
|
/**
|
|
24529
24254
|
*
|
|
24530
24255
|
* @summary Delete HeaderNavigationItem
|
|
24256
|
+
* @param {string} languageCode
|
|
24531
24257
|
* @param {string} id
|
|
24532
24258
|
* @param {*} [options] Override http request option.
|
|
24533
24259
|
* @throws {RequiredError}
|
|
24534
24260
|
*/
|
|
24535
|
-
|
|
24261
|
+
apiV1HeadernavigationsLanguageCodeIdDelete(languageCode: string, id: string, options?: any): AxiosPromise<boolean>;
|
|
24536
24262
|
/**
|
|
24537
24263
|
*
|
|
24538
24264
|
* @summary Get HeaderNavigationItem by id
|
|
24265
|
+
* @param {string} languageCode
|
|
24539
24266
|
* @param {string} id
|
|
24540
24267
|
* @param {*} [options] Override http request option.
|
|
24541
24268
|
* @throws {RequiredError}
|
|
24542
24269
|
*/
|
|
24543
|
-
|
|
24544
|
-
/**
|
|
24545
|
-
*
|
|
24546
|
-
* @summary Update HeaderNavigationItem
|
|
24547
|
-
* @param {string} id
|
|
24548
|
-
* @param {UpdateHeaderNavigationItemCommand} [updateHeaderNavigationItemCommand]
|
|
24549
|
-
* @param {*} [options] Override http request option.
|
|
24550
|
-
* @throws {RequiredError}
|
|
24551
|
-
*/
|
|
24552
|
-
apiV1HeadernavigationsIdPut(id: string, updateHeaderNavigationItemCommand?: UpdateHeaderNavigationItemCommand | undefined, options?: any): AxiosPromise<void>;
|
|
24270
|
+
apiV1HeadernavigationsLanguageCodeIdGet(languageCode: string, id: string, options?: any): AxiosPromise<HeaderNavigationItemModel>;
|
|
24553
24271
|
/**
|
|
24554
24272
|
*
|
|
24555
24273
|
* @summary Get HeaderNavigationItems by parent id
|
|
24274
|
+
* @param {string} languageCode
|
|
24556
24275
|
* @param {string} parentId
|
|
24557
24276
|
* @param {*} [options] Override http request option.
|
|
24558
24277
|
* @throws {RequiredError}
|
|
24559
24278
|
*/
|
|
24560
|
-
|
|
24279
|
+
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet(languageCode: string, parentId: string, options?: any): AxiosPromise<Array<HeaderNavigationItemModel>>;
|
|
24561
24280
|
/**
|
|
24562
24281
|
*
|
|
24563
|
-
* @summary
|
|
24564
|
-
* @param {
|
|
24282
|
+
* @summary Save HeaderNavigationItem
|
|
24283
|
+
* @param {string} languageCode
|
|
24284
|
+
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
24565
24285
|
* @param {*} [options] Override http request option.
|
|
24566
24286
|
* @throws {RequiredError}
|
|
24567
24287
|
*/
|
|
24568
|
-
|
|
24288
|
+
apiV1HeadernavigationsLanguageCodePost(languageCode: string, saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand | undefined, options?: any): AxiosPromise<HeaderNavigationItemModel>;
|
|
24569
24289
|
};
|
|
24570
24290
|
/**
|
|
24571
24291
|
* HeaderNavigationsApi - object-oriented interface
|
|
@@ -24574,70 +24294,55 @@ export declare const HeaderNavigationsApiFactory: (configuration?: Configuration
|
|
|
24574
24294
|
* @extends {BaseAPI}
|
|
24575
24295
|
*/
|
|
24576
24296
|
export declare class HeaderNavigationsApi extends BaseAPI {
|
|
24577
|
-
/**
|
|
24578
|
-
*
|
|
24579
|
-
* @summary Batch HeaderNavigationItems; Do Add, update, delete at one request
|
|
24580
|
-
* @param {BatchHeaderNavigationItemsCommand} [batchHeaderNavigationItemsCommand]
|
|
24581
|
-
* @param {*} [options] Override http request option.
|
|
24582
|
-
* @throws {RequiredError}
|
|
24583
|
-
* @memberof HeaderNavigationsApi
|
|
24584
|
-
*/
|
|
24585
|
-
apiV1HeadernavigationsBatchPost(batchHeaderNavigationItemsCommand?: BatchHeaderNavigationItemsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchHeaderNavigationItemResultModel>>;
|
|
24586
24297
|
/**
|
|
24587
24298
|
*
|
|
24588
24299
|
* @summary Get all HeaderNavigationItems
|
|
24589
|
-
* @param {string}
|
|
24300
|
+
* @param {string} languageCode
|
|
24590
24301
|
* @param {*} [options] Override http request option.
|
|
24591
24302
|
* @throws {RequiredError}
|
|
24592
24303
|
* @memberof HeaderNavigationsApi
|
|
24593
24304
|
*/
|
|
24594
|
-
|
|
24305
|
+
apiV1HeadernavigationsLanguageCodeGet(languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[]>>;
|
|
24595
24306
|
/**
|
|
24596
24307
|
*
|
|
24597
24308
|
* @summary Delete HeaderNavigationItem
|
|
24309
|
+
* @param {string} languageCode
|
|
24598
24310
|
* @param {string} id
|
|
24599
24311
|
* @param {*} [options] Override http request option.
|
|
24600
24312
|
* @throws {RequiredError}
|
|
24601
24313
|
* @memberof HeaderNavigationsApi
|
|
24602
24314
|
*/
|
|
24603
|
-
|
|
24315
|
+
apiV1HeadernavigationsLanguageCodeIdDelete(languageCode: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24604
24316
|
/**
|
|
24605
24317
|
*
|
|
24606
24318
|
* @summary Get HeaderNavigationItem by id
|
|
24319
|
+
* @param {string} languageCode
|
|
24607
24320
|
* @param {string} id
|
|
24608
24321
|
* @param {*} [options] Override http request option.
|
|
24609
24322
|
* @throws {RequiredError}
|
|
24610
24323
|
* @memberof HeaderNavigationsApi
|
|
24611
24324
|
*/
|
|
24612
|
-
|
|
24613
|
-
/**
|
|
24614
|
-
*
|
|
24615
|
-
* @summary Update HeaderNavigationItem
|
|
24616
|
-
* @param {string} id
|
|
24617
|
-
* @param {UpdateHeaderNavigationItemCommand} [updateHeaderNavigationItemCommand]
|
|
24618
|
-
* @param {*} [options] Override http request option.
|
|
24619
|
-
* @throws {RequiredError}
|
|
24620
|
-
* @memberof HeaderNavigationsApi
|
|
24621
|
-
*/
|
|
24622
|
-
apiV1HeadernavigationsIdPut(id: string, updateHeaderNavigationItemCommand?: UpdateHeaderNavigationItemCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
24325
|
+
apiV1HeadernavigationsLanguageCodeIdGet(languageCode: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel>>;
|
|
24623
24326
|
/**
|
|
24624
24327
|
*
|
|
24625
24328
|
* @summary Get HeaderNavigationItems by parent id
|
|
24329
|
+
* @param {string} languageCode
|
|
24626
24330
|
* @param {string} parentId
|
|
24627
24331
|
* @param {*} [options] Override http request option.
|
|
24628
24332
|
* @throws {RequiredError}
|
|
24629
24333
|
* @memberof HeaderNavigationsApi
|
|
24630
24334
|
*/
|
|
24631
|
-
|
|
24335
|
+
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet(languageCode: string, parentId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[]>>;
|
|
24632
24336
|
/**
|
|
24633
24337
|
*
|
|
24634
|
-
* @summary
|
|
24635
|
-
* @param {
|
|
24338
|
+
* @summary Save HeaderNavigationItem
|
|
24339
|
+
* @param {string} languageCode
|
|
24340
|
+
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
24636
24341
|
* @param {*} [options] Override http request option.
|
|
24637
24342
|
* @throws {RequiredError}
|
|
24638
24343
|
* @memberof HeaderNavigationsApi
|
|
24639
24344
|
*/
|
|
24640
|
-
|
|
24345
|
+
apiV1HeadernavigationsLanguageCodePost(languageCode: string, saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel>>;
|
|
24641
24346
|
}
|
|
24642
24347
|
/**
|
|
24643
24348
|
* HospitalsApi - axios parameter creator
|
|
@@ -28065,15 +27770,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
28065
27770
|
* @export
|
|
28066
27771
|
*/
|
|
28067
27772
|
export declare const HospitalsConsultationTimetableOverridesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
28068
|
-
/**
|
|
28069
|
-
*
|
|
28070
|
-
* @summary Add, Update and Delete item at once
|
|
28071
|
-
* @param {string} hospitalId
|
|
28072
|
-
* @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
|
|
28073
|
-
* @param {*} [options] Override http request option.
|
|
28074
|
-
* @throws {RequiredError}
|
|
28075
|
-
*/
|
|
28076
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost: (hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28077
27773
|
/**
|
|
28078
27774
|
*
|
|
28079
27775
|
* @summary Get consultation timetable override items
|
|
@@ -28081,22 +27777,14 @@ export declare const HospitalsConsultationTimetableOverridesApiAxiosParamCreator
|
|
|
28081
27777
|
* @param {boolean} [includesPreviousItems]
|
|
28082
27778
|
* @param {Date} [startDate]
|
|
28083
27779
|
* @param {Date} [endDate]
|
|
27780
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28084
27781
|
* @param {number} [page]
|
|
28085
27782
|
* @param {number} [limit]
|
|
28086
27783
|
* @param {Date} [lastRetrieved]
|
|
28087
27784
|
* @param {*} [options] Override http request option.
|
|
28088
27785
|
* @throws {RequiredError}
|
|
28089
27786
|
*/
|
|
28090
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet: (hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28091
|
-
/**
|
|
28092
|
-
*
|
|
28093
|
-
* @summary Delete timetable item
|
|
28094
|
-
* @param {string} hospitalId
|
|
28095
|
-
* @param {string} id
|
|
28096
|
-
* @param {*} [options] Override http request option.
|
|
28097
|
-
* @throws {RequiredError}
|
|
28098
|
-
*/
|
|
28099
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27787
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet: (hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, dayOfWeek?: DayOfWeek | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28100
27788
|
/**
|
|
28101
27789
|
*
|
|
28102
27790
|
* @summary Get consultation timetable override item
|
|
@@ -28108,38 +27796,28 @@ export declare const HospitalsConsultationTimetableOverridesApiAxiosParamCreator
|
|
|
28108
27796
|
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28109
27797
|
/**
|
|
28110
27798
|
*
|
|
28111
|
-
* @summary
|
|
27799
|
+
* @summary Delete timetable item
|
|
28112
27800
|
* @param {string} hospitalId
|
|
28113
|
-
* @param {
|
|
28114
|
-
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
27801
|
+
* @param {DeleteHospitalConsultationTimetableOverrideCommand} [deleteHospitalConsultationTimetableOverrideCommand]
|
|
28115
27802
|
* @param {*} [options] Override http request option.
|
|
28116
27803
|
* @throws {RequiredError}
|
|
28117
27804
|
*/
|
|
28118
|
-
|
|
27805
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPatch: (hospitalId: string, deleteHospitalConsultationTimetableOverrideCommand?: DeleteHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28119
27806
|
/**
|
|
28120
27807
|
*
|
|
28121
|
-
* @summary
|
|
27808
|
+
* @summary Save timetable itme
|
|
28122
27809
|
* @param {string} hospitalId
|
|
28123
|
-
* @param {
|
|
27810
|
+
* @param {SaveHospitalConsultationTimetableOverridesCommand} [saveHospitalConsultationTimetableOverridesCommand]
|
|
28124
27811
|
* @param {*} [options] Override http request option.
|
|
28125
27812
|
* @throws {RequiredError}
|
|
28126
27813
|
*/
|
|
28127
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost: (hospitalId: string,
|
|
27814
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost: (hospitalId: string, saveHospitalConsultationTimetableOverridesCommand?: SaveHospitalConsultationTimetableOverridesCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28128
27815
|
};
|
|
28129
27816
|
/**
|
|
28130
27817
|
* HospitalsConsultationTimetableOverridesApi - functional programming interface
|
|
28131
27818
|
* @export
|
|
28132
27819
|
*/
|
|
28133
27820
|
export declare const HospitalsConsultationTimetableOverridesApiFp: (configuration?: Configuration | undefined) => {
|
|
28134
|
-
/**
|
|
28135
|
-
*
|
|
28136
|
-
* @summary Add, Update and Delete item at once
|
|
28137
|
-
* @param {string} hospitalId
|
|
28138
|
-
* @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
|
|
28139
|
-
* @param {*} [options] Override http request option.
|
|
28140
|
-
* @throws {RequiredError}
|
|
28141
|
-
*/
|
|
28142
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost(hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BatchHospitalConsultationTimetableOverridesResultModel>>;
|
|
28143
27821
|
/**
|
|
28144
27822
|
*
|
|
28145
27823
|
* @summary Get consultation timetable override items
|
|
@@ -28147,22 +27825,14 @@ export declare const HospitalsConsultationTimetableOverridesApiFp: (configuratio
|
|
|
28147
27825
|
* @param {boolean} [includesPreviousItems]
|
|
28148
27826
|
* @param {Date} [startDate]
|
|
28149
27827
|
* @param {Date} [endDate]
|
|
27828
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28150
27829
|
* @param {number} [page]
|
|
28151
27830
|
* @param {number} [limit]
|
|
28152
27831
|
* @param {Date} [lastRetrieved]
|
|
28153
27832
|
* @param {*} [options] Override http request option.
|
|
28154
27833
|
* @throws {RequiredError}
|
|
28155
27834
|
*/
|
|
28156
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverridesModel>>;
|
|
28157
|
-
/**
|
|
28158
|
-
*
|
|
28159
|
-
* @summary Delete timetable item
|
|
28160
|
-
* @param {string} hospitalId
|
|
28161
|
-
* @param {string} id
|
|
28162
|
-
* @param {*} [options] Override http request option.
|
|
28163
|
-
* @throws {RequiredError}
|
|
28164
|
-
*/
|
|
28165
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
27835
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, dayOfWeek?: DayOfWeek | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverridesModel>>;
|
|
28166
27836
|
/**
|
|
28167
27837
|
*
|
|
28168
27838
|
* @summary Get consultation timetable override item
|
|
@@ -28174,38 +27844,28 @@ export declare const HospitalsConsultationTimetableOverridesApiFp: (configuratio
|
|
|
28174
27844
|
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverrideModel>>;
|
|
28175
27845
|
/**
|
|
28176
27846
|
*
|
|
28177
|
-
* @summary
|
|
27847
|
+
* @summary Delete timetable item
|
|
28178
27848
|
* @param {string} hospitalId
|
|
28179
|
-
* @param {
|
|
28180
|
-
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
27849
|
+
* @param {DeleteHospitalConsultationTimetableOverrideCommand} [deleteHospitalConsultationTimetableOverrideCommand]
|
|
28181
27850
|
* @param {*} [options] Override http request option.
|
|
28182
27851
|
* @throws {RequiredError}
|
|
28183
27852
|
*/
|
|
28184
|
-
|
|
27853
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPatch(hospitalId: string, deleteHospitalConsultationTimetableOverrideCommand?: DeleteHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
28185
27854
|
/**
|
|
28186
27855
|
*
|
|
28187
|
-
* @summary
|
|
27856
|
+
* @summary Save timetable itme
|
|
28188
27857
|
* @param {string} hospitalId
|
|
28189
|
-
* @param {
|
|
27858
|
+
* @param {SaveHospitalConsultationTimetableOverridesCommand} [saveHospitalConsultationTimetableOverridesCommand]
|
|
28190
27859
|
* @param {*} [options] Override http request option.
|
|
28191
27860
|
* @throws {RequiredError}
|
|
28192
27861
|
*/
|
|
28193
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string,
|
|
27862
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, saveHospitalConsultationTimetableOverridesCommand?: SaveHospitalConsultationTimetableOverridesCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<HospitalConsultationTimetableOverrideItemModel>>>;
|
|
28194
27863
|
};
|
|
28195
27864
|
/**
|
|
28196
27865
|
* HospitalsConsultationTimetableOverridesApi - factory interface
|
|
28197
27866
|
* @export
|
|
28198
27867
|
*/
|
|
28199
27868
|
export declare const HospitalsConsultationTimetableOverridesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
28200
|
-
/**
|
|
28201
|
-
*
|
|
28202
|
-
* @summary Add, Update and Delete item at once
|
|
28203
|
-
* @param {string} hospitalId
|
|
28204
|
-
* @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
|
|
28205
|
-
* @param {*} [options] Override http request option.
|
|
28206
|
-
* @throws {RequiredError}
|
|
28207
|
-
*/
|
|
28208
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost(hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand | undefined, options?: any): AxiosPromise<BatchHospitalConsultationTimetableOverridesResultModel>;
|
|
28209
27869
|
/**
|
|
28210
27870
|
*
|
|
28211
27871
|
* @summary Get consultation timetable override items
|
|
@@ -28213,22 +27873,14 @@ export declare const HospitalsConsultationTimetableOverridesApiFactory: (configu
|
|
|
28213
27873
|
* @param {boolean} [includesPreviousItems]
|
|
28214
27874
|
* @param {Date} [startDate]
|
|
28215
27875
|
* @param {Date} [endDate]
|
|
27876
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28216
27877
|
* @param {number} [page]
|
|
28217
27878
|
* @param {number} [limit]
|
|
28218
27879
|
* @param {Date} [lastRetrieved]
|
|
28219
27880
|
* @param {*} [options] Override http request option.
|
|
28220
27881
|
* @throws {RequiredError}
|
|
28221
27882
|
*/
|
|
28222
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableOverridesModel>;
|
|
28223
|
-
/**
|
|
28224
|
-
*
|
|
28225
|
-
* @summary Delete timetable item
|
|
28226
|
-
* @param {string} hospitalId
|
|
28227
|
-
* @param {string} id
|
|
28228
|
-
* @param {*} [options] Override http request option.
|
|
28229
|
-
* @throws {RequiredError}
|
|
28230
|
-
*/
|
|
28231
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete(hospitalId: string, id: string, options?: any): AxiosPromise<boolean>;
|
|
27883
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean | undefined, startDate?: Date | undefined, endDate?: Date | undefined, dayOfWeek?: DayOfWeek | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetableOverridesModel>;
|
|
28232
27884
|
/**
|
|
28233
27885
|
*
|
|
28234
27886
|
* @summary Get consultation timetable override item
|
|
@@ -28240,23 +27892,22 @@ export declare const HospitalsConsultationTimetableOverridesApiFactory: (configu
|
|
|
28240
27892
|
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalConsultationTimetableOverrideModel>;
|
|
28241
27893
|
/**
|
|
28242
27894
|
*
|
|
28243
|
-
* @summary
|
|
27895
|
+
* @summary Delete timetable item
|
|
28244
27896
|
* @param {string} hospitalId
|
|
28245
|
-
* @param {
|
|
28246
|
-
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
27897
|
+
* @param {DeleteHospitalConsultationTimetableOverrideCommand} [deleteHospitalConsultationTimetableOverrideCommand]
|
|
28247
27898
|
* @param {*} [options] Override http request option.
|
|
28248
27899
|
* @throws {RequiredError}
|
|
28249
27900
|
*/
|
|
28250
|
-
|
|
27901
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPatch(hospitalId: string, deleteHospitalConsultationTimetableOverrideCommand?: DeleteHospitalConsultationTimetableOverrideCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
28251
27902
|
/**
|
|
28252
27903
|
*
|
|
28253
|
-
* @summary
|
|
27904
|
+
* @summary Save timetable itme
|
|
28254
27905
|
* @param {string} hospitalId
|
|
28255
|
-
* @param {
|
|
27906
|
+
* @param {SaveHospitalConsultationTimetableOverridesCommand} [saveHospitalConsultationTimetableOverridesCommand]
|
|
28256
27907
|
* @param {*} [options] Override http request option.
|
|
28257
27908
|
* @throws {RequiredError}
|
|
28258
27909
|
*/
|
|
28259
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string,
|
|
27910
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, saveHospitalConsultationTimetableOverridesCommand?: SaveHospitalConsultationTimetableOverridesCommand | undefined, options?: any): AxiosPromise<Array<HospitalConsultationTimetableOverrideItemModel>>;
|
|
28260
27911
|
};
|
|
28261
27912
|
/**
|
|
28262
27913
|
* HospitalsConsultationTimetableOverridesApi - object-oriented interface
|
|
@@ -28265,16 +27916,6 @@ export declare const HospitalsConsultationTimetableOverridesApiFactory: (configu
|
|
|
28265
27916
|
* @extends {BaseAPI}
|
|
28266
27917
|
*/
|
|
28267
27918
|
export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI {
|
|
28268
|
-
/**
|
|
28269
|
-
*
|
|
28270
|
-
* @summary Add, Update and Delete item at once
|
|
28271
|
-
* @param {string} hospitalId
|
|
28272
|
-
* @param {BatchHospitalConsultationTimetableOverridesCommand} [batchHospitalConsultationTimetableOverridesCommand]
|
|
28273
|
-
* @param {*} [options] Override http request option.
|
|
28274
|
-
* @throws {RequiredError}
|
|
28275
|
-
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
28276
|
-
*/
|
|
28277
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesBatchPost(hospitalId: string, batchHospitalConsultationTimetableOverridesCommand?: BatchHospitalConsultationTimetableOverridesCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchHospitalConsultationTimetableOverridesResultModel>>;
|
|
28278
27919
|
/**
|
|
28279
27920
|
*
|
|
28280
27921
|
* @summary Get consultation timetable override items
|
|
@@ -28282,6 +27923,7 @@ export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI
|
|
|
28282
27923
|
* @param {boolean} [includesPreviousItems]
|
|
28283
27924
|
* @param {Date} [startDate]
|
|
28284
27925
|
* @param {Date} [endDate]
|
|
27926
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28285
27927
|
* @param {number} [page]
|
|
28286
27928
|
* @param {number} [limit]
|
|
28287
27929
|
* @param {Date} [lastRetrieved]
|
|
@@ -28289,17 +27931,7 @@ export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI
|
|
|
28289
27931
|
* @throws {RequiredError}
|
|
28290
27932
|
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
28291
27933
|
*/
|
|
28292
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverridesModel>>;
|
|
28293
|
-
/**
|
|
28294
|
-
*
|
|
28295
|
-
* @summary Delete timetable item
|
|
28296
|
-
* @param {string} hospitalId
|
|
28297
|
-
* @param {string} id
|
|
28298
|
-
* @param {*} [options] Override http request option.
|
|
28299
|
-
* @throws {RequiredError}
|
|
28300
|
-
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
28301
|
-
*/
|
|
28302
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
27934
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesGet(hospitalId: string, includesPreviousItems?: boolean, startDate?: Date, endDate?: Date, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverridesModel>>;
|
|
28303
27935
|
/**
|
|
28304
27936
|
*
|
|
28305
27937
|
* @summary Get consultation timetable override item
|
|
@@ -28312,25 +27944,24 @@ export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI
|
|
|
28312
27944
|
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverrideModel>>;
|
|
28313
27945
|
/**
|
|
28314
27946
|
*
|
|
28315
|
-
* @summary
|
|
27947
|
+
* @summary Delete timetable item
|
|
28316
27948
|
* @param {string} hospitalId
|
|
28317
|
-
* @param {
|
|
28318
|
-
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
27949
|
+
* @param {DeleteHospitalConsultationTimetableOverrideCommand} [deleteHospitalConsultationTimetableOverrideCommand]
|
|
28319
27950
|
* @param {*} [options] Override http request option.
|
|
28320
27951
|
* @throws {RequiredError}
|
|
28321
27952
|
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
28322
27953
|
*/
|
|
28323
|
-
|
|
27954
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPatch(hospitalId: string, deleteHospitalConsultationTimetableOverrideCommand?: DeleteHospitalConsultationTimetableOverrideCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
28324
27955
|
/**
|
|
28325
27956
|
*
|
|
28326
|
-
* @summary
|
|
27957
|
+
* @summary Save timetable itme
|
|
28327
27958
|
* @param {string} hospitalId
|
|
28328
|
-
* @param {
|
|
27959
|
+
* @param {SaveHospitalConsultationTimetableOverridesCommand} [saveHospitalConsultationTimetableOverridesCommand]
|
|
28329
27960
|
* @param {*} [options] Override http request option.
|
|
28330
27961
|
* @throws {RequiredError}
|
|
28331
27962
|
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
28332
27963
|
*/
|
|
28333
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string,
|
|
27964
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, saveHospitalConsultationTimetableOverridesCommand?: SaveHospitalConsultationTimetableOverridesCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverrideItemModel[]>>;
|
|
28334
27965
|
}
|
|
28335
27966
|
/**
|
|
28336
27967
|
* HospitalsConsultationTimetablesApi - axios parameter creator
|
|
@@ -28350,13 +27981,14 @@ export declare const HospitalsConsultationTimetablesApiAxiosParamCreator: (confi
|
|
|
28350
27981
|
*
|
|
28351
27982
|
* @summary Get consultation timetables
|
|
28352
27983
|
* @param {string} hospitalId
|
|
27984
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28353
27985
|
* @param {number} [page]
|
|
28354
27986
|
* @param {number} [limit]
|
|
28355
27987
|
* @param {Date} [lastRetrieved]
|
|
28356
27988
|
* @param {*} [options] Override http request option.
|
|
28357
27989
|
* @throws {RequiredError}
|
|
28358
27990
|
*/
|
|
28359
|
-
apiV1HospitalsHospitalIdConsultationtimetablesGet: (hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27991
|
+
apiV1HospitalsHospitalIdConsultationtimetablesGet: (hospitalId: string, dayOfWeek?: DayOfWeek | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28360
27992
|
/**
|
|
28361
27993
|
*
|
|
28362
27994
|
* @summary Delete timetable item
|
|
@@ -28413,13 +28045,14 @@ export declare const HospitalsConsultationTimetablesApiFp: (configuration?: Conf
|
|
|
28413
28045
|
*
|
|
28414
28046
|
* @summary Get consultation timetables
|
|
28415
28047
|
* @param {string} hospitalId
|
|
28048
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28416
28049
|
* @param {number} [page]
|
|
28417
28050
|
* @param {number} [limit]
|
|
28418
28051
|
* @param {Date} [lastRetrieved]
|
|
28419
28052
|
* @param {*} [options] Override http request option.
|
|
28420
28053
|
* @throws {RequiredError}
|
|
28421
28054
|
*/
|
|
28422
|
-
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetablesModel>>;
|
|
28055
|
+
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, dayOfWeek?: DayOfWeek | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetablesModel>>;
|
|
28423
28056
|
/**
|
|
28424
28057
|
*
|
|
28425
28058
|
* @summary Delete timetable item
|
|
@@ -28476,13 +28109,14 @@ export declare const HospitalsConsultationTimetablesApiFactory: (configuration?:
|
|
|
28476
28109
|
*
|
|
28477
28110
|
* @summary Get consultation timetables
|
|
28478
28111
|
* @param {string} hospitalId
|
|
28112
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28479
28113
|
* @param {number} [page]
|
|
28480
28114
|
* @param {number} [limit]
|
|
28481
28115
|
* @param {Date} [lastRetrieved]
|
|
28482
28116
|
* @param {*} [options] Override http request option.
|
|
28483
28117
|
* @throws {RequiredError}
|
|
28484
28118
|
*/
|
|
28485
|
-
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetablesModel>;
|
|
28119
|
+
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, dayOfWeek?: DayOfWeek | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetablesModel>;
|
|
28486
28120
|
/**
|
|
28487
28121
|
*
|
|
28488
28122
|
* @summary Delete timetable item
|
|
@@ -28542,6 +28176,7 @@ export declare class HospitalsConsultationTimetablesApi extends BaseAPI {
|
|
|
28542
28176
|
*
|
|
28543
28177
|
* @summary Get consultation timetables
|
|
28544
28178
|
* @param {string} hospitalId
|
|
28179
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28545
28180
|
* @param {number} [page]
|
|
28546
28181
|
* @param {number} [limit]
|
|
28547
28182
|
* @param {Date} [lastRetrieved]
|
|
@@ -28549,7 +28184,7 @@ export declare class HospitalsConsultationTimetablesApi extends BaseAPI {
|
|
|
28549
28184
|
* @throws {RequiredError}
|
|
28550
28185
|
* @memberof HospitalsConsultationTimetablesApi
|
|
28551
28186
|
*/
|
|
28552
|
-
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetablesModel>>;
|
|
28187
|
+
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetablesModel>>;
|
|
28553
28188
|
/**
|
|
28554
28189
|
*
|
|
28555
28190
|
* @summary Delete timetable item
|