fix(Wait Node): Fix for hasNextPage in waiting forms (#12636)

This commit is contained in:
Michael Kret
2025-01-20 11:41:50 +02:00
committed by GitHub
parent 847aa1295d
commit 652b8d170b
4 changed files with 66 additions and 9 deletions

View File

@@ -852,6 +852,7 @@ export type NodeTypeAndVersion = {
type: string;
typeVersion: number;
disabled: boolean;
parameters?: INodeParameters;
};
export interface FunctionsBase {
@@ -869,7 +870,10 @@ export interface FunctionsBase {
getRestApiUrl(): string;
getInstanceBaseUrl(): string;
getInstanceId(): string;
getChildNodes(nodeName: string): NodeTypeAndVersion[];
getChildNodes(
nodeName: string,
options?: { includeNodeParameters?: boolean },
): NodeTypeAndVersion[];
getParentNodes(nodeName: string): NodeTypeAndVersion[];
getKnownNodeTypes(): IDataObject;
getMode?: () => WorkflowExecuteMode;