@harnessio/react-har-service-client 0.24.0 → 0.26.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/hooks/useDeleteArtifactMutation.d.ts +1 -1
- package/dist/har-service/src/services/hooks/useDeleteArtifactVersionMutation.d.ts +1 -1
- package/dist/har-service/src/services/hooks/useGetAllArtifactsByRegistryQuery.d.ts +1 -1
- package/dist/har-service/src/services/hooks/useGetArtifactDetailsQuery.d.ts +1 -1
- package/dist/har-service/src/services/hooks/useGetArtifactFileQuery.d.ts +1 -1
- package/dist/har-service/src/services/hooks/useGetArtifactFilesQuery.d.ts +1 -1
- package/dist/har-service/src/services/hooks/useGetArtifactSummaryQuery.d.ts +1 -1
- package/dist/har-service/src/services/hooks/useGetArtifactVersionSummaryQuery.d.ts +1 -1
- package/dist/har-service/src/services/hooks/useUpdateArtifactLabelsMutation.d.ts +1 -1
- package/dist/har-service/src/services/schemas/ArtifactDetail.d.ts +1 -0
- package/dist/har-service/src/services/schemas/ArtifactMetadata.d.ts +2 -0
- package/dist/har-service/src/services/schemas/ArtifactType.d.ts +1 -1
- package/dist/har-service/src/services/schemas/ArtifactVersionMetadata.d.ts +1 -0
- package/dist/har-service/src/services/schemas/ArtifactVersionSummary.d.ts +2 -0
- package/dist/har-service/src/services/schemas/DockerArtifactDetail.d.ts +1 -0
- package/dist/har-service/src/services/schemas/DockerManifestDetails.d.ts +2 -0
- package/dist/har-service/src/services/schemas/RegistryArtifactMetadata.d.ts +1 -0
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ export interface DeleteArtifactMutationPathParams {
|
|
|
12
12
|
artifact: string;
|
|
13
13
|
}
|
|
14
14
|
export interface DeleteArtifactMutationQueryParams {
|
|
15
|
-
artifact_type?: '
|
|
15
|
+
artifact_type?: 'dataset' | 'model';
|
|
16
16
|
}
|
|
17
17
|
export type DeleteArtifactOkResponse = ResponseWithPagination<SuccessResponse>;
|
|
18
18
|
export type DeleteArtifactErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse;
|
|
@@ -13,7 +13,7 @@ export interface DeleteArtifactVersionMutationPathParams {
|
|
|
13
13
|
version: string;
|
|
14
14
|
}
|
|
15
15
|
export interface DeleteArtifactVersionMutationQueryParams {
|
|
16
|
-
artifact_type?: '
|
|
16
|
+
artifact_type?: 'dataset' | 'model';
|
|
17
17
|
}
|
|
18
18
|
export type DeleteArtifactVersionOkResponse = ResponseWithPagination<SuccessResponse>;
|
|
19
19
|
export type DeleteArtifactVersionErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse;
|
|
@@ -25,7 +25,7 @@ export interface GetAllArtifactsByRegistryQueryQueryParams {
|
|
|
25
25
|
sort_order?: string;
|
|
26
26
|
sort_field?: string;
|
|
27
27
|
search_term?: string;
|
|
28
|
-
artifact_type?: '
|
|
28
|
+
artifact_type?: 'dataset' | 'model';
|
|
29
29
|
}
|
|
30
30
|
export type GetAllArtifactsByRegistryOkResponse = ResponseWithPagination<ListRegistryArtifactResponseResponse>;
|
|
31
31
|
export type GetAllArtifactsByRegistryErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse;
|
|
@@ -13,7 +13,7 @@ export interface GetArtifactDetailsQueryPathParams {
|
|
|
13
13
|
version: string;
|
|
14
14
|
}
|
|
15
15
|
export interface GetArtifactDetailsQueryQueryParams {
|
|
16
|
-
artifact_type?: '
|
|
16
|
+
artifact_type?: 'dataset' | 'model';
|
|
17
17
|
childVersion?: string;
|
|
18
18
|
}
|
|
19
19
|
export type GetArtifactDetailsOkResponse = ResponseWithPagination<ArtifactDetailResponseResponse>;
|
|
@@ -14,7 +14,7 @@ export interface GetArtifactFileQueryPathParams {
|
|
|
14
14
|
file_name: string;
|
|
15
15
|
}
|
|
16
16
|
export interface GetArtifactFileQueryQueryParams {
|
|
17
|
-
artifact_type?: '
|
|
17
|
+
artifact_type?: 'dataset' | 'model';
|
|
18
18
|
}
|
|
19
19
|
export type GetArtifactFileOkResponse = ResponseWithPagination<ArtifactFileResponseResponse>;
|
|
20
20
|
export type GetArtifactFileErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse;
|
|
@@ -12,7 +12,7 @@ export interface GetArtifactSummaryQueryPathParams {
|
|
|
12
12
|
artifact: string;
|
|
13
13
|
}
|
|
14
14
|
export interface GetArtifactSummaryQueryQueryParams {
|
|
15
|
-
artifact_type?: '
|
|
15
|
+
artifact_type?: 'dataset' | 'model';
|
|
16
16
|
}
|
|
17
17
|
export type GetArtifactSummaryOkResponse = ResponseWithPagination<ArtifactSummaryResponseResponse>;
|
|
18
18
|
export type GetArtifactSummaryErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse;
|
|
@@ -14,7 +14,7 @@ export interface GetArtifactVersionSummaryQueryPathParams {
|
|
|
14
14
|
}
|
|
15
15
|
export interface GetArtifactVersionSummaryQueryQueryParams {
|
|
16
16
|
digest?: string;
|
|
17
|
-
artifact_type?: '
|
|
17
|
+
artifact_type?: 'dataset' | 'model';
|
|
18
18
|
}
|
|
19
19
|
export type GetArtifactVersionSummaryOkResponse = ResponseWithPagination<ArtifactVersionSummaryResponseResponse>;
|
|
20
20
|
export type GetArtifactVersionSummaryErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse;
|
|
@@ -13,7 +13,7 @@ export interface UpdateArtifactLabelsMutationPathParams {
|
|
|
13
13
|
artifact: string;
|
|
14
14
|
}
|
|
15
15
|
export interface UpdateArtifactLabelsMutationQueryParams {
|
|
16
|
-
artifact_type?: '
|
|
16
|
+
artifact_type?: 'dataset' | 'model';
|
|
17
17
|
}
|
|
18
18
|
export type UpdateArtifactLabelsRequestBody = ArtifactLabelRequestRequestBody;
|
|
19
19
|
export type UpdateArtifactLabelsOkResponse = ResponseWithPagination<ArtifactLabelResponseResponse>;
|
|
@@ -11,12 +11,14 @@ export interface ArtifactMetadata {
|
|
|
11
11
|
* @format int64
|
|
12
12
|
*/
|
|
13
13
|
downloadsCount?: number;
|
|
14
|
+
isQuarantined?: boolean;
|
|
14
15
|
labels?: string[];
|
|
15
16
|
lastModified?: string;
|
|
16
17
|
latestVersion: string;
|
|
17
18
|
name: string;
|
|
18
19
|
packageType?: PackageType;
|
|
19
20
|
pullCommand?: string;
|
|
21
|
+
quarantineReason?: string;
|
|
20
22
|
registryIdentifier: string;
|
|
21
23
|
registryPath: string;
|
|
22
24
|
version: string;
|
|
@@ -6,7 +6,9 @@ import type { PackageType } from '../schemas/PackageType';
|
|
|
6
6
|
export interface ArtifactVersionSummary {
|
|
7
7
|
artifactType?: ArtifactType;
|
|
8
8
|
imageName: string;
|
|
9
|
+
isQuarantined?: boolean;
|
|
9
10
|
packageType: PackageType;
|
|
11
|
+
quarantineReason?: string;
|
|
10
12
|
sscaArtifactId?: string;
|
|
11
13
|
sscaArtifactSourceId?: string;
|
|
12
14
|
stoExecutionId?: string;
|