@harnessio/react-rmg-service-client 0.44.0 → 0.45.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.
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
* Pipeline configuration for orchestration activities
|
|
3
3
|
*/
|
|
4
4
|
export interface OrchestrationActivityPipelineYaml {
|
|
5
|
+
/**
|
|
6
|
+
* Optional key-value map for expression resolution
|
|
7
|
+
*/
|
|
8
|
+
expression?: {
|
|
9
|
+
[key: string]: string;
|
|
10
|
+
};
|
|
5
11
|
/**
|
|
6
12
|
* Pipeline input set configuration
|
|
7
13
|
*/
|
|
@@ -12,4 +18,8 @@ export interface OrchestrationActivityPipelineYaml {
|
|
|
12
18
|
* Pipeline location in format orgIdentifier/projectIdentifier/pipelineIdentifier
|
|
13
19
|
*/
|
|
14
20
|
pipeline: string;
|
|
21
|
+
/**
|
|
22
|
+
* Optional list of stage identifiers to execute (supports expressions)
|
|
23
|
+
*/
|
|
24
|
+
stages?: string[];
|
|
15
25
|
}
|