From 86a0510655254a35d8b7781e4d08699b67d4c0f6 Mon Sep 17 00:00:00 2001 From: cfdaily Date: Tue, 19 May 2026 13:42:17 +0800 Subject: [PATCH] auto-sync: 2026-05-19 13:42:17 --- src/frontend/src/store.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontend/src/store.ts b/src/frontend/src/store.ts index ed9c6c5..b0f729d 100644 --- a/src/frontend/src/store.ts +++ b/src/frontend/src/store.ts @@ -24,7 +24,7 @@ export interface V2Task { id: string; title: string; description: string | null; - status: 'pending' | 'claimed' | 'working' | 'review' | 'done' | 'failed' | 'blocked' | 'cancelled'; + status: 'pending' | 'claimed' | 'working' | 'review' | 'paused' | 'escalated' | 'waiting_human' | 'done' | 'failed' | 'blocked' | 'cancelled'; assignee: string | null; assigned_by: string | null; depends_on: string | null; @@ -43,6 +43,7 @@ export interface V2Task { risk_level: string | null; estimated_duration_minutes: number | null; escalated: number; + archived: number; // v2.8: 归档标记 // API 聚合字段 comments_count?: number; outputs_count?: number;