wip(foundry): capture remaining local changes

This commit is contained in:
Nathan Flurry 2026-03-15 10:23:56 -07:00
parent 6f85b59f31
commit 40bed3b0a1
6 changed files with 25 additions and 43 deletions

View file

@ -104,15 +104,16 @@ export interface WorkspaceParsedDiffLine {
export interface WorkspacePullRequestSummary {
number: number;
title: string;
state: string;
url: string;
headRefName: string;
baseRefName: string;
repoFullName: string;
authorLogin: string | null;
isDraft: boolean;
updatedAtMs: number;
status: "draft" | "ready";
title?: string;
state?: string;
url?: string;
headRefName?: string;
baseRefName?: string;
repoFullName?: string;
authorLogin?: string | null;
isDraft?: boolean;
updatedAtMs?: number;
}
export interface WorkspaceSandboxSummary {
@ -241,6 +242,7 @@ export interface TaskWorkspaceRenameInput {
repoId: string;
taskId: string;
value: string;
authSessionId?: string;
}
export interface TaskWorkspaceSendMessageInput {