@harnessio/react-rmg-service-client 0.49.0 → 0.50.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,4 +1,5 @@
|
|
|
1
1
|
import type { ActivityExecutionInputDto } from '../schemas/ActivityExecutionInputDto';
|
|
2
|
+
import type { ExecutionOutputDto } from '../schemas/ExecutionOutputDto';
|
|
2
3
|
import type { SubprocessInfo } from '../schemas/SubprocessInfo';
|
|
3
4
|
export interface OnHoldActivityActionRequest {
|
|
4
5
|
/**
|
|
@@ -9,6 +10,10 @@ export interface OnHoldActivityActionRequest {
|
|
|
9
10
|
* Optional list of input values for retrying the on-hold activity. Only valid when action is 'retry'.
|
|
10
11
|
*/
|
|
11
12
|
inputs?: ActivityExecutionInputDto[];
|
|
13
|
+
/**
|
|
14
|
+
* Optional list of output values for ignoring the on-hold activity. Only valid when action is 'ignore'.
|
|
15
|
+
*/
|
|
16
|
+
outputs?: ExecutionOutputDto[];
|
|
12
17
|
/**
|
|
13
18
|
* Specifies the retry mechanism. If present, action must be 'retry'. Currently only SUBPROCESS is supported.
|
|
14
19
|
*/
|