chore(api): regenerate TypeScript types after GET /api/geschichten annotation
All checks were successful
CI / Unit & Component Tests (pull_request) Successful in 4m9s
CI / OCR Service Tests (pull_request) Successful in 23s
CI / Backend Unit Tests (pull_request) Successful in 4m48s
CI / fail2ban Regex (pull_request) Successful in 44s
CI / Semgrep Security Scan (pull_request) Successful in 23s
CI / Compose Bucket Idempotency (pull_request) Successful in 1m7s

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 <noreply@anthropic.com>
This commit was merged in pull request #810.
This commit is contained in:
Marcel
2026-06-12 07:48:28 +02:00
parent 56935b4331
commit 09df6862c0

View File

@@ -3712,9 +3712,13 @@ export interface operations {
list: { list: {
parameters: { parameters: {
query?: { 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"; status?: "DRAFT" | "PUBLISHED";
/** @description AND-filter: story must include all supplied person IDs. */
personId?: string[]; personId?: string[];
/** @description Filter to stories containing this document. */
documentId?: string; documentId?: string;
/** @description Maximum results to return. Values ≤ 0 default to 50. Clamped at 200. */
limit?: number; limit?: number;
}; };
header?: never; header?: never;