11// GENERATED CODE! DO NOT MODIFY BY HAND!
22
33// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
4- import type { AbsolutePathBuf } from "../AbsolutePathBuf " ;
4+ import type { ImageGenerationItem } from "../ImageGenerationItem " ;
55import type { LegacyAppPathString } from "../LegacyAppPathString" ;
66import type { MessagePhase } from "../MessagePhase" ;
77import type { ReasoningEffort } from "../ReasoningEffort" ;
8+ import type { WebSearchItem } from "../WebSearchItem" ;
89import type { JsonValue } from "../serde_json/JsonValue" ;
910import type { CollabAgentState } from "./CollabAgentState" ;
1011import type { CollabAgentTool } from "./CollabAgentTool" ;
@@ -24,7 +25,6 @@ import type { MemoryCitation } from "./MemoryCitation";
2425import type { PatchApplyStatus } from "./PatchApplyStatus" ;
2526import type { SubAgentActivityKind } from "./SubAgentActivityKind" ;
2627import type { UserInput } from "./UserInput" ;
27- import type { WebSearchAction } from "./WebSearchAction" ;
2828
2929export type ThreadItem = { "type" : "userMessage" , id : string , clientId : string | null , content : Array < UserInput > , } | { "type" : "hookPrompt" , id : string , fragments : Array < HookPromptFragment > , } | { "type" : "agentMessage" , id : string , text : string , phase : MessagePhase | null , memoryCitation : MemoryCitation | null , } | { "type" : "plan" , id : string , text : string , } | { "type" : "reasoning" , id : string , summary : Array < string > , content : Array < string > , } | { "type" : "commandExecution" , id : string ,
3030/**
@@ -105,4 +105,4 @@ reasoningEffort: ReasoningEffort | null,
105105/**
106106 * Last known status of the target agents, when available.
107107 */
108- agentsStates : { [ key in string ] ?: CollabAgentState } , } | { "type" : "subAgentActivity" , id : string , kind : SubAgentActivityKind , agentThreadId : string , agentPath : string , } | { "type" : "webSearch" , id : string , query : string , action : WebSearchAction | null , } | { "type" : "imageView" , id : string , path : LegacyAppPathString , } | { "type" : "sleep" , id : string , durationMs : number , } | { "type" : "imageGeneration" , id : string , status : string , revisedPrompt : string | null , result : string , savedPath ?: AbsolutePathBuf , } | { "type" : "enteredReviewMode" , id : string , review : string , } | { "type" : "exitedReviewMode" , id : string , review : string , } | { "type" : "contextCompaction" , id : string , } ;
108+ agentsStates : { [ key in string ] ?: CollabAgentState } , } | { "type" : "subAgentActivity" , id : string , kind : SubAgentActivityKind , agentThreadId : string , agentPath : string , } | { "type" : "webSearch" } & WebSearchItem | { "type" : "imageView" , id : string , path : LegacyAppPathString , } | { "type" : "sleep" , id : string , durationMs : number , } | { "type" : "imageGeneration" } & ImageGenerationItem | { "type" : "enteredReviewMode" , id : string , review : string , } | { "type" : "exitedReviewMode" , id : string , review : string , } | { "type" : "contextCompaction" , id : string , } ;
0 commit comments