mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(core): Fix pairedItem for alwaysOutputData & multi identical resolve (#6405)
This commit is contained in:
@@ -1763,6 +1763,23 @@ export interface IWorkflowSettings {
|
||||
executionTimeout?: number;
|
||||
}
|
||||
|
||||
export interface WorkflowTestData {
|
||||
description: string;
|
||||
input: {
|
||||
workflowData: {
|
||||
nodes: INode[];
|
||||
connections: IConnections;
|
||||
settings?: IWorkflowSettings;
|
||||
};
|
||||
};
|
||||
output: {
|
||||
nodeExecutionOrder?: string[];
|
||||
nodeData: {
|
||||
[key: string]: any[][];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
export type LogTypes = 'debug' | 'verbose' | 'info' | 'warn' | 'error';
|
||||
|
||||
export interface ILogger {
|
||||
|
||||
Reference in New Issue
Block a user