( messageId: UUID, snapshot: FileHistorySnapshot, isSnapshotUpdate: boolean, )
| 1511 | } |
| 1512 | |
| 1513 | export async function recordFileHistorySnapshot( |
| 1514 | messageId: UUID, |
| 1515 | snapshot: FileHistorySnapshot, |
| 1516 | isSnapshotUpdate: boolean, |
| 1517 | ) { |
| 1518 | await getProject().insertFileHistorySnapshot( |
| 1519 | messageId, |
| 1520 | snapshot, |
| 1521 | isSnapshotUpdate, |
| 1522 | ) |
| 1523 | } |
| 1524 | |
| 1525 | export async function recordAttributionSnapshot( |
| 1526 | snapshot: AttributionSnapshotMessage, |
no test coverage detected