Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

n8n-workflow

Package Overview
Dependencies
Maintainers
1
Versions
284
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-workflow - npm Package Compare versions

Comparing version 0.44.0 to 0.45.0

2

dist/src/Interfaces.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc