@harnessio/react-ssca-manager-client 0.35.0 → 0.36.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/hooks/useGetPolicyViolationsQuery.d.ts +1 -0
- package/dist/ssca-manager/src/services/index.d.ts +1 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactComponentViewRequestBody.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactComponentViewResponse.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactComponentViewResponse.js +0 -3
- package/dist/ssca-manager/src/services/schemas/ComponentSummary.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/ComponentSummary.js +0 -3
- package/dist/ssca-manager/src/services/schemas/LayerType.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/LayerType.js +4 -0
- package/dist/ssca-manager/src/services/schemas/PolicyViolation.d.ts +3 -0
- package/dist/ssca-manager/src/services/schemas/PolicyViolation.js +0 -3
- package/package.json +1 -1
|
@@ -133,6 +133,7 @@ export type { EnvironmentInfo } from './schemas/EnvironmentInfo';
|
|
|
133
133
|
export type { EnvironmentType } from './schemas/EnvironmentType';
|
|
134
134
|
export type { EnvironmentTypeFilter } from './schemas/EnvironmentTypeFilter';
|
|
135
135
|
export type { ExcludeArtifactRequest } from './schemas/ExcludeArtifactRequest';
|
|
136
|
+
export type { LayerType } from './schemas/LayerType';
|
|
136
137
|
export type { LicenseDrift } from './schemas/LicenseDrift';
|
|
137
138
|
export type { LicenseDriftSummary } from './schemas/LicenseDriftSummary';
|
|
138
139
|
export type { LicenseFilter } from './schemas/LicenseFilter';
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import type { ComponentFilter } from '../schemas/ComponentFilter';
|
|
2
|
+
import type { LayerType } from '../schemas/LayerType';
|
|
2
3
|
import type { LicenseFilter } from '../schemas/LicenseFilter';
|
|
3
4
|
export interface ArtifactComponentViewRequestBody {
|
|
4
5
|
component_filter?: ComponentFilter[];
|
|
6
|
+
image_layer?: LayerType;
|
|
5
7
|
license_filter?: LicenseFilter;
|
|
6
8
|
package_manager?: string;
|
|
7
9
|
package_supplier?: string;
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
+
import type { LayerType } from '../schemas/LayerType';
|
|
1
2
|
export interface PolicyViolation {
|
|
2
3
|
account?: string;
|
|
3
4
|
artifact_id?: string;
|
|
4
5
|
enforcement_id?: string;
|
|
5
6
|
exemption_id?: string;
|
|
7
|
+
filter_tags?: LayerType[];
|
|
6
8
|
image_name?: string;
|
|
7
9
|
is_exempted?: boolean;
|
|
10
|
+
language?: string;
|
|
8
11
|
license?: string[];
|
|
9
12
|
name?: string;
|
|
10
13
|
orchestration_id?: string;
|