fix(types): add conversion_rate fields to ValidationThroughput interface

This commit is contained in:
kitos
2026-06-03 10:07:49 +02:00
parent 6ceb4125a0
commit f3c07fdaf1
+5 -1
View File
@@ -39,7 +39,11 @@ export interface CoverageVelocity {
}
export interface ValidationThroughput {
tests_per_week: number;
tests_per_week: number; // kept for API compat (now = conversion_rate value)
conversion_rate?: number; // pipeline conversion % (activity-based)
validated?: number;
rejected?: number;
in_review?: number;
trend: "improving" | "declining" | "stable";
}