| 44 | | { type: "update"; unified_diff: string; move_path?: string; new_content: string } |
| 45 | |
| 46 | export interface AffectedPaths { |
| 47 | added: string[] |
| 48 | modified: string[] |
| 49 | deleted: string[] |
| 50 | } |
| 51 | |
| 52 | export enum ApplyPatchError { |
| 53 | ParseError = "ParseError", |
nothing calls this directly
no outgoing calls
no test coverage detected