feat(backends): add external-to-external failover before native fallback

This commit is contained in:
William Valentin
2026-02-17 09:52:09 -08:00
parent 898828bb70
commit 88f6ae5b7a
2 changed files with 80 additions and 1 deletions
+1 -1
View File
@@ -223,7 +223,7 @@ export interface BackendFallbackEvent {
channel: string;
sender: string;
from_backend: 'claude_code' | 'opencode' | 'codex' | 'gemini';
to_backend: 'native';
to_backend: 'native' | 'claude_code' | 'opencode' | 'codex' | 'gemini';
reason: string;
}