fix(threatscore): improve the way ThreatScore is calculated (#8582)

Co-authored-by: Sergio Garcia <hello@mistercloudsec.com>
Co-authored-by: alejandrobailo <alejandrobailo94@gmail.com>
This commit is contained in:
Pedro Martín
2025-10-09 11:50:10 +02:00
committed by GitHub
parent b630234cdf
commit 1a7f52fc9c
12 changed files with 198 additions and 21 deletions

View File

@@ -189,6 +189,9 @@ export interface RequirementItemData {
version: string;
description: string;
status: RequirementStatus;
// For Threat compliance:
passed_findings?: number;
total_findings?: number;
};
}