( messageId: UUID, snapshot: FileHistorySnapshot, isSnapshotUpdate: boolean, )
| 1475 | } |
| 1476 | |
| 1477 | export async function recordFileHistorySnapshot( |
| 1478 | messageId: UUID, |
| 1479 | snapshot: FileHistorySnapshot, |
| 1480 | isSnapshotUpdate: boolean, |
| 1481 | ) { |
| 1482 | await getProject().insertFileHistorySnapshot( |
| 1483 | messageId, |
| 1484 | snapshot, |
| 1485 | isSnapshotUpdate, |
| 1486 | ) |
| 1487 | } |
| 1488 | |
| 1489 | export async function recordAttributionSnapshot( |
| 1490 | snapshot: AttributionSnapshotMessage, |
no test coverage detected