@harnessio/react-har-service-client 0.20.1-beta.0 → 0.22.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 +2 -2
- package/dist/har-service/src/services/schemas/ArtifactDetail.d.ts +3 -3
- package/dist/har-service/src/services/schemas/CargoArtifactDetailConfig.d.ts +8 -0
- package/dist/har-service/src/services/schemas/GoArtifactDetailConfig.d.ts +8 -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
- package/dist/har-service/src/services/schemas/HuggingFaceArtifactDetailConfig.d.ts +0 -8
- package/dist/har-service/src/services/schemas/RustArtifactDetailConfig.d.ts +0 -8
- /package/dist/har-service/src/services/schemas/{HuggingFaceArtifactDetailConfig.js → CargoArtifactDetailConfig.js} +0 -0
- /package/dist/har-service/src/services/schemas/{RustArtifactDetailConfig.js → GoArtifactDetailConfig.js} +0 -0
|
@@ -148,6 +148,7 @@ export type { ArtifactVersionMetadata } from './schemas/ArtifactVersionMetadata'
|
|
|
148
148
|
export type { ArtifactVersionSummary } from './schemas/ArtifactVersionSummary';
|
|
149
149
|
export type { AuthType } from './schemas/AuthType';
|
|
150
150
|
export type { BuildDetails } from './schemas/BuildDetails';
|
|
151
|
+
export type { CargoArtifactDetailConfig } from './schemas/CargoArtifactDetailConfig';
|
|
151
152
|
export type { CleanupPolicy } from './schemas/CleanupPolicy';
|
|
152
153
|
export type { ClientSetupDetails } from './schemas/ClientSetupDetails';
|
|
153
154
|
export type { ClientSetupSection } from './schemas/ClientSetupSection';
|
|
@@ -171,10 +172,10 @@ export type { Error } from './schemas/Error';
|
|
|
171
172
|
export type { ExtraHeader } from './schemas/ExtraHeader';
|
|
172
173
|
export type { FileDetail } from './schemas/FileDetail';
|
|
173
174
|
export type { GenericArtifactDetailConfig } from './schemas/GenericArtifactDetailConfig';
|
|
175
|
+
export type { GoArtifactDetailConfig } from './schemas/GoArtifactDetailConfig';
|
|
174
176
|
export type { HelmArtifactDetail } from './schemas/HelmArtifactDetail';
|
|
175
177
|
export type { HelmArtifactDetailConfig } from './schemas/HelmArtifactDetailConfig';
|
|
176
178
|
export type { HelmArtifactManifest } from './schemas/HelmArtifactManifest';
|
|
177
|
-
export type { HuggingFaceArtifactDetailConfig } from './schemas/HuggingFaceArtifactDetailConfig';
|
|
178
179
|
export type { JfrogReplicationRegistry } from './schemas/JfrogReplicationRegistry';
|
|
179
180
|
export type { ListArtifact } from './schemas/ListArtifact';
|
|
180
181
|
export type { ListArtifactLabel } from './schemas/ListArtifactLabel';
|
|
@@ -202,7 +203,6 @@ export type { ReplicationRegistry } from './schemas/ReplicationRegistry';
|
|
|
202
203
|
export type { ReplicationRule } from './schemas/ReplicationRule';
|
|
203
204
|
export type { ReplicationRuleRequest } from './schemas/ReplicationRuleRequest';
|
|
204
205
|
export type { RpmArtifactDetailConfig } from './schemas/RpmArtifactDetailConfig';
|
|
205
|
-
export type { RustArtifactDetailConfig } from './schemas/RustArtifactDetailConfig';
|
|
206
206
|
export type { SbomDetails } from './schemas/SbomDetails';
|
|
207
207
|
export type { Scanner } from './schemas/Scanner';
|
|
208
208
|
export type { SectionType } from './schemas/SectionType';
|
|
@@ -6,13 +6,13 @@ import type { NpmArtifactDetailConfig } from '../schemas/NpmArtifactDetailConfig
|
|
|
6
6
|
import type { PythonArtifactDetailConfig } from '../schemas/PythonArtifactDetailConfig';
|
|
7
7
|
import type { NugetArtifactDetailConfig } from '../schemas/NugetArtifactDetailConfig';
|
|
8
8
|
import type { RpmArtifactDetailConfig } from '../schemas/RpmArtifactDetailConfig';
|
|
9
|
-
import type {
|
|
10
|
-
import type {
|
|
9
|
+
import type { CargoArtifactDetailConfig } from '../schemas/CargoArtifactDetailConfig';
|
|
10
|
+
import type { GoArtifactDetailConfig } from '../schemas/GoArtifactDetailConfig';
|
|
11
11
|
import type { PackageType } from '../schemas/PackageType';
|
|
12
12
|
/**
|
|
13
13
|
* Artifact Detail
|
|
14
14
|
*/
|
|
15
|
-
export type ArtifactDetail = (DockerArtifactDetailConfig | HelmArtifactDetailConfig | GenericArtifactDetailConfig | MavenArtifactDetailConfig | NpmArtifactDetailConfig | PythonArtifactDetailConfig | NugetArtifactDetailConfig | RpmArtifactDetailConfig |
|
|
15
|
+
export type ArtifactDetail = (DockerArtifactDetailConfig | HelmArtifactDetailConfig | GenericArtifactDetailConfig | MavenArtifactDetailConfig | NpmArtifactDetailConfig | PythonArtifactDetailConfig | NugetArtifactDetailConfig | RpmArtifactDetailConfig | CargoArtifactDetailConfig | GoArtifactDetailConfig) & {
|
|
16
16
|
createdAt?: string;
|
|
17
17
|
createdBy?: string;
|
|
18
18
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* refers to package
|
|
3
3
|
*/
|
|
4
|
-
export type PackageType = 'DOCKER' | 'GENERIC' | '
|
|
4
|
+
export type PackageType = 'CARGO' | 'DOCKER' | 'GENERIC' | 'GO' | 'HELM' | '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?: 'AwsEcr' | 'Crates' | 'Custom' | 'Dockerhub' | '
|
|
11
|
+
source?: 'AwsEcr' | 'Crates' | 'Custom' | 'Dockerhub' | 'GoProxy' | 'MavenCentral' | 'NpmJs' | 'NugetOrg' | 'PyPi';
|
|
12
12
|
url?: string;
|
|
13
13
|
}
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|