@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.
- package/dist/rmg-service/src/services/index.d.ts +1 -0
- package/dist/rmg-service/src/services/schemas/OrchestrationExecutionActivity.d.ts +2 -0
- package/dist/rmg-service/src/services/schemas/PipelineActivityInfo.d.ts +9 -0
- package/dist/rmg-service/src/services/schemas/PipelineActivityInfo.js +4 -0
- package/package.json +1 -1
|
@@ -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
|