@harnessio/react-ssca-manager-client 0.27.0 → 0.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { StoIssueCount } from '../schemas/StoIssueCount';
|
|
2
1
|
export interface ArtifactListingResponse {
|
|
3
2
|
activity?: 'DEPLOYED' | 'GENERATED';
|
|
4
3
|
allow_list_violation_count?: string;
|
|
@@ -17,7 +16,6 @@ export interface ArtifactListingResponse {
|
|
|
17
16
|
avg_score?: string;
|
|
18
17
|
max_score?: string;
|
|
19
18
|
};
|
|
20
|
-
sto_issue_count?: StoIssueCount;
|
|
21
19
|
tag: string;
|
|
22
20
|
updated?: string;
|
|
23
21
|
url?: string;
|
|
@@ -34,6 +34,10 @@ export interface StoIssueCount {
|
|
|
34
34
|
* The number of Medium-severity Issues
|
|
35
35
|
*/
|
|
36
36
|
medium?: number;
|
|
37
|
+
/**
|
|
38
|
+
* Harness Pipeline Id
|
|
39
|
+
*/
|
|
40
|
+
pipeline_id?: string;
|
|
37
41
|
/**
|
|
38
42
|
* Associated Target ID
|
|
39
43
|
*/
|
|
@@ -53,5 +57,5 @@ export interface StoIssueCount {
|
|
|
53
57
|
/**
|
|
54
58
|
* Scan Target's type
|
|
55
59
|
*/
|
|
56
|
-
type?:
|
|
60
|
+
type?: 'image' | 'repository';
|
|
57
61
|
}
|