@harnessio/react-rmg-service-client 0.19.0 → 0.20.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.
|
@@ -23,9 +23,9 @@ export type GetOrchestrationExecutionPhasesOkResponse = ResponseWithPagination<{
|
|
|
23
23
|
*/
|
|
24
24
|
release_id: string;
|
|
25
25
|
/**
|
|
26
|
-
* Total number of running
|
|
26
|
+
* Total number of running phases
|
|
27
27
|
*/
|
|
28
|
-
|
|
28
|
+
total_running_phases: number;
|
|
29
29
|
}>;
|
|
30
30
|
export type GetOrchestrationExecutionPhasesErrorResponse = ErrorResponseResponse;
|
|
31
31
|
export interface GetOrchestrationExecutionPhasesProps extends GetOrchestrationExecutionPhasesQueryPathParams, Omit<FetcherOptions<GetOrchestrationExecutionPhasesQueryQueryParams, unknown, GetOrchestrationExecutionPhasesQueryHeaderParams>, 'url'> {
|
|
@@ -16,14 +16,6 @@ export interface OrchestrationExecutionActivity {
|
|
|
16
16
|
* Name of the activity
|
|
17
17
|
*/
|
|
18
18
|
name: string;
|
|
19
|
-
/**
|
|
20
|
-
* Identifier of the phase
|
|
21
|
-
*/
|
|
22
|
-
phase_identifier: string;
|
|
23
|
-
/**
|
|
24
|
-
* Name of the phase
|
|
25
|
-
*/
|
|
26
|
-
phase_name: string;
|
|
27
19
|
/**
|
|
28
20
|
* Start timestamp in milliseconds
|
|
29
21
|
* @format int64
|
|
@@ -3,6 +3,10 @@ import type { Status } from '../schemas/Status';
|
|
|
3
3
|
* Represents a phase in the orchestration execution
|
|
4
4
|
*/
|
|
5
5
|
export interface OrchestrationExecutionPhase {
|
|
6
|
+
/**
|
|
7
|
+
* Number of completed activities in the phase
|
|
8
|
+
*/
|
|
9
|
+
completed_activities: number;
|
|
6
10
|
/**
|
|
7
11
|
* List of phase identifiers this phase depends on
|
|
8
12
|
*/
|
|
@@ -28,10 +32,6 @@ export interface OrchestrationExecutionPhase {
|
|
|
28
32
|
* ID of the phase execution
|
|
29
33
|
*/
|
|
30
34
|
phase_execution_id: string;
|
|
31
|
-
/**
|
|
32
|
-
* Number of currently running activities in the phase
|
|
33
|
-
*/
|
|
34
|
-
running_activities: number;
|
|
35
35
|
/**
|
|
36
36
|
* Start timestamp in milliseconds
|
|
37
37
|
* @format int64
|