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

n8n-workflow

Package Overview
Dependencies
Maintainers
2
Versions
285
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 1.55.0 to 1.56.0

2

dist/Constants.d.ts

@@ -8,3 +8,3 @@ import type { NodeParameterValue } from './Interfaces';

export declare const WAIT_TIME_UNLIMITED = "3000-01-01T00:00:00.000Z";
export declare const LOG_LEVELS: readonly ["silent", "error", "warn", "info", "debug", "verbose"];
export declare const LOG_LEVELS: readonly ["silent", "error", "warn", "info", "debug"];
export declare const CODE_LANGUAGES: readonly ["javaScript", "python"];

@@ -11,0 +11,0 @@ export declare const CODE_EXECUTION_MODES: readonly ["runOnceForAllItems", "runOnceForEachItem"];

@@ -10,3 +10,3 @@ "use strict";

exports.WAIT_TIME_UNLIMITED = '3000-01-01T00:00:00.000Z';
exports.LOG_LEVELS = ['silent', 'error', 'warn', 'info', 'debug', 'verbose'];
exports.LOG_LEVELS = ['silent', 'error', 'warn', 'info', 'debug'];
exports.CODE_LANGUAGES = ['javaScript', 'python'];

@@ -13,0 +13,0 @@ exports.CODE_EXECUTION_MODES = ['runOnceForAllItems', 'runOnceForEachItem'];

@@ -6,3 +6,2 @@ import type { Logger } from './Interfaces';

export declare let debug: Logger['debug'];
export declare let verbose: Logger['verbose'];
export declare const init: (logger: Logger) => void;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.init = exports.verbose = exports.debug = exports.info = exports.warn = exports.error = void 0;
exports.init = exports.debug = exports.info = exports.warn = exports.error = void 0;
const noOp = () => { };

@@ -9,3 +9,2 @@ exports.error = noOp;

exports.debug = noOp;
exports.verbose = noOp;
const init = (logger) => {

@@ -16,5 +15,4 @@ exports.error = (message, meta) => logger.error(message, meta);

exports.debug = (message, meta) => logger.debug(message, meta);
exports.verbose = (message, meta) => logger.verbose(message, meta);
};
exports.init = init;
//# sourceMappingURL=LoggerProxy.js.map

@@ -1070,3 +1070,3 @@ "use strict";

(nodeProperties.type === 'options' && (value === '' || value === undefined)) ||
(nodeProperties.type === 'resourceLocator' &&
((nodeProperties.type === 'resourceLocator' || nodeProperties.type === 'workflowSelector') &&
!(0, type_guards_1.isValidResourceLocatorParameterValue)(value))) {

@@ -1108,3 +1108,4 @@ if (foundIssues.parameters === undefined) {

}
if (nodeProperties.type === 'resourceLocator' && isDisplayed) {
if ((nodeProperties.type === 'resourceLocator' || nodeProperties.type === 'workflowSelector') &&
isDisplayed) {
const value = getParameterValueByPath(nodeValues, nodeProperties.name, path);

@@ -1111,0 +1112,0 @@ if (isINodeParameterResourceLocator(value)) {

@@ -63,3 +63,5 @@ "use strict";

try {
credentials = (await executeFunctions.getCredentials(credentialType)) || {};
credentials =
(await executeFunctions.getCredentials(credentialType)) ||
{};
}

@@ -66,0 +68,0 @@ catch (error) {

{
"name": "n8n-workflow",
"version": "1.55.0",
"version": "1.56.0",
"description": "Workflow base code of n8n",

@@ -18,4 +18,4 @@ "main": "dist/index.js",

"dist/**/*",
"LICENSE.md",
"LICENSE_EE.md"
"LICENSE_EE.md",
"LICENSE.md"
],

@@ -22,0 +22,0 @@ "devDependencies": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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