@harnessio/react-ssca-manager-client 0.75.0 → 0.77.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/hooks/useConfigureReposMutation.d.ts +2 -1
- package/dist/ssca-manager/src/services/hooks/useFetchReposInIntegrationQuery.d.ts +1 -0
- package/dist/ssca-manager/src/services/index.d.ts +2 -0
- package/dist/ssca-manager/src/services/responses/UpdateIntegrationResponseBodyResponse.d.ts +2 -0
- package/dist/ssca-manager/src/services/responses/UpdateIntegrationResponseBodyResponse.js +1 -0
- package/dist/ssca-manager/src/services/schemas/ArtifactModelPipeline.d.ts +1 -0
- package/dist/ssca-manager/src/services/schemas/RepoDetailsDto.d.ts +1 -1
- package/dist/ssca-manager/src/services/schemas/SaveOrchestrationRequest.d.ts +1 -1
- package/dist/ssca-manager/src/services/schemas/SaveOrchestrationRequestV2.d.ts +1 -1
- package/dist/ssca-manager/src/services/schemas/UpdateIntegration.d.ts +11 -0
- package/dist/ssca-manager/src/services/schemas/UpdateIntegration.js +4 -0
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { UpdateIntegrationResponseBodyResponse } from '../responses/UpdateIntegrationResponseBodyResponse';
|
|
2
3
|
import type { ConfigureReposRequestRequestBody } from '../requestBodies/ConfigureReposRequestRequestBody';
|
|
3
4
|
import type { ResponseWithPagination } from '../helpers';
|
|
4
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
@@ -11,7 +12,7 @@ export interface ConfigureReposMutationHeaderParams {
|
|
|
11
12
|
'Harness-Account': string;
|
|
12
13
|
}
|
|
13
14
|
export type ConfigureReposRequestBody = ConfigureReposRequestRequestBody;
|
|
14
|
-
export type ConfigureReposOkResponse = ResponseWithPagination<
|
|
15
|
+
export type ConfigureReposOkResponse = ResponseWithPagination<UpdateIntegrationResponseBodyResponse>;
|
|
15
16
|
export type ConfigureReposErrorResponse = unknown;
|
|
16
17
|
export interface ConfigureReposProps extends ConfigureReposMutationPathParams, Omit<FetcherOptions<unknown, ConfigureReposRequestBody, ConfigureReposMutationHeaderParams>, 'url'> {
|
|
17
18
|
body: ConfigureReposRequestBody;
|
|
@@ -241,6 +241,7 @@ export type { SaveResponseResponse } from './responses/SaveResponseResponse';
|
|
|
241
241
|
export type { SbomProcessResponseBodyResponse } from './responses/SbomProcessResponseBodyResponse';
|
|
242
242
|
export type { SbomScorecardResponseBodyResponse } from './responses/SbomScorecardResponseBodyResponse';
|
|
243
243
|
export type { TokenIssueResponseBodyResponse } from './responses/TokenIssueResponseBodyResponse';
|
|
244
|
+
export type { UpdateIntegrationResponseBodyResponse } from './responses/UpdateIntegrationResponseBodyResponse';
|
|
244
245
|
export type { VersionResponseBodyResponse } from './responses/VersionResponseBodyResponse';
|
|
245
246
|
export type { ActivityDetails } from './schemas/ActivityDetails';
|
|
246
247
|
export type { Artifact } from './schemas/Artifact';
|
|
@@ -461,6 +462,7 @@ export type { StoIssueCount } from './schemas/StoIssueCount';
|
|
|
461
462
|
export type { TicketInfo } from './schemas/TicketInfo';
|
|
462
463
|
export type { TokenIssueResponseBody } from './schemas/TokenIssueResponseBody';
|
|
463
464
|
export type { TokenIssueTokenResponseBody } from './schemas/TokenIssueTokenResponseBody';
|
|
465
|
+
export type { UpdateIntegration } from './schemas/UpdateIntegration';
|
|
464
466
|
export type { VerificationActivity } from './schemas/VerificationActivity';
|
|
465
467
|
export type { VerificationStatus } from './schemas/VerificationStatus';
|
|
466
468
|
export type { VersionInfo } from './schemas/VersionInfo';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -6,7 +6,7 @@ import type { SbomMetadataV2 } from '../schemas/SbomMetadataV2';
|
|
|
6
6
|
export interface SaveOrchestrationRequest {
|
|
7
7
|
artifact: Artifact;
|
|
8
8
|
attestation: Attestation;
|
|
9
|
-
components
|
|
9
|
+
components?: SbomComponentRequestDto[];
|
|
10
10
|
execution_context?: ExecutionContext;
|
|
11
11
|
sbom_metadata: SbomMetadataV2;
|
|
12
12
|
}
|
|
@@ -6,7 +6,7 @@ import type { SbomMetadataV2 } from '../schemas/SbomMetadataV2';
|
|
|
6
6
|
export interface SaveOrchestrationRequestV2 {
|
|
7
7
|
artifact: Artifact;
|
|
8
8
|
attestation: Attestation;
|
|
9
|
-
components
|
|
9
|
+
components?: SbomComponentRequestDto[];
|
|
10
10
|
execution_context?: ExecutionDetail;
|
|
11
11
|
sbom_metadata: SbomMetadataV2;
|
|
12
12
|
}
|