feat(admin): OCR admin pages — overview & model detail #265

Merged
marcel merged 53 commits from feat/issue-264-ocr-admin-pages into main 2026-04-18 12:38:42 +02:00
2 changed files with 1106 additions and 3 deletions
Showing only changes of commit 88f3f3e7eb - Show all commits

File diff suppressed because it is too large Load Diff

View File

@@ -1756,8 +1756,6 @@ export interface components {
/** Format: int64 */ /** Format: int64 */
totalElements?: number; 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"][];
@@ -1766,6 +1764,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: {
@@ -3605,7 +3605,9 @@ export interface operations {
[name: string]: unknown; [name: string]: unknown;
}; };
content: { content: {
"*/*": components["schemas"]["TrainingInfoResponse"]; "*/*": {
[key: string]: unknown;
};
}; };
}; };
}; };