1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-12 00:30:06 +00:00

feat(executor): response with webout

This commit is contained in:
Yury Shkoda
2021-10-05 11:18:20 +03:00
parent f0f1e1d57e
commit 52275ba67d
4 changed files with 85 additions and 22 deletions

View File

@@ -2,6 +2,7 @@ import { MacroVars } from '@sasjs/utils'
export interface ExecutionQuery {
_program: string
macroVars?: MacroVars
_debug?: boolean
}
export const isRequestQuery = (arg: any): arg is ExecutionQuery =>

View File

@@ -1,4 +1,5 @@
export interface ExecutionResult {
log: string
logPath: string
webout: object
log?: string
logPath?: string
}