n8n-workflow
Advanced tools
Comparing version 0.86.0 to 0.87.0
@@ -783,3 +783,3 @@ /// <reference types="node" /> | ||
} | ||
export declare type WebhookHttpMethod = 'GET' | 'POST' | 'HEAD' | 'OPTIONS'; | ||
export declare type WebhookHttpMethod = 'DELETE' | 'GET' | 'HEAD' | 'PATCH' | 'POST' | 'PUT' | 'OPTIONS'; | ||
export interface IWebhookResponseData { | ||
@@ -790,3 +790,3 @@ workflowData?: INodeExecutionData[][]; | ||
} | ||
export declare type WebhookResponseData = 'allEntries' | 'firstEntryJson' | 'firstEntryBinary'; | ||
export declare type WebhookResponseData = 'allEntries' | 'firstEntryJson' | 'firstEntryBinary' | 'noData'; | ||
export declare type WebhookResponseMode = 'onReceived' | 'lastNode'; | ||
@@ -793,0 +793,0 @@ export interface INodeTypes { |
@@ -82,3 +82,3 @@ "use strict"; | ||
if (!node.parameters.hasOwnProperty(name)) { | ||
throw new Error(`Could not find parameter "${name}" on node "${nodeName}"`); | ||
return undefined; | ||
} | ||
@@ -137,3 +137,3 @@ returnValue = node.parameters[name]; | ||
if (!node) { | ||
throw new Error(`The node "${nodeName}" does not exist!`); | ||
return undefined; | ||
} | ||
@@ -140,0 +140,0 @@ return new Proxy({}, { |
{ | ||
"name": "n8n-workflow", | ||
"version": "0.86.0", | ||
"version": "0.87.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
655228