@harnessio/react-har-service-v2-client 0.4.0 → 0.5.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.
@@ -22,7 +22,7 @@ export interface ArtifactMetadata {
22
22
  /**
23
23
  * True if the artifact, its parent package (image), or registry is soft-deleted (cascade)
24
24
  */
25
- isDeleted: boolean;
25
+ isDeleted?: boolean;
26
26
  isQuarantined?: boolean;
27
27
  lastModified: string;
28
28
  metadata?: ArtifactEntityMetadata;
@@ -17,7 +17,7 @@ export interface PackageMetadata {
17
17
  /**
18
18
  * True if the package or its parent registry is soft-deleted (cascade)
19
19
  */
20
- isDeleted: boolean;
20
+ isDeleted?: boolean;
21
21
  isPublic: boolean;
22
22
  isQuarantined?: boolean;
23
23
  lastModified?: string;
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * refers to package
3
3
  */
4
- export type PackageType = 'CARGO' | 'CONDA' | 'DOCKER' | 'GENERIC' | 'GO' | 'HELM' | 'HUGGINGFACE' | 'MAVEN' | 'NPM' | 'NUGET' | 'PYTHON' | 'RPM';
4
+ export type PackageType = 'CARGO' | 'COMPOSER' | 'CONDA' | 'DART' | 'DOCKER' | 'GENERIC' | 'GO' | 'HELM' | 'HUGGINGFACE' | 'MAVEN' | 'NPM' | 'NUGET' | 'PYTHON' | 'RPM';
@@ -22,7 +22,7 @@ export interface RegistryMetadata {
22
22
  /**
23
23
  * True if the registry is soft-deleted
24
24
  */
25
- isDeleted: boolean;
25
+ isDeleted?: boolean;
26
26
  isPublic: boolean;
27
27
  lastModified?: string;
28
28
  packageType: PackageType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-har-service-v2-client",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "Harness HAR Service V2 APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",