Skip to content
This repository was archived by the owner on Jul 8, 2025. It is now read-only.

Commit de279ea

Browse files
authored
feat: implement OCI image analysis natively instead of via java API adapter (#272)
1 parent 1680a12 commit de279ea

File tree

7 files changed

+150
-250
lines changed

7 files changed

+150
-250
lines changed
Binary file not shown.

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/dependencyAnalysis/analysis.ts

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,10 @@ interface ISource {
2020
dependencies: any[];
2121
}
2222

23-
/**
24-
* Represents data specification related to a dependency.
25-
*/
26-
interface IDependencyData {
27-
sourceId: string;
28-
issuesCount: number;
29-
recommendationRef: string;
30-
remediationRef: string
31-
highestVulnerabilitySeverity: string;
32-
}
33-
3423
/**
3524
* Implementation of IDependencyData interface.
3625
*/
37-
class DependencyData implements IDependencyData {
26+
class DependencyData {
3827
constructor(
3928
public sourceId: string,
4029
public issuesCount: number,

0 commit comments

Comments
 (0)