@harnessio/react-har-service-client 0.28.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.
@@ -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 { FileDetail } from '../schemas/FileDetail';
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-har-service-client",
3
- "version": "0.28.0",
3
+ "version": "0.29.0",
4
4
  "description": "Harness HAR Service APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",