@harnessio/react-ssca-manager-client 0.69.0 → 0.71.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.
|
@@ -23,6 +23,10 @@ export interface PipelineDetails {
|
|
|
23
23
|
* Execution Id for the Stage
|
|
24
24
|
*/
|
|
25
25
|
stage_execution_id?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Stage type in which the step executed
|
|
28
|
+
*/
|
|
29
|
+
stage_type?: 'BUILD' | 'DEPLOY' | 'SECURITY';
|
|
26
30
|
status?: 'FAILED' | 'PASSED' | 'UNKNOWN';
|
|
27
31
|
/**
|
|
28
32
|
* Execution Id for the step
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { PipelineDetails } from '../schemas/PipelineDetails';
|
|
1
2
|
/**
|
|
2
3
|
* The count of Security Issues, by severity code, for a given Harness Pipeline Execution along with this execution info
|
|
3
4
|
*/
|
|
@@ -34,6 +35,7 @@ export interface StoIssueCount {
|
|
|
34
35
|
* The number of Medium-severity Issues
|
|
35
36
|
*/
|
|
36
37
|
medium?: number;
|
|
38
|
+
pipeline_details?: PipelineDetails;
|
|
37
39
|
/**
|
|
38
40
|
* Harness Pipeline Id
|
|
39
41
|
*/
|
|
@@ -54,6 +56,10 @@ export interface StoIssueCount {
|
|
|
54
56
|
* Name of the Scan Target
|
|
55
57
|
*/
|
|
56
58
|
target_variant_name?: string;
|
|
59
|
+
/**
|
|
60
|
+
* The name of the tool that performed the scan
|
|
61
|
+
*/
|
|
62
|
+
tool?: string;
|
|
57
63
|
/**
|
|
58
64
|
* The number of total-severity Issues
|
|
59
65
|
*/
|