Add isArchived field to workflow responses and types

This commit is contained in:
Amaury Constant
2025-09-03 10:04:02 +02:00
parent cac43ed384
commit 36839a1c30
2 changed files with 4 additions and 0 deletions

View File

@@ -49,6 +49,7 @@ export interface Workflow {
nodes: WorkflowNode[];
connections: WorkflowConnection;
active?: boolean; // Optional for creation as it's read-only
isArchived?: boolean; // Optional, available in newer n8n versions
settings?: WorkflowSettings;
staticData?: Record<string, unknown>;
tags?: string[];