n8n-workflow
Advanced tools
Comparing version 0.44.0 to 0.45.0
@@ -556,3 +556,3 @@ import { Workflow } from './Workflow'; | ||
workflowExecuteAfter?: Array<((data: IRun, newStaticData: IDataObject) => Promise<void>)>; | ||
workflowExecuteBefore?: Array<(() => Promise<void>)>; | ||
workflowExecuteBefore?: Array<((workflow: Workflow, data: IRunExecutionData) => Promise<void>)>; | ||
} | ||
@@ -559,0 +559,0 @@ export interface IWorkflowExecuteAdditionalData { |
@@ -17,10 +17,3 @@ "use strict"; | ||
for (const hookFunction of this.hookFunctions[hookName]) { | ||
await hookFunction.apply(this, parameters) | ||
.catch((error) => { | ||
console.error(`There was a problem executing hook: "${hookName}"`); | ||
console.error('Parameters:'); | ||
console.error(parameters); | ||
console.error('Error:'); | ||
console.error(error); | ||
}); | ||
await hookFunction.apply(this, parameters); | ||
} | ||
@@ -27,0 +20,0 @@ } |
{ | ||
"name": "n8n-workflow", | ||
"version": "0.44.0", | ||
"version": "0.45.0", | ||
"description": "Workflow base code of n8n", | ||
@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN LICENSE.md", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
419669
6674