File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1299,13 +1299,15 @@ export type {
1299
1299
} from './queues/config/types/taskTypes.js'
1300
1300
export type {
1301
1301
BaseJob ,
1302
+ JobLog ,
1302
1303
JobTaskStatus ,
1303
1304
RunningJob ,
1304
1305
SingleTaskStatus ,
1305
1306
WorkflowConfig ,
1306
1307
WorkflowHandler ,
1307
1308
WorkflowTypes ,
1308
1309
} from './queues/config/types/workflowTypes.js'
1310
+ export { importHandlerPath } from './queues/operations/runJobs/runJob/importHandlerPath.js'
1309
1311
export { getLocalI18n } from './translations/getLocalI18n.js'
1310
1312
export * from './types/index.js'
1311
1313
export { getFileByPath } from './uploads/getFileByPath.js'
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ export type JobLog = {
14
14
completedAt : string
15
15
error ?: unknown
16
16
executedAt : string
17
+ /**
18
+ * ID added by the array field when the log is saved in the database
19
+ */
20
+ id ?: string
17
21
input ?: any
18
22
output ?: any
19
23
state : 'failed' | 'succeeded'
You can’t perform that action at this time.
0 commit comments