From 18182bbc94f2ce19a2ef7203dd07a2ff09b4debd Mon Sep 17 00:00:00 2001 From: Cody Seibert Date: Fri, 12 Dec 2025 15:20:35 -0500 Subject: [PATCH] feat: add errorType to AutoModeActivity interface for enhanced error handling - Introduced errorType property to the AutoModeActivity interface to categorize errors as "authentication" or "execution". - This addition improves the granularity of error reporting and handling within the application. --- apps/app/src/store/app-store.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/app/src/store/app-store.ts b/apps/app/src/store/app-store.ts index 94a93ffe..ca8a6336 100644 --- a/apps/app/src/store/app-store.ts +++ b/apps/app/src/store/app-store.ts @@ -351,6 +351,7 @@ export interface AutoModeActivity { tool?: string; passes?: boolean; phase?: "planning" | "action" | "verification"; + errorType?: "authentication" | "execution"; } export interface AppActions {