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.
This commit is contained in:
Cody Seibert
2025-12-12 15:20:35 -05:00
parent 4924cf1453
commit 18182bbc94

View File

@@ -351,6 +351,7 @@ export interface AutoModeActivity {
tool?: string;
passes?: boolean;
phase?: "planning" | "action" | "verification";
errorType?: "authentication" | "execution";
}
export interface AppActions {