@harnessio/react-har-service-client 0.44.0 → 0.45.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/har-service/src/services/schemas/ArtifactDetail.d.ts +0 -4
- package/dist/har-service/src/services/schemas/ArtifactMetadata.d.ts +0 -4
- package/dist/har-service/src/services/schemas/ArtifactSummary.d.ts +0 -4
- package/dist/har-service/src/services/schemas/ArtifactVersionMetadata.d.ts +0 -4
- package/dist/har-service/src/services/schemas/ArtifactVersionSummary.d.ts +0 -4
- package/dist/har-service/src/services/schemas/PolicyFailureDetail.d.ts +4 -0
- package/dist/har-service/src/services/schemas/Registry.d.ts +0 -4
- package/package.json +1 -1
|
@@ -29,10 +29,6 @@ export type ArtifactDetail = (DockerArtifactDetailConfig | HelmArtifactDetailCon
|
|
|
29
29
|
* @format int64
|
|
30
30
|
*/
|
|
31
31
|
downloadCount?: number;
|
|
32
|
-
/**
|
|
33
|
-
* True if the registry is soft-deleted
|
|
34
|
-
*/
|
|
35
|
-
isDeleted: boolean;
|
|
36
32
|
isQuarantined?: boolean;
|
|
37
33
|
modifiedAt?: string;
|
|
38
34
|
name?: string;
|
|
@@ -19,10 +19,6 @@ export interface ArtifactMetadata {
|
|
|
19
19
|
*/
|
|
20
20
|
downloadsCount?: number;
|
|
21
21
|
fileCount?: number;
|
|
22
|
-
/**
|
|
23
|
-
* Indicates if the artifact version is soft deleted
|
|
24
|
-
*/
|
|
25
|
-
isDeleted: boolean;
|
|
26
22
|
isQuarantined?: boolean;
|
|
27
23
|
labels?: string[];
|
|
28
24
|
lastModified?: string;
|
|
@@ -25,10 +25,6 @@ export interface ArtifactVersionMetadata {
|
|
|
25
25
|
* @format int64
|
|
26
26
|
*/
|
|
27
27
|
fileCount?: number;
|
|
28
|
-
/**
|
|
29
|
-
* Indicates if the artifact version is soft deleted
|
|
30
|
-
*/
|
|
31
|
-
isDeleted: boolean;
|
|
32
28
|
isQuarantined?: boolean;
|
|
33
29
|
lastModified?: string;
|
|
34
30
|
metadata?: ArtifactEntityMetadata;
|
|
@@ -11,10 +11,6 @@ export interface ArtifactVersionSummary {
|
|
|
11
11
|
*/
|
|
12
12
|
deletedAt?: string;
|
|
13
13
|
imageName: string;
|
|
14
|
-
/**
|
|
15
|
-
* Indicates if the artifact version is soft deleted
|
|
16
|
-
*/
|
|
17
|
-
isDeleted: boolean;
|
|
18
14
|
isQuarantined?: boolean;
|
|
19
15
|
packageType: PackageType;
|
|
20
16
|
quarantineReason?: string;
|
|
@@ -17,10 +17,6 @@ export interface Registry<T0 extends RegistryConfig = RegistryConfig> {
|
|
|
17
17
|
deletedAt?: string;
|
|
18
18
|
description?: string;
|
|
19
19
|
identifier: string;
|
|
20
|
-
/**
|
|
21
|
-
* Indicates if the artifact version is soft deleted
|
|
22
|
-
*/
|
|
23
|
-
isDeleted: boolean;
|
|
24
20
|
isPublic: boolean;
|
|
25
21
|
labels?: string[];
|
|
26
22
|
modifiedAt?: string;
|