fix(types): add conversion_rate fields to ValidationThroughput interface
Some checks failed
Aegis CI / lint-and-test (push) Has been cancelled

This commit is contained in:
kitos
2026-06-03 10:07:49 +02:00
parent f53500bcb5
commit e03a222ab0

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";
}