@harnessio/react-ssca-manager-client 0.84.38 → 0.84.39
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.
|
@@ -53,8 +53,15 @@ export interface AffectedArtifactInfo {
|
|
|
53
53
|
/**
|
|
54
54
|
* Status of PR remediation for this target
|
|
55
55
|
*/
|
|
56
|
-
remediation_status?: 'FAILED' | 'NOT_STARTED' | 'PR_CREATED';
|
|
56
|
+
remediation_status?: 'FAILED' | 'NOT_STARTED' | 'PR_CREATED' | 'REMEDIATED';
|
|
57
57
|
repo_name?: string;
|
|
58
58
|
repo_url?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Identifier of the artifact source (distinct from artifact_id)
|
|
61
|
+
*/
|
|
59
62
|
source_id?: string;
|
|
63
|
+
/**
|
|
64
|
+
* List of affected versions present in target
|
|
65
|
+
*/
|
|
66
|
+
target_versions?: string[];
|
|
60
67
|
}
|