mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(Wait Node): Fix for hasNextPage in waiting forms (#12636)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user