fix: handle session start persistence

This commit is contained in:
Federico Jaramillo Martinez
2026-07-02 18:46:44 +02:00
parent d2e10cd89a
commit 2665d1e4bc
18 changed files with 1154 additions and 196 deletions
+4
View File
@@ -186,6 +186,8 @@ export interface SessionRef {
export interface SessionInfo extends SessionRef {
path: string;
/** True when the server has verified a backing session file exists; false when known transient. */
persisted?: boolean;
name?: string;
created: string;
modified: string;
@@ -380,6 +382,8 @@ export interface ThinkingLevelsResponse {
export interface SessionStatus {
sessionId: string;
/** True when the server has verified a backing session file exists; false when known transient. */
persisted?: boolean;
model?: SessionModel;
thinkingLevel?: string;
isStreaming: boolean;