fix: Track responseMode and public chat in node graph (no-changelog) (#17231)

Co-authored-by: Mutasem Aldmour <mutasem@n8n.io>
This commit is contained in:
Benjamin Schroth
2025-07-15 15:15:04 +02:00
committed by GitHub
parent df80673c96
commit 8232d7f1d4
3 changed files with 164 additions and 0 deletions

View File

@@ -2619,10 +2619,13 @@ export interface INodeGraphItem {
src_node_id?: string;
src_instance_id?: string;
agent?: string; //@n8n/n8n-nodes-langchain.agent
is_streaming?: boolean; //@n8n/n8n-nodes-langchain.agent
prompts?: IDataObject[] | IDataObject; //ai node's prompts, cloud only
toolSettings?: IDataObject; //various langchain tool's settings
sql?: string; //merge node combineBySql, cloud only
workflow_id?: string; //@n8n/n8n-nodes-langchain.toolWorkflow and n8n-nodes-base.executeWorkflow
response_mode?: string; // @n8n/n8n-nodes-langchain.chatTrigger, n8n-nodes-base.webhook selected response mode
public_chat?: boolean; // @n8n/n8n-nodes-langchain.chatTrigger
runs?: number;
items_total?: number;
metric_names?: string[];