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
parent 101c351d14
commit cb39a84cce

View File

@@ -2973,6 +2973,8 @@ export interface operations {
parameters: {
query?: {
q?: string;
size?: number;
sort?: string;
};
header?: never;
path?: never;
@@ -4801,7 +4803,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 */