@harnessio/react-ssca-manager-client 0.19.0 → 0.20.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.
@@ -3,20 +3,20 @@ export interface DeploymentsCount {
3
3
  * Patched Non Prod Deployments.
4
4
  * @format int64
5
5
  */
6
- patched_non_prod_count: number;
6
+ patched_non_prod_count?: number | null;
7
7
  /**
8
8
  * Patched Prod Deployments.
9
9
  * @format int64
10
10
  */
11
- patched_prod_count: number;
11
+ patched_prod_count?: number | null;
12
12
  /**
13
13
  * Pending Non Prod Deployments to remediate.
14
14
  * @format int64
15
15
  */
16
- pending_non_prod_count: number;
16
+ pending_non_prod_count?: number | null;
17
17
  /**
18
18
  * Pending Prod Deployments to remediate.
19
19
  * @format int64
20
20
  */
21
- pending_prod_count: number;
21
+ pending_prod_count?: number | null;
22
22
  }
@@ -2,7 +2,9 @@ export interface PolicyViolation {
2
2
  account?: string;
3
3
  artifact_id?: string;
4
4
  enforcement_id?: string;
5
+ exemption_id?: string;
5
6
  image_name?: string;
7
+ is_exempted?: boolean;
6
8
  license?: string[];
7
9
  name?: string;
8
10
  orchestration_id?: string;
@@ -35,8 +35,4 @@ export interface RemediationListingResponse {
35
35
  * Target End Date set by the user.
36
36
  */
37
37
  target_date?: string;
38
- /**
39
- * Component Version.
40
- */
41
- version: string;
42
38
  }
@@ -4,10 +4,6 @@ export interface VulnerabilityInfo {
4
4
  * Name of the component where vulnerability is found.
5
5
  */
6
6
  component_name: string;
7
- /**
8
- * Version(s) of the component where vulnerability is found.
9
- */
10
- component_version?: string;
11
7
  severity: VulnerabilitySeverity;
12
8
  type: {};
13
9
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-ssca-manager-client",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "description": "Harness SSCA manager APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",