@harnessio/react-rmg-service-client 0.66.0 → 0.67.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/rmg-service/src/services/hooks/useGetOrchestrationActivityQuery.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivityOutputsV2Query.d.ts +28 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivityOutputsV2Query.js +20 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhaseOutputsV2Query.d.ts +27 -0
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhaseOutputsV2Query.js +19 -0
- package/dist/rmg-service/src/services/hooks/useListArtifactTrackerServiceMappingsQuery.d.ts +1 -0
- package/dist/rmg-service/src/services/hooks/usePostWebhookQueueActionMutation.d.ts +28 -0
- package/dist/rmg-service/src/services/hooks/usePostWebhookQueueActionMutation.js +14 -0
- package/dist/rmg-service/src/services/index.d.ts +14 -0
- package/dist/rmg-service/src/services/index.js +3 -0
- package/dist/rmg-service/src/services/requestBodies/CreateOrchestrationActivityRequestRequestBody.d.ts +2 -0
- package/dist/rmg-service/src/services/requestBodies/CreateOrchestrationActivityRequestRequestBody.js +0 -3
- package/dist/rmg-service/src/services/requestBodies/UpdateOrchestrationActivityRequestRequestBody.d.ts +2 -0
- package/dist/rmg-service/src/services/requestBodies/UpdateOrchestrationActivityRequestRequestBody.js +0 -3
- package/dist/rmg-service/src/services/requestBodies/WebhookQueueActionRequestRequestBody.d.ts +2 -0
- package/dist/rmg-service/src/services/requestBodies/WebhookQueueActionRequestRequestBody.js +1 -0
- package/dist/rmg-service/src/services/responses/ExecutionOutputsV2ResponseResponse.d.ts +7 -0
- package/dist/rmg-service/src/services/responses/ExecutionOutputsV2ResponseResponse.js +1 -0
- package/dist/rmg-service/src/services/responses/GetOrchestrationActivityResponseResponse.d.ts +2 -0
- package/dist/rmg-service/src/services/responses/GetOrchestrationActivityResponseResponse.js +0 -3
- package/dist/rmg-service/src/services/responses/WebhookQueueActionResponseResponse.d.ts +2 -0
- package/dist/rmg-service/src/services/responses/WebhookQueueActionResponseResponse.js +1 -0
- package/dist/rmg-service/src/services/schemas/ArtifactTrackerServiceMapping.d.ts +1 -1
- package/dist/rmg-service/src/services/schemas/ArtifactTrackerSettings.d.ts +4 -0
- package/dist/rmg-service/src/services/schemas/CreateArtifactTrackerServiceMappingRequest.d.ts +5 -2
- package/dist/rmg-service/src/services/schemas/CreateArtifactTrackerSettingsRequest.d.ts +5 -1
- package/dist/rmg-service/src/services/schemas/CreateOrchestrationActivityRequestType.d.ts +1 -1
- package/dist/rmg-service/src/services/schemas/ExecutionOutputGroupDto.d.ts +10 -0
- package/dist/rmg-service/src/services/schemas/ExecutionOutputGroupDto.js +1 -0
- package/dist/rmg-service/src/services/schemas/ExecutionOutputV2Dto.d.ts +13 -0
- package/dist/rmg-service/src/services/schemas/ExecutionOutputV2Dto.js +4 -0
- package/dist/rmg-service/src/services/schemas/GitDetails.d.ts +49 -0
- package/dist/rmg-service/src/services/schemas/GitDetails.js +4 -0
- package/dist/rmg-service/src/services/schemas/MatchedSignalExecutionSummaryDto.d.ts +4 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationActivitySummaryDto.d.ts +12 -0
- package/dist/rmg-service/src/services/schemas/UpdateArtifactTrackerServiceMappingRequest.d.ts +7 -1
- package/dist/rmg-service/src/services/schemas/UpsertArtifactTrackerSettingsRequest.d.ts +5 -1
- package/dist/rmg-service/src/services/schemas/WebhookQueueActionRequest.d.ts +18 -0
- package/dist/rmg-service/src/services/schemas/WebhookQueueActionRequest.js +4 -0
- package/dist/rmg-service/src/services/schemas/WebhookQueueActionResponse.d.ts +10 -0
- package/dist/rmg-service/src/services/schemas/WebhookQueueActionResponse.js +4 -0
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ export interface GetOrchestrationActivityQueryPathParams {
|
|
|
9
9
|
export interface GetOrchestrationActivityQueryQueryParams {
|
|
10
10
|
orgIdentifier?: string;
|
|
11
11
|
projectIdentifier?: string;
|
|
12
|
+
git_branch?: string;
|
|
12
13
|
}
|
|
13
14
|
export interface GetOrchestrationActivityQueryHeaderParams {
|
|
14
15
|
'Harness-Account': string;
|
package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivityOutputsV2Query.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ExecutionOutputsV2ResponseResponse } from '../responses/ExecutionOutputsV2ResponseResponse';
|
|
3
|
+
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface GetOrchestrationExecutionActivityOutputsV2QueryPathParams {
|
|
7
|
+
releaseId: string;
|
|
8
|
+
phaseIdentifier: string;
|
|
9
|
+
activityIdentifier: string;
|
|
10
|
+
}
|
|
11
|
+
export interface GetOrchestrationExecutionActivityOutputsV2QueryQueryParams {
|
|
12
|
+
activityExecutionId?: string;
|
|
13
|
+
orgIdentifier?: string;
|
|
14
|
+
projectIdentifier?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface GetOrchestrationExecutionActivityOutputsV2QueryHeaderParams {
|
|
17
|
+
'Harness-Account': string;
|
|
18
|
+
}
|
|
19
|
+
export type GetOrchestrationExecutionActivityOutputsV2OkResponse = ResponseWithPagination<ExecutionOutputsV2ResponseResponse>;
|
|
20
|
+
export type GetOrchestrationExecutionActivityOutputsV2ErrorResponse = ErrorResponseResponse;
|
|
21
|
+
export interface GetOrchestrationExecutionActivityOutputsV2Props extends GetOrchestrationExecutionActivityOutputsV2QueryPathParams, Omit<FetcherOptions<GetOrchestrationExecutionActivityOutputsV2QueryQueryParams, unknown, GetOrchestrationExecutionActivityOutputsV2QueryHeaderParams>, 'url'> {
|
|
22
|
+
queryParams: GetOrchestrationExecutionActivityOutputsV2QueryQueryParams;
|
|
23
|
+
}
|
|
24
|
+
export declare function getOrchestrationExecutionActivityOutputsV2(props: GetOrchestrationExecutionActivityOutputsV2Props): Promise<GetOrchestrationExecutionActivityOutputsV2OkResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* Retrieve grouped output values for a specific activity execution (v2 format)
|
|
27
|
+
*/
|
|
28
|
+
export declare function useGetOrchestrationExecutionActivityOutputsV2Query(props: GetOrchestrationExecutionActivityOutputsV2Props, options?: Omit<UseQueryOptions<GetOrchestrationExecutionActivityOutputsV2OkResponse, GetOrchestrationExecutionActivityOutputsV2ErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetOrchestrationExecutionActivityOutputsV2OkResponse, import("..").Error>;
|
package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivityOutputsV2Query.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function getOrchestrationExecutionActivityOutputsV2(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/orchestration/execution/release/${props.releaseId}/phase/${props.phaseIdentifier}/activity/${props.activityIdentifier}/output/v2`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Retrieve grouped output values for a specific activity execution (v2 format)
|
|
11
|
+
*/
|
|
12
|
+
export function useGetOrchestrationExecutionActivityOutputsV2Query(props, options) {
|
|
13
|
+
return useQuery([
|
|
14
|
+
'get-orchestration-execution-activity-outputs-v2',
|
|
15
|
+
props.releaseId,
|
|
16
|
+
props.phaseIdentifier,
|
|
17
|
+
props.activityIdentifier,
|
|
18
|
+
props.queryParams,
|
|
19
|
+
], ({ signal }) => getOrchestrationExecutionActivityOutputsV2(Object.assign(Object.assign({}, props), { signal })), options);
|
|
20
|
+
}
|
package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhaseOutputsV2Query.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ExecutionOutputsV2ResponseResponse } from '../responses/ExecutionOutputsV2ResponseResponse';
|
|
3
|
+
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface GetOrchestrationExecutionPhaseOutputsV2QueryPathParams {
|
|
7
|
+
releaseId: string;
|
|
8
|
+
phaseIdentifier: string;
|
|
9
|
+
}
|
|
10
|
+
export interface GetOrchestrationExecutionPhaseOutputsV2QueryQueryParams {
|
|
11
|
+
phaseExecutionId?: string;
|
|
12
|
+
orgIdentifier?: string;
|
|
13
|
+
projectIdentifier?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface GetOrchestrationExecutionPhaseOutputsV2QueryHeaderParams {
|
|
16
|
+
'Harness-Account': string;
|
|
17
|
+
}
|
|
18
|
+
export type GetOrchestrationExecutionPhaseOutputsV2OkResponse = ResponseWithPagination<ExecutionOutputsV2ResponseResponse>;
|
|
19
|
+
export type GetOrchestrationExecutionPhaseOutputsV2ErrorResponse = ErrorResponseResponse;
|
|
20
|
+
export interface GetOrchestrationExecutionPhaseOutputsV2Props extends GetOrchestrationExecutionPhaseOutputsV2QueryPathParams, Omit<FetcherOptions<GetOrchestrationExecutionPhaseOutputsV2QueryQueryParams, unknown, GetOrchestrationExecutionPhaseOutputsV2QueryHeaderParams>, 'url'> {
|
|
21
|
+
queryParams: GetOrchestrationExecutionPhaseOutputsV2QueryQueryParams;
|
|
22
|
+
}
|
|
23
|
+
export declare function getOrchestrationExecutionPhaseOutputsV2(props: GetOrchestrationExecutionPhaseOutputsV2Props): Promise<GetOrchestrationExecutionPhaseOutputsV2OkResponse>;
|
|
24
|
+
/**
|
|
25
|
+
* Retrieve grouped output values for a specific phase execution (v2 format)
|
|
26
|
+
*/
|
|
27
|
+
export declare function useGetOrchestrationExecutionPhaseOutputsV2Query(props: GetOrchestrationExecutionPhaseOutputsV2Props, options?: Omit<UseQueryOptions<GetOrchestrationExecutionPhaseOutputsV2OkResponse, GetOrchestrationExecutionPhaseOutputsV2ErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetOrchestrationExecutionPhaseOutputsV2OkResponse, import("..").Error>;
|
package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhaseOutputsV2Query.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function getOrchestrationExecutionPhaseOutputsV2(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/orchestration/execution/release/${props.releaseId}/phase/${props.phaseIdentifier}/output/v2`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Retrieve grouped output values for a specific phase execution (v2 format)
|
|
11
|
+
*/
|
|
12
|
+
export function useGetOrchestrationExecutionPhaseOutputsV2Query(props, options) {
|
|
13
|
+
return useQuery([
|
|
14
|
+
'get-orchestration-execution-phase-outputs-v2',
|
|
15
|
+
props.releaseId,
|
|
16
|
+
props.phaseIdentifier,
|
|
17
|
+
props.queryParams,
|
|
18
|
+
], ({ signal }) => getOrchestrationExecutionPhaseOutputsV2(Object.assign(Object.assign({}, props), { signal })), options);
|
|
19
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { WebhookQueueActionResponseResponse } from '../responses/WebhookQueueActionResponseResponse';
|
|
3
|
+
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
4
|
+
import type { WebhookQueueActionRequestRequestBody } from '../requestBodies/WebhookQueueActionRequestRequestBody';
|
|
5
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
6
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
|
+
export interface PostWebhookQueueActionMutationPathParams {
|
|
8
|
+
activityExecutionId: string;
|
|
9
|
+
}
|
|
10
|
+
export interface PostWebhookQueueActionMutationQueryParams {
|
|
11
|
+
orgIdentifier?: string;
|
|
12
|
+
projectIdentifier?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface PostWebhookQueueActionMutationHeaderParams {
|
|
15
|
+
'Harness-Account': string;
|
|
16
|
+
}
|
|
17
|
+
export type PostWebhookQueueActionRequestBody = WebhookQueueActionRequestRequestBody;
|
|
18
|
+
export type PostWebhookQueueActionOkResponse = ResponseWithPagination<WebhookQueueActionResponseResponse>;
|
|
19
|
+
export type PostWebhookQueueActionErrorResponse = ErrorResponseResponse;
|
|
20
|
+
export interface PostWebhookQueueActionProps extends PostWebhookQueueActionMutationPathParams, Omit<FetcherOptions<PostWebhookQueueActionMutationQueryParams, PostWebhookQueueActionRequestBody, PostWebhookQueueActionMutationHeaderParams>, 'url'> {
|
|
21
|
+
queryParams: PostWebhookQueueActionMutationQueryParams;
|
|
22
|
+
body: PostWebhookQueueActionRequestBody;
|
|
23
|
+
}
|
|
24
|
+
export declare function postWebhookQueueAction(props: PostWebhookQueueActionProps): Promise<PostWebhookQueueActionOkResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* Publishes an APPROVE action for the webhook activity queue. Processing is async via Kafka.
|
|
27
|
+
*/
|
|
28
|
+
export declare function usePostWebhookQueueActionMutation(options?: Omit<UseMutationOptions<PostWebhookQueueActionOkResponse, PostWebhookQueueActionErrorResponse, PostWebhookQueueActionProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<PostWebhookQueueActionOkResponse, import("..").Error, PostWebhookQueueActionProps, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function postWebhookQueueAction(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v1/webhook/${props.activityExecutionId}/queue/action`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Publishes an APPROVE action for the webhook activity queue. Processing is async via Kafka.
|
|
11
|
+
*/
|
|
12
|
+
export function usePostWebhookQueueActionMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => postWebhookQueueAction(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -51,10 +51,14 @@ export type { GetOrchestrationExecutionActivityInputsErrorResponse, GetOrchestra
|
|
|
51
51
|
export { getOrchestrationExecutionActivityInputs, useGetOrchestrationExecutionActivityInputsQuery, } from './hooks/useGetOrchestrationExecutionActivityInputsQuery';
|
|
52
52
|
export type { GetOrchestrationExecutionActivityOutputsErrorResponse, GetOrchestrationExecutionActivityOutputsOkResponse, GetOrchestrationExecutionActivityOutputsProps, GetOrchestrationExecutionActivityOutputsQueryPathParams, GetOrchestrationExecutionActivityOutputsQueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivityOutputsQuery';
|
|
53
53
|
export { getOrchestrationExecutionActivityOutputs, useGetOrchestrationExecutionActivityOutputsQuery, } from './hooks/useGetOrchestrationExecutionActivityOutputsQuery';
|
|
54
|
+
export type { GetOrchestrationExecutionActivityOutputsV2ErrorResponse, GetOrchestrationExecutionActivityOutputsV2OkResponse, GetOrchestrationExecutionActivityOutputsV2Props, GetOrchestrationExecutionActivityOutputsV2QueryPathParams, GetOrchestrationExecutionActivityOutputsV2QueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivityOutputsV2Query';
|
|
55
|
+
export { getOrchestrationExecutionActivityOutputsV2, useGetOrchestrationExecutionActivityOutputsV2Query, } from './hooks/useGetOrchestrationExecutionActivityOutputsV2Query';
|
|
54
56
|
export type { GetOrchestrationExecutionActivityErrorResponse, GetOrchestrationExecutionActivityOkResponse, GetOrchestrationExecutionActivityProps, GetOrchestrationExecutionActivityQueryPathParams, GetOrchestrationExecutionActivityQueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivityQuery';
|
|
55
57
|
export { getOrchestrationExecutionActivity, useGetOrchestrationExecutionActivityQuery, } from './hooks/useGetOrchestrationExecutionActivityQuery';
|
|
56
58
|
export type { GetOrchestrationExecutionPhaseOutputsErrorResponse, GetOrchestrationExecutionPhaseOutputsOkResponse, GetOrchestrationExecutionPhaseOutputsProps, GetOrchestrationExecutionPhaseOutputsQueryPathParams, GetOrchestrationExecutionPhaseOutputsQueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhaseOutputsQuery';
|
|
57
59
|
export { getOrchestrationExecutionPhaseOutputs, useGetOrchestrationExecutionPhaseOutputsQuery, } from './hooks/useGetOrchestrationExecutionPhaseOutputsQuery';
|
|
60
|
+
export type { GetOrchestrationExecutionPhaseOutputsV2ErrorResponse, GetOrchestrationExecutionPhaseOutputsV2OkResponse, GetOrchestrationExecutionPhaseOutputsV2Props, GetOrchestrationExecutionPhaseOutputsV2QueryPathParams, GetOrchestrationExecutionPhaseOutputsV2QueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhaseOutputsV2Query';
|
|
61
|
+
export { getOrchestrationExecutionPhaseOutputsV2, useGetOrchestrationExecutionPhaseOutputsV2Query, } from './hooks/useGetOrchestrationExecutionPhaseOutputsV2Query';
|
|
58
62
|
export type { GetOrchestrationExecutionPhasesErrorResponse, GetOrchestrationExecutionPhasesOkResponse, GetOrchestrationExecutionPhasesProps, GetOrchestrationExecutionPhasesQueryPathParams, GetOrchestrationExecutionPhasesQueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
59
63
|
export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
60
64
|
export type { GetOrchestrationExecutionReleaseInputErrorResponse, GetOrchestrationExecutionReleaseInputOkResponse, GetOrchestrationExecutionReleaseInputProps, GetOrchestrationExecutionReleaseInputQueryPathParams, GetOrchestrationExecutionReleaseInputQueryQueryParams, } from './hooks/useGetOrchestrationExecutionReleaseInputQuery';
|
|
@@ -153,6 +157,8 @@ export type { PostReleaseSubprocessTriggerErrorResponse, PostReleaseSubprocessTr
|
|
|
153
157
|
export { postReleaseSubprocessTrigger, usePostReleaseSubprocessTriggerMutation, } from './hooks/usePostReleaseSubprocessTriggerMutation';
|
|
154
158
|
export type { PostReleaseSummaryErrorResponse, PostReleaseSummaryMutationQueryParams, PostReleaseSummaryOkResponse, PostReleaseSummaryProps, PostReleaseSummaryRequestBody, } from './hooks/usePostReleaseSummaryMutation';
|
|
155
159
|
export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
|
|
160
|
+
export type { PostWebhookQueueActionErrorResponse, PostWebhookQueueActionMutationPathParams, PostWebhookQueueActionMutationQueryParams, PostWebhookQueueActionOkResponse, PostWebhookQueueActionProps, PostWebhookQueueActionRequestBody, } from './hooks/usePostWebhookQueueActionMutation';
|
|
161
|
+
export { postWebhookQueueAction, usePostWebhookQueueActionMutation, } from './hooks/usePostWebhookQueueActionMutation';
|
|
156
162
|
export type { PutOrchestrationActivityErrorResponse, PutOrchestrationActivityMutationPathParams, PutOrchestrationActivityMutationQueryParams, PutOrchestrationActivityOkResponse, PutOrchestrationActivityProps, PutOrchestrationActivityRequestBody, } from './hooks/usePutOrchestrationActivityMutation';
|
|
157
163
|
export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
|
|
158
164
|
export type { PutOrchestrationProcessInputErrorResponse, PutOrchestrationProcessInputMutationPathParams, PutOrchestrationProcessInputMutationQueryParams, PutOrchestrationProcessInputOkResponse, PutOrchestrationProcessInputProps, PutOrchestrationProcessInputRequestBody, } from './hooks/usePutOrchestrationProcessInputMutation';
|
|
@@ -196,6 +202,7 @@ export type { UpdateOrchestrationProcessInputRequestRequestBody } from './reques
|
|
|
196
202
|
export type { UpdateOrchestrationProcessRequestRequestBody } from './requestBodies/UpdateOrchestrationProcessRequestRequestBody';
|
|
197
203
|
export type { UpdateReleaseGroupRequestRequestBody } from './requestBodies/UpdateReleaseGroupRequestRequestBody';
|
|
198
204
|
export type { UpdateReleaseRequestRequestBody } from './requestBodies/UpdateReleaseRequestRequestBody';
|
|
205
|
+
export type { WebhookQueueActionRequestRequestBody } from './requestBodies/WebhookQueueActionRequestRequestBody';
|
|
199
206
|
export type { ActivityExecutionInputsResponseResponse } from './responses/ActivityExecutionInputsResponseResponse';
|
|
200
207
|
export type { ActivityInputsResponseResponse } from './responses/ActivityInputsResponseResponse';
|
|
201
208
|
export type { CreateAdHocReleaseResponseResponse } from './responses/CreateAdHocReleaseResponseResponse';
|
|
@@ -211,6 +218,7 @@ export type { ErrorResponseResponse } from './responses/ErrorResponseResponse';
|
|
|
211
218
|
export type { EventsResponseResponse } from './responses/EventsResponseResponse';
|
|
212
219
|
export type { ExecuteProcessResponseResponse } from './responses/ExecuteProcessResponseResponse';
|
|
213
220
|
export type { ExecutionOutputsResponseResponse } from './responses/ExecutionOutputsResponseResponse';
|
|
221
|
+
export type { ExecutionOutputsV2ResponseResponse } from './responses/ExecutionOutputsV2ResponseResponse';
|
|
214
222
|
export type { ExecutionTasksListResponseResponse } from './responses/ExecutionTasksListResponseResponse';
|
|
215
223
|
export type { FreezeDetailsResponseResponse } from './responses/FreezeDetailsResponseResponse';
|
|
216
224
|
export type { FreezeListResponseResponse } from './responses/FreezeListResponseResponse';
|
|
@@ -252,6 +260,7 @@ export type { UpdateReleaseResponseResponse } from './responses/UpdateReleaseRes
|
|
|
252
260
|
export type { UpdateTaskCommentResponseResponse } from './responses/UpdateTaskCommentResponseResponse';
|
|
253
261
|
export type { ValidateOrchestrationProcessInputResponseResponse } from './responses/ValidateOrchestrationProcessInputResponseResponse';
|
|
254
262
|
export type { WebhookMatchedSignalExecutionSummaryListResponseResponse } from './responses/WebhookMatchedSignalExecutionSummaryListResponseResponse';
|
|
263
|
+
export type { WebhookQueueActionResponseResponse } from './responses/WebhookQueueActionResponseResponse';
|
|
255
264
|
export type { AbortedBy } from './schemas/AbortedBy';
|
|
256
265
|
export type { AcrArtifactMetadata } from './schemas/AcrArtifactMetadata';
|
|
257
266
|
export type { ActivityCounts } from './schemas/ActivityCounts';
|
|
@@ -307,6 +316,8 @@ export type { EventType } from './schemas/EventType';
|
|
|
307
316
|
export type { ExecuteProcessResponseDto } from './schemas/ExecuteProcessResponseDto';
|
|
308
317
|
export type { ExecutionConflict } from './schemas/ExecutionConflict';
|
|
309
318
|
export type { ExecutionOutputDto } from './schemas/ExecutionOutputDto';
|
|
319
|
+
export type { ExecutionOutputGroupDto } from './schemas/ExecutionOutputGroupDto';
|
|
320
|
+
export type { ExecutionOutputV2Dto } from './schemas/ExecutionOutputV2Dto';
|
|
310
321
|
export type { ExecutionTaskDto } from './schemas/ExecutionTaskDto';
|
|
311
322
|
export type { ExecutionTaskStatus } from './schemas/ExecutionTaskStatus';
|
|
312
323
|
export type { ExecutionTriggerInfo } from './schemas/ExecutionTriggerInfo';
|
|
@@ -319,6 +330,7 @@ export type { FreezeListResponseDto } from './schemas/FreezeListResponseDto';
|
|
|
319
330
|
export type { Freq } from './schemas/Freq';
|
|
320
331
|
export type { GcrArtifactMetadata } from './schemas/GcrArtifactMetadata';
|
|
321
332
|
export type { GetReleaseGroupResponse } from './schemas/GetReleaseGroupResponse';
|
|
333
|
+
export type { GitDetails } from './schemas/GitDetails';
|
|
322
334
|
export type { GithubPackageRegistryMetadata } from './schemas/GithubPackageRegistryMetadata';
|
|
323
335
|
export type { GlobalReleaseInputYaml } from './schemas/GlobalReleaseInputYaml';
|
|
324
336
|
export type { GoogleArtifactRegistryMetadata } from './schemas/GoogleArtifactRegistryMetadata';
|
|
@@ -428,6 +440,8 @@ export type { User } from './schemas/User';
|
|
|
428
440
|
export type { WebhookErrorResponse } from './schemas/WebhookErrorResponse';
|
|
429
441
|
export type { WebhookEventType } from './schemas/WebhookEventType';
|
|
430
442
|
export type { WebhookMetadataResponse } from './schemas/WebhookMetadataResponse';
|
|
443
|
+
export type { WebhookQueueActionRequest } from './schemas/WebhookQueueActionRequest';
|
|
444
|
+
export type { WebhookQueueActionResponse } from './schemas/WebhookQueueActionResponse';
|
|
431
445
|
export type { WebhookSignalPipeline } from './schemas/WebhookSignalPipeline';
|
|
432
446
|
export type { WebhookSignalRequest } from './schemas/WebhookSignalRequest';
|
|
433
447
|
export type { WebhookSignalResponse } from './schemas/WebhookSignalResponse';
|
|
@@ -24,8 +24,10 @@ export { getOrchestrationExecutionActivitiesPaginated, useGetOrchestrationExecut
|
|
|
24
24
|
export { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
|
|
25
25
|
export { getOrchestrationExecutionActivityInputs, useGetOrchestrationExecutionActivityInputsQuery, } from './hooks/useGetOrchestrationExecutionActivityInputsQuery';
|
|
26
26
|
export { getOrchestrationExecutionActivityOutputs, useGetOrchestrationExecutionActivityOutputsQuery, } from './hooks/useGetOrchestrationExecutionActivityOutputsQuery';
|
|
27
|
+
export { getOrchestrationExecutionActivityOutputsV2, useGetOrchestrationExecutionActivityOutputsV2Query, } from './hooks/useGetOrchestrationExecutionActivityOutputsV2Query';
|
|
27
28
|
export { getOrchestrationExecutionActivity, useGetOrchestrationExecutionActivityQuery, } from './hooks/useGetOrchestrationExecutionActivityQuery';
|
|
28
29
|
export { getOrchestrationExecutionPhaseOutputs, useGetOrchestrationExecutionPhaseOutputsQuery, } from './hooks/useGetOrchestrationExecutionPhaseOutputsQuery';
|
|
30
|
+
export { getOrchestrationExecutionPhaseOutputsV2, useGetOrchestrationExecutionPhaseOutputsV2Query, } from './hooks/useGetOrchestrationExecutionPhaseOutputsV2Query';
|
|
29
31
|
export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
|
|
30
32
|
export { getOrchestrationExecutionReleaseInput, useGetOrchestrationExecutionReleaseInputQuery, } from './hooks/useGetOrchestrationExecutionReleaseInputQuery';
|
|
31
33
|
export { getOrchestrationExecutionTasks, useGetOrchestrationExecutionTasksQuery, } from './hooks/useGetOrchestrationExecutionTasksQuery';
|
|
@@ -75,6 +77,7 @@ export { postReleaseList, usePostReleaseListMutation } from './hooks/usePostRele
|
|
|
75
77
|
export { postReleaseReportGenerate, usePostReleaseReportGenerateMutation, } from './hooks/usePostReleaseReportGenerateMutation';
|
|
76
78
|
export { postReleaseSubprocessTrigger, usePostReleaseSubprocessTriggerMutation, } from './hooks/usePostReleaseSubprocessTriggerMutation';
|
|
77
79
|
export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
|
|
80
|
+
export { postWebhookQueueAction, usePostWebhookQueueActionMutation, } from './hooks/usePostWebhookQueueActionMutation';
|
|
78
81
|
export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
|
|
79
82
|
export { putOrchestrationProcessInput, usePutOrchestrationProcessInputMutation, } from './hooks/usePutOrchestrationProcessInputMutation';
|
|
80
83
|
export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './hooks/usePutOrchestrationProcessMutation';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ExecutionOutputGroupDto } from '../schemas/ExecutionOutputGroupDto';
|
|
2
|
+
export interface ExecutionOutputsV2ResponseResponse {
|
|
3
|
+
/**
|
|
4
|
+
* List of output groups; one entry per webhook signal (or one entry for phase/manual outputs)
|
|
5
|
+
*/
|
|
6
|
+
values: ExecutionOutputGroupDto[];
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/rmg-service/src/services/schemas/CreateArtifactTrackerServiceMappingRequest.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export interface CreateArtifactTrackerServiceMappingRequest {
|
|
2
2
|
artifactPath: string;
|
|
3
3
|
artifactRegistry?: string;
|
|
4
|
+
/**
|
|
5
|
+
* Optional override for the linked settings' default git connector. Required only when the linked settings has no defaultGitConnectorRef.
|
|
6
|
+
*/
|
|
4
7
|
gitConnectorRefOverride?: string;
|
|
5
8
|
/**
|
|
6
9
|
* Optional human-readable identifier. Auto-generated from serviceRef, registry, and artifactPath if omitted.
|
|
@@ -10,9 +13,9 @@ export interface CreateArtifactTrackerServiceMappingRequest {
|
|
|
10
13
|
k8sNamespaceOverride?: string;
|
|
11
14
|
serviceRef?: string;
|
|
12
15
|
/**
|
|
13
|
-
* Identifier of the settings to link.
|
|
16
|
+
* Identifier of the settings to link. Required.
|
|
14
17
|
*/
|
|
15
|
-
settingsIdentifier
|
|
18
|
+
settingsIdentifier: string;
|
|
16
19
|
ticketConnectorRefOverride?: string;
|
|
17
20
|
ticketRegexOverride?: string;
|
|
18
21
|
}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
export interface CreateArtifactTrackerSettingsRequest {
|
|
2
|
-
defaultGitConnectorRef
|
|
2
|
+
defaultGitConnectorRef?: string;
|
|
3
3
|
defaultK8sConnectorRef?: string;
|
|
4
4
|
defaultK8sNamespace?: string;
|
|
5
5
|
defaultTicketConnectorRef?: string;
|
|
6
6
|
defaultTicketRegex?: string;
|
|
7
7
|
identifier: string;
|
|
8
|
+
/**
|
|
9
|
+
* Human-readable name for the settings.
|
|
10
|
+
*/
|
|
11
|
+
name: string;
|
|
8
12
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ExecutionOutputV2Dto } from '../schemas/ExecutionOutputV2Dto';
|
|
2
|
+
/**
|
|
3
|
+
* A group of output entries from one webhook signal or execution, with extensible metadata
|
|
4
|
+
*/
|
|
5
|
+
export interface ExecutionOutputGroupDto {
|
|
6
|
+
/**
|
|
7
|
+
* List of output name/value pairs for this group
|
|
8
|
+
*/
|
|
9
|
+
output: ExecutionOutputV2Dto[];
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Git metadata associated with an orchestration activity stored in a remote git repository
|
|
3
|
+
*/
|
|
4
|
+
export interface GitDetails {
|
|
5
|
+
/**
|
|
6
|
+
* Base branch to create the new branch from
|
|
7
|
+
*/
|
|
8
|
+
base_branch?: string;
|
|
9
|
+
/**
|
|
10
|
+
* Git branch where the activity YAML resides
|
|
11
|
+
*/
|
|
12
|
+
branch?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Commit message to use when saving to git
|
|
15
|
+
*/
|
|
16
|
+
commit_msg?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Connector reference for the git provider
|
|
19
|
+
*/
|
|
20
|
+
connector_ref?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Default branch of the git repository
|
|
23
|
+
*/
|
|
24
|
+
default_branch?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Commit SHA of the latest commit on the default branch
|
|
27
|
+
*/
|
|
28
|
+
default_branch_commit_sha?: string;
|
|
29
|
+
/**
|
|
30
|
+
* URL to the file on the default branch
|
|
31
|
+
*/
|
|
32
|
+
default_branch_file_url?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Whether to create a new branch when saving
|
|
35
|
+
*/
|
|
36
|
+
is_new_branch?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* File path within the git repository
|
|
39
|
+
*/
|
|
40
|
+
path?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Git repository URL where the activity YAML is stored
|
|
43
|
+
*/
|
|
44
|
+
repo?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Storage type of the activity (e.g. INLINE, REMOTE)
|
|
47
|
+
*/
|
|
48
|
+
store_type?: string;
|
|
49
|
+
}
|
|
@@ -2,6 +2,10 @@ import type { PipelineExecutionSummaryDto } from '../schemas/PipelineExecutionSu
|
|
|
2
2
|
export interface MatchedSignalExecutionSummaryDto {
|
|
3
3
|
executionSummary: PipelineExecutionSummaryDto;
|
|
4
4
|
hasPipelineViewAccess: boolean;
|
|
5
|
+
/**
|
|
6
|
+
* Status of the matched signal.
|
|
7
|
+
*/
|
|
8
|
+
status: 'NOT_SELECTED' | 'SELECTED';
|
|
5
9
|
/**
|
|
6
10
|
* Webhook slug identifier for fetching webhook metadata.
|
|
7
11
|
*/
|
|
@@ -26,5 +26,17 @@ export interface OrchestrationActivitySummaryDto {
|
|
|
26
26
|
* Name of the orchestration activity
|
|
27
27
|
*/
|
|
28
28
|
name: string;
|
|
29
|
+
/**
|
|
30
|
+
* File path within the git repository
|
|
31
|
+
*/
|
|
32
|
+
path?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Git repository URL where the activity YAML is stored
|
|
35
|
+
*/
|
|
36
|
+
repo?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Storage type of the activity (e.g. INLINE, REMOTE)
|
|
39
|
+
*/
|
|
40
|
+
store_type?: string;
|
|
29
41
|
type: CreateOrchestrationActivityRequestType;
|
|
30
42
|
}
|
package/dist/rmg-service/src/services/schemas/UpdateArtifactTrackerServiceMappingRequest.d.ts
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
export interface UpdateArtifactTrackerServiceMappingRequest {
|
|
2
2
|
artifactPath?: string;
|
|
3
3
|
artifactRegistry?: string;
|
|
4
|
+
/**
|
|
5
|
+
* Optional override for the linked settings' default git connector. Required only when the linked settings has no defaultGitConnectorRef.
|
|
6
|
+
*/
|
|
4
7
|
gitConnectorRefOverride?: string;
|
|
5
8
|
k8sConnectorRefOverride?: string;
|
|
6
9
|
k8sNamespaceOverride?: string;
|
|
7
10
|
serviceRef?: string;
|
|
8
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Identifier of the settings to link. Required.
|
|
13
|
+
*/
|
|
14
|
+
settingsIdentifier: string;
|
|
9
15
|
ticketConnectorRefOverride?: string;
|
|
10
16
|
ticketRegexOverride?: string;
|
|
11
17
|
}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
export interface UpsertArtifactTrackerSettingsRequest {
|
|
2
|
-
defaultGitConnectorRef
|
|
2
|
+
defaultGitConnectorRef?: string;
|
|
3
3
|
defaultK8sConnectorRef?: string;
|
|
4
4
|
defaultK8sNamespace?: string;
|
|
5
5
|
defaultTicketConnectorRef?: string;
|
|
6
6
|
defaultTicketRegex?: string;
|
|
7
|
+
/**
|
|
8
|
+
* Human-readable name for the settings.
|
|
9
|
+
*/
|
|
10
|
+
name: string;
|
|
7
11
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface WebhookQueueActionRequest {
|
|
2
|
+
/**
|
|
3
|
+
* The action to perform on the webhook queue. APPROVE resumes the activity as succeeded with the selected webhook outputs.
|
|
4
|
+
*/
|
|
5
|
+
action: 'APPROVE';
|
|
6
|
+
/**
|
|
7
|
+
* Webhook IDs to exclude when selectAll is true.
|
|
8
|
+
*/
|
|
9
|
+
deselectedWebhookIds?: string[];
|
|
10
|
+
/**
|
|
11
|
+
* If true, approve all matched webhook signals except those in deselectedWebhookIds.
|
|
12
|
+
*/
|
|
13
|
+
selectAll?: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* List of webhook IDs to approve. Used when selectAll is false.
|
|
16
|
+
*/
|
|
17
|
+
selectedWebhookIds?: string[];
|
|
18
|
+
}
|