@harnessio/react-rmg-service-client 0.41.0 → 0.42.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.
|
@@ -1,6 +1,13 @@
|
|
|
1
|
+
import type { CreatedByDto } from '../schemas/CreatedByDto';
|
|
1
2
|
import type { LastUpdatedByDto } from '../schemas/LastUpdatedByDto';
|
|
2
3
|
import type { CreateOrchestrationActivityRequestType } from '../schemas/CreateOrchestrationActivityRequestType';
|
|
3
4
|
export interface OrchestrationActivitySummaryDto {
|
|
5
|
+
/**
|
|
6
|
+
* Created timestamp in milliseconds
|
|
7
|
+
* @format int64
|
|
8
|
+
*/
|
|
9
|
+
createdAt: number;
|
|
10
|
+
createdBy: CreatedByDto;
|
|
4
11
|
/**
|
|
5
12
|
* Description of the orchestration activity
|
|
6
13
|
*/
|
|
@@ -36,6 +36,10 @@ export interface OrchestrationExecutionActivityPaginated {
|
|
|
36
36
|
* Identifier of the phase this activity belongs to
|
|
37
37
|
*/
|
|
38
38
|
phaseIdentifier: string;
|
|
39
|
+
/**
|
|
40
|
+
* Name of the phase this activity belongs to
|
|
41
|
+
*/
|
|
42
|
+
phaseName: string;
|
|
39
43
|
/**
|
|
40
44
|
* Pipeline execution information for activities
|
|
41
45
|
*/
|
|
@@ -53,6 +57,10 @@ export interface OrchestrationExecutionActivityPaginated {
|
|
|
53
57
|
* @format int32
|
|
54
58
|
*/
|
|
55
59
|
retryIndex?: number | null;
|
|
60
|
+
/**
|
|
61
|
+
* Root release ID for this activity (used to group activities from child releases)
|
|
62
|
+
*/
|
|
63
|
+
rootReleaseId: string;
|
|
56
64
|
/**
|
|
57
65
|
* Start timestamp in milliseconds
|
|
58
66
|
* @format int64
|
|
@@ -1,9 +1,16 @@
|
|
|
1
|
+
import type { CreatedByDto } from '../schemas/CreatedByDto';
|
|
1
2
|
import type { LastUpdatedByDto } from '../schemas/LastUpdatedByDto';
|
|
2
3
|
export interface OrchestrationProcessDto {
|
|
3
4
|
/**
|
|
4
5
|
* Number of releases attached to the process
|
|
5
6
|
*/
|
|
6
7
|
attachedReleaseGroupCount: number;
|
|
8
|
+
/**
|
|
9
|
+
* Created timestamp in milliseconds
|
|
10
|
+
* @format int64
|
|
11
|
+
*/
|
|
12
|
+
createdAt: number;
|
|
13
|
+
createdBy: CreatedByDto;
|
|
7
14
|
description?: string;
|
|
8
15
|
identifier: string;
|
|
9
16
|
lastUpdatedAt: number;
|