From a0deb78424087b9ab44dd6c653502522d6b1d903 Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Fri, 22 May 2026 15:48:03 -0700 Subject: [PATCH] fix(openapi): resolve getHistory operationId collision Spectral flagged: both /api/history (OSS local) and /api/history_v2 (cloud) had operationId 'getHistory' after the rename. Rename vendor's /api/history to 'getPromptHistory' to disambiguate. Cloud's runtime denies /api/history at the overlay level so combined codegen is unaffected by this change. --- openapi.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openapi.yaml b/openapi.yaml index 172f92bfb..5ff4f141d 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -356,7 +356,7 @@ paths: # --------------------------------------------------------------------------- /api/history: get: - operationId: getHistory + operationId: getPromptHistory tags: [history] summary: Get execution history deprecated: true