Remove document link and download URL management from frontend components

This commit is contained in:
2025-12-04 00:23:27 +01:00
parent 4b02d1c7d5
commit 9f88823315
4 changed files with 3 additions and 127 deletions
@@ -51,8 +51,6 @@ interface DocumentsPanelProps extends DocumentsPanelInnerProps {
selectionValue: WorkspaceSelectionValue;
}
export type DocumentLinkLike = { url?: string | null; mimeType?: string | null };
export interface DocumentsViewProps {
entries: DocumentsListEntry[];
draggingDocumentIdsSet?: Set<Identifier> | null;
@@ -85,7 +83,6 @@ export interface DocumentsViewProps {
// Desk specific (optional for now or handled via intersection)
tenantId?: Identifier | null;
viewId?: string | null;
ensureDownloadUrl?: (docId: Identifier, options?: { force?: boolean }) => Promise<any>;
activeTagFilters?: Array<Identifier | null>;
}