@harnessio/react-ssca-manager-client 0.84.30 → 0.84.32
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.
- package/dist/ssca-manager/src/services/hooks/useGetAiWorkflowExecutionsAccountScopeQuery.d.ts +1 -0
- package/dist/ssca-manager/src/services/schemas/AffectedArtifactInfo.d.ts +4 -0
- package/dist/ssca-manager/src/services/schemas/TriageFindingDetail.d.ts +1 -0
- package/dist/ssca-manager/src/services/schemas/TriageFindingSummary.d.ts +2 -0
- package/package.json +1 -1
|
@@ -11,6 +11,10 @@ export interface AffectedArtifactInfo {
|
|
|
11
11
|
* Whether this artifact is deployed to any production environment
|
|
12
12
|
*/
|
|
13
13
|
deployed_to_prod?: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Whether deployment-related fields are applicable (false for REPOSITORY artifacts)
|
|
16
|
+
*/
|
|
17
|
+
deployment_applicable?: boolean;
|
|
14
18
|
/**
|
|
15
19
|
* Environment type (Production, NonProduction)
|
|
16
20
|
*/
|
|
@@ -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;
|