feat: dedicated /documents search & browse page #282

Merged
marcel merged 50 commits from feat/issue-281-documents-page into main 2026-04-20 09:11:08 +02:00
Showing only changes of commit 43f19ebe87 - Show all commits

View File

@@ -1754,6 +1754,11 @@ export interface components {
/** Format: int64 */ /** Format: int64 */
transcriptionCount: number; transcriptionCount: number;
}; };
ActivityActorDTO: {
initials: string;
color: string;
name?: string;
};
TranscriptionQueueItemDTO: { TranscriptionQueueItemDTO: {
/** Format: uuid */ /** Format: uuid */
id: string; id: string;
@@ -1766,6 +1771,8 @@ export interface components {
textedBlockCount: number; textedBlockCount: number;
/** Format: int32 */ /** Format: int32 */
reviewedBlockCount: number; reviewedBlockCount: number;
contributors: components["schemas"]["ActivityActorDTO"][];
hasMoreContributors: boolean;
}; };
TagTreeNodeDTO: { TagTreeNodeDTO: {
/** Format: uuid */ /** Format: uuid */
@@ -1968,11 +1975,6 @@ export interface components {
summarySnippet?: string; summarySnippet?: string;
summaryOffsets: components["schemas"]["MatchOffset"][]; summaryOffsets: components["schemas"]["MatchOffset"][];
}; };
ActivityActorDTO: {
initials: string;
color: string;
name?: string;
};
DashboardResumeDTO: { DashboardResumeDTO: {
/** Format: uuid */ /** Format: uuid */
documentId: string; documentId: string;