From 66154d58b30680108f8bb9c75fc162171272c8b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vlad=20Cri=C8=99an?= Date: Mon, 11 Nov 2024 16:23:54 +0200 Subject: [PATCH] chore(automation-client): update client with new spec + increase version --- clients/automation-client/package.json | 2 +- clients/automation-client/src/openapi.d.ts | 4 ++++ clients/automation-client/src/openapi.json | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/clients/automation-client/package.json b/clients/automation-client/package.json index 9e79e48..35ea5c1 100644 --- a/clients/automation-client/package.json +++ b/clients/automation-client/package.json @@ -1,6 +1,6 @@ { "name": "@epilot/automation-client", - "version": "2.14.6", + "version": "2.14.7", "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 e32d129..790ab30 100644 --- a/clients/automation-client/src/openapi.d.ts +++ b/clients/automation-client/src/openapi.d.ts @@ -1983,6 +1983,10 @@ declare namespace Components { */ export type ResumeToken = string; export interface RetryReq { + /** + * The condition id to retry when retry strategy is RETRY_ALL_PARENT_CONDITION_ACTIONS + */ + condition_id?: string; retry_strategy?: /* different behaviors for retrying failed execution actions. */ RetryStrategy; } /** diff --git a/clients/automation-client/src/openapi.json b/clients/automation-client/src/openapi.json index 317e51c..514b798 100644 --- a/clients/automation-client/src/openapi.json +++ b/clients/automation-client/src/openapi.json @@ -3234,6 +3234,10 @@ "RetryReq": { "type": "object", "properties": { + "condition_id": { + "type": "string", + "description": "The condition id to retry when retry strategy is RETRY_ALL_PARENT_CONDITION_ACTIONS" + }, "retry_strategy": { "$ref": "#/components/schemas/RetryStrategy" }