fix(app-server): add stdout and stderr to FileChange items

This commit is contained in:
Owen Lin
2025-12-04 11:56:53 -08:00
parent 231ff19ca2
commit 195dc38d41
3 changed files with 45 additions and 2 deletions

View File

@@ -1126,6 +1126,10 @@ pub enum ThreadItem {
id: String,
changes: Vec<FileUpdateChange>,
status: PatchApplyStatus,
/// Captured stdout (summary printed by the underlying `apply_patch` tool call).
stdout: Option<String>,
/// Captured stderr (parser errors, IO failures, etc.).
stderr: Option<String>,
},
#[serde(rename_all = "camelCase")]
#[ts(rename_all = "camelCase")]