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.30.0 to 0.31.0

3

dist/src/Interfaces.d.ts

@@ -230,2 +230,3 @@ import { Workflow } from './Workflow';

disabled?: boolean;
notesInFlow?: boolean;
retryOnFail?: boolean;

@@ -533,3 +534,3 @@ maxTries?: number;

webhookTestBaseUrl: string;
currentNodeParameters?: INodeParameters[];
currentNodeParameters?: INodeParameters;
}

@@ -536,0 +537,0 @@ export declare type WorkflowExecuteMode = 'cli' | 'error' | 'integrated' | 'internal' | 'manual' | 'retry' | 'trigger' | 'webhook';

@@ -234,2 +234,3 @@ "use strict";

let value;
const values = [];
if (parameter.displayOptions.show) {

@@ -243,3 +244,10 @@ for (const propertyName of Object.keys(parameter.displayOptions.show)) {

}
if (value === undefined || !parameter.displayOptions.show[propertyName].includes(value)) {
values.length = 0;
if (!Array.isArray(value)) {
values.push(value);
}
else {
values.push.apply(values, value);
}
if (values.length === 0 || !parameter.displayOptions.show[propertyName].some(v => values.includes(v))) {
return false;

@@ -257,3 +265,10 @@ }

}
if (value !== undefined && parameter.displayOptions.hide[propertyName].includes(value)) {
values.length = 0;
if (!Array.isArray(value)) {
values.push(value);
}
else {
values.push.apply(values, value);
}
if (values.length !== 0 && parameter.displayOptions.hide[propertyName].some(v => values.includes(v))) {
return false;

@@ -260,0 +275,0 @@ }

{
"name": "n8n-workflow",
"version": "0.30.0",
"version": "0.31.0",
"description": "Workflow base code of n8n",

@@ -34,3 +34,3 @@ "license": "SEE LICENSE IN LICENSE.md",

"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint": "^6.1.2",
"typescript": "~3.7.4"

@@ -37,0 +37,0 @@ },

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