* Builds the change-detection hash for a repository file. The git blob objectId * is content-addressable, so it changes exactly when the file content changes, * and it is reported both by the tree listing (`objectId`) and the per-file * metadata fetch (`objectId`) — so the listing stub and the hy
(repoId: string, objectId: string)
| 224 | * by content-addressing, so the stored content is already correct in that case.) |
| 225 | */ |
| 226 | function buildFileContentHash(repoId: string, objectId: string): string { |
| 227 | return `ado:file:${repoId}:${objectId}` |
| 228 | } |
| 229 | |
| 230 | interface WikiV2 { |
| 231 | id: string |
no outgoing calls
no test coverage detected