docs(geschichte): annotate GET /api/geschichten query parameters in OpenAPI spec (#794) #810

Merged
marcel merged 4 commits from feat/issue-794-geschichte-openapi-params into feat/issue-750-lesereisen-data-model 2026-06-12 08:44:04 +02:00
Showing only changes of commit 09df6862c0 - Show all commits

View File

@@ -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;