Add classified evidence presentations

This commit is contained in:
2026-08-22 19:28:06 +02:00
parent dc0147aebc
commit 10dcd567c6
18 changed files with 414 additions and 45 deletions
+3
View File
@@ -2,6 +2,7 @@ export type ExhibitType = 'folder' | 'document' | 'note' | 'event' | 'party' | '
export type PartyKind = 'person' | 'organization'
export type OrganizationKind = 'business' | 'public_body' | 'association' | 'informal_group' | 'other'
export type SourceFileType = 'image' | 'pdf' | 'web_capture' | 'email' | 'article' | 'filing' | 'price_list' | 'text' | 'file'
export type DocumentCaptureKind = 'unclassified' | 'photo' | 'scene' | 'clipping' | 'full_page'
export interface CanvasPlacement {
x: number
@@ -49,6 +50,8 @@ export interface DocumentExhibit extends ExhibitBase {
mimeType?: string
fileSize?: number
fileType: SourceFileType
/** Evidentiary form on the board; independent of MIME/file type. */
captureKind: DocumentCaptureKind
metadata: Record<string, string>
}