@harnessio/react-ssca-manager-client 0.84.31 → 0.84.33
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.
|
@@ -42,6 +42,18 @@ export interface AffectedArtifactInfo {
|
|
|
42
42
|
* Package URL of the affected component (used in create-PR flow)
|
|
43
43
|
*/
|
|
44
44
|
purl?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Error message when remediation failed
|
|
47
|
+
*/
|
|
48
|
+
remediation_error_message?: string;
|
|
49
|
+
/**
|
|
50
|
+
* URL of the created remediation pull request (present when status is PR_CREATED)
|
|
51
|
+
*/
|
|
52
|
+
remediation_pr_url?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Status of PR remediation for this target
|
|
55
|
+
*/
|
|
56
|
+
remediation_status?: 'FAILED' | 'NOT_STARTED' | 'PR_CREATED';
|
|
45
57
|
repo_name?: string;
|
|
46
58
|
repo_url?: string;
|
|
47
59
|
}
|
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export interface TriageFindingSummary {
|
|
5
5
|
fps_identified_count?: number;
|
|
6
|
+
occurrence_triaged_count?: number;
|
|
6
7
|
originating_org_identifier?: string;
|
|
7
8
|
originating_project_identifier?: string;
|
|
9
|
+
scan_id?: string;
|
|
8
10
|
target_id?: string;
|
|
9
11
|
target_name?: string;
|
|
10
12
|
triggering_pipeline_execution_id?: string;
|