n8n-workflow
Advanced tools
Comparing version 1.34.0 to 1.35.0
@@ -248,3 +248,6 @@ "use strict"; | ||
catch (error) { | ||
return undefined; | ||
if (value.includes("'")) { | ||
throw new expression_extension_error_1.ExpressionExtensionError("Parsing failed. Check you're using double quotes"); | ||
} | ||
throw new expression_extension_error_1.ExpressionExtensionError('Parsing failed'); | ||
} | ||
@@ -251,0 +254,0 @@ } |
@@ -221,3 +221,3 @@ "use strict"; | ||
default: '*', | ||
description: 'The origin(s) to allow cross-origin non-preflight requests from in a browser', | ||
description: 'Comma-separated list of URLs allowed for cross-origin non-preflight requests. Use * (default) to allow all origins.', | ||
}, | ||
@@ -233,3 +233,6 @@ ]; | ||
if (optionsProperty) | ||
optionsProperty.options.push(...commonCORSParameters); | ||
optionsProperty.options = [ | ||
...commonCORSParameters, | ||
...optionsProperty.options, | ||
]; | ||
else | ||
@@ -399,3 +402,3 @@ properties.push(...commonCORSParameters); | ||
const executionOrder = []; | ||
const indexToResolve = Array.from({ length: nodePropertiesArray.length }, (v, k) => k); | ||
const indexToResolve = Array.from({ length: nodePropertiesArray.length }, (_, k) => k); | ||
const resolvedParameters = []; | ||
@@ -402,0 +405,0 @@ let index; |
@@ -706,2 +706,6 @@ "use strict"; | ||
runExecutionData.resultData.error !== undefined) { | ||
if (runExecutionData.resultData.error.name === 'NodeOperationError' || | ||
runExecutionData.resultData.error.name === 'NodeApiError') { | ||
throw runExecutionData.resultData.error; | ||
} | ||
const error = new Error(runExecutionData.resultData.error.message); | ||
@@ -708,0 +712,0 @@ error.stack = runExecutionData.resultData.error.stack; |
{ | ||
"name": "n8n-workflow", | ||
"version": "1.34.0", | ||
"version": "1.35.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
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
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
877655
11517