@epilot/automation-client 2.14.3 → 2.14.5
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/openapi.d.ts +2 -2
- package/dist/openapi.json +3 -2
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ declare namespace Components {
|
|
|
47
47
|
/**
|
|
48
48
|
* The id of the configured scheduler which will be added on automation triggered
|
|
49
49
|
*/
|
|
50
|
-
|
|
50
|
+
scheduleApiId?: string;
|
|
51
51
|
numberOfUnits?: number;
|
|
52
52
|
timePeriod?: "minutes" | "hours" | "days" | "weeks" | "months";
|
|
53
53
|
timeRelation?: "after" | "before";
|
|
@@ -1988,7 +1988,7 @@ declare namespace Components {
|
|
|
1988
1988
|
/**
|
|
1989
1989
|
* different behaviors for retrying failed execution actions.
|
|
1990
1990
|
*/
|
|
1991
|
-
export type RetryStrategy = "RETRY_AND_RESUME" | "RETRY_AND_STOP";
|
|
1991
|
+
export type RetryStrategy = "RETRY_AND_RESUME" | "RETRY_AND_STOP" | "RETRY_ALL_ACTIONS_IF_PARENT_CONDITION";
|
|
1992
1992
|
export interface SearchAutomationsResp {
|
|
1993
1993
|
total: number;
|
|
1994
1994
|
results: AutomationFlow[];
|
package/dist/openapi.json
CHANGED
|
@@ -857,7 +857,8 @@
|
|
|
857
857
|
"description": "different behaviors for retrying failed execution actions.",
|
|
858
858
|
"enum": [
|
|
859
859
|
"RETRY_AND_RESUME",
|
|
860
|
-
"RETRY_AND_STOP"
|
|
860
|
+
"RETRY_AND_STOP",
|
|
861
|
+
"RETRY_ALL_ACTIONS_IF_PARENT_CONDITION"
|
|
861
862
|
]
|
|
862
863
|
},
|
|
863
864
|
"AutomationAction": {
|
|
@@ -2117,7 +2118,7 @@
|
|
|
2117
2118
|
"type": "string",
|
|
2118
2119
|
"description": "Schedule Id"
|
|
2119
2120
|
},
|
|
2120
|
-
"
|
|
2121
|
+
"scheduleApiId": {
|
|
2121
2122
|
"type": "string",
|
|
2122
2123
|
"description": "The id of the configured scheduler which will be added on automation triggered"
|
|
2123
2124
|
},
|