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