feat(frontend): add thumbnailKey and thumbnailGeneratedAt to Document type

Mirrors the backend Document entity's new optional fields. Both are
optional (no @Schema requiredMode on the backend side), so legacy
documents without thumbnails stay valid.

Refs #307

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-04-22 22:29:39 +02:00
parent 547db2fd02
commit 75ae4b6a02

View File

@@ -1383,6 +1383,9 @@ export interface components {
filePath?: string; filePath?: string;
contentType?: string; contentType?: string;
fileHash?: string; fileHash?: string;
thumbnailKey?: string;
/** Format: date-time */
thumbnailGeneratedAt?: string;
originalFilename: string; originalFilename: string;
/** @enum {string} */ /** @enum {string} */
status: "PLACEHOLDER" | "UPLOADED" | "TRANSCRIBED" | "REVIEWED" | "ARCHIVED"; status: "PLACEHOLDER" | "UPLOADED" | "TRANSCRIBED" | "REVIEWED" | "ARCHIVED";