@epilot/automation-client 2.14.5 → 2.14.7

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 CHANGED
@@ -1983,12 +1983,16 @@ declare namespace Components {
1983
1983
  */
1984
1984
  export type ResumeToken = string;
1985
1985
  export interface RetryReq {
1986
+ /**
1987
+ * The condition id to retry when retry strategy is RETRY_ALL_PARENT_CONDITION_ACTIONS
1988
+ */
1989
+ condition_id?: string;
1986
1990
  retry_strategy?: /* different behaviors for retrying failed execution actions. */ RetryStrategy;
1987
1991
  }
1988
1992
  /**
1989
1993
  * different behaviors for retrying failed execution actions.
1990
1994
  */
1991
- export type RetryStrategy = "RETRY_AND_RESUME" | "RETRY_AND_STOP" | "RETRY_ALL_ACTIONS_IF_PARENT_CONDITION";
1995
+ export type RetryStrategy = "RETRY_AND_RESUME" | "RETRY_AND_STOP" | "RETRY_ALL_PARENT_CONDITION_ACTIONS";
1992
1996
  export interface SearchAutomationsResp {
1993
1997
  total: number;
1994
1998
  results: AutomationFlow[];
package/dist/openapi.json CHANGED
@@ -858,7 +858,7 @@
858
858
  "enum": [
859
859
  "RETRY_AND_RESUME",
860
860
  "RETRY_AND_STOP",
861
- "RETRY_ALL_ACTIONS_IF_PARENT_CONDITION"
861
+ "RETRY_ALL_PARENT_CONDITION_ACTIONS"
862
862
  ]
863
863
  },
864
864
  "AutomationAction": {
@@ -3234,6 +3234,10 @@
3234
3234
  "RetryReq": {
3235
3235
  "type": "object",
3236
3236
  "properties": {
3237
+ "condition_id": {
3238
+ "type": "string",
3239
+ "description": "The condition id to retry when retry strategy is RETRY_ALL_PARENT_CONDITION_ACTIONS"
3240
+ },
3237
3241
  "retry_strategy": {
3238
3242
  "$ref": "#/components/schemas/RetryStrategy"
3239
3243
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.14.5",
3
+ "version": "2.14.7",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",