feat(tui): improve session fork handling

This commit is contained in:
Dax Raad 2026-07-06 18:58:34 -04:00
commit 96717c1a8c
24 changed files with 335 additions and 387 deletions

View file

@ -4330,6 +4330,10 @@ export type PluginInfo = {
export type SessionV2Info = {
id: string
parentID?: string
fork?: {
sessionID: string
messageID?: string
}
projectID: string
agent?: string
model?: ModelRef
@ -8541,6 +8545,10 @@ export type RevertStateV2 = {
export type SessionV2InfoV2 = {
id: string
parentID?: string
fork?: {
sessionID: string
messageID?: string
}
projectID: string
agent?: string
model?: ModelRef