@harnessio/react-har-service-client 0.30.0 → 0.32.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/useDeleteQuarantineFilePathMutation.d.ts +1 -0
- package/dist/har-service/src/services/index.d.ts +1 -0
- package/dist/har-service/src/services/schemas/ArtifactDetail.d.ts +2 -1
- package/dist/har-service/src/services/schemas/ArtifactSummary.d.ts +1 -0
- package/dist/har-service/src/services/schemas/ArtifactVersionSummary.d.ts +1 -0
- package/dist/har-service/src/services/schemas/DartArtifactDetailConfig.d.ts +8 -0
- package/dist/har-service/src/services/schemas/DartArtifactDetailConfig.js +4 -0
- package/dist/har-service/src/services/schemas/FileDetail.d.ts +1 -0
- package/dist/har-service/src/services/schemas/PackageType.d.ts +1 -1
- package/dist/har-service/src/services/schemas/QuarantineRequest.d.ts +1 -0
- package/dist/har-service/src/services/schemas/Registry.d.ts +1 -0
- package/dist/har-service/src/services/schemas/UpstreamConfig.d.ts +1 -1
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ export interface DeleteQuarantineFilePathMutationQueryParams {
|
|
|
13
13
|
artifact?: string;
|
|
14
14
|
version?: string;
|
|
15
15
|
file_path?: string;
|
|
16
|
+
artifact_type?: 'dataset' | 'model';
|
|
16
17
|
}
|
|
17
18
|
export type DeleteQuarantineFilePathOkResponse = ResponseWithPagination<SuccessResponse>;
|
|
18
19
|
export type DeleteQuarantineFilePathErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | InternalServerErrorResponse;
|
|
@@ -191,6 +191,7 @@ export type { ClientSetupStepCommand } from './schemas/ClientSetupStepCommand';
|
|
|
191
191
|
export type { ClientSetupStepConfig } from './schemas/ClientSetupStepConfig';
|
|
192
192
|
export type { ClientSetupStepType } from './schemas/ClientSetupStepType';
|
|
193
193
|
export type { CondaArtifactDetailConfig } from './schemas/CondaArtifactDetailConfig';
|
|
194
|
+
export type { DartArtifactDetailConfig } from './schemas/DartArtifactDetailConfig';
|
|
194
195
|
export type { DeploymentDetails } from './schemas/DeploymentDetails';
|
|
195
196
|
export type { DeploymentMetadata } from './schemas/DeploymentMetadata';
|
|
196
197
|
export type { DeploymentStats } from './schemas/DeploymentStats';
|
|
@@ -10,12 +10,13 @@ import type { CargoArtifactDetailConfig } from '../schemas/CargoArtifactDetailCo
|
|
|
10
10
|
import type { GoArtifactDetailConfig } from '../schemas/GoArtifactDetailConfig';
|
|
11
11
|
import type { HuggingFaceArtifactDetailConfig } from '../schemas/HuggingFaceArtifactDetailConfig';
|
|
12
12
|
import type { CondaArtifactDetailConfig } from '../schemas/CondaArtifactDetailConfig';
|
|
13
|
+
import type { DartArtifactDetailConfig } from '../schemas/DartArtifactDetailConfig';
|
|
13
14
|
import type { ArtifactType } from '../schemas/ArtifactType';
|
|
14
15
|
import type { PackageType } from '../schemas/PackageType';
|
|
15
16
|
/**
|
|
16
17
|
* Artifact Detail
|
|
17
18
|
*/
|
|
18
|
-
export type ArtifactDetail = (DockerArtifactDetailConfig | HelmArtifactDetailConfig | GenericArtifactDetailConfig | MavenArtifactDetailConfig | PythonArtifactDetailConfig | NpmArtifactDetailConfig | RpmArtifactDetailConfig | NugetArtifactDetailConfig | CargoArtifactDetailConfig | GoArtifactDetailConfig | HuggingFaceArtifactDetailConfig | CondaArtifactDetailConfig) & {
|
|
19
|
+
export type ArtifactDetail = (DockerArtifactDetailConfig | HelmArtifactDetailConfig | GenericArtifactDetailConfig | MavenArtifactDetailConfig | PythonArtifactDetailConfig | NpmArtifactDetailConfig | RpmArtifactDetailConfig | NugetArtifactDetailConfig | CargoArtifactDetailConfig | GoArtifactDetailConfig | HuggingFaceArtifactDetailConfig | CondaArtifactDetailConfig | DartArtifactDetailConfig) & {
|
|
19
20
|
artifactType?: ArtifactType;
|
|
20
21
|
createdAt?: string;
|
|
21
22
|
createdBy?: 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' | 'CONDA' | 'DART' | 'DOCKER' | 'GENERIC' | 'GO' | 'HELM' | 'HUGGINGFACE' | 'MAVEN' | 'NPM' | 'NUGET' | 'PYTHON' | 'RPM';
|
|
@@ -8,6 +8,6 @@ import type { AuthType } from '../schemas/AuthType';
|
|
|
8
8
|
export interface UpstreamConfig {
|
|
9
9
|
auth?: UserPassword | Anonymous | AccessKeySecretKey;
|
|
10
10
|
authType: AuthType;
|
|
11
|
-
source?: 'Anaconda' | 'AwsEcr' | 'Crates' | 'Custom' | 'Dockerhub' | 'GoProxy' | 'HuggingFace' | 'MavenCentral' | 'NpmJs' | 'NugetOrg' | 'PyPi';
|
|
11
|
+
source?: 'Anaconda' | 'AwsEcr' | 'Crates' | 'Custom' | 'Dockerhub' | 'GoProxy' | 'HuggingFace' | 'MavenCentral' | 'NpmJs' | 'NugetOrg' | 'Pubdev' | 'PyPi';
|
|
12
12
|
url?: string;
|
|
13
13
|
}
|