From 64f57b732b7699e5497eb41e584a7c06591a63cd Mon Sep 17 00:00:00 2001 From: stroblme Date: Mon, 17 Aug 2026 11:35:03 +0200 Subject: [PATCH] Regenerate the SDK for the events time window Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01XC2jX6Hdj7pxGGKzBTrbqB --- frontend/src/client/sdk.gen.ts | 7 +++++++ frontend/src/client/types.gen.ts | 2 ++ 2 files changed, 9 insertions(+) diff --git a/frontend/src/client/sdk.gen.ts b/frontend/src/client/sdk.gen.ts index 18c95e9..bc65f32 100644 --- a/frontend/src/client/sdk.gen.ts +++ b/frontend/src/client/sdk.gen.ts @@ -1179,9 +1179,14 @@ export class ObservabilityService { /** * Read Events * What went wrong, or who changed what. Newest first. + * + * ``since`` is inclusive and ``until`` exclusive, the same window ``/runs`` + * takes, so a list can cover the span the charts beside it are drawn from. * @param data The data for the request. * @param data.kind * @param data.flow + * @param data.since + * @param data.until * @param data.limit * @returns EventRow Successful Response * @throws ApiError @@ -1193,6 +1198,8 @@ export class ObservabilityService { query: { kind: data.kind, flow: data.flow, + since: data.since, + until: data.until, limit: data.limit }, errors: { diff --git a/frontend/src/client/types.gen.ts b/frontend/src/client/types.gen.ts index c7d6b3b..26d1b76 100644 --- a/frontend/src/client/types.gen.ts +++ b/frontend/src/client/types.gen.ts @@ -1083,6 +1083,8 @@ export type ObservabilityReadEventsData = { flow?: (string | null); kind?: 'failure' | 'audit'; limit?: number; + since?: (string | null); + until?: (string | null); }; export type ObservabilityReadEventsResponse = (Array);