From 12bbf1753d69e70ac04ea6c28c17a8b4d1c67dd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Facundo=20Rodr=C3=ADguez?= Date: Mon, 18 Aug 2025 09:12:03 -0300 Subject: [PATCH] fix: update cve stats model to use the correct data type --- src/types/eol-scan.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/eol-scan.ts b/src/types/eol-scan.ts index 0c41ef0..1150905 100644 --- a/src/types/eol-scan.ts +++ b/src/types/eol-scan.ts @@ -2,7 +2,7 @@ import type { CdxBom } from './index.js'; export interface CveStats { cveId: string; - cvssScore: number; + cvssScore: string | null; publishedAt: string; }