ch-admin-api-client-typescript 4.4.7 → 4.4.9
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 +421 -628
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +345 -475
- package/package.json +1 -1
- package/src/api.ts +612 -880
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}
|
|
@@ -11544,6 +11320,100 @@ export declare enum ReviewType {
|
|
|
11544
11320
|
SurgeryReview = "SurgeryReview",
|
|
11545
11321
|
RealStory = "RealStory"
|
|
11546
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;
|
|
11403
|
+
}
|
|
11404
|
+
/**
|
|
11405
|
+
*
|
|
11406
|
+
* @export
|
|
11407
|
+
* @interface SaveHospitalConsultationTimetableOverridesCommand
|
|
11408
|
+
*/
|
|
11409
|
+
export interface SaveHospitalConsultationTimetableOverridesCommand {
|
|
11410
|
+
/**
|
|
11411
|
+
*
|
|
11412
|
+
* @type {Array<SaveHospitalConsultationTimetableOverrideModel>}
|
|
11413
|
+
* @memberof SaveHospitalConsultationTimetableOverridesCommand
|
|
11414
|
+
*/
|
|
11415
|
+
'items'?: Array<SaveHospitalConsultationTimetableOverrideModel> | null;
|
|
11416
|
+
}
|
|
11547
11417
|
/**
|
|
11548
11418
|
*
|
|
11549
11419
|
* @export
|
|
@@ -13055,6 +12925,16 @@ export interface TemplateVersionsModel {
|
|
|
13055
12925
|
*/
|
|
13056
12926
|
'metaData'?: PagedListMetaData;
|
|
13057
12927
|
}
|
|
12928
|
+
/**
|
|
12929
|
+
*
|
|
12930
|
+
* @export
|
|
12931
|
+
* @enum {string}
|
|
12932
|
+
*/
|
|
12933
|
+
export declare enum TranslateAllOptions {
|
|
12934
|
+
All = "All",
|
|
12935
|
+
HospitalLanguages = "HospitalLanguages",
|
|
12936
|
+
RequestedLanguages = "RequestedLanguages"
|
|
12937
|
+
}
|
|
13058
12938
|
/**
|
|
13059
12939
|
*
|
|
13060
12940
|
* @export
|
|
@@ -13086,6 +12966,80 @@ export interface TranslateCommand {
|
|
|
13086
12966
|
*/
|
|
13087
12967
|
'isHtml'?: boolean;
|
|
13088
12968
|
}
|
|
12969
|
+
/**
|
|
12970
|
+
*
|
|
12971
|
+
* @export
|
|
12972
|
+
* @interface TranslateDoctorAffiliationCommand
|
|
12973
|
+
*/
|
|
12974
|
+
export interface TranslateDoctorAffiliationCommand {
|
|
12975
|
+
/**
|
|
12976
|
+
*
|
|
12977
|
+
* @type {string}
|
|
12978
|
+
* @memberof TranslateDoctorAffiliationCommand
|
|
12979
|
+
*/
|
|
12980
|
+
'basisLanguageCode'?: string | null;
|
|
12981
|
+
/**
|
|
12982
|
+
*
|
|
12983
|
+
* @type {TranslateAllOptions}
|
|
12984
|
+
* @memberof TranslateDoctorAffiliationCommand
|
|
12985
|
+
*/
|
|
12986
|
+
'translationOption'?: TranslateAllOptions;
|
|
12987
|
+
/**
|
|
12988
|
+
*
|
|
12989
|
+
* @type {Array<string>}
|
|
12990
|
+
* @memberof TranslateDoctorAffiliationCommand
|
|
12991
|
+
*/
|
|
12992
|
+
'translateToLanguageCodes'?: Array<string> | null;
|
|
12993
|
+
/**
|
|
12994
|
+
*
|
|
12995
|
+
* @type {boolean}
|
|
12996
|
+
* @memberof TranslateDoctorAffiliationCommand
|
|
12997
|
+
*/
|
|
12998
|
+
'isAllowedOverwrite'?: boolean | null;
|
|
12999
|
+
/**
|
|
13000
|
+
*
|
|
13001
|
+
* @type {boolean}
|
|
13002
|
+
* @memberof TranslateDoctorAffiliationCommand
|
|
13003
|
+
*/
|
|
13004
|
+
'isAllowOverwriteConfirmed'?: boolean | null;
|
|
13005
|
+
}
|
|
13006
|
+
/**
|
|
13007
|
+
*
|
|
13008
|
+
* @export
|
|
13009
|
+
* @interface TranslateHospitalCommand
|
|
13010
|
+
*/
|
|
13011
|
+
export interface TranslateHospitalCommand {
|
|
13012
|
+
/**
|
|
13013
|
+
*
|
|
13014
|
+
* @type {string}
|
|
13015
|
+
* @memberof TranslateHospitalCommand
|
|
13016
|
+
*/
|
|
13017
|
+
'basisLanguageCode'?: string | null;
|
|
13018
|
+
/**
|
|
13019
|
+
*
|
|
13020
|
+
* @type {TranslateAllOptions}
|
|
13021
|
+
* @memberof TranslateHospitalCommand
|
|
13022
|
+
*/
|
|
13023
|
+
'translationOption'?: TranslateAllOptions;
|
|
13024
|
+
/**
|
|
13025
|
+
*
|
|
13026
|
+
* @type {Array<string>}
|
|
13027
|
+
* @memberof TranslateHospitalCommand
|
|
13028
|
+
*/
|
|
13029
|
+
'translateToLanguageCodes'?: Array<string> | null;
|
|
13030
|
+
/**
|
|
13031
|
+
*
|
|
13032
|
+
* @type {boolean}
|
|
13033
|
+
* @memberof TranslateHospitalCommand
|
|
13034
|
+
*/
|
|
13035
|
+
'isAllowedOverwrite'?: boolean | null;
|
|
13036
|
+
/**
|
|
13037
|
+
*
|
|
13038
|
+
* @type {boolean}
|
|
13039
|
+
* @memberof TranslateHospitalCommand
|
|
13040
|
+
*/
|
|
13041
|
+
'isAllowOverwriteConfirmed'?: boolean | null;
|
|
13042
|
+
}
|
|
13089
13043
|
/**
|
|
13090
13044
|
*
|
|
13091
13045
|
* @export
|
|
@@ -14174,143 +14128,63 @@ export interface UpdateFaqCommand {
|
|
|
14174
14128
|
/**
|
|
14175
14129
|
*
|
|
14176
14130
|
* @type {string}
|
|
14177
|
-
* @memberof UpdateFaqCommand
|
|
14178
|
-
*/
|
|
14179
|
-
'name'?: string | null;
|
|
14180
|
-
/**
|
|
14181
|
-
*
|
|
14182
|
-
* @type {string}
|
|
14183
|
-
* @memberof UpdateFaqCommand
|
|
14184
|
-
*/
|
|
14185
|
-
'slug'?: string | null;
|
|
14186
|
-
/**
|
|
14187
|
-
*
|
|
14188
|
-
* @type {string}
|
|
14189
|
-
* @memberof UpdateFaqCommand
|
|
14190
|
-
*/
|
|
14191
|
-
'description'?: string | null;
|
|
14192
|
-
/**
|
|
14193
|
-
*
|
|
14194
|
-
* @type {string}
|
|
14195
|
-
* @memberof UpdateFaqCommand
|
|
14196
|
-
*/
|
|
14197
|
-
'content'?: string | null;
|
|
14198
|
-
/**
|
|
14199
|
-
*
|
|
14200
|
-
* @type {number}
|
|
14201
|
-
* @memberof UpdateFaqCommand
|
|
14202
|
-
*/
|
|
14203
|
-
'order'?: number;
|
|
14204
|
-
/**
|
|
14205
|
-
*
|
|
14206
|
-
* @type {string}
|
|
14207
|
-
* @memberof UpdateFaqCommand
|
|
14208
|
-
*/
|
|
14209
|
-
'customStyle'?: string | null;
|
|
14210
|
-
/**
|
|
14211
|
-
*
|
|
14212
|
-
* @type {Array<FaqTagItemModel>}
|
|
14213
|
-
* @memberof UpdateFaqCommand
|
|
14214
|
-
*/
|
|
14215
|
-
'faqTags'?: Array<FaqTagItemModel> | null;
|
|
14216
|
-
/**
|
|
14217
|
-
*
|
|
14218
|
-
* @type {string}
|
|
14219
|
-
* @memberof UpdateFaqCommand
|
|
14220
|
-
*/
|
|
14221
|
-
'languageCode'?: string | null;
|
|
14222
|
-
/**
|
|
14223
|
-
*
|
|
14224
|
-
* @type {boolean}
|
|
14225
|
-
* @memberof UpdateFaqCommand
|
|
14226
|
-
*/
|
|
14227
|
-
'confirmed'?: boolean;
|
|
14228
|
-
/**
|
|
14229
|
-
*
|
|
14230
|
-
* @type {Array<MediaModel>}
|
|
14231
|
-
* @memberof UpdateFaqCommand
|
|
14232
|
-
*/
|
|
14233
|
-
'medias'?: Array<MediaModel> | null;
|
|
14234
|
-
}
|
|
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 {
|
|
14131
|
+
* @memberof UpdateFaqCommand
|
|
14132
|
+
*/
|
|
14133
|
+
'name'?: string | null;
|
|
14278
14134
|
/**
|
|
14279
14135
|
*
|
|
14280
14136
|
* @type {string}
|
|
14281
|
-
* @memberof
|
|
14137
|
+
* @memberof UpdateFaqCommand
|
|
14282
14138
|
*/
|
|
14283
|
-
'
|
|
14139
|
+
'slug'?: string | null;
|
|
14284
14140
|
/**
|
|
14285
14141
|
*
|
|
14286
14142
|
* @type {string}
|
|
14287
|
-
* @memberof
|
|
14143
|
+
* @memberof UpdateFaqCommand
|
|
14288
14144
|
*/
|
|
14289
|
-
'
|
|
14145
|
+
'description'?: string | null;
|
|
14290
14146
|
/**
|
|
14291
14147
|
*
|
|
14292
14148
|
* @type {string}
|
|
14293
|
-
* @memberof
|
|
14149
|
+
* @memberof UpdateFaqCommand
|
|
14294
14150
|
*/
|
|
14295
|
-
'
|
|
14151
|
+
'content'?: string | null;
|
|
14296
14152
|
/**
|
|
14297
14153
|
*
|
|
14298
14154
|
* @type {number}
|
|
14299
|
-
* @memberof
|
|
14155
|
+
* @memberof UpdateFaqCommand
|
|
14300
14156
|
*/
|
|
14301
14157
|
'order'?: number;
|
|
14302
14158
|
/**
|
|
14303
14159
|
*
|
|
14304
14160
|
* @type {string}
|
|
14305
|
-
* @memberof
|
|
14161
|
+
* @memberof UpdateFaqCommand
|
|
14306
14162
|
*/
|
|
14307
|
-
'
|
|
14163
|
+
'customStyle'?: string | null;
|
|
14164
|
+
/**
|
|
14165
|
+
*
|
|
14166
|
+
* @type {Array<FaqTagItemModel>}
|
|
14167
|
+
* @memberof UpdateFaqCommand
|
|
14168
|
+
*/
|
|
14169
|
+
'faqTags'?: Array<FaqTagItemModel> | null;
|
|
14308
14170
|
/**
|
|
14309
14171
|
*
|
|
14310
14172
|
* @type {string}
|
|
14311
|
-
* @memberof
|
|
14173
|
+
* @memberof UpdateFaqCommand
|
|
14312
14174
|
*/
|
|
14313
|
-
'
|
|
14175
|
+
'languageCode'?: string | null;
|
|
14176
|
+
/**
|
|
14177
|
+
*
|
|
14178
|
+
* @type {boolean}
|
|
14179
|
+
* @memberof UpdateFaqCommand
|
|
14180
|
+
*/
|
|
14181
|
+
'confirmed'?: boolean;
|
|
14182
|
+
/**
|
|
14183
|
+
*
|
|
14184
|
+
* @type {Array<MediaModel>}
|
|
14185
|
+
* @memberof UpdateFaqCommand
|
|
14186
|
+
*/
|
|
14187
|
+
'medias'?: Array<MediaModel> | null;
|
|
14314
14188
|
}
|
|
14315
14189
|
/**
|
|
14316
14190
|
*
|
|
@@ -14494,37 +14368,6 @@ export interface UpdateHospitalConsultationTimetableCommand {
|
|
|
14494
14368
|
*/
|
|
14495
14369
|
'end'?: string | null;
|
|
14496
14370
|
}
|
|
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
14371
|
/**
|
|
14529
14372
|
*
|
|
14530
14373
|
* @export
|
|
@@ -21131,6 +20974,15 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
21131
20974
|
* @throws {RequiredError}
|
|
21132
20975
|
*/
|
|
21133
20976
|
apiV1DoctoraffiliationsIdReactivePut: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20977
|
+
/**
|
|
20978
|
+
*
|
|
20979
|
+
* @summary Translate doctorAffiliation at once
|
|
20980
|
+
* @param {string} id
|
|
20981
|
+
* @param {TranslateDoctorAffiliationCommand} [translateDoctorAffiliationCommand]
|
|
20982
|
+
* @param {*} [options] Override http request option.
|
|
20983
|
+
* @throws {RequiredError}
|
|
20984
|
+
*/
|
|
20985
|
+
apiV1DoctoraffiliationsIdTranslatePost: (id: string, translateDoctorAffiliationCommand?: TranslateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21134
20986
|
/**
|
|
21135
20987
|
*
|
|
21136
20988
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -21248,6 +21100,15 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
21248
21100
|
* @throws {RequiredError}
|
|
21249
21101
|
*/
|
|
21250
21102
|
apiV1DoctoraffiliationsIdReactivePut(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21103
|
+
/**
|
|
21104
|
+
*
|
|
21105
|
+
* @summary Translate doctorAffiliation at once
|
|
21106
|
+
* @param {string} id
|
|
21107
|
+
* @param {TranslateDoctorAffiliationCommand} [translateDoctorAffiliationCommand]
|
|
21108
|
+
* @param {*} [options] Override http request option.
|
|
21109
|
+
* @throws {RequiredError}
|
|
21110
|
+
*/
|
|
21111
|
+
apiV1DoctoraffiliationsIdTranslatePost(id: string, translateDoctorAffiliationCommand?: TranslateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
21251
21112
|
/**
|
|
21252
21113
|
*
|
|
21253
21114
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -21365,6 +21226,15 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
21365
21226
|
* @throws {RequiredError}
|
|
21366
21227
|
*/
|
|
21367
21228
|
apiV1DoctoraffiliationsIdReactivePut(id: string, options?: any): AxiosPromise<boolean>;
|
|
21229
|
+
/**
|
|
21230
|
+
*
|
|
21231
|
+
* @summary Translate doctorAffiliation at once
|
|
21232
|
+
* @param {string} id
|
|
21233
|
+
* @param {TranslateDoctorAffiliationCommand} [translateDoctorAffiliationCommand]
|
|
21234
|
+
* @param {*} [options] Override http request option.
|
|
21235
|
+
* @throws {RequiredError}
|
|
21236
|
+
*/
|
|
21237
|
+
apiV1DoctoraffiliationsIdTranslatePost(id: string, translateDoctorAffiliationCommand?: TranslateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
21368
21238
|
/**
|
|
21369
21239
|
*
|
|
21370
21240
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -21494,6 +21364,16 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
21494
21364
|
* @memberof DoctorAffiliationsApi
|
|
21495
21365
|
*/
|
|
21496
21366
|
apiV1DoctoraffiliationsIdReactivePut(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21367
|
+
/**
|
|
21368
|
+
*
|
|
21369
|
+
* @summary Translate doctorAffiliation at once
|
|
21370
|
+
* @param {string} id
|
|
21371
|
+
* @param {TranslateDoctorAffiliationCommand} [translateDoctorAffiliationCommand]
|
|
21372
|
+
* @param {*} [options] Override http request option.
|
|
21373
|
+
* @throws {RequiredError}
|
|
21374
|
+
* @memberof DoctorAffiliationsApi
|
|
21375
|
+
*/
|
|
21376
|
+
apiV1DoctoraffiliationsIdTranslatePost(id: string, translateDoctorAffiliationCommand?: TranslateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
21497
21377
|
/**
|
|
21498
21378
|
*
|
|
21499
21379
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
@@ -24383,189 +24263,150 @@ export declare class GroupChannelsApi extends BaseAPI {
|
|
|
24383
24263
|
* @export
|
|
24384
24264
|
*/
|
|
24385
24265
|
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
24266
|
/**
|
|
24395
24267
|
*
|
|
24396
24268
|
* @summary Get all HeaderNavigationItems
|
|
24397
|
-
* @param {string}
|
|
24269
|
+
* @param {string} languageCode
|
|
24398
24270
|
* @param {*} [options] Override http request option.
|
|
24399
24271
|
* @throws {RequiredError}
|
|
24400
24272
|
*/
|
|
24401
|
-
|
|
24273
|
+
apiV1HeadernavigationsLanguageCodeGet: (languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24402
24274
|
/**
|
|
24403
24275
|
*
|
|
24404
24276
|
* @summary Delete HeaderNavigationItem
|
|
24277
|
+
* @param {string} languageCode
|
|
24405
24278
|
* @param {string} id
|
|
24406
24279
|
* @param {*} [options] Override http request option.
|
|
24407
24280
|
* @throws {RequiredError}
|
|
24408
24281
|
*/
|
|
24409
|
-
|
|
24282
|
+
apiV1HeadernavigationsLanguageCodeIdDelete: (languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24410
24283
|
/**
|
|
24411
24284
|
*
|
|
24412
24285
|
* @summary Get HeaderNavigationItem by id
|
|
24286
|
+
* @param {string} languageCode
|
|
24413
24287
|
* @param {string} id
|
|
24414
24288
|
* @param {*} [options] Override http request option.
|
|
24415
24289
|
* @throws {RequiredError}
|
|
24416
24290
|
*/
|
|
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>;
|
|
24291
|
+
apiV1HeadernavigationsLanguageCodeIdGet: (languageCode: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24427
24292
|
/**
|
|
24428
24293
|
*
|
|
24429
24294
|
* @summary Get HeaderNavigationItems by parent id
|
|
24295
|
+
* @param {string} languageCode
|
|
24430
24296
|
* @param {string} parentId
|
|
24431
24297
|
* @param {*} [options] Override http request option.
|
|
24432
24298
|
* @throws {RequiredError}
|
|
24433
24299
|
*/
|
|
24434
|
-
|
|
24300
|
+
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet: (languageCode: string, parentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24435
24301
|
/**
|
|
24436
24302
|
*
|
|
24437
|
-
* @summary
|
|
24438
|
-
* @param {
|
|
24303
|
+
* @summary Save HeaderNavigationItem
|
|
24304
|
+
* @param {string} languageCode
|
|
24305
|
+
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
24439
24306
|
* @param {*} [options] Override http request option.
|
|
24440
24307
|
* @throws {RequiredError}
|
|
24441
24308
|
*/
|
|
24442
|
-
|
|
24309
|
+
apiV1HeadernavigationsLanguageCodePost: (languageCode: string, saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
24443
24310
|
};
|
|
24444
24311
|
/**
|
|
24445
24312
|
* HeaderNavigationsApi - functional programming interface
|
|
24446
24313
|
* @export
|
|
24447
24314
|
*/
|
|
24448
24315
|
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
24316
|
/**
|
|
24458
24317
|
*
|
|
24459
24318
|
* @summary Get all HeaderNavigationItems
|
|
24460
|
-
* @param {string}
|
|
24319
|
+
* @param {string} languageCode
|
|
24461
24320
|
* @param {*} [options] Override http request option.
|
|
24462
24321
|
* @throws {RequiredError}
|
|
24463
24322
|
*/
|
|
24464
|
-
|
|
24323
|
+
apiV1HeadernavigationsLanguageCodeGet(languageCode: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<HeaderNavigationItemModel>>>;
|
|
24465
24324
|
/**
|
|
24466
24325
|
*
|
|
24467
24326
|
* @summary Delete HeaderNavigationItem
|
|
24327
|
+
* @param {string} languageCode
|
|
24468
24328
|
* @param {string} id
|
|
24469
24329
|
* @param {*} [options] Override http request option.
|
|
24470
24330
|
* @throws {RequiredError}
|
|
24471
24331
|
*/
|
|
24472
|
-
|
|
24332
|
+
apiV1HeadernavigationsLanguageCodeIdDelete(languageCode: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
24473
24333
|
/**
|
|
24474
24334
|
*
|
|
24475
24335
|
* @summary Get HeaderNavigationItem by id
|
|
24336
|
+
* @param {string} languageCode
|
|
24476
24337
|
* @param {string} id
|
|
24477
24338
|
* @param {*} [options] Override http request option.
|
|
24478
24339
|
* @throws {RequiredError}
|
|
24479
24340
|
*/
|
|
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>>;
|
|
24341
|
+
apiV1HeadernavigationsLanguageCodeIdGet(languageCode: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HeaderNavigationItemModel>>;
|
|
24490
24342
|
/**
|
|
24491
24343
|
*
|
|
24492
24344
|
* @summary Get HeaderNavigationItems by parent id
|
|
24345
|
+
* @param {string} languageCode
|
|
24493
24346
|
* @param {string} parentId
|
|
24494
24347
|
* @param {*} [options] Override http request option.
|
|
24495
24348
|
* @throws {RequiredError}
|
|
24496
24349
|
*/
|
|
24497
|
-
|
|
24350
|
+
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet(languageCode: string, parentId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<HeaderNavigationItemModel>>>;
|
|
24498
24351
|
/**
|
|
24499
24352
|
*
|
|
24500
|
-
* @summary
|
|
24501
|
-
* @param {
|
|
24353
|
+
* @summary Save HeaderNavigationItem
|
|
24354
|
+
* @param {string} languageCode
|
|
24355
|
+
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
24502
24356
|
* @param {*} [options] Override http request option.
|
|
24503
24357
|
* @throws {RequiredError}
|
|
24504
24358
|
*/
|
|
24505
|
-
|
|
24359
|
+
apiV1HeadernavigationsLanguageCodePost(languageCode: string, saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HeaderNavigationItemModel>>;
|
|
24506
24360
|
};
|
|
24507
24361
|
/**
|
|
24508
24362
|
* HeaderNavigationsApi - factory interface
|
|
24509
24363
|
* @export
|
|
24510
24364
|
*/
|
|
24511
24365
|
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
24366
|
/**
|
|
24521
24367
|
*
|
|
24522
24368
|
* @summary Get all HeaderNavigationItems
|
|
24523
|
-
* @param {string}
|
|
24369
|
+
* @param {string} languageCode
|
|
24524
24370
|
* @param {*} [options] Override http request option.
|
|
24525
24371
|
* @throws {RequiredError}
|
|
24526
24372
|
*/
|
|
24527
|
-
|
|
24373
|
+
apiV1HeadernavigationsLanguageCodeGet(languageCode: string, options?: any): AxiosPromise<Array<HeaderNavigationItemModel>>;
|
|
24528
24374
|
/**
|
|
24529
24375
|
*
|
|
24530
24376
|
* @summary Delete HeaderNavigationItem
|
|
24377
|
+
* @param {string} languageCode
|
|
24531
24378
|
* @param {string} id
|
|
24532
24379
|
* @param {*} [options] Override http request option.
|
|
24533
24380
|
* @throws {RequiredError}
|
|
24534
24381
|
*/
|
|
24535
|
-
|
|
24382
|
+
apiV1HeadernavigationsLanguageCodeIdDelete(languageCode: string, id: string, options?: any): AxiosPromise<boolean>;
|
|
24536
24383
|
/**
|
|
24537
24384
|
*
|
|
24538
24385
|
* @summary Get HeaderNavigationItem by id
|
|
24386
|
+
* @param {string} languageCode
|
|
24539
24387
|
* @param {string} id
|
|
24540
24388
|
* @param {*} [options] Override http request option.
|
|
24541
24389
|
* @throws {RequiredError}
|
|
24542
24390
|
*/
|
|
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>;
|
|
24391
|
+
apiV1HeadernavigationsLanguageCodeIdGet(languageCode: string, id: string, options?: any): AxiosPromise<HeaderNavigationItemModel>;
|
|
24553
24392
|
/**
|
|
24554
24393
|
*
|
|
24555
24394
|
* @summary Get HeaderNavigationItems by parent id
|
|
24395
|
+
* @param {string} languageCode
|
|
24556
24396
|
* @param {string} parentId
|
|
24557
24397
|
* @param {*} [options] Override http request option.
|
|
24558
24398
|
* @throws {RequiredError}
|
|
24559
24399
|
*/
|
|
24560
|
-
|
|
24400
|
+
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet(languageCode: string, parentId: string, options?: any): AxiosPromise<Array<HeaderNavigationItemModel>>;
|
|
24561
24401
|
/**
|
|
24562
24402
|
*
|
|
24563
|
-
* @summary
|
|
24564
|
-
* @param {
|
|
24403
|
+
* @summary Save HeaderNavigationItem
|
|
24404
|
+
* @param {string} languageCode
|
|
24405
|
+
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
24565
24406
|
* @param {*} [options] Override http request option.
|
|
24566
24407
|
* @throws {RequiredError}
|
|
24567
24408
|
*/
|
|
24568
|
-
|
|
24409
|
+
apiV1HeadernavigationsLanguageCodePost(languageCode: string, saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand | undefined, options?: any): AxiosPromise<HeaderNavigationItemModel>;
|
|
24569
24410
|
};
|
|
24570
24411
|
/**
|
|
24571
24412
|
* HeaderNavigationsApi - object-oriented interface
|
|
@@ -24574,70 +24415,55 @@ export declare const HeaderNavigationsApiFactory: (configuration?: Configuration
|
|
|
24574
24415
|
* @extends {BaseAPI}
|
|
24575
24416
|
*/
|
|
24576
24417
|
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
24418
|
/**
|
|
24587
24419
|
*
|
|
24588
24420
|
* @summary Get all HeaderNavigationItems
|
|
24589
|
-
* @param {string}
|
|
24421
|
+
* @param {string} languageCode
|
|
24590
24422
|
* @param {*} [options] Override http request option.
|
|
24591
24423
|
* @throws {RequiredError}
|
|
24592
24424
|
* @memberof HeaderNavigationsApi
|
|
24593
24425
|
*/
|
|
24594
|
-
|
|
24426
|
+
apiV1HeadernavigationsLanguageCodeGet(languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[]>>;
|
|
24595
24427
|
/**
|
|
24596
24428
|
*
|
|
24597
24429
|
* @summary Delete HeaderNavigationItem
|
|
24430
|
+
* @param {string} languageCode
|
|
24598
24431
|
* @param {string} id
|
|
24599
24432
|
* @param {*} [options] Override http request option.
|
|
24600
24433
|
* @throws {RequiredError}
|
|
24601
24434
|
* @memberof HeaderNavigationsApi
|
|
24602
24435
|
*/
|
|
24603
|
-
|
|
24436
|
+
apiV1HeadernavigationsLanguageCodeIdDelete(languageCode: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24604
24437
|
/**
|
|
24605
24438
|
*
|
|
24606
24439
|
* @summary Get HeaderNavigationItem by id
|
|
24440
|
+
* @param {string} languageCode
|
|
24607
24441
|
* @param {string} id
|
|
24608
24442
|
* @param {*} [options] Override http request option.
|
|
24609
24443
|
* @throws {RequiredError}
|
|
24610
24444
|
* @memberof HeaderNavigationsApi
|
|
24611
24445
|
*/
|
|
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>>;
|
|
24446
|
+
apiV1HeadernavigationsLanguageCodeIdGet(languageCode: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel>>;
|
|
24623
24447
|
/**
|
|
24624
24448
|
*
|
|
24625
24449
|
* @summary Get HeaderNavigationItems by parent id
|
|
24450
|
+
* @param {string} languageCode
|
|
24626
24451
|
* @param {string} parentId
|
|
24627
24452
|
* @param {*} [options] Override http request option.
|
|
24628
24453
|
* @throws {RequiredError}
|
|
24629
24454
|
* @memberof HeaderNavigationsApi
|
|
24630
24455
|
*/
|
|
24631
|
-
|
|
24456
|
+
apiV1HeadernavigationsLanguageCodeParentIdSubitemsGet(languageCode: string, parentId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel[]>>;
|
|
24632
24457
|
/**
|
|
24633
24458
|
*
|
|
24634
|
-
* @summary
|
|
24635
|
-
* @param {
|
|
24459
|
+
* @summary Save HeaderNavigationItem
|
|
24460
|
+
* @param {string} languageCode
|
|
24461
|
+
* @param {SaveHeaderNavigationsCommand} [saveHeaderNavigationsCommand]
|
|
24636
24462
|
* @param {*} [options] Override http request option.
|
|
24637
24463
|
* @throws {RequiredError}
|
|
24638
24464
|
* @memberof HeaderNavigationsApi
|
|
24639
24465
|
*/
|
|
24640
|
-
|
|
24466
|
+
apiV1HeadernavigationsLanguageCodePost(languageCode: string, saveHeaderNavigationsCommand?: SaveHeaderNavigationsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HeaderNavigationItemModel>>;
|
|
24641
24467
|
}
|
|
24642
24468
|
/**
|
|
24643
24469
|
* HospitalsApi - axios parameter creator
|
|
@@ -25374,6 +25200,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
25374
25200
|
* @throws {RequiredError}
|
|
25375
25201
|
*/
|
|
25376
25202
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25203
|
+
/**
|
|
25204
|
+
*
|
|
25205
|
+
* @summary Translate hospital at once
|
|
25206
|
+
* @param {string} hospitalId
|
|
25207
|
+
* @param {TranslateHospitalCommand} [translateHospitalCommand]
|
|
25208
|
+
* @param {*} [options] Override http request option.
|
|
25209
|
+
* @throws {RequiredError}
|
|
25210
|
+
*/
|
|
25211
|
+
apiV1HospitalsHospitalIdTranslatePost: (hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25377
25212
|
/**
|
|
25378
25213
|
*
|
|
25379
25214
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -26210,6 +26045,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
26210
26045
|
* @throws {RequiredError}
|
|
26211
26046
|
*/
|
|
26212
26047
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
26048
|
+
/**
|
|
26049
|
+
*
|
|
26050
|
+
* @summary Translate hospital at once
|
|
26051
|
+
* @param {string} hospitalId
|
|
26052
|
+
* @param {TranslateHospitalCommand} [translateHospitalCommand]
|
|
26053
|
+
* @param {*} [options] Override http request option.
|
|
26054
|
+
* @throws {RequiredError}
|
|
26055
|
+
*/
|
|
26056
|
+
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
26213
26057
|
/**
|
|
26214
26058
|
*
|
|
26215
26059
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -27046,6 +26890,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
27046
26890
|
* @throws {RequiredError}
|
|
27047
26891
|
*/
|
|
27048
26892
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
|
|
26893
|
+
/**
|
|
26894
|
+
*
|
|
26895
|
+
* @summary Translate hospital at once
|
|
26896
|
+
* @param {string} hospitalId
|
|
26897
|
+
* @param {TranslateHospitalCommand} [translateHospitalCommand]
|
|
26898
|
+
* @param {*} [options] Override http request option.
|
|
26899
|
+
* @throws {RequiredError}
|
|
26900
|
+
*/
|
|
26901
|
+
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
27049
26902
|
/**
|
|
27050
26903
|
*
|
|
27051
26904
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -27950,6 +27803,16 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
27950
27803
|
* @memberof HospitalsApi
|
|
27951
27804
|
*/
|
|
27952
27805
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdReactivePut(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
27806
|
+
/**
|
|
27807
|
+
*
|
|
27808
|
+
* @summary Translate hospital at once
|
|
27809
|
+
* @param {string} hospitalId
|
|
27810
|
+
* @param {TranslateHospitalCommand} [translateHospitalCommand]
|
|
27811
|
+
* @param {*} [options] Override http request option.
|
|
27812
|
+
* @throws {RequiredError}
|
|
27813
|
+
* @memberof HospitalsApi
|
|
27814
|
+
*/
|
|
27815
|
+
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
27953
27816
|
/**
|
|
27954
27817
|
*
|
|
27955
27818
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -28065,15 +27928,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
28065
27928
|
* @export
|
|
28066
27929
|
*/
|
|
28067
27930
|
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
27931
|
/**
|
|
28078
27932
|
*
|
|
28079
27933
|
* @summary Get consultation timetable override items
|
|
@@ -28081,22 +27935,14 @@ export declare const HospitalsConsultationTimetableOverridesApiAxiosParamCreator
|
|
|
28081
27935
|
* @param {boolean} [includesPreviousItems]
|
|
28082
27936
|
* @param {Date} [startDate]
|
|
28083
27937
|
* @param {Date} [endDate]
|
|
27938
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28084
27939
|
* @param {number} [page]
|
|
28085
27940
|
* @param {number} [limit]
|
|
28086
27941
|
* @param {Date} [lastRetrieved]
|
|
28087
27942
|
* @param {*} [options] Override http request option.
|
|
28088
27943
|
* @throws {RequiredError}
|
|
28089
27944
|
*/
|
|
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>;
|
|
27945
|
+
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
27946
|
/**
|
|
28101
27947
|
*
|
|
28102
27948
|
* @summary Get consultation timetable override item
|
|
@@ -28108,38 +27954,28 @@ export declare const HospitalsConsultationTimetableOverridesApiAxiosParamCreator
|
|
|
28108
27954
|
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28109
27955
|
/**
|
|
28110
27956
|
*
|
|
28111
|
-
* @summary
|
|
27957
|
+
* @summary Delete timetable item
|
|
28112
27958
|
* @param {string} hospitalId
|
|
28113
|
-
* @param {
|
|
28114
|
-
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
27959
|
+
* @param {DeleteHospitalConsultationTimetableOverrideCommand} [deleteHospitalConsultationTimetableOverrideCommand]
|
|
28115
27960
|
* @param {*} [options] Override http request option.
|
|
28116
27961
|
* @throws {RequiredError}
|
|
28117
27962
|
*/
|
|
28118
|
-
|
|
27963
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPatch: (hospitalId: string, deleteHospitalConsultationTimetableOverrideCommand?: DeleteHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28119
27964
|
/**
|
|
28120
27965
|
*
|
|
28121
|
-
* @summary
|
|
27966
|
+
* @summary Save timetable itme
|
|
28122
27967
|
* @param {string} hospitalId
|
|
28123
|
-
* @param {
|
|
27968
|
+
* @param {SaveHospitalConsultationTimetableOverridesCommand} [saveHospitalConsultationTimetableOverridesCommand]
|
|
28124
27969
|
* @param {*} [options] Override http request option.
|
|
28125
27970
|
* @throws {RequiredError}
|
|
28126
27971
|
*/
|
|
28127
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost: (hospitalId: string,
|
|
27972
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost: (hospitalId: string, saveHospitalConsultationTimetableOverridesCommand?: SaveHospitalConsultationTimetableOverridesCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28128
27973
|
};
|
|
28129
27974
|
/**
|
|
28130
27975
|
* HospitalsConsultationTimetableOverridesApi - functional programming interface
|
|
28131
27976
|
* @export
|
|
28132
27977
|
*/
|
|
28133
27978
|
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
27979
|
/**
|
|
28144
27980
|
*
|
|
28145
27981
|
* @summary Get consultation timetable override items
|
|
@@ -28147,22 +27983,14 @@ export declare const HospitalsConsultationTimetableOverridesApiFp: (configuratio
|
|
|
28147
27983
|
* @param {boolean} [includesPreviousItems]
|
|
28148
27984
|
* @param {Date} [startDate]
|
|
28149
27985
|
* @param {Date} [endDate]
|
|
27986
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28150
27987
|
* @param {number} [page]
|
|
28151
27988
|
* @param {number} [limit]
|
|
28152
27989
|
* @param {Date} [lastRetrieved]
|
|
28153
27990
|
* @param {*} [options] Override http request option.
|
|
28154
27991
|
* @throws {RequiredError}
|
|
28155
27992
|
*/
|
|
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>>;
|
|
27993
|
+
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
27994
|
/**
|
|
28167
27995
|
*
|
|
28168
27996
|
* @summary Get consultation timetable override item
|
|
@@ -28174,38 +28002,28 @@ export declare const HospitalsConsultationTimetableOverridesApiFp: (configuratio
|
|
|
28174
28002
|
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalConsultationTimetableOverrideModel>>;
|
|
28175
28003
|
/**
|
|
28176
28004
|
*
|
|
28177
|
-
* @summary
|
|
28005
|
+
* @summary Delete timetable item
|
|
28178
28006
|
* @param {string} hospitalId
|
|
28179
|
-
* @param {
|
|
28180
|
-
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
28007
|
+
* @param {DeleteHospitalConsultationTimetableOverrideCommand} [deleteHospitalConsultationTimetableOverrideCommand]
|
|
28181
28008
|
* @param {*} [options] Override http request option.
|
|
28182
28009
|
* @throws {RequiredError}
|
|
28183
28010
|
*/
|
|
28184
|
-
|
|
28011
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPatch(hospitalId: string, deleteHospitalConsultationTimetableOverrideCommand?: DeleteHospitalConsultationTimetableOverrideCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
28185
28012
|
/**
|
|
28186
28013
|
*
|
|
28187
|
-
* @summary
|
|
28014
|
+
* @summary Save timetable itme
|
|
28188
28015
|
* @param {string} hospitalId
|
|
28189
|
-
* @param {
|
|
28016
|
+
* @param {SaveHospitalConsultationTimetableOverridesCommand} [saveHospitalConsultationTimetableOverridesCommand]
|
|
28190
28017
|
* @param {*} [options] Override http request option.
|
|
28191
28018
|
* @throws {RequiredError}
|
|
28192
28019
|
*/
|
|
28193
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string,
|
|
28020
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, saveHospitalConsultationTimetableOverridesCommand?: SaveHospitalConsultationTimetableOverridesCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<HospitalConsultationTimetableOverrideItemModel>>>;
|
|
28194
28021
|
};
|
|
28195
28022
|
/**
|
|
28196
28023
|
* HospitalsConsultationTimetableOverridesApi - factory interface
|
|
28197
28024
|
* @export
|
|
28198
28025
|
*/
|
|
28199
28026
|
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
28027
|
/**
|
|
28210
28028
|
*
|
|
28211
28029
|
* @summary Get consultation timetable override items
|
|
@@ -28213,22 +28031,14 @@ export declare const HospitalsConsultationTimetableOverridesApiFactory: (configu
|
|
|
28213
28031
|
* @param {boolean} [includesPreviousItems]
|
|
28214
28032
|
* @param {Date} [startDate]
|
|
28215
28033
|
* @param {Date} [endDate]
|
|
28034
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28216
28035
|
* @param {number} [page]
|
|
28217
28036
|
* @param {number} [limit]
|
|
28218
28037
|
* @param {Date} [lastRetrieved]
|
|
28219
28038
|
* @param {*} [options] Override http request option.
|
|
28220
28039
|
* @throws {RequiredError}
|
|
28221
28040
|
*/
|
|
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>;
|
|
28041
|
+
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
28042
|
/**
|
|
28233
28043
|
*
|
|
28234
28044
|
* @summary Get consultation timetable override item
|
|
@@ -28240,23 +28050,22 @@ export declare const HospitalsConsultationTimetableOverridesApiFactory: (configu
|
|
|
28240
28050
|
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalConsultationTimetableOverrideModel>;
|
|
28241
28051
|
/**
|
|
28242
28052
|
*
|
|
28243
|
-
* @summary
|
|
28053
|
+
* @summary Delete timetable item
|
|
28244
28054
|
* @param {string} hospitalId
|
|
28245
|
-
* @param {
|
|
28246
|
-
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
28055
|
+
* @param {DeleteHospitalConsultationTimetableOverrideCommand} [deleteHospitalConsultationTimetableOverrideCommand]
|
|
28247
28056
|
* @param {*} [options] Override http request option.
|
|
28248
28057
|
* @throws {RequiredError}
|
|
28249
28058
|
*/
|
|
28250
|
-
|
|
28059
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPatch(hospitalId: string, deleteHospitalConsultationTimetableOverrideCommand?: DeleteHospitalConsultationTimetableOverrideCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
28251
28060
|
/**
|
|
28252
28061
|
*
|
|
28253
|
-
* @summary
|
|
28062
|
+
* @summary Save timetable itme
|
|
28254
28063
|
* @param {string} hospitalId
|
|
28255
|
-
* @param {
|
|
28064
|
+
* @param {SaveHospitalConsultationTimetableOverridesCommand} [saveHospitalConsultationTimetableOverridesCommand]
|
|
28256
28065
|
* @param {*} [options] Override http request option.
|
|
28257
28066
|
* @throws {RequiredError}
|
|
28258
28067
|
*/
|
|
28259
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string,
|
|
28068
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, saveHospitalConsultationTimetableOverridesCommand?: SaveHospitalConsultationTimetableOverridesCommand | undefined, options?: any): AxiosPromise<Array<HospitalConsultationTimetableOverrideItemModel>>;
|
|
28260
28069
|
};
|
|
28261
28070
|
/**
|
|
28262
28071
|
* HospitalsConsultationTimetableOverridesApi - object-oriented interface
|
|
@@ -28265,16 +28074,6 @@ export declare const HospitalsConsultationTimetableOverridesApiFactory: (configu
|
|
|
28265
28074
|
* @extends {BaseAPI}
|
|
28266
28075
|
*/
|
|
28267
28076
|
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
28077
|
/**
|
|
28279
28078
|
*
|
|
28280
28079
|
* @summary Get consultation timetable override items
|
|
@@ -28282,6 +28081,7 @@ export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI
|
|
|
28282
28081
|
* @param {boolean} [includesPreviousItems]
|
|
28283
28082
|
* @param {Date} [startDate]
|
|
28284
28083
|
* @param {Date} [endDate]
|
|
28084
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28285
28085
|
* @param {number} [page]
|
|
28286
28086
|
* @param {number} [limit]
|
|
28287
28087
|
* @param {Date} [lastRetrieved]
|
|
@@ -28289,17 +28089,7 @@ export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI
|
|
|
28289
28089
|
* @throws {RequiredError}
|
|
28290
28090
|
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
28291
28091
|
*/
|
|
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>>;
|
|
28092
|
+
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
28093
|
/**
|
|
28304
28094
|
*
|
|
28305
28095
|
* @summary Get consultation timetable override item
|
|
@@ -28312,25 +28102,24 @@ export declare class HospitalsConsultationTimetableOverridesApi extends BaseAPI
|
|
|
28312
28102
|
apiV1HospitalsHospitalIdConsultationtimetableoverridesIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverrideModel>>;
|
|
28313
28103
|
/**
|
|
28314
28104
|
*
|
|
28315
|
-
* @summary
|
|
28105
|
+
* @summary Delete timetable item
|
|
28316
28106
|
* @param {string} hospitalId
|
|
28317
|
-
* @param {
|
|
28318
|
-
* @param {UpdateHospitalConsultationTimetableOverrideCommand} [updateHospitalConsultationTimetableOverrideCommand]
|
|
28107
|
+
* @param {DeleteHospitalConsultationTimetableOverrideCommand} [deleteHospitalConsultationTimetableOverrideCommand]
|
|
28319
28108
|
* @param {*} [options] Override http request option.
|
|
28320
28109
|
* @throws {RequiredError}
|
|
28321
28110
|
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
28322
28111
|
*/
|
|
28323
|
-
|
|
28112
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPatch(hospitalId: string, deleteHospitalConsultationTimetableOverrideCommand?: DeleteHospitalConsultationTimetableOverrideCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
28324
28113
|
/**
|
|
28325
28114
|
*
|
|
28326
|
-
* @summary
|
|
28115
|
+
* @summary Save timetable itme
|
|
28327
28116
|
* @param {string} hospitalId
|
|
28328
|
-
* @param {
|
|
28117
|
+
* @param {SaveHospitalConsultationTimetableOverridesCommand} [saveHospitalConsultationTimetableOverridesCommand]
|
|
28329
28118
|
* @param {*} [options] Override http request option.
|
|
28330
28119
|
* @throws {RequiredError}
|
|
28331
28120
|
* @memberof HospitalsConsultationTimetableOverridesApi
|
|
28332
28121
|
*/
|
|
28333
|
-
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string,
|
|
28122
|
+
apiV1HospitalsHospitalIdConsultationtimetableoverridesPost(hospitalId: string, saveHospitalConsultationTimetableOverridesCommand?: SaveHospitalConsultationTimetableOverridesCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetableOverrideItemModel[]>>;
|
|
28334
28123
|
}
|
|
28335
28124
|
/**
|
|
28336
28125
|
* HospitalsConsultationTimetablesApi - axios parameter creator
|
|
@@ -28350,13 +28139,14 @@ export declare const HospitalsConsultationTimetablesApiAxiosParamCreator: (confi
|
|
|
28350
28139
|
*
|
|
28351
28140
|
* @summary Get consultation timetables
|
|
28352
28141
|
* @param {string} hospitalId
|
|
28142
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28353
28143
|
* @param {number} [page]
|
|
28354
28144
|
* @param {number} [limit]
|
|
28355
28145
|
* @param {Date} [lastRetrieved]
|
|
28356
28146
|
* @param {*} [options] Override http request option.
|
|
28357
28147
|
* @throws {RequiredError}
|
|
28358
28148
|
*/
|
|
28359
|
-
apiV1HospitalsHospitalIdConsultationtimetablesGet: (hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28149
|
+
apiV1HospitalsHospitalIdConsultationtimetablesGet: (hospitalId: string, dayOfWeek?: DayOfWeek | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28360
28150
|
/**
|
|
28361
28151
|
*
|
|
28362
28152
|
* @summary Delete timetable item
|
|
@@ -28413,13 +28203,14 @@ export declare const HospitalsConsultationTimetablesApiFp: (configuration?: Conf
|
|
|
28413
28203
|
*
|
|
28414
28204
|
* @summary Get consultation timetables
|
|
28415
28205
|
* @param {string} hospitalId
|
|
28206
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28416
28207
|
* @param {number} [page]
|
|
28417
28208
|
* @param {number} [limit]
|
|
28418
28209
|
* @param {Date} [lastRetrieved]
|
|
28419
28210
|
* @param {*} [options] Override http request option.
|
|
28420
28211
|
* @throws {RequiredError}
|
|
28421
28212
|
*/
|
|
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>>;
|
|
28213
|
+
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
28214
|
/**
|
|
28424
28215
|
*
|
|
28425
28216
|
* @summary Delete timetable item
|
|
@@ -28476,13 +28267,14 @@ export declare const HospitalsConsultationTimetablesApiFactory: (configuration?:
|
|
|
28476
28267
|
*
|
|
28477
28268
|
* @summary Get consultation timetables
|
|
28478
28269
|
* @param {string} hospitalId
|
|
28270
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28479
28271
|
* @param {number} [page]
|
|
28480
28272
|
* @param {number} [limit]
|
|
28481
28273
|
* @param {Date} [lastRetrieved]
|
|
28482
28274
|
* @param {*} [options] Override http request option.
|
|
28483
28275
|
* @throws {RequiredError}
|
|
28484
28276
|
*/
|
|
28485
|
-
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetablesModel>;
|
|
28277
|
+
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, dayOfWeek?: DayOfWeek | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalConsultationTimetablesModel>;
|
|
28486
28278
|
/**
|
|
28487
28279
|
*
|
|
28488
28280
|
* @summary Delete timetable item
|
|
@@ -28542,6 +28334,7 @@ export declare class HospitalsConsultationTimetablesApi extends BaseAPI {
|
|
|
28542
28334
|
*
|
|
28543
28335
|
* @summary Get consultation timetables
|
|
28544
28336
|
* @param {string} hospitalId
|
|
28337
|
+
* @param {DayOfWeek} [dayOfWeek]
|
|
28545
28338
|
* @param {number} [page]
|
|
28546
28339
|
* @param {number} [limit]
|
|
28547
28340
|
* @param {Date} [lastRetrieved]
|
|
@@ -28549,7 +28342,7 @@ export declare class HospitalsConsultationTimetablesApi extends BaseAPI {
|
|
|
28549
28342
|
* @throws {RequiredError}
|
|
28550
28343
|
* @memberof HospitalsConsultationTimetablesApi
|
|
28551
28344
|
*/
|
|
28552
|
-
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetablesModel>>;
|
|
28345
|
+
apiV1HospitalsHospitalIdConsultationtimetablesGet(hospitalId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalConsultationTimetablesModel>>;
|
|
28553
28346
|
/**
|
|
28554
28347
|
*
|
|
28555
28348
|
* @summary Delete timetable item
|