fix(bulk-upload): correct stale DocumentBatchMetadataDTO type in api.ts

Generated type had tags?: string but Java DTO declares List<String> tagNames.
Corrected to tagNames?: string[] to match the backend contract.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-04-25 09:10:29 +02:00
parent 60f1db1f99
commit 262c792654

View File

@@ -1695,7 +1695,7 @@ export interface components {
/** Format: date */
documentDate?: string;
location?: string;
tags?: string;
tagNames?: string[];
metadataComplete?: boolean;
};
QuickUploadResult: {