chore(automation-client): add searchExecutions with cursor pagination - #423
Closed
Seejey01 wants to merge 1 commit into
Closed
chore(automation-client): add searchExecutions with cursor pagination#423Seejey01 wants to merge 1 commit into
Seejey01 wants to merge 1 commit into
Conversation
Update the automation client spec with the new POST /v1/automation/executions:search endpoint (cursor-based pagination of an entity's executions) and bump to 2.34.0. Co-authored-by: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updates
@epilot/automation-clientwith the newPOST /v1/automation/executions:searchendpoint (operationIdsearchExecutions) added in automation-api!368 — cursor-based pagination for an entity's automation executions.src/openapi.json/src/openapi-runtime.jsonregenerated vianpm run openapi <local spec>(the API change is not deployed to prod yet, hence the local spec)src/openapi.d.tsregenerated vianpm run typegen; build verifiedSearchExecutionsReq(entity_id,include_flows,size1–100 default 25,cursor),SearchExecutionsResp(total,results,next_cursor?)Context
GET /v1/automation/executionsreturns an entity's entire execution history in one response; large histories exceeded Lambda's 6MB response limit (prod Datadog alert 2026-08-04). The new dedicated endpoint paginates instead; the legacy endpoint is unchanged.Consumers
epilot360-automation-capability (MR!122) will consume
client.searchExecutions(...)from this release.Generated by Claude Code