mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user