@n8n/api-types
Advanced tools
Comparing version 0.6.0 to 0.7.0
@@ -24,3 +24,4 @@ import type { FrontendBetaFeatures } from '@n8n/config'; | ||
export interface FrontendSettings { | ||
isDocker?: boolean; | ||
inE2ETests: boolean; | ||
isDocker: boolean; | ||
databaseType: 'sqlite' | 'mariadb' | 'mysqldb' | 'postgresdb'; | ||
@@ -27,0 +28,0 @@ endpointForm: string; |
@@ -1,2 +0,2 @@ | ||
import type { IRun, ITaskData, WorkflowExecuteMode } from 'n8n-workflow'; | ||
import type { ITaskData, WorkflowExecuteMode } from 'n8n-workflow'; | ||
type ExecutionStarted = { | ||
@@ -13,2 +13,8 @@ type: 'executionStarted'; | ||
}; | ||
type ExecutionWaiting = { | ||
type: 'executionWaiting'; | ||
data: { | ||
executionId: string; | ||
}; | ||
}; | ||
type ExecutionFinished = { | ||
@@ -18,4 +24,2 @@ type: 'executionFinished'; | ||
executionId: string; | ||
data: IRun; | ||
retryOf?: string; | ||
}; | ||
@@ -44,3 +48,3 @@ }; | ||
}; | ||
export type ExecutionPushMessage = ExecutionStarted | ExecutionFinished | ExecutionRecovered | NodeExecuteBefore | NodeExecuteAfter; | ||
export type ExecutionPushMessage = ExecutionStarted | ExecutionWaiting | ExecutionFinished | ExecutionRecovered | NodeExecuteBefore | NodeExecuteAfter; | ||
export {}; |
{ | ||
"name": "@n8n/api-types", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"main": "dist/index.js", | ||
@@ -13,4 +13,4 @@ "module": "src/index.ts", | ||
"devDependencies": { | ||
"@n8n/config": "1.16.0", | ||
"n8n-workflow": "1.65.0" | ||
"@n8n/config": "1.19.0", | ||
"n8n-workflow": "1.68.0" | ||
}, | ||
@@ -17,0 +17,0 @@ "dependencies": { |
Sorry, the diff of this file is not supported yet
165362
540