@harnessio/react-rmg-service-client 0.29.0 → 0.31.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.
Files changed (24) hide show
  1. package/dist/rmg-service/src/services/hooks/useGetActivityRetryHistoryByIdentifiersQuery.d.ts +34 -0
  2. package/dist/rmg-service/src/services/hooks/useGetActivityRetryHistoryByIdentifiersQuery.js +20 -0
  3. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivitiesQuery.d.ts +1 -0
  4. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivityOutputsQuery.d.ts +28 -0
  5. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionActivityOutputsQuery.js +20 -0
  6. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhaseOutputsQuery.d.ts +27 -0
  7. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhaseOutputsQuery.js +19 -0
  8. package/dist/rmg-service/src/services/hooks/useGetOrchestrationExecutionPhasesQuery.d.ts +1 -0
  9. package/dist/rmg-service/src/services/index.d.ts +11 -0
  10. package/dist/rmg-service/src/services/index.js +3 -0
  11. package/dist/rmg-service/src/services/responses/ExecutionOutputsResponseResponse.d.ts +7 -0
  12. package/dist/rmg-service/src/services/responses/ExecutionOutputsResponseResponse.js +1 -0
  13. package/dist/rmg-service/src/services/schemas/ActivityRetryHistoryResponse.d.ts +19 -0
  14. package/dist/rmg-service/src/services/schemas/ActivityRetryHistoryResponse.js +1 -0
  15. package/dist/rmg-service/src/services/schemas/ActivityRetryInfo.d.ts +55 -0
  16. package/dist/rmg-service/src/services/schemas/ActivityRetryInfo.js +1 -0
  17. package/dist/rmg-service/src/services/schemas/ExecutionOutputDto.d.ts +13 -0
  18. package/dist/rmg-service/src/services/schemas/ExecutionOutputDto.js +4 -0
  19. package/dist/rmg-service/src/services/schemas/ExecutionTaskDto.d.ts +2 -0
  20. package/dist/rmg-service/src/services/schemas/FailureInfo.d.ts +13 -0
  21. package/dist/rmg-service/src/services/schemas/FailureInfo.js +4 -0
  22. package/dist/rmg-service/src/services/schemas/OrchestrationExecutionActivity.d.ts +2 -0
  23. package/dist/rmg-service/src/services/schemas/OrchestrationExecutionPhase.d.ts +2 -0
  24. package/package.json +1 -1
@@ -0,0 +1,34 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { ActivityRetryHistoryResponse } from '../schemas/ActivityRetryHistoryResponse';
3
+ import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface GetActivityRetryHistoryByIdentifiersQueryPathParams {
7
+ releaseId: string;
8
+ phaseIdentifier: string;
9
+ activityIdentifier: string;
10
+ }
11
+ export interface GetActivityRetryHistoryByIdentifiersQueryQueryParams {
12
+ activityExecutionId?: string;
13
+ cursor?: string;
14
+ /**
15
+ * @default 500
16
+ */
17
+ limit?: number;
18
+ maxRetryIndex?: number;
19
+ orgIdentifier?: string;
20
+ projectIdentifier?: string;
21
+ }
22
+ export interface GetActivityRetryHistoryByIdentifiersQueryHeaderParams {
23
+ 'Harness-Account': string;
24
+ }
25
+ export type GetActivityRetryHistoryByIdentifiersOkResponse = ResponseWithPagination<ActivityRetryHistoryResponse>;
26
+ export type GetActivityRetryHistoryByIdentifiersErrorResponse = ErrorResponseResponse;
27
+ export interface GetActivityRetryHistoryByIdentifiersProps extends GetActivityRetryHistoryByIdentifiersQueryPathParams, Omit<FetcherOptions<GetActivityRetryHistoryByIdentifiersQueryQueryParams, unknown, GetActivityRetryHistoryByIdentifiersQueryHeaderParams>, 'url'> {
28
+ queryParams: GetActivityRetryHistoryByIdentifiersQueryQueryParams;
29
+ }
30
+ export declare function getActivityRetryHistoryByIdentifiers(props: GetActivityRetryHistoryByIdentifiersProps): Promise<GetActivityRetryHistoryByIdentifiersOkResponse>;
31
+ /**
32
+ * Retrieve the retry history for a specific activity by release ID, phase identifier, and activity identifier
33
+ */
34
+ export declare function useGetActivityRetryHistoryByIdentifiersQuery(props: GetActivityRetryHistoryByIdentifiersProps, options?: Omit<UseQueryOptions<GetActivityRetryHistoryByIdentifiersOkResponse, GetActivityRetryHistoryByIdentifiersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetActivityRetryHistoryByIdentifiersOkResponse, import("..").Error>;
@@ -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 getActivityRetryHistoryByIdentifiers(props) {
7
+ return fetcher(Object.assign({ url: `/orchestration/execution/release/${props.releaseId}/phase/${props.phaseIdentifier}/activity/${props.activityIdentifier}/retry-history`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Retrieve the retry history for a specific activity by release ID, phase identifier, and activity identifier
11
+ */
12
+ export function useGetActivityRetryHistoryByIdentifiersQuery(props, options) {
13
+ return useQuery([
14
+ 'get-activity-retry-history-by-identifiers',
15
+ props.releaseId,
16
+ props.phaseIdentifier,
17
+ props.activityIdentifier,
18
+ props.queryParams,
19
+ ], ({ signal }) => getActivityRetryHistoryByIdentifiers(Object.assign(Object.assign({}, props), { signal })), options);
20
+ }
@@ -9,6 +9,7 @@ export interface GetOrchestrationExecutionActivitiesQueryPathParams {
9
9
  }
10
10
  export interface GetOrchestrationExecutionActivitiesQueryQueryParams {
11
11
  phaseExecutionId?: string;
12
+ status?: string[];
12
13
  orgIdentifier?: string;
13
14
  projectIdentifier?: string;
14
15
  }
@@ -0,0 +1,28 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { ExecutionOutputsResponseResponse } from '../responses/ExecutionOutputsResponseResponse';
3
+ import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface GetOrchestrationExecutionActivityOutputsQueryPathParams {
7
+ releaseId: string;
8
+ phaseIdentifier: string;
9
+ activityIdentifier: string;
10
+ }
11
+ export interface GetOrchestrationExecutionActivityOutputsQueryQueryParams {
12
+ activityExecutionId?: string;
13
+ orgIdentifier?: string;
14
+ projectIdentifier?: string;
15
+ }
16
+ export interface GetOrchestrationExecutionActivityOutputsQueryHeaderParams {
17
+ 'Harness-Account': string;
18
+ }
19
+ export type GetOrchestrationExecutionActivityOutputsOkResponse = ResponseWithPagination<ExecutionOutputsResponseResponse>;
20
+ export type GetOrchestrationExecutionActivityOutputsErrorResponse = ErrorResponseResponse;
21
+ export interface GetOrchestrationExecutionActivityOutputsProps extends GetOrchestrationExecutionActivityOutputsQueryPathParams, Omit<FetcherOptions<GetOrchestrationExecutionActivityOutputsQueryQueryParams, unknown, GetOrchestrationExecutionActivityOutputsQueryHeaderParams>, 'url'> {
22
+ queryParams: GetOrchestrationExecutionActivityOutputsQueryQueryParams;
23
+ }
24
+ export declare function getOrchestrationExecutionActivityOutputs(props: GetOrchestrationExecutionActivityOutputsProps): Promise<GetOrchestrationExecutionActivityOutputsOkResponse>;
25
+ /**
26
+ * Retrieve output values for a specific activity execution
27
+ */
28
+ export declare function useGetOrchestrationExecutionActivityOutputsQuery(props: GetOrchestrationExecutionActivityOutputsProps, options?: Omit<UseQueryOptions<GetOrchestrationExecutionActivityOutputsOkResponse, GetOrchestrationExecutionActivityOutputsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetOrchestrationExecutionActivityOutputsOkResponse, import("..").Error>;
@@ -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 getOrchestrationExecutionActivityOutputs(props) {
7
+ return fetcher(Object.assign({ url: `/orchestration/execution/release/${props.releaseId}/phase/${props.phaseIdentifier}/activity/${props.activityIdentifier}/output`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Retrieve output values for a specific activity execution
11
+ */
12
+ export function useGetOrchestrationExecutionActivityOutputsQuery(props, options) {
13
+ return useQuery([
14
+ 'get-orchestration-execution-activity-outputs',
15
+ props.releaseId,
16
+ props.phaseIdentifier,
17
+ props.activityIdentifier,
18
+ props.queryParams,
19
+ ], ({ signal }) => getOrchestrationExecutionActivityOutputs(Object.assign(Object.assign({}, props), { signal })), options);
20
+ }
@@ -0,0 +1,27 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { ExecutionOutputsResponseResponse } from '../responses/ExecutionOutputsResponseResponse';
3
+ import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface GetOrchestrationExecutionPhaseOutputsQueryPathParams {
7
+ releaseId: string;
8
+ phaseIdentifier: string;
9
+ }
10
+ export interface GetOrchestrationExecutionPhaseOutputsQueryQueryParams {
11
+ phaseExecutionId?: string;
12
+ orgIdentifier?: string;
13
+ projectIdentifier?: string;
14
+ }
15
+ export interface GetOrchestrationExecutionPhaseOutputsQueryHeaderParams {
16
+ 'Harness-Account': string;
17
+ }
18
+ export type GetOrchestrationExecutionPhaseOutputsOkResponse = ResponseWithPagination<ExecutionOutputsResponseResponse>;
19
+ export type GetOrchestrationExecutionPhaseOutputsErrorResponse = ErrorResponseResponse;
20
+ export interface GetOrchestrationExecutionPhaseOutputsProps extends GetOrchestrationExecutionPhaseOutputsQueryPathParams, Omit<FetcherOptions<GetOrchestrationExecutionPhaseOutputsQueryQueryParams, unknown, GetOrchestrationExecutionPhaseOutputsQueryHeaderParams>, 'url'> {
21
+ queryParams: GetOrchestrationExecutionPhaseOutputsQueryQueryParams;
22
+ }
23
+ export declare function getOrchestrationExecutionPhaseOutputs(props: GetOrchestrationExecutionPhaseOutputsProps): Promise<GetOrchestrationExecutionPhaseOutputsOkResponse>;
24
+ /**
25
+ * Retrieve output values for a specific phase execution
26
+ */
27
+ export declare function useGetOrchestrationExecutionPhaseOutputsQuery(props: GetOrchestrationExecutionPhaseOutputsProps, options?: Omit<UseQueryOptions<GetOrchestrationExecutionPhaseOutputsOkResponse, GetOrchestrationExecutionPhaseOutputsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetOrchestrationExecutionPhaseOutputsOkResponse, import("..").Error>;
@@ -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 getOrchestrationExecutionPhaseOutputs(props) {
7
+ return fetcher(Object.assign({ url: `/orchestration/execution/release/${props.releaseId}/phase/${props.phaseIdentifier}/output`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Retrieve output values for a specific phase execution
11
+ */
12
+ export function useGetOrchestrationExecutionPhaseOutputsQuery(props, options) {
13
+ return useQuery([
14
+ 'get-orchestration-execution-phase-outputs',
15
+ props.releaseId,
16
+ props.phaseIdentifier,
17
+ props.queryParams,
18
+ ], ({ signal }) => getOrchestrationExecutionPhaseOutputs(Object.assign(Object.assign({}, props), { signal })), options);
19
+ }
@@ -7,6 +7,7 @@ export interface GetOrchestrationExecutionPhasesQueryPathParams {
7
7
  releaseId: string;
8
8
  }
9
9
  export interface GetOrchestrationExecutionPhasesQueryQueryParams {
10
+ status?: string[];
10
11
  orgIdentifier?: string;
11
12
  projectIdentifier?: string;
12
13
  }
@@ -5,6 +5,8 @@ export type { DeleteReleaseGroupErrorResponse, DeleteReleaseGroupMutationPathPar
5
5
  export { deleteReleaseGroup, useDeleteReleaseGroupMutation, } from './hooks/useDeleteReleaseGroupMutation';
6
6
  export type { DeleteTaskCommentErrorResponse, DeleteTaskCommentMutationPathParams, DeleteTaskCommentMutationQueryParams, DeleteTaskCommentOkResponse, DeleteTaskCommentProps, } from './hooks/useDeleteTaskCommentMutation';
7
7
  export { deleteTaskComment, useDeleteTaskCommentMutation, } from './hooks/useDeleteTaskCommentMutation';
8
+ export type { GetActivityRetryHistoryByIdentifiersErrorResponse, GetActivityRetryHistoryByIdentifiersOkResponse, GetActivityRetryHistoryByIdentifiersProps, GetActivityRetryHistoryByIdentifiersQueryPathParams, GetActivityRetryHistoryByIdentifiersQueryQueryParams, } from './hooks/useGetActivityRetryHistoryByIdentifiersQuery';
9
+ export { getActivityRetryHistoryByIdentifiers, useGetActivityRetryHistoryByIdentifiersQuery, } from './hooks/useGetActivityRetryHistoryByIdentifiersQuery';
8
10
  export type { GetFreezeDetailsErrorResponse, GetFreezeDetailsOkResponse, GetFreezeDetailsProps, GetFreezeDetailsQueryPathParams, GetFreezeDetailsQueryQueryParams, } from './hooks/useGetFreezeDetailsQuery';
9
11
  export { getFreezeDetails, useGetFreezeDetailsQuery } from './hooks/useGetFreezeDetailsQuery';
10
12
  export type { GetFreezeListErrorResponse, GetFreezeListOkResponse, GetFreezeListProps, GetFreezeListQueryQueryParams, } from './hooks/useGetFreezeListQuery';
@@ -23,6 +25,10 @@ export type { GetOrchestrationExecutionActivitiesErrorResponse, GetOrchestration
23
25
  export { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
24
26
  export type { GetOrchestrationExecutionActivityInputsErrorResponse, GetOrchestrationExecutionActivityInputsOkResponse, GetOrchestrationExecutionActivityInputsProps, GetOrchestrationExecutionActivityInputsQueryPathParams, GetOrchestrationExecutionActivityInputsQueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivityInputsQuery';
25
27
  export { getOrchestrationExecutionActivityInputs, useGetOrchestrationExecutionActivityInputsQuery, } from './hooks/useGetOrchestrationExecutionActivityInputsQuery';
28
+ export type { GetOrchestrationExecutionActivityOutputsErrorResponse, GetOrchestrationExecutionActivityOutputsOkResponse, GetOrchestrationExecutionActivityOutputsProps, GetOrchestrationExecutionActivityOutputsQueryPathParams, GetOrchestrationExecutionActivityOutputsQueryQueryParams, } from './hooks/useGetOrchestrationExecutionActivityOutputsQuery';
29
+ export { getOrchestrationExecutionActivityOutputs, useGetOrchestrationExecutionActivityOutputsQuery, } from './hooks/useGetOrchestrationExecutionActivityOutputsQuery';
30
+ export type { GetOrchestrationExecutionPhaseOutputsErrorResponse, GetOrchestrationExecutionPhaseOutputsOkResponse, GetOrchestrationExecutionPhaseOutputsProps, GetOrchestrationExecutionPhaseOutputsQueryPathParams, GetOrchestrationExecutionPhaseOutputsQueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhaseOutputsQuery';
31
+ export { getOrchestrationExecutionPhaseOutputs, useGetOrchestrationExecutionPhaseOutputsQuery, } from './hooks/useGetOrchestrationExecutionPhaseOutputsQuery';
26
32
  export type { GetOrchestrationExecutionPhasesErrorResponse, GetOrchestrationExecutionPhasesOkResponse, GetOrchestrationExecutionPhasesProps, GetOrchestrationExecutionPhasesQueryPathParams, GetOrchestrationExecutionPhasesQueryQueryParams, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
27
33
  export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
28
34
  export type { GetOrchestrationExecutionTasksErrorResponse, GetOrchestrationExecutionTasksOkResponse, GetOrchestrationExecutionTasksProps, GetOrchestrationExecutionTasksQueryPathParams, GetOrchestrationExecutionTasksQueryQueryParams, } from './hooks/useGetOrchestrationExecutionTasksQuery';
@@ -114,6 +120,7 @@ export type { DeleteReleaseGroupResponseResponse } from './responses/DeleteRelea
114
120
  export type { EnvironmentDashboardResponseResponse } from './responses/EnvironmentDashboardResponseResponse';
115
121
  export type { EnvironmentListPerReleaseResponseResponse } from './responses/EnvironmentListPerReleaseResponseResponse';
116
122
  export type { ErrorResponseResponse } from './responses/ErrorResponseResponse';
123
+ export type { ExecutionOutputsResponseResponse } from './responses/ExecutionOutputsResponseResponse';
117
124
  export type { ExecutionTasksListResponseResponse } from './responses/ExecutionTasksListResponseResponse';
118
125
  export type { FreezeDetailsResponseResponse } from './responses/FreezeDetailsResponseResponse';
119
126
  export type { FreezeListResponseResponse } from './responses/FreezeListResponseResponse';
@@ -147,6 +154,8 @@ export type { UpdateTaskCommentResponseResponse } from './responses/UpdateTaskCo
147
154
  export type { ActivityExecutionInputDto } from './schemas/ActivityExecutionInputDto';
148
155
  export type { ActivityInputYaml } from './schemas/ActivityInputYaml';
149
156
  export type { ActivityInputsResponse } from './schemas/ActivityInputsResponse';
157
+ export type { ActivityRetryHistoryResponse } from './schemas/ActivityRetryHistoryResponse';
158
+ export type { ActivityRetryInfo } from './schemas/ActivityRetryInfo';
150
159
  export type { ActivityType } from './schemas/ActivityType';
151
160
  export type { ApprovalInfoDto } from './schemas/ApprovalInfoDto';
152
161
  export type { ApprovedByDto } from './schemas/ApprovedByDto';
@@ -160,8 +169,10 @@ export type { EnvironmentDto } from './schemas/EnvironmentDto';
160
169
  export type { EnvironmentType } from './schemas/EnvironmentType';
161
170
  export type { Error } from './schemas/Error';
162
171
  export type { ExecutionConflict } from './schemas/ExecutionConflict';
172
+ export type { ExecutionOutputDto } from './schemas/ExecutionOutputDto';
163
173
  export type { ExecutionTaskDto } from './schemas/ExecutionTaskDto';
164
174
  export type { ExecutionTaskStatus } from './schemas/ExecutionTaskStatus';
175
+ export type { FailureInfo } from './schemas/FailureInfo';
165
176
  export type { FreezeDetailsDto } from './schemas/FreezeDetailsDto';
166
177
  export type { FreezeEntitiesDto } from './schemas/FreezeEntitiesDto';
167
178
  export type { FreezeListItemDto } from './schemas/FreezeListItemDto';
@@ -1,6 +1,7 @@
1
1
  export { createTaskComment, useCreateTaskCommentMutation, } from './hooks/useCreateTaskCommentMutation';
2
2
  export { deleteReleaseGroup, useDeleteReleaseGroupMutation, } from './hooks/useDeleteReleaseGroupMutation';
3
3
  export { deleteTaskComment, useDeleteTaskCommentMutation, } from './hooks/useDeleteTaskCommentMutation';
4
+ export { getActivityRetryHistoryByIdentifiers, useGetActivityRetryHistoryByIdentifiersQuery, } from './hooks/useGetActivityRetryHistoryByIdentifiersQuery';
4
5
  export { getFreezeDetails, useGetFreezeDetailsQuery } from './hooks/useGetFreezeDetailsQuery';
5
6
  export { getFreezeList, useGetFreezeListQuery } from './hooks/useGetFreezeListQuery';
6
7
  export { getOrchestrationActivitiesByAcitivityRefs, useGetOrchestrationActivitiesByAcitivityRefsMutation, } from './hooks/useGetOrchestrationActivitiesByAcitivityRefsMutation';
@@ -10,6 +11,8 @@ export { getOrchestrationActivity, useGetOrchestrationActivityQuery, } from './h
10
11
  export { getOrchestrationActivitySummary, useGetOrchestrationActivitySummaryQuery, } from './hooks/useGetOrchestrationActivitySummaryQuery';
11
12
  export { getOrchestrationExecutionActivities, useGetOrchestrationExecutionActivitiesQuery, } from './hooks/useGetOrchestrationExecutionActivitiesQuery';
12
13
  export { getOrchestrationExecutionActivityInputs, useGetOrchestrationExecutionActivityInputsQuery, } from './hooks/useGetOrchestrationExecutionActivityInputsQuery';
14
+ export { getOrchestrationExecutionActivityOutputs, useGetOrchestrationExecutionActivityOutputsQuery, } from './hooks/useGetOrchestrationExecutionActivityOutputsQuery';
15
+ export { getOrchestrationExecutionPhaseOutputs, useGetOrchestrationExecutionPhaseOutputsQuery, } from './hooks/useGetOrchestrationExecutionPhaseOutputsQuery';
13
16
  export { getOrchestrationExecutionPhases, useGetOrchestrationExecutionPhasesQuery, } from './hooks/useGetOrchestrationExecutionPhasesQuery';
14
17
  export { getOrchestrationExecutionTasks, useGetOrchestrationExecutionTasksQuery, } from './hooks/useGetOrchestrationExecutionTasksQuery';
15
18
  export { getOrchestrationProcessInput, useGetOrchestrationProcessInputQuery, } from './hooks/useGetOrchestrationProcessInputQuery';
@@ -0,0 +1,7 @@
1
+ import type { ExecutionOutputDto } from '../schemas/ExecutionOutputDto';
2
+ export interface ExecutionOutputsResponseResponse {
3
+ /**
4
+ * List of output values for the phase execution
5
+ */
6
+ outputs: ExecutionOutputDto[];
7
+ }
@@ -0,0 +1,19 @@
1
+ import type { NextRequest } from '../schemas/NextRequest';
2
+ import type { ActivityRetryInfo } from '../schemas/ActivityRetryInfo';
3
+ /**
4
+ * Response containing the retry history for an activity execution
5
+ */
6
+ export interface ActivityRetryHistoryResponse {
7
+ /**
8
+ * Whether this is the last page of results
9
+ */
10
+ last: boolean;
11
+ /**
12
+ * Information for the next page request
13
+ */
14
+ nextRequest: NextRequest;
15
+ /**
16
+ * List of retry attempts for the activity
17
+ */
18
+ retries: ActivityRetryInfo[];
19
+ }
@@ -0,0 +1,55 @@
1
+ import type { FailureInfo } from '../schemas/FailureInfo';
2
+ import type { Status } from '../schemas/Status';
3
+ /**
4
+ * Information about a single retry attempt
5
+ */
6
+ export interface ActivityRetryInfo {
7
+ /**
8
+ * The ID of the activity execution
9
+ */
10
+ activityExecutionId: string;
11
+ /**
12
+ * The name of the activity
13
+ */
14
+ activityName: string;
15
+ /**
16
+ * Whether this activity can be retried (true if status is not RETRIED, false otherwise)
17
+ */
18
+ canRetry?: boolean;
19
+ /**
20
+ * Creation timestamp in milliseconds
21
+ * @format int64
22
+ */
23
+ createdAt: number;
24
+ /**
25
+ * End timestamp in milliseconds
26
+ * @format int64
27
+ */
28
+ endTs?: number;
29
+ /**
30
+ * Information about a failure that occurred during the retry
31
+ */
32
+ failureInfo?: FailureInfo;
33
+ /**
34
+ * The identifier of the activity
35
+ */
36
+ identifier: string;
37
+ /**
38
+ * The ID of the phase this activity belongs to
39
+ */
40
+ phaseId?: string;
41
+ /**
42
+ * The retry index (0 for original, 1+ for retries)
43
+ * @format int32
44
+ */
45
+ retryIndex: number;
46
+ /**
47
+ * Start timestamp in milliseconds
48
+ * @format int64
49
+ */
50
+ startTs?: number;
51
+ /**
52
+ * The status of this retry attempt
53
+ */
54
+ status: Status;
55
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Output value for a phase execution
3
+ */
4
+ export interface ExecutionOutputDto {
5
+ /**
6
+ * Name of the output parameter
7
+ */
8
+ name: string;
9
+ /**
10
+ * Value of the output parameter
11
+ */
12
+ value: string;
13
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -1,3 +1,4 @@
1
+ import type { FailureInfo } from '../schemas/FailureInfo';
1
2
  import type { StringOrBool } from '../schemas/StringOrBool';
2
3
  import type { ExecutionTaskStatus } from '../schemas/ExecutionTaskStatus';
3
4
  import type { StringOrStringArray } from '../schemas/StringOrStringArray';
@@ -22,6 +23,7 @@ export interface ExecutionTaskDto {
22
23
  * Expected duration for the task (e.g., "1d 12h")
23
24
  */
24
25
  expectedDuration: string;
26
+ failureInfo?: FailureInfo;
25
27
  /**
26
28
  * Unique identifier of the task
27
29
  */
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Information about a failure that occurred
3
+ */
4
+ export interface FailureInfo {
5
+ /**
6
+ * The failure code indicating the type of failure
7
+ */
8
+ code?: string;
9
+ /**
10
+ * The failure message describing what went wrong
11
+ */
12
+ msg: string;
13
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -1,3 +1,4 @@
1
+ import type { FailureInfo } from '../schemas/FailureInfo';
1
2
  import type { PipelineActivityInfo } from '../schemas/PipelineActivityInfo';
2
3
  import type { Status } from '../schemas/Status';
3
4
  /**
@@ -21,6 +22,7 @@ export interface OrchestrationExecutionActivity {
21
22
  * @format int64
22
23
  */
23
24
  end_ts?: number;
25
+ failureInfo?: FailureInfo;
24
26
  /**
25
27
  * Identifier of the activity
26
28
  */
@@ -1,3 +1,4 @@
1
+ import type { FailureInfo } from '../schemas/FailureInfo';
1
2
  import type { Status } from '../schemas/Status';
2
3
  /**
3
4
  * Represents a phase in the orchestration execution
@@ -20,6 +21,7 @@ export interface OrchestrationExecutionPhase {
20
21
  * @format int64
21
22
  */
22
23
  end_ts?: number;
24
+ failureInfo?: FailureInfo;
23
25
  /**
24
26
  * Unique identifier of the phase
25
27
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-rmg-service-client",
3
- "version": "0.29.0",
3
+ "version": "0.31.0",
4
4
  "description": "Harness Release Management Service APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",