@harnessio/react-ssca-manager-client 0.77.0 → 0.79.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 +4 -0
- package/dist/ssca-manager/src/services/requestBodies/PipelineInfraConfigRequestBodyRequestBody.d.ts +2 -0
- package/dist/ssca-manager/src/services/requestBodies/PipelineInfraConfigRequestBodyRequestBody.js +1 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactListingPipelineRequestBody.d.ts +1 -1
- package/dist/ssca-manager/src/services/schemas/ArtifactListingRequestBody.d.ts +4 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactModelPipeline.d.ts +4 -1
- package/dist/ssca-manager/src/services/schemas/ArtifactSourcesListingResponse.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactType.d.ts +1 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactType.js +4 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactTypeData.d.ts +5 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactTypeData.js +1 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactV2ListingResponse.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactV2Overview.d.ts +2 -0
- package/dist/ssca-manager/src/services/schemas/DownloadSignatureResponseBody.d.ts +1 -0
- package/dist/ssca-manager/src/services/schemas/IntegrityVerification.d.ts +1 -0
- package/dist/ssca-manager/src/services/schemas/PipelineInfraConfigRequestBody.d.ts +9 -0
- package/dist/ssca-manager/src/services/schemas/PipelineInfraConfigRequestBody.js +4 -0
- package/dist/ssca-manager/src/services/schemas/SscaSummary.d.ts +1 -0
- package/package.json +1 -1
|
@@ -161,6 +161,7 @@ export type { FetchComplianeResultChecksStatsRequestBodyRequestBody } from './re
|
|
|
161
161
|
export type { NormalisedSbomComponentRequestBodyRequestBody } from './requestBodies/NormalisedSbomComponentRequestBodyRequestBody';
|
|
162
162
|
export type { OrchestrationStepDriftRequestBodyRequestBody } from './requestBodies/OrchestrationStepDriftRequestBodyRequestBody';
|
|
163
163
|
export type { PipelineConfigUpdateRequestBodyRequestBody } from './requestBodies/PipelineConfigUpdateRequestBodyRequestBody';
|
|
164
|
+
export type { PipelineInfraConfigRequestBodyRequestBody } from './requestBodies/PipelineInfraConfigRequestBodyRequestBody';
|
|
164
165
|
export type { PolicyViolationRequestBodyRequestBody } from './requestBodies/PolicyViolationRequestBodyRequestBody';
|
|
165
166
|
export type { ProvenanceRequestBodyRequestBody } from './requestBodies/ProvenanceRequestBodyRequestBody';
|
|
166
167
|
export type { ProvenanceRequestBodyV2RequestBody } from './requestBodies/ProvenanceRequestBodyV2RequestBody';
|
|
@@ -267,6 +268,8 @@ export type { ArtifactSbomDriftResponse } from './schemas/ArtifactSbomDriftRespo
|
|
|
267
268
|
export type { ArtifactSbomResponseBody } from './schemas/ArtifactSbomResponseBody';
|
|
268
269
|
export type { ArtifactSourcesListingResponse } from './schemas/ArtifactSourcesListingResponse';
|
|
269
270
|
export type { ArtifactSpec } from './schemas/ArtifactSpec';
|
|
271
|
+
export type { ArtifactType } from './schemas/ArtifactType';
|
|
272
|
+
export type { ArtifactTypeData } from './schemas/ArtifactTypeData';
|
|
270
273
|
export type { ArtifactV2Details } from './schemas/ArtifactV2Details';
|
|
271
274
|
export type { ArtifactV2ListingResponse } from './schemas/ArtifactV2ListingResponse';
|
|
272
275
|
export type { ArtifactV2Overview } from './schemas/ArtifactV2Overview';
|
|
@@ -399,6 +402,7 @@ export type { OrchestrationSummaryResponse } from './schemas/OrchestrationSummar
|
|
|
399
402
|
export type { PipelineConfigUpdateRequest } from './schemas/PipelineConfigUpdateRequest';
|
|
400
403
|
export type { PipelineDetails } from './schemas/PipelineDetails';
|
|
401
404
|
export type { PipelineInfo } from './schemas/PipelineInfo';
|
|
405
|
+
export type { PipelineInfraConfigRequestBody } from './schemas/PipelineInfraConfigRequestBody';
|
|
402
406
|
export type { PluginDto } from './schemas/PluginDto';
|
|
403
407
|
export type { PluginResponseBody } from './schemas/PluginResponseBody';
|
|
404
408
|
export type { PolicyViolation } from './schemas/PolicyViolation';
|
package/dist/ssca-manager/src/services/requestBodies/PipelineInfraConfigRequestBodyRequestBody.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
+
import type { ArtifactType } from '../schemas/ArtifactType';
|
|
1
2
|
import type { ComponentFilter } from '../schemas/ComponentFilter';
|
|
2
3
|
import type { LicenseFilter } from '../schemas/LicenseFilter';
|
|
4
|
+
import type { VerificationStatus } from '../schemas/VerificationStatus';
|
|
3
5
|
export interface ArtifactListingRequestBody {
|
|
6
|
+
artifact_type?: ArtifactType[];
|
|
4
7
|
component_filter?: ComponentFilter[];
|
|
5
8
|
environment_type?: 'All' | 'NonProd' | 'None' | 'Prod';
|
|
6
9
|
license_filter?: LicenseFilter;
|
|
7
10
|
policy_violation?: 'ALLOW' | 'ANY' | 'DENY' | 'NONE';
|
|
8
11
|
search_term?: string;
|
|
12
|
+
verification_status?: VerificationStatus;
|
|
9
13
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { ArtifactVariant } from '../schemas/ArtifactVariant';
|
|
2
2
|
export interface ArtifactModelPipeline {
|
|
3
|
+
artifact_name?: string;
|
|
3
4
|
digest?: string;
|
|
4
5
|
id?: string;
|
|
5
6
|
metadata?: {
|
|
@@ -9,6 +10,8 @@ export interface ArtifactModelPipeline {
|
|
|
9
10
|
registry_url?: string;
|
|
10
11
|
source_id?: string;
|
|
11
12
|
tag?: string;
|
|
12
|
-
type?: 'image' | 'repository';
|
|
13
|
+
type?: 'image' | 'non_container' | 'repository';
|
|
13
14
|
variant?: ArtifactVariant;
|
|
15
|
+
version?: string;
|
|
16
|
+
workspace?: string;
|
|
14
17
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import type { ArtifactTypeData } from '../schemas/ArtifactTypeData';
|
|
1
2
|
import type { Deployments } from '../schemas/Deployments';
|
|
2
3
|
import type { StoIssueCount } from '../schemas/StoIssueCount';
|
|
3
4
|
export interface ArtifactSourcesListingResponse {
|
|
5
|
+
artifact_type?: ArtifactTypeData;
|
|
4
6
|
/**
|
|
5
7
|
* Count of artifacts with the given url and name.
|
|
6
8
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ArtifactType = 'CONTAINER_IMAGE' | 'HELM' | 'JAR' | 'MANIFEST' | 'WAR';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import type { ArtifactTypeData } from '../schemas/ArtifactTypeData';
|
|
1
2
|
import type { IntegrityVerification } from '../schemas/IntegrityVerification';
|
|
2
3
|
import type { StoIssueCount } from '../schemas/StoIssueCount';
|
|
3
4
|
export interface ArtifactV2ListingResponse {
|
|
5
|
+
artifact_type?: ArtifactTypeData;
|
|
4
6
|
/**
|
|
5
7
|
* Number of components of the artifact
|
|
6
8
|
*/
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ArtifactTypeData } from '../schemas/ArtifactTypeData';
|
|
1
2
|
import type { Deployments } from '../schemas/Deployments';
|
|
2
3
|
import type { PipelineDetails } from '../schemas/PipelineDetails';
|
|
3
4
|
import type { SbomInfo } from '../schemas/SbomInfo';
|
|
@@ -7,6 +8,7 @@ import type { SlsaDetails } from '../schemas/SlsaDetails';
|
|
|
7
8
|
import type { StoIssueCount } from '../schemas/StoIssueCount';
|
|
8
9
|
import type { Violations } from '../schemas/Violations';
|
|
9
10
|
export interface ArtifactV2Overview {
|
|
11
|
+
artifact_type?: ArtifactTypeData;
|
|
10
12
|
deployments?: Deployments;
|
|
11
13
|
/**
|
|
12
14
|
* digest of the artifact
|