@harnessio/react-ssca-manager-client 0.86.2 → 0.86.3
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 +2 -0
- package/dist/ssca-manager/src/services/responses/PresignedDownloadResponseBodyResponse.d.ts +2 -0
- package/dist/ssca-manager/src/services/responses/PresignedDownloadResponseBodyResponse.js +1 -0
- package/dist/ssca-manager/src/services/schemas/AiWorkflowExecutionSummary.d.ts +1 -1
- package/dist/ssca-manager/src/services/schemas/AiWorkflowTypeEnum.d.ts +1 -1
- package/dist/ssca-manager/src/services/schemas/PresignedDownloadResponse.d.ts +11 -0
- package/dist/ssca-manager/src/services/schemas/PresignedDownloadResponse.js +4 -0
- package/package.json +1 -1
|
@@ -358,6 +358,7 @@ export type { OrchestrationSummaryResponseBodyResponse } from './responses/Orche
|
|
|
358
358
|
export type { OssScoringCapConfigResponseBodyResponse } from './responses/OssScoringCapConfigResponseBodyResponse';
|
|
359
359
|
export type { PluginResponseBodyResponse } from './responses/PluginResponseBodyResponse';
|
|
360
360
|
export type { PolicyViolationResponseResponse } from './responses/PolicyViolationResponseResponse';
|
|
361
|
+
export type { PresignedDownloadResponseBodyResponse } from './responses/PresignedDownloadResponseBodyResponse';
|
|
361
362
|
export type { ProvenanceResponseBodyResponse } from './responses/ProvenanceResponseBodyResponse';
|
|
362
363
|
export type { RemediationArtifactDeploymentsListingResponseBodyResponse } from './responses/RemediationArtifactDeploymentsListingResponseBodyResponse';
|
|
363
364
|
export type { RemediationArtifactDetailResponseBodyResponse } from './responses/RemediationArtifactDetailResponseBodyResponse';
|
|
@@ -699,6 +700,7 @@ export type { PluginDto } from './schemas/PluginDto';
|
|
|
699
700
|
export type { PluginResponseBody } from './schemas/PluginResponseBody';
|
|
700
701
|
export type { PolicyViolation } from './schemas/PolicyViolation';
|
|
701
702
|
export type { PolicyViolationRequestBody } from './schemas/PolicyViolationRequestBody';
|
|
703
|
+
export type { PresignedDownloadResponse } from './schemas/PresignedDownloadResponse';
|
|
702
704
|
export type { ProjectOssRisksSummary } from './schemas/ProjectOssRisksSummary';
|
|
703
705
|
export type { ProjectSecurityOverview } from './schemas/ProjectSecurityOverview';
|
|
704
706
|
export type { ProvenanceActivity } from './schemas/ProvenanceActivity';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -3,7 +3,7 @@ import type { AiWorkflowTypeEnum } from '../schemas/AiWorkflowTypeEnum';
|
|
|
3
3
|
import type { AiWorkflowExecutionStatusEnum } from '../schemas/AiWorkflowExecutionStatusEnum';
|
|
4
4
|
import type { VulnerabilityFindingSummary } from '../schemas/VulnerabilityFindingSummary';
|
|
5
5
|
/**
|
|
6
|
-
* Execution summary with type-discriminated nested payload. Branch on ai_workflow_type: VULNERABILITY/ZERO_DAY -> vulnerability_finding; FP_TRIAGE/
|
|
6
|
+
* Execution summary with type-discriminated nested payload. Branch on ai_workflow_type: VULNERABILITY/ZERO_DAY -> vulnerability_finding; FP_TRIAGE/REMEDIATION -> agent_execution.
|
|
7
7
|
*/
|
|
8
8
|
export interface AiWorkflowExecutionSummary {
|
|
9
9
|
agent_execution?: AgentExecutionSummary;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface PresignedDownloadResponse {
|
|
2
|
+
/**
|
|
3
|
+
* Time-limited pre-signed URL for downloading the object from object storage.
|
|
4
|
+
*/
|
|
5
|
+
download_url: string;
|
|
6
|
+
/**
|
|
7
|
+
* Expiration time of the download URL (epoch ms).
|
|
8
|
+
* @format int64
|
|
9
|
+
*/
|
|
10
|
+
expires_at: number;
|
|
11
|
+
}
|