chore(api): update generated types — add UPDATED_AT sort and persons size/sort params

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-05-07 18:39:47 +02:00
committed by marcel
parent 5b645f6374
commit 6a46a1e3eb

View File

@@ -3004,6 +3004,8 @@ export interface operations {
parameters: {
query?: {
q?: string;
size?: number;
sort?: string;
};
header?: never;
path?: never;
@@ -4832,7 +4834,7 @@ export interface operations {
/** @description Filter by document status */
status?: "PLACEHOLDER" | "UPLOADED" | "TRANSCRIBED" | "REVIEWED" | "ARCHIVED";
/** @description Sort field */
sort?: "DATE" | "TITLE" | "SENDER" | "RECEIVER" | "UPLOAD_DATE" | "RELEVANCE";
sort?: "DATE" | "TITLE" | "SENDER" | "RECEIVER" | "UPLOAD_DATE" | "UPDATED_AT" | "RELEVANCE";
/** @description Sort direction: ASC or DESC */
dir?: string;
/** @description Tag operator: AND (default) or OR */