fix(types): add conversion_rate fields to ValidationThroughput interface
Some checks failed
Aegis CI / lint-and-test (push) Has been cancelled
Some checks failed
Aegis CI / lint-and-test (push) Has been cancelled
This commit is contained in:
@@ -39,7 +39,11 @@ export interface CoverageVelocity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface ValidationThroughput {
|
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";
|
trend: "improving" | "declining" | "stable";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user