mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-29 20:20:57 +00:00
Fix for git issue 5657 to add lines of code added/removed telemetry (#5823)
Co-authored-by: Ravikant Agarwal <ravikantag@google.com>
This commit is contained in:
parent
86eaa03f8a
commit
5ab184fcaf
12 changed files with 408 additions and 14 deletions
|
|
@ -498,6 +498,14 @@ export interface FileDiff {
|
|||
fileName: string;
|
||||
originalContent: string | null;
|
||||
newContent: string;
|
||||
diffStat?: DiffStat;
|
||||
}
|
||||
|
||||
export interface DiffStat {
|
||||
ai_removed_lines: number;
|
||||
ai_added_lines: number;
|
||||
user_added_lines: number;
|
||||
user_removed_lines: number;
|
||||
}
|
||||
|
||||
export interface ToolEditConfirmationDetails {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue