@harnessio/react-har-service-client 0.20.0 → 0.20.1-beta.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/schemas/ArtifactDetail.d.ts +2 -1
- package/dist/har-service/src/services/schemas/HuggingFaceArtifactDetailConfig.d.ts +8 -0
- package/dist/har-service/src/services/schemas/HuggingFaceArtifactDetailConfig.js +4 -0
- package/dist/har-service/src/services/schemas/PackageType.d.ts +1 -1
- package/dist/har-service/src/services/schemas/UpstreamConfig.d.ts +1 -1
- package/package.json +1 -1
|
@@ -174,6 +174,7 @@ export type { GenericArtifactDetailConfig } from './schemas/GenericArtifactDetai
|
|
|
174
174
|
export type { HelmArtifactDetail } from './schemas/HelmArtifactDetail';
|
|
175
175
|
export type { HelmArtifactDetailConfig } from './schemas/HelmArtifactDetailConfig';
|
|
176
176
|
export type { HelmArtifactManifest } from './schemas/HelmArtifactManifest';
|
|
177
|
+
export type { HuggingFaceArtifactDetailConfig } from './schemas/HuggingFaceArtifactDetailConfig';
|
|
177
178
|
export type { JfrogReplicationRegistry } from './schemas/JfrogReplicationRegistry';
|
|
178
179
|
export type { ListArtifact } from './schemas/ListArtifact';
|
|
179
180
|
export type { ListArtifactLabel } from './schemas/ListArtifactLabel';
|
|
@@ -7,11 +7,12 @@ import type { PythonArtifactDetailConfig } from '../schemas/PythonArtifactDetail
|
|
|
7
7
|
import type { NugetArtifactDetailConfig } from '../schemas/NugetArtifactDetailConfig';
|
|
8
8
|
import type { RpmArtifactDetailConfig } from '../schemas/RpmArtifactDetailConfig';
|
|
9
9
|
import type { RustArtifactDetailConfig } from '../schemas/RustArtifactDetailConfig';
|
|
10
|
+
import type { HuggingFaceArtifactDetailConfig } from '../schemas/HuggingFaceArtifactDetailConfig';
|
|
10
11
|
import type { PackageType } from '../schemas/PackageType';
|
|
11
12
|
/**
|
|
12
13
|
* Artifact Detail
|
|
13
14
|
*/
|
|
14
|
-
export type ArtifactDetail = (DockerArtifactDetailConfig | HelmArtifactDetailConfig | GenericArtifactDetailConfig | MavenArtifactDetailConfig | NpmArtifactDetailConfig | PythonArtifactDetailConfig | NugetArtifactDetailConfig | RpmArtifactDetailConfig | RustArtifactDetailConfig) & {
|
|
15
|
+
export type ArtifactDetail = (DockerArtifactDetailConfig | HelmArtifactDetailConfig | GenericArtifactDetailConfig | MavenArtifactDetailConfig | NpmArtifactDetailConfig | PythonArtifactDetailConfig | NugetArtifactDetailConfig | RpmArtifactDetailConfig | RustArtifactDetailConfig | HuggingFaceArtifactDetailConfig) & {
|
|
15
16
|
createdAt?: string;
|
|
16
17
|
createdBy?: string;
|
|
17
18
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* refers to package
|
|
3
3
|
*/
|
|
4
|
-
export type PackageType = 'DOCKER' | 'GENERIC' | 'HELM' | 'MAVEN' | 'NPM' | 'NUGET' | 'PYTHON' | 'RPM' | 'RUST';
|
|
4
|
+
export type PackageType = 'DOCKER' | 'GENERIC' | 'HELM' | 'HUGGINGFACE' | 'MAVEN' | 'NPM' | 'NUGET' | 'PYTHON' | 'RPM' | 'RUST';
|
|
@@ -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?: 'AwsEcr' | 'Crates' | 'Custom' | 'Dockerhub' | 'MavenCentral' | 'NpmJs' | 'NugetOrg' | 'PyPi';
|
|
11
|
+
source?: 'AwsEcr' | 'Crates' | 'Custom' | 'Dockerhub' | 'HuggingFace' | 'MavenCentral' | 'NpmJs' | 'NugetOrg' | 'PyPi';
|
|
12
12
|
url?: string;
|
|
13
13
|
}
|