@harnessio/react-har-service-client 0.27.0 → 0.28.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.
@@ -12,7 +12,7 @@ export interface ListOciArtifactTags {
12
12
  /**
13
13
  * A list of OCI Artifact tags
14
14
  */
15
- ociArtifactTags?: OciArtifactTag[];
15
+ ociArtifactTags: OciArtifactTag[];
16
16
  /**
17
17
  * The total number of pages
18
18
  * @format int64
@@ -13,9 +13,11 @@ export interface Registry<T0 extends RegistryConfig = RegistryConfig> {
13
13
  createdAt?: string;
14
14
  description?: string;
15
15
  identifier: string;
16
+ isPublic: boolean;
16
17
  labels?: string[];
17
18
  modifiedAt?: string;
18
19
  packageType: PackageType;
20
+ policyRefs?: string[];
19
21
  scanners?: Scanner[];
20
22
  url: string;
21
23
  }
@@ -9,6 +9,7 @@ export interface RegistryArtifactMetadata {
9
9
  * @format int64
10
10
  */
11
11
  downloadsCount?: number;
12
+ isPublic: boolean;
12
13
  isQuarantined?: boolean;
13
14
  labels?: string[];
14
15
  lastModified?: string;
@@ -14,6 +14,7 @@ export interface RegistryMetadata {
14
14
  */
15
15
  downloadsCount?: number;
16
16
  identifier: string;
17
+ isPublic: boolean;
17
18
  labels?: string[];
18
19
  lastModified?: string;
19
20
  packageType: PackageType;
@@ -9,6 +9,7 @@ export interface RegistryRequest<T0 extends RegistryConfig = RegistryConfig> {
9
9
  config?: T0;
10
10
  description?: string;
11
11
  identifier: string;
12
+ isPublic: boolean;
12
13
  labels?: string[];
13
14
  packageType: PackageType;
14
15
  /**
@@ -22,5 +23,6 @@ export interface RegistryRequest<T0 extends RegistryConfig = RegistryConfig> {
22
23
  *
23
24
  */
24
25
  parentRef?: string;
26
+ policyRefs?: string[];
25
27
  scanners?: Scanner[];
26
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-har-service-client",
3
- "version": "0.27.0",
3
+ "version": "0.28.0",
4
4
  "description": "Harness HAR Service APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",