chore(attack-pahts): improve attack paths queries attribution (#9983)

This commit is contained in:
Josema Camacho
2026-02-09 11:07:12 +01:00
committed by GitHub
parent fa189e7eb9
commit 5cbbceb3be
13 changed files with 701 additions and 340 deletions
+7
View File
@@ -90,11 +90,18 @@ export interface AttackPathQueryParameter {
required?: boolean;
}
export interface AttackPathQueryAttribution {
text: string;
link: string;
}
export interface AttackPathQueryAttributes {
name: string;
short_description: string;
description: string;
provider: string;
parameters: AttackPathQueryParameter[];
attribution: AttackPathQueryAttribution | null;
}
export interface AttackPathQuery {