chore: regenerate API types for per-sender model additions

OcrTrainingRun now includes personId (uuid, optional) and QUEUED status.
TrainingInfoResponse includes runs array with personId fields.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-04-17 18:10:04 +02:00
parent 64d27d6d61
commit b5e1a8ac2f

View File

@@ -1374,7 +1374,7 @@ export interface components {
}; };
MergeTagDTO: { MergeTagDTO: {
/** Format: uuid */ /** Format: uuid */
targetId?: string; targetId: string;
}; };
PersonNameAliasDTO: { PersonNameAliasDTO: {
lastName: string; lastName: string;
@@ -1398,7 +1398,7 @@ export interface components {
/** Format: uuid */ /** Format: uuid */
id: string; id: string;
/** @enum {string} */ /** @enum {string} */
status: "RUNNING" | "DONE" | "FAILED"; status: "QUEUED" | "RUNNING" | "DONE" | "FAILED";
/** Format: int32 */ /** Format: int32 */
blockCount: number; blockCount: number;
/** Format: int32 */ /** Format: int32 */
@@ -1415,6 +1415,8 @@ export interface components {
errorMessage?: string; errorMessage?: string;
/** Format: uuid */ /** Format: uuid */
triggeredBy?: string; triggeredBy?: string;
/** Format: uuid */
personId?: string;
/** Format: date-time */ /** Format: date-time */
createdAt: string; createdAt: string;
/** Format: date-time */ /** Format: date-time */
@@ -1596,11 +1598,11 @@ export interface components {
}; };
TagTreeNodeDTO: { TagTreeNodeDTO: {
/** Format: uuid */ /** Format: uuid */
id?: string; id: string;
name?: string; name: string;
color?: string; color?: string;
/** Format: int32 */ /** Format: int32 */
documentCount?: number; documentCount: number;
children?: components["schemas"]["TagTreeNodeDTO"][]; children?: components["schemas"]["TagTreeNodeDTO"][];
/** /**
* Format: uuid * Format: uuid
@@ -1619,7 +1621,6 @@ export interface components {
/** Format: uuid */ /** Format: uuid */
id?: string; id?: string;
displayName?: string; displayName?: string;
personType?: string;
firstName?: string; firstName?: string;
lastName?: string; lastName?: string;
/** Format: int64 */ /** Format: int64 */
@@ -1630,19 +1631,7 @@ export interface components {
deathYear?: number; deathYear?: number;
alias?: string; alias?: string;
notes?: string; notes?: string;
}; personType?: string;
TrainingInfoResponse: {
/** Format: int32 */
availableBlocks?: number;
/** Format: int32 */
totalOcrBlocks?: number;
/** Format: int32 */
availableDocuments?: number;
/** Format: int32 */
availableSegBlocks?: number;
ocrServiceAvailable?: boolean;
lastRun?: components["schemas"]["OcrTrainingRun"];
runs?: components["schemas"]["OcrTrainingRun"][];
}; };
StreamingResponseBody: unknown; StreamingResponseBody: unknown;
OcrJob: { OcrJob: {
@@ -1671,13 +1660,11 @@ export interface components {
timeout?: number; timeout?: number;
}; };
PageNotificationDTO: { PageNotificationDTO: {
/** Format: int64 */
totalElements?: number;
/** Format: int32 */ /** Format: int32 */
totalPages?: number; totalPages?: number;
/** Format: int64 */
totalElements?: number;
pageable?: components["schemas"]["PageableObject"]; pageable?: components["schemas"]["PageableObject"];
first?: boolean;
last?: boolean;
/** Format: int32 */ /** Format: int32 */
size?: number; size?: number;
content?: components["schemas"]["NotificationDTO"][]; content?: components["schemas"]["NotificationDTO"][];
@@ -1686,6 +1673,8 @@ export interface components {
sort?: components["schemas"]["SortObject"]; sort?: components["schemas"]["SortObject"];
/** Format: int32 */ /** Format: int32 */
numberOfElements?: number; numberOfElements?: number;
first?: boolean;
last?: boolean;
empty?: boolean; empty?: boolean;
}; };
PageableObject: { PageableObject: {
@@ -3501,7 +3490,9 @@ export interface operations {
[name: string]: unknown; [name: string]: unknown;
}; };
content: { content: {
"*/*": components["schemas"]["TrainingInfoResponse"]; "*/*": {
[key: string]: unknown;
};
}; };
}; };
}; };