@harnessio/react-ssca-manager-client 0.72.0 → 0.73.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.
@@ -410,6 +410,7 @@ export type { RemediationTrackersOverallSummaryResponseBody } from './schemas/Re
410
410
  export type { RepoDetailsDto } from './schemas/RepoDetailsDto';
411
411
  export type { RepositoriesSummary } from './schemas/RepositoriesSummary';
412
412
  export type { RepositoryArtifactMetadata } from './schemas/RepositoryArtifactMetadata';
413
+ export type { RepositoryPlatform } from './schemas/RepositoryPlatform';
413
414
  export type { RiskAndCompliance } from './schemas/RiskAndCompliance';
414
415
  export type { RunnerDetail } from './schemas/RunnerDetail';
415
416
  export type { SaveOrchestrationRequest } from './schemas/SaveOrchestrationRequest';
@@ -1,3 +1,4 @@
1
+ import type { RepositoryPlatform } from '../schemas/RepositoryPlatform';
1
2
  import type { ArtifactVariant } from '../schemas/ArtifactVariant';
2
3
  export interface Artifact {
3
4
  /**
@@ -23,6 +24,7 @@ export interface Artifact {
23
24
  * @example "https://console.cloud.google.com/gcr/images/imageName"
24
25
  */
25
26
  registry_url: string;
27
+ repository_platform?: RepositoryPlatform;
26
28
  /**
27
29
  * tag of the artifact
28
30
  * @default "latest"
@@ -1,4 +1,5 @@
1
1
  import type { PipelineDetails } from '../schemas/PipelineDetails';
2
+ import type { RepositoryPlatform } from '../schemas/RepositoryPlatform';
2
3
  import type { RiskAndCompliance } from '../schemas/RiskAndCompliance';
3
4
  import type { Scorecard } from '../schemas/Scorecard';
4
5
  import type { StoIssueCount } from '../schemas/StoIssueCount';
@@ -18,6 +19,7 @@ export interface CodeRepositoryListingResponse {
18
19
  */
19
20
  name?: string;
20
21
  orchestration_id?: string;
22
+ repository_platform?: RepositoryPlatform;
21
23
  risk_and_compliance?: RiskAndCompliance;
22
24
  scorecard?: Scorecard;
23
25
  sto_issue_count?: StoIssueCount;
@@ -1,5 +1,6 @@
1
1
  import type { ComplianceEvaluationSummary } from '../schemas/ComplianceEvaluationSummary';
2
2
  import type { DriftDetailsDto } from '../schemas/DriftDetailsDto';
3
+ import type { RepositoryPlatform } from '../schemas/RepositoryPlatform';
3
4
  import type { SbomInfo } from '../schemas/SbomInfo';
4
5
  import type { Scorecard } from '../schemas/Scorecard';
5
6
  import type { ArtifactVariant } from '../schemas/ArtifactVariant';
@@ -14,6 +15,7 @@ export interface CodeRepositoryOverview {
14
15
  last_evaluation?: number;
15
16
  name: string;
16
17
  repo_identifier: string;
18
+ repository_platform?: RepositoryPlatform;
17
19
  sbom_details?: SbomInfo;
18
20
  scorecard?: Scorecard;
19
21
  url: string;
@@ -16,7 +16,7 @@ export interface HarnessExecutionDetail {
16
16
  /**
17
17
  * Stage type in which the step executed
18
18
  */
19
- stage_type?: 'BUILD' | 'DEPLOY' | 'SECURITY';
19
+ stage_type?: string;
20
20
  step_execution_id?: string;
21
21
  step_id?: string;
22
22
  step_name?: string;
@@ -0,0 +1 @@
1
+ export type RepositoryPlatform = 'AZURE' | 'BITBUCKET' | 'GIT' | 'GITHUB' | 'GITLAB' | 'HARNESS';
@@ -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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-ssca-manager-client",
3
- "version": "0.72.0",
3
+ "version": "0.73.0",
4
4
  "description": "Harness SSCA manager APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",