@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.
- package/dist/ssca-manager/src/services/index.d.ts +1 -0
- package/dist/ssca-manager/src/services/schemas/Artifact.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/CodeRepositoryListingResponse.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/CodeRepositoryOverview.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/HarnessExecutionDetail.d.ts +1 -1
- package/dist/ssca-manager/src/services/schemas/RepositoryPlatform.d.ts +1 -0
- package/dist/ssca-manager/src/services/schemas/RepositoryPlatform.js +4 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type RepositoryPlatform = 'AZURE' | 'BITBUCKET' | 'GIT' | 'GITHUB' | 'GITLAB' | 'HARNESS';
|