From 09df6862c0b1b7c302b2dec7324905607919517a Mon Sep 17 00:00:00 2001 From: Marcel Date: Fri, 12 Jun 2026 07:48:28 +0200 Subject: [PATCH] chore(api): regenerate TypeScript types after GET /api/geschichten annotation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds @description JSDoc strings to status, personId, documentId and limit query params in api.ts. Types (shapes) are unchanged — only description strings added (refs #794). Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/lib/generated/api.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/lib/generated/api.ts b/frontend/src/lib/generated/api.ts index 5b49d7d7..7c33f707 100644 --- a/frontend/src/lib/generated/api.ts +++ b/frontend/src/lib/generated/api.ts @@ -3712,9 +3712,13 @@ export interface operations { list: { parameters: { query?: { + /** @description Filter by status. Callers without BLOG_WRITE always receive PUBLISHED results regardless of the value passed. Callers with BLOG_WRITE requesting DRAFT receive only their own unpublished stories. */ status?: "DRAFT" | "PUBLISHED"; + /** @description AND-filter: story must include all supplied person IDs. */ personId?: string[]; + /** @description Filter to stories containing this document. */ documentId?: string; + /** @description Maximum results to return. Values ≤ 0 default to 50. Clamped at 200. */ limit?: number; }; header?: never;