@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.
- package/dist/ssca-manager/src/services/schemas/DeploymentsCount.d.ts +4 -4
- package/dist/ssca-manager/src/services/schemas/PolicyViolation.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/RemediationListingResponse.d.ts +0 -4
- package/dist/ssca-manager/src/services/schemas/VulnerabilityInfo.d.ts +0 -4
- package/package.json +1 -1
|
@@ -3,20 +3,20 @@ export interface DeploymentsCount {
|
|
|
3
3
|
* Patched Non Prod Deployments.
|
|
4
4
|
* @format int64
|
|
5
5
|
*/
|
|
6
|
-
patched_non_prod_count
|
|
6
|
+
patched_non_prod_count?: number | null;
|
|
7
7
|
/**
|
|
8
8
|
* Patched Prod Deployments.
|
|
9
9
|
* @format int64
|
|
10
10
|
*/
|
|
11
|
-
patched_prod_count
|
|
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
|
|
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
|
|
21
|
+
pending_prod_count?: number | null;
|
|
22
22
|
}
|
|
@@ -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
|
/**
|