@harnessio/react-har-service-client 0.29.0 → 0.30.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.
@@ -190,6 +190,7 @@ export type { ClientSetupStep } from './schemas/ClientSetupStep';
190
190
  export type { ClientSetupStepCommand } from './schemas/ClientSetupStepCommand';
191
191
  export type { ClientSetupStepConfig } from './schemas/ClientSetupStepConfig';
192
192
  export type { ClientSetupStepType } from './schemas/ClientSetupStepType';
193
+ export type { CondaArtifactDetailConfig } from './schemas/CondaArtifactDetailConfig';
193
194
  export type { DeploymentDetails } from './schemas/DeploymentDetails';
194
195
  export type { DeploymentMetadata } from './schemas/DeploymentMetadata';
195
196
  export type { DeploymentStats } from './schemas/DeploymentStats';
@@ -9,12 +9,13 @@ import type { NugetArtifactDetailConfig } from '../schemas/NugetArtifactDetailCo
9
9
  import type { CargoArtifactDetailConfig } from '../schemas/CargoArtifactDetailConfig';
10
10
  import type { GoArtifactDetailConfig } from '../schemas/GoArtifactDetailConfig';
11
11
  import type { HuggingFaceArtifactDetailConfig } from '../schemas/HuggingFaceArtifactDetailConfig';
12
+ import type { CondaArtifactDetailConfig } from '../schemas/CondaArtifactDetailConfig';
12
13
  import type { ArtifactType } from '../schemas/ArtifactType';
13
14
  import type { PackageType } from '../schemas/PackageType';
14
15
  /**
15
16
  * Artifact Detail
16
17
  */
17
- export type ArtifactDetail = (DockerArtifactDetailConfig | HelmArtifactDetailConfig | GenericArtifactDetailConfig | MavenArtifactDetailConfig | PythonArtifactDetailConfig | NpmArtifactDetailConfig | RpmArtifactDetailConfig | NugetArtifactDetailConfig | CargoArtifactDetailConfig | GoArtifactDetailConfig | HuggingFaceArtifactDetailConfig) & {
18
+ export type ArtifactDetail = (DockerArtifactDetailConfig | HelmArtifactDetailConfig | GenericArtifactDetailConfig | MavenArtifactDetailConfig | PythonArtifactDetailConfig | NpmArtifactDetailConfig | RpmArtifactDetailConfig | NugetArtifactDetailConfig | CargoArtifactDetailConfig | GoArtifactDetailConfig | HuggingFaceArtifactDetailConfig | CondaArtifactDetailConfig) & {
18
19
  artifactType?: ArtifactType;
19
20
  createdAt?: string;
20
21
  createdBy?: string;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Config for conda artifact details
3
+ */
4
+ export interface CondaArtifactDetailConfig {
5
+ metadata?: {
6
+ [key: string]: any;
7
+ };
8
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * refers to package
3
3
  */
4
- export type PackageType = 'CARGO' | 'DOCKER' | 'GENERIC' | 'GO' | 'HELM' | 'HUGGINGFACE' | 'MAVEN' | 'NPM' | 'NUGET' | 'PYTHON' | 'RPM';
4
+ export type PackageType = 'CARGO' | 'CONDA' | '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?: 'AwsEcr' | 'Crates' | 'Custom' | 'Dockerhub' | 'GoProxy' | 'HuggingFace' | 'MavenCentral' | 'NpmJs' | 'NugetOrg' | 'PyPi';
11
+ source?: 'Anaconda' | 'AwsEcr' | 'Crates' | 'Custom' | 'Dockerhub' | 'GoProxy' | 'HuggingFace' | 'MavenCentral' | 'NpmJs' | 'NugetOrg' | 'PyPi';
12
12
  url?: string;
13
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-har-service-client",
3
- "version": "0.29.0",
3
+ "version": "0.30.0",
4
4
  "description": "Harness HAR Service APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",