MCPcopy Create free account
hub / github.com/alphaXiv/OpenResearch / ChangedFile

Interface ChangedFile

ui/src/api.ts:751–756  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

749export type ChangedStatus = "added" | "modified" | "deleted" | "renamed" | "untracked";
750
751export interface ChangedFile {
752 path: string;
753 status: ChangedStatus;
754 /** Pre-rename path — present only for `renamed` entries. */
755 oldPath?: string;
756}
757
758/** Live view of a chat session's private worktree. `exists: false` when the
759 * agent hasn't started yet (the worktree is created lazily on the first turn)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected