@harnessio/react-rmg-service-client 0.26.0 → 0.27.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.
@@ -182,6 +182,7 @@ export type { Pageable } from './schemas/Pageable';
182
182
  export type { PageableSort } from './schemas/PageableSort';
183
183
  export type { PhaseInputYaml } from './schemas/PhaseInputYaml';
184
184
  export type { PhaseReleaseInputYaml } from './schemas/PhaseReleaseInputYaml';
185
+ export type { PipelineActivityInfo } from './schemas/PipelineActivityInfo';
185
186
  export type { ProcessInputSummaryDto } from './schemas/ProcessInputSummaryDto';
186
187
  export type { ReleaseActivity } from './schemas/ReleaseActivity';
187
188
  export type { ReleaseApprovalDto } from './schemas/ReleaseApprovalDto';
@@ -1,3 +1,4 @@
1
+ import type { PipelineActivityInfo } from '../schemas/PipelineActivityInfo';
1
2
  import type { Status } from '../schemas/Status';
2
3
  /**
3
4
  * Represents an activity in the orchestration execution
@@ -28,6 +29,7 @@ export interface OrchestrationExecutionActivity {
28
29
  * Name of the activity
29
30
  */
30
31
  name: string;
32
+ pipeline?: PipelineActivityInfo;
31
33
  /**
32
34
  * Start timestamp in milliseconds
33
35
  * @format int64
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Pipeline execution information for activities
3
+ */
4
+ export interface PipelineActivityInfo {
5
+ /**
6
+ * ID of the pipeline execution
7
+ */
8
+ executionId: string;
9
+ }
@@ -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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-rmg-service-client",
3
- "version": "0.26.0",
3
+ "version": "0.27.0",
4
4
  "description": "Harness Release Management Service APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",