Skip to content

Commit

Permalink
chore(automation-client): update client with new spec + increase version
Browse files Browse the repository at this point in the history
  • Loading branch information
vladcrishan committed Nov 11, 2024
1 parent 7f9e0ec commit 66154d5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion clients/automation-client/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 4 additions & 0 deletions clients/automation-client/src/openapi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
/**
Expand Down
4 changes: 4 additions & 0 deletions clients/automation-client/src/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit 66154d5

Please sign in to comment.