From ca7dc221df24a7f2f447e49c9ef7806a2804a138 Mon Sep 17 00:00:00 2001 From: anvyle Date: Fri, 10 Apr 2026 21:57:33 +0200 Subject: [PATCH] chore(frontend): regenerate openapi.json with TaskDecompositionResponse.created_at The created_at field was added to TaskDecompositionResponse a few commits back but openapi.json was never regenerated, so the check-api-types CI job (which re-exports the schema and asserts no diff) was failing. Re-exporting via poetry run export-api-schema and prettier. Co-Authored-By: Claude Sonnet 4.6 --- autogpt_platform/frontend/src/app/api/openapi.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/autogpt_platform/frontend/src/app/api/openapi.json b/autogpt_platform/frontend/src/app/api/openapi.json index 6ef71a727a..13ac3a86bf 100644 --- a/autogpt_platform/frontend/src/app/api/openapi.json +++ b/autogpt_platform/frontend/src/app/api/openapi.json @@ -14097,6 +14097,12 @@ "title": "Auto Approve Seconds", "description": "Seconds the client should count down before auto-approving. Kept in sync with the server-side fallback timer, which runs a grace period longer to absorb network latency.", "default": 60 + }, + "created_at": { + "type": "string", + "format": "date-time", + "title": "Created At", + "description": "UTC timestamp when the tool returned. The client uses this with auto_approve_seconds to compute the correct remaining countdown when the user reopens the session — so the timer reflects real elapsed time instead of restarting from zero." } }, "type": "object",