Merge pull request #19740 from overleaf/jpa-linked-file-metadata

[misc] persist linkedFileData in full project history as file metadata

GitOrigin-RevId: f3e8ba947ea34b6796e210a076a248c57188d148
This commit is contained in:
Jakob Ackermann
2024-08-05 10:52:23 +02:00
committed by Copybot
parent e85045255c
commit e26b6de51b
11 changed files with 691 additions and 209 deletions

View File

@@ -94,3 +94,9 @@ export type RawEditOperation =
| RawAddCommentOperation
| RawDeleteCommentOperation
| RawSetCommentStateOperation
export type LinkedFileData = {
importedAt: string
provider: string
[other: string]: any
}