fix(targets): harden adapter lifecycle and droid model edge cases

This commit is contained in:
Tam Nhu Tran
2026-02-17 04:09:48 +07:00
parent 02af8d5737
commit 3da3407f9a
12 changed files with 556 additions and 101 deletions
+3
View File
@@ -50,3 +50,6 @@ export type {
// Utility types
export { LogLevel } from './utils';
export type { ErrorCode, ColorName, TerminalInfo, Result } from './utils';
// Profile routing types
export type { ProfileType } from './profile';
+4
View File
@@ -0,0 +1,4 @@
/**
* Profile mode types used across routing and target adapters.
*/
export type ProfileType = 'settings' | 'account' | 'cliproxy' | 'copilot' | 'default';