( agentType: string, scope: AgentMemoryScope, snapshotTimestamp: string, )
| 189 | * Mark the current snapshot as synced without changing local memory. |
| 190 | */ |
| 191 | export async function markSnapshotSynced( |
| 192 | agentType: string, |
| 193 | scope: AgentMemoryScope, |
| 194 | snapshotTimestamp: string, |
| 195 | ): Promise<void> { |
| 196 | await saveSyncedMeta(agentType, scope, snapshotTimestamp) |
| 197 | } |
| 198 |
nothing calls this directly
no test coverage detected