@harnessio/react-rmg-service-client 0.40.0 → 0.41.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/useGetOrchestrationExecutionActivitiesPaginatedQuery.d.ts +1 -1
- package/dist/rmg-service/src/services/schemas/ActivityRetryInfo.d.ts +2 -2
- package/dist/rmg-service/src/services/schemas/OrchestrationActivityYamlDto.d.ts +8 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionActivity.d.ts +2 -2
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionActivityDetail.d.ts +2 -2
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionActivityPaginated.d.ts +12 -2
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionPhase.d.ts +2 -2
- package/dist/rmg-service/src/services/schemas/OrchestrationStatus.d.ts +1 -1
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ export interface GetOrchestrationExecutionActivitiesPaginatedQueryQueryParams {
|
|
|
12
12
|
page?: number;
|
|
13
13
|
size?: number;
|
|
14
14
|
sort?: string[];
|
|
15
|
-
status?: Array<'ABORTED' | 'FAILED' | 'IGNORED' | 'ON_HOLD' | 'OUTPUT_WAITING' | 'RETRIED' | 'RUNNING' | 'SCHEDULED' | 'SKIPPED' | 'SUCCEEDED'>;
|
|
15
|
+
status?: Array<'ABORTED' | 'FAILED' | 'IGNORED' | 'ON_HOLD' | 'OUTPUT_WAITING' | 'QUEUED' | 'RETRIED' | 'RUNNING' | 'SCHEDULED' | 'SKIPPED' | 'SUCCEEDED'>;
|
|
16
16
|
type?: Array<'MANUAL' | 'PIPELINE' | 'SUBPROCESS'>;
|
|
17
17
|
phaseIdentifier?: string;
|
|
18
18
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { FailureInfo } from '../schemas/FailureInfo';
|
|
2
2
|
import type { PipelineActivityInfo } from '../schemas/PipelineActivityInfo';
|
|
3
|
-
import type {
|
|
3
|
+
import type { OrchestrationStatus } from '../schemas/OrchestrationStatus';
|
|
4
4
|
import type { SubprocessActivityInfo } from '../schemas/SubprocessActivityInfo';
|
|
5
5
|
import type { ActivityTriggerInfo } from '../schemas/ActivityTriggerInfo';
|
|
6
6
|
/**
|
|
@@ -58,7 +58,7 @@ export interface ActivityRetryInfo {
|
|
|
58
58
|
/**
|
|
59
59
|
* The status of this retry attempt
|
|
60
60
|
*/
|
|
61
|
-
status:
|
|
61
|
+
status: OrchestrationStatus;
|
|
62
62
|
/**
|
|
63
63
|
* Subprocess execution information for activities
|
|
64
64
|
*/
|
|
@@ -3,6 +3,14 @@ export interface OrchestrationActivityYamlDto {
|
|
|
3
3
|
* Identifier of the activity
|
|
4
4
|
*/
|
|
5
5
|
identifier: string;
|
|
6
|
+
/**
|
|
7
|
+
* Organization identifier of the activity
|
|
8
|
+
*/
|
|
9
|
+
orgIdentifier?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Project identifier of the activity
|
|
12
|
+
*/
|
|
13
|
+
projectIdentifier?: string;
|
|
6
14
|
/**
|
|
7
15
|
* YAML configuration of the activity
|
|
8
16
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { FailureInfo } from '../schemas/FailureInfo';
|
|
2
2
|
import type { PipelineActivityInfo } from '../schemas/PipelineActivityInfo';
|
|
3
|
-
import type {
|
|
3
|
+
import type { OrchestrationStatus } from '../schemas/OrchestrationStatus';
|
|
4
4
|
import type { SubprocessActivityInfo } from '../schemas/SubprocessActivityInfo';
|
|
5
5
|
/**
|
|
6
6
|
* Represents an activity in the orchestration execution
|
|
@@ -46,7 +46,7 @@ export interface OrchestrationExecutionActivity {
|
|
|
46
46
|
* @format int64
|
|
47
47
|
*/
|
|
48
48
|
start_ts?: number;
|
|
49
|
-
status:
|
|
49
|
+
status: OrchestrationStatus;
|
|
50
50
|
/**
|
|
51
51
|
* Subprocess execution information for activities
|
|
52
52
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { FailureInfo } from '../schemas/FailureInfo';
|
|
2
2
|
import type { PipelineActivityInfo } from '../schemas/PipelineActivityInfo';
|
|
3
|
-
import type {
|
|
3
|
+
import type { OrchestrationStatus } from '../schemas/OrchestrationStatus';
|
|
4
4
|
import type { SubprocessActivityInfo } from '../schemas/SubprocessActivityInfo';
|
|
5
5
|
import type { ActivityTriggerInfo } from '../schemas/ActivityTriggerInfo';
|
|
6
6
|
/**
|
|
@@ -63,7 +63,7 @@ export interface OrchestrationExecutionActivityDetail {
|
|
|
63
63
|
* @format int64
|
|
64
64
|
*/
|
|
65
65
|
start_ts?: number;
|
|
66
|
-
status:
|
|
66
|
+
status: OrchestrationStatus;
|
|
67
67
|
/**
|
|
68
68
|
* Subprocess execution information for activities
|
|
69
69
|
*/
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { FailureInfo } from '../schemas/FailureInfo';
|
|
2
|
-
import type {
|
|
2
|
+
import type { PipelineActivityInfo } from '../schemas/PipelineActivityInfo';
|
|
3
|
+
import type { OrchestrationStatus } from '../schemas/OrchestrationStatus';
|
|
4
|
+
import type { SubprocessActivityInfo } from '../schemas/SubprocessActivityInfo';
|
|
3
5
|
import type { ActivityTriggerInfo } from '../schemas/ActivityTriggerInfo';
|
|
4
6
|
/**
|
|
5
7
|
* Represents an activity in the paginated orchestration execution activities response
|
|
@@ -34,6 +36,10 @@ export interface OrchestrationExecutionActivityPaginated {
|
|
|
34
36
|
* Identifier of the phase this activity belongs to
|
|
35
37
|
*/
|
|
36
38
|
phaseIdentifier: string;
|
|
39
|
+
/**
|
|
40
|
+
* Pipeline execution information for activities
|
|
41
|
+
*/
|
|
42
|
+
pipeline?: PipelineActivityInfo;
|
|
37
43
|
/**
|
|
38
44
|
* Process execution ID
|
|
39
45
|
*/
|
|
@@ -55,7 +61,11 @@ export interface OrchestrationExecutionActivityPaginated {
|
|
|
55
61
|
/**
|
|
56
62
|
* Current status of the activity
|
|
57
63
|
*/
|
|
58
|
-
status:
|
|
64
|
+
status: OrchestrationStatus;
|
|
65
|
+
/**
|
|
66
|
+
* Subprocess execution information for activities
|
|
67
|
+
*/
|
|
68
|
+
subprocess?: SubprocessActivityInfo;
|
|
59
69
|
/**
|
|
60
70
|
* Trigger information for the activity
|
|
61
71
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ActivityCounts } from '../schemas/ActivityCounts';
|
|
2
2
|
import type { FailureInfo } from '../schemas/FailureInfo';
|
|
3
|
-
import type {
|
|
3
|
+
import type { OrchestrationStatus } from '../schemas/OrchestrationStatus';
|
|
4
4
|
/**
|
|
5
5
|
* Represents a phase in the orchestration execution
|
|
6
6
|
*/
|
|
@@ -48,7 +48,7 @@ export interface OrchestrationExecutionPhase {
|
|
|
48
48
|
* @format int64
|
|
49
49
|
*/
|
|
50
50
|
start_ts?: number;
|
|
51
|
-
status:
|
|
51
|
+
status: OrchestrationStatus;
|
|
52
52
|
/**
|
|
53
53
|
* Total number of activities in the phase
|
|
54
54
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Status of orchestration execution activities
|
|
3
3
|
*/
|
|
4
|
-
export type OrchestrationStatus = 'ABORTED' | 'FAILED' | 'IGNORED' | 'ON_HOLD' | 'OUTPUT_WAITING' | 'RETRIED' | 'RUNNING' | 'SCHEDULED' | 'SKIPPED' | 'SUCCEEDED';
|
|
4
|
+
export type OrchestrationStatus = 'ABORTED' | 'FAILED' | 'IGNORED' | 'ON_HOLD' | 'OUTPUT_WAITING' | 'QUEUED' | 'RETRIED' | 'RUNNING' | 'SCHEDULED' | 'SKIPPED' | 'SUCCEEDED';
|