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