feat(Loop Over Items (Split in Batches) Node): Automatically add a loop + rename (#7228)

Github issue / Community forum post (link here to close automatically):

---------

Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
Elias Meire
2023-10-06 15:31:18 +02:00
committed by GitHub
parent afa683a06f
commit 7b773cc5cc
18 changed files with 584 additions and 221 deletions

View File

@@ -1652,3 +1652,27 @@ export type N8nBanners = {
component: Component;
};
};
export type AddedNode = {
type: string;
openDetail?: boolean;
isAutoAdd?: boolean;
name?: string;
position?: XYPosition;
};
export type AddedNodeConnection = {
from: { nodeIndex: number; outputIndex?: number };
to: { nodeIndex: number; inputIndex?: number };
};
export type AddedNodesAndConnections = {
nodes: AddedNode[];
connections: AddedNodeConnection[];
};
export type ToggleNodeCreatorOptions = {
createNodeActive: boolean;
source?: NodeCreatorOpenSource;
nodeCreatorView?: string;
};