@harnessio/react-har-service-client 0.27.0 → 0.29.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/index.d.ts +1 -0
- package/dist/har-service/src/services/responses/FileDetailResponseResponse.d.ts +2 -28
- package/dist/har-service/src/services/schemas/ListFileDetail.d.ts +33 -0
- package/dist/har-service/src/services/schemas/ListFileDetail.js +1 -0
- package/dist/har-service/src/services/schemas/ListOciArtifactTags.d.ts +1 -1
- package/dist/har-service/src/services/schemas/Registry.d.ts +2 -0
- package/dist/har-service/src/services/schemas/RegistryArtifactMetadata.d.ts +1 -0
- package/dist/har-service/src/services/schemas/RegistryMetadata.d.ts +1 -0
- package/dist/har-service/src/services/schemas/RegistryRequest.d.ts +2 -0
- package/package.json +1 -1
|
@@ -217,6 +217,7 @@ export type { JfrogReplicationRegistry } from './schemas/JfrogReplicationRegistr
|
|
|
217
217
|
export type { ListArtifact } from './schemas/ListArtifact';
|
|
218
218
|
export type { ListArtifactLabel } from './schemas/ListArtifactLabel';
|
|
219
219
|
export type { ListArtifactVersion } from './schemas/ListArtifactVersion';
|
|
220
|
+
export type { ListFileDetail } from './schemas/ListFileDetail';
|
|
220
221
|
export type { ListMigrationImage } from './schemas/ListMigrationImage';
|
|
221
222
|
export type { ListOciArtifactTags } from './schemas/ListOciArtifactTags';
|
|
222
223
|
export type { ListRegistry } from './schemas/ListRegistry';
|
|
@@ -1,32 +1,6 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ListFileDetail } from '../schemas/ListFileDetail';
|
|
2
2
|
import type { Status } from '../schemas/Status';
|
|
3
3
|
export interface FileDetailResponseResponse {
|
|
4
|
-
|
|
5
|
-
* A list of Harness Artifact Files
|
|
6
|
-
*/
|
|
7
|
-
files: FileDetail[];
|
|
8
|
-
/**
|
|
9
|
-
* The total number of items
|
|
10
|
-
* @format int64
|
|
11
|
-
* @example 1
|
|
12
|
-
*/
|
|
13
|
-
itemCount?: number;
|
|
14
|
-
/**
|
|
15
|
-
* The total number of pages
|
|
16
|
-
* @format int64
|
|
17
|
-
* @example 100
|
|
18
|
-
*/
|
|
19
|
-
pageCount?: number;
|
|
20
|
-
/**
|
|
21
|
-
* The current page
|
|
22
|
-
* @format int64
|
|
23
|
-
* @example 0
|
|
24
|
-
*/
|
|
25
|
-
pageIndex?: number;
|
|
26
|
-
/**
|
|
27
|
-
* The number of items per page
|
|
28
|
-
* @example 1
|
|
29
|
-
*/
|
|
30
|
-
pageSize?: number;
|
|
4
|
+
data: ListFileDetail;
|
|
31
5
|
status: Status;
|
|
32
6
|
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { FileDetail } from '../schemas/FileDetail';
|
|
2
|
+
/**
|
|
3
|
+
* A list of Harness Artifact Files
|
|
4
|
+
*/
|
|
5
|
+
export interface ListFileDetail {
|
|
6
|
+
/**
|
|
7
|
+
* A list of Harness Artifact Files
|
|
8
|
+
*/
|
|
9
|
+
files: FileDetail[];
|
|
10
|
+
/**
|
|
11
|
+
* The total number of items
|
|
12
|
+
* @format int64
|
|
13
|
+
* @example 1
|
|
14
|
+
*/
|
|
15
|
+
itemCount?: number;
|
|
16
|
+
/**
|
|
17
|
+
* The total number of pages
|
|
18
|
+
* @format int64
|
|
19
|
+
* @example 100
|
|
20
|
+
*/
|
|
21
|
+
pageCount?: number;
|
|
22
|
+
/**
|
|
23
|
+
* The current page
|
|
24
|
+
* @format int64
|
|
25
|
+
* @example 0
|
|
26
|
+
*/
|
|
27
|
+
pageIndex?: number;
|
|
28
|
+
/**
|
|
29
|
+
* The number of items per page
|
|
30
|
+
* @example 1
|
|
31
|
+
*/
|
|
32
|
+
pageSize?: number;
|
|
33
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -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 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
|
}
|