( messageId: UUID, snapshot: FileHistorySnapshot, isSnapshotUpdate: boolean, )
| 1632 | } |
| 1633 | |
| 1634 | export async function recordFileHistorySnapshot( |
| 1635 | messageId: UUID, |
| 1636 | snapshot: FileHistorySnapshot, |
| 1637 | isSnapshotUpdate: boolean, |
| 1638 | ) { |
| 1639 | await getProject().insertFileHistorySnapshot( |
| 1640 | messageId, |
| 1641 | snapshot, |
| 1642 | isSnapshotUpdate, |
| 1643 | ) |
| 1644 | } |
| 1645 | |
| 1646 | export async function recordAttributionSnapshot( |
| 1647 | snapshot: AttributionSnapshotMessage, |
no test coverage detected