1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-07 20:40:05 +00:00

fix: after job executing get complete log

This commit is contained in:
Saad Jutt
2021-03-22 19:21:01 +05:00
parent 2bdcbda54c
commit b3474b6dfb
5 changed files with 74 additions and 18 deletions

View File

@@ -1,5 +1,6 @@
import { Link } from './Link'
import { JobResult } from './JobResult'
import { LogStatistics } from './LogStatistics'
export interface Job {
id: string
@@ -10,4 +11,5 @@ export interface Job {
links: Link[]
results: JobResult
error?: any
logStatistics: LogStatistics
}