n8n-workflow
Advanced tools
Comparing version 0.12.0 to 0.13.0
@@ -280,3 +280,3 @@ import { Workflow } from './Workflow'; | ||
trigger?(this: ITriggerFunctions): Promise<ITriggerResponse | undefined>; | ||
webhook?(this: IWebhookFunctions): Promise<IWebhookResonseData>; | ||
webhook?(this: IWebhookFunctions): Promise<IWebhookResponseData>; | ||
hooks?: { | ||
@@ -376,3 +376,3 @@ [key: string]: (this: IHookFunctions) => Promise<boolean>; | ||
export declare type WebhookHttpMethod = 'GET' | 'POST'; | ||
export interface IWebhookResonseData { | ||
export interface IWebhookResponseData { | ||
workflowData?: INodeExecutionData[][]; | ||
@@ -379,0 +379,0 @@ webhookResponse?: any; |
@@ -1,2 +0,2 @@ | ||
import { IConnections, IGetExecuteTriggerFunctions, INode, INodes, INodeExecuteFunctions, INodeExecutionData, INodeParameters, NodeParameterValue, INodeTypes, IRunExecutionData, ITaskDataConnections, ITriggerResponse, IWebhookData, IWebhookResonseData, WebhookSetupMethodNames, IWorfklowIssues, IWorkflowExecuteAdditionalData, WorkflowExecuteMode, IWorkflowSettings } from './'; | ||
import { IConnections, IGetExecuteTriggerFunctions, INode, INodes, INodeExecuteFunctions, INodeExecutionData, INodeParameters, NodeParameterValue, INodeTypes, IRunExecutionData, ITaskDataConnections, ITriggerResponse, IWebhookData, IWebhookResponseData, WebhookSetupMethodNames, IWorfklowIssues, IWorkflowExecuteAdditionalData, WorkflowExecuteMode, IWorkflowSettings } from './'; | ||
import { IDataObject } from './Interfaces'; | ||
@@ -34,4 +34,4 @@ export declare class Workflow { | ||
runTrigger(node: INode, getTriggerFunctions: IGetExecuteTriggerFunctions, additionalData: IWorkflowExecuteAdditionalData, mode: WorkflowExecuteMode): Promise<ITriggerResponse | undefined>; | ||
runWebhook(webhookData: IWebhookData, node: INode, additionalData: IWorkflowExecuteAdditionalData, nodeExecuteFunctions: INodeExecuteFunctions, mode: WorkflowExecuteMode): Promise<IWebhookResonseData>; | ||
runWebhook(webhookData: IWebhookData, node: INode, additionalData: IWorkflowExecuteAdditionalData, nodeExecuteFunctions: INodeExecuteFunctions, mode: WorkflowExecuteMode): Promise<IWebhookResponseData>; | ||
runNode(node: INode, inputData: ITaskDataConnections, runExecutionData: IRunExecutionData, runIndex: number, additionalData: IWorkflowExecuteAdditionalData, nodeExecuteFunctions: INodeExecuteFunctions, mode: WorkflowExecuteMode): Promise<INodeExecutionData[][] | null>; | ||
} |
{ | ||
"name": "n8n-workflow", | ||
"version": "0.12.0", | ||
"version": "0.13.0", | ||
"description": "Workflow base code of n8n", | ||
@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN LICENSE.md", |
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
375661