diff --git a/clients/automation-client/package.json b/clients/automation-client/package.json index 06aac4f..9e2853f 100644 --- a/clients/automation-client/package.json +++ b/clients/automation-client/package.json @@ -1,6 +1,6 @@ { "name": "@epilot/automation-client", - "version": "2.14.4", + "version": "2.14.5", "description": "Client library for epilot automation API", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/clients/automation-client/src/openapi.d.ts b/clients/automation-client/src/openapi.d.ts index 6491a40..d1ed0ca 100644 --- a/clients/automation-client/src/openapi.d.ts +++ b/clients/automation-client/src/openapi.d.ts @@ -1988,7 +1988,7 @@ declare namespace Components { /** * different behaviors for retrying failed execution actions. */ - export type RetryStrategy = "RETRY_AND_RESUME" | "RETRY_AND_STOP"; + export type RetryStrategy = "RETRY_AND_RESUME" | "RETRY_AND_STOP" | "RETRY_ALL_ACTIONS_IF_PARENT_CONDITION"; export interface SearchAutomationsResp { total: number; results: AutomationFlow[]; diff --git a/clients/automation-client/src/openapi.json b/clients/automation-client/src/openapi.json index f9a2b4e..ef89e47 100644 --- a/clients/automation-client/src/openapi.json +++ b/clients/automation-client/src/openapi.json @@ -857,7 +857,8 @@ "description": "different behaviors for retrying failed execution actions.", "enum": [ "RETRY_AND_RESUME", - "RETRY_AND_STOP" + "RETRY_AND_STOP", + "RETRY_ALL_ACTIONS_IF_PARENT_CONDITION" ] }, "AutomationAction": {