@harnessio/react-ssca-manager-client 0.81.0 → 0.82.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 +8 -0
- package/dist/ssca-manager/src/services/requestBodies/IntegrationStepConfigRequestBodyRequestBody.d.ts +2 -0
- package/dist/ssca-manager/src/services/requestBodies/IntegrationStepConfigRequestBodyRequestBody.js +1 -0
- package/dist/ssca-manager/src/services/requestBodies/PipelineStoreConfigRequestBodyRequestBody.d.ts +2 -0
- package/dist/ssca-manager/src/services/requestBodies/PipelineStoreConfigRequestBodyRequestBody.js +1 -0
- package/dist/ssca-manager/src/services/responses/IntegrationStepConfigResponseBodyResponse.d.ts +1 -0
- package/dist/ssca-manager/src/services/responses/IntegrationStepConfigResponseBodyResponse.js +1 -0
- package/dist/ssca-manager/src/services/schemas/CodeRepositoryOverview.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/InfraLayout.d.ts +6 -0
- package/dist/ssca-manager/src/services/schemas/InfraLayout.js +4 -0
- package/dist/ssca-manager/src/services/schemas/IntegrationConfigRequestBody.d.ts +6 -0
- package/dist/ssca-manager/src/services/schemas/IntegrationConfigRequestBody.js +4 -0
- package/dist/ssca-manager/src/services/schemas/IntegrationStepConfig.d.ts +12 -0
- package/dist/ssca-manager/src/services/schemas/IntegrationStepConfig.js +1 -0
- package/dist/ssca-manager/src/services/schemas/IntegrationStepConfigRequestBody.d.ts +5 -0
- package/dist/ssca-manager/src/services/schemas/IntegrationStepConfigRequestBody.js +1 -0
- package/dist/ssca-manager/src/services/schemas/PipelineStoreConfigRequestBody.d.ts +11 -0
- package/dist/ssca-manager/src/services/schemas/PipelineStoreConfigRequestBody.js +1 -0
- package/dist/ssca-manager/src/services/schemas/RepoDetailsDto.d.ts +1 -0
- package/dist/ssca-manager/src/services/schemas/SlsaVerificationRequestBodyV2.d.ts +1 -1
- package/package.json +1 -1
|
@@ -158,10 +158,12 @@ export type { ExecutionLimitRequestBodyRequestBody } from './requestBodies/Execu
|
|
|
158
158
|
export type { FetchComplianceResultByArtifactRequestBodyRequestBody } from './requestBodies/FetchComplianceResultByArtifactRequestBodyRequestBody';
|
|
159
159
|
export type { FetchComplianceResultRequestBodyRequestBody } from './requestBodies/FetchComplianceResultRequestBodyRequestBody';
|
|
160
160
|
export type { FetchComplianeResultChecksStatsRequestBodyRequestBody } from './requestBodies/FetchComplianeResultChecksStatsRequestBodyRequestBody';
|
|
161
|
+
export type { IntegrationStepConfigRequestBodyRequestBody } from './requestBodies/IntegrationStepConfigRequestBodyRequestBody';
|
|
161
162
|
export type { NormalisedSbomComponentRequestBodyRequestBody } from './requestBodies/NormalisedSbomComponentRequestBodyRequestBody';
|
|
162
163
|
export type { OrchestrationStepDriftRequestBodyRequestBody } from './requestBodies/OrchestrationStepDriftRequestBodyRequestBody';
|
|
163
164
|
export type { PipelineConfigUpdateRequestBodyRequestBody } from './requestBodies/PipelineConfigUpdateRequestBodyRequestBody';
|
|
164
165
|
export type { PipelineInfraConfigRequestBodyRequestBody } from './requestBodies/PipelineInfraConfigRequestBodyRequestBody';
|
|
166
|
+
export type { PipelineStoreConfigRequestBodyRequestBody } from './requestBodies/PipelineStoreConfigRequestBodyRequestBody';
|
|
165
167
|
export type { PolicyViolationRequestBodyRequestBody } from './requestBodies/PolicyViolationRequestBodyRequestBody';
|
|
166
168
|
export type { ProvenanceRequestBodyRequestBody } from './requestBodies/ProvenanceRequestBodyRequestBody';
|
|
167
169
|
export type { ProvenanceRequestBodyV2RequestBody } from './requestBodies/ProvenanceRequestBodyV2RequestBody';
|
|
@@ -218,6 +220,7 @@ export type { FetchComplianceResultResponseBodyResponse } from './responses/Fetc
|
|
|
218
220
|
export type { FetchIntegrationReposResponseBodyResponse } from './responses/FetchIntegrationReposResponseBodyResponse';
|
|
219
221
|
export type { HarnessPipelineIntegrationResponseBodyResponse } from './responses/HarnessPipelineIntegrationResponseBodyResponse';
|
|
220
222
|
export type { IntegrationListingResponseBodyResponse } from './responses/IntegrationListingResponseBodyResponse';
|
|
223
|
+
export type { IntegrationStepConfigResponseBodyResponse } from './responses/IntegrationStepConfigResponseBodyResponse';
|
|
221
224
|
export type { LicenseDriftResponseBodyResponse } from './responses/LicenseDriftResponseBodyResponse';
|
|
222
225
|
export type { ListConfigsResponseBodyResponse } from './responses/ListConfigsResponseBodyResponse';
|
|
223
226
|
export type { ListIntegrationReposResponseBodyResponse } from './responses/ListIntegrationReposResponseBodyResponse';
|
|
@@ -377,8 +380,12 @@ export type { HarnessPipelineSettings } from './schemas/HarnessPipelineSettings'
|
|
|
377
380
|
export type { HarnessRunner } from './schemas/HarnessRunner';
|
|
378
381
|
export type { HarnessRunnerDetail } from './schemas/HarnessRunnerDetail';
|
|
379
382
|
export type { ImageSpec } from './schemas/ImageSpec';
|
|
383
|
+
export type { InfraLayout } from './schemas/InfraLayout';
|
|
380
384
|
export type { Integration } from './schemas/Integration';
|
|
381
385
|
export type { IntegrationConfig } from './schemas/IntegrationConfig';
|
|
386
|
+
export type { IntegrationConfigRequestBody } from './schemas/IntegrationConfigRequestBody';
|
|
387
|
+
export type { IntegrationStepConfig } from './schemas/IntegrationStepConfig';
|
|
388
|
+
export type { IntegrationStepConfigRequestBody } from './schemas/IntegrationStepConfigRequestBody';
|
|
382
389
|
export type { IntegrationType } from './schemas/IntegrationType';
|
|
383
390
|
export type { IntegrityVerification } from './schemas/IntegrityVerification';
|
|
384
391
|
export type { IntegrityVerificationActivity } from './schemas/IntegrityVerificationActivity';
|
|
@@ -403,6 +410,7 @@ export type { PipelineConfigUpdateRequest } from './schemas/PipelineConfigUpdate
|
|
|
403
410
|
export type { PipelineDetails } from './schemas/PipelineDetails';
|
|
404
411
|
export type { PipelineInfo } from './schemas/PipelineInfo';
|
|
405
412
|
export type { PipelineInfraConfigRequestBody } from './schemas/PipelineInfraConfigRequestBody';
|
|
413
|
+
export type { PipelineStoreConfigRequestBody } from './schemas/PipelineStoreConfigRequestBody';
|
|
406
414
|
export type { PluginDto } from './schemas/PluginDto';
|
|
407
415
|
export type { PluginResponseBody } from './schemas/PluginResponseBody';
|
|
408
416
|
export type { PolicyViolation } from './schemas/PolicyViolation';
|
package/dist/ssca-manager/src/services/requestBodies/IntegrationStepConfigRequestBodyRequestBody.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/ssca-manager/src/services/requestBodies/PipelineStoreConfigRequestBodyRequestBody.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/ssca-manager/src/services/responses/IntegrationStepConfigResponseBodyResponse.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type IntegrationStepConfigResponseBodyResponse = unknown;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -4,6 +4,7 @@ import type { RepositoryPlatform } from '../schemas/RepositoryPlatform';
|
|
|
4
4
|
import type { SbomInfo } from '../schemas/SbomInfo';
|
|
5
5
|
import type { Scorecard } from '../schemas/Scorecard';
|
|
6
6
|
import type { ArtifactVariant } from '../schemas/ArtifactVariant';
|
|
7
|
+
import type { Violations } from '../schemas/Violations';
|
|
7
8
|
import type { StoIssueCount } from '../schemas/StoIssueCount';
|
|
8
9
|
export interface CodeRepositoryOverview {
|
|
9
10
|
compliance_summary?: ComplianceEvaluationSummary;
|
|
@@ -20,5 +21,6 @@ export interface CodeRepositoryOverview {
|
|
|
20
21
|
scorecard?: Scorecard;
|
|
21
22
|
url: string;
|
|
22
23
|
variant?: ArtifactVariant;
|
|
24
|
+
violations?: Violations;
|
|
23
25
|
vulnerabilities?: StoIssueCount;
|
|
24
26
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { InfraLayout } from '../schemas/InfraLayout';
|
|
2
|
+
export interface IntegrationStepConfig {
|
|
3
|
+
auto_infra?: InfraLayout[];
|
|
4
|
+
enable: boolean;
|
|
5
|
+
name: string;
|
|
6
|
+
parallel: boolean;
|
|
7
|
+
parameters?: {
|
|
8
|
+
[key: string]: string;
|
|
9
|
+
};
|
|
10
|
+
resource?: string;
|
|
11
|
+
settings?: string;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ComplianceScanType } from '../schemas/ComplianceScanType';
|
|
2
|
+
/**
|
|
3
|
+
* Remote Config Details of Pipeline
|
|
4
|
+
*/
|
|
5
|
+
export interface PipelineStoreConfigRequestBody {
|
|
6
|
+
base_branch: string;
|
|
7
|
+
connector_id?: string;
|
|
8
|
+
repo: string;
|
|
9
|
+
scan_type: ComplianceScanType;
|
|
10
|
+
yaml_path?: string;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -3,6 +3,6 @@ import type { ExecutionDetail } from '../schemas/ExecutionDetail';
|
|
|
3
3
|
export interface SlsaVerificationRequestBodyV2 {
|
|
4
4
|
artifact?: ArtifactModelPipeline;
|
|
5
5
|
execution_context?: ExecutionDetail;
|
|
6
|
-
provenance_data
|
|
6
|
+
provenance_data?: string;
|
|
7
7
|
verification_status?: 'failed' | 'passed';
|
|
8
8
|
}
|