n8n-workflow
Advanced tools
Comparing version 0.55.0 to 0.56.0
export * from './Interfaces'; | ||
export * from './Expression'; | ||
export * from './NodeErrors'; | ||
export * from './Workflow'; | ||
export * from './WorkflowDataProxy'; | ||
export * from './WorkflowErrors'; | ||
export * from './WorkflowHooks'; | ||
@@ -6,0 +8,0 @@ import * as NodeHelpers from './NodeHelpers'; |
@@ -16,4 +16,6 @@ "use strict"; | ||
__exportStar(require("./Expression"), exports); | ||
__exportStar(require("./NodeErrors"), exports); | ||
__exportStar(require("./Workflow"), exports); | ||
__exportStar(require("./WorkflowDataProxy"), exports); | ||
__exportStar(require("./WorkflowErrors"), exports); | ||
__exportStar(require("./WorkflowHooks"), exports); | ||
@@ -20,0 +22,0 @@ const NodeHelpers = require("./NodeHelpers"); |
import { Workflow } from './Workflow'; | ||
import { WorkflowHooks } from './WorkflowHooks'; | ||
import { WorkflowOperationError } from './WorkflowErrors'; | ||
import { NodeApiError, NodeOperationError } from './NodeErrors'; | ||
import * as express from 'express'; | ||
@@ -25,7 +27,3 @@ export declare type IAllExecuteFunctions = IExecuteFunctions | IExecuteSingleFunctions | IHookFunctions | ILoadOptionsFunctions | IPollFunctions | ITriggerFunctions | IWebhookFunctions; | ||
} | ||
export interface IExecutionError { | ||
message: string; | ||
node?: string; | ||
stack?: string; | ||
} | ||
export declare type ExecutionError = WorkflowOperationError | NodeOperationError | NodeApiError; | ||
export interface IGetCredentials { | ||
@@ -525,3 +523,3 @@ get(type: string, name: string): Promise<ICredentialsEncrypted>; | ||
resultData: { | ||
error?: IExecutionError; | ||
error?: ExecutionError; | ||
runData: IRunData; | ||
@@ -543,3 +541,3 @@ lastNodeExecuted?: string; | ||
data?: ITaskDataConnections; | ||
error?: IExecutionError; | ||
error?: ExecutionError; | ||
} | ||
@@ -590,2 +588,3 @@ export interface ITaskDataConnections { | ||
currentNodeParameters?: INodeParameters; | ||
executionTimeoutTimestamp?: number; | ||
} | ||
@@ -602,1 +601,7 @@ export declare type WorkflowExecuteMode = 'cli' | 'error' | 'integrated' | 'internal' | 'manual' | 'retry' | 'trigger' | 'webhook'; | ||
} | ||
export interface IRawErrorObject { | ||
[key: string]: string | object | number | boolean | undefined | null | string[] | object[] | number[] | boolean[]; | ||
} | ||
export interface IStatusCodeMessages { | ||
[key: string]: string; | ||
} |
{ | ||
"name": "n8n-workflow", | ||
"version": "0.55.0", | ||
"version": "0.56.0", | ||
"description": "Workflow base code of n8n", | ||
@@ -32,3 +32,3 @@ "license": "SEE LICENSE IN LICENSE.md", | ||
"@types/lodash.get": "^4.4.6", | ||
"@types/node": "14.0.27", | ||
"@types/node": "^14.14.40", | ||
"jest": "^26.4.2", | ||
@@ -35,0 +35,0 @@ "ts-jest": "^26.3.0", |
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
438111
45
6952