Ran the following code and console logged the thread activity store successfully:
```
let data = await commCoreModule.getClientDBStore();
console.log(data.threadActivityEntries);
await commCoreModule.processThreadActivityStoreOperations([
{
type: 'replace_thread_activity_entry',
payload: {
id: 'test_A_id',
threadActivityStoreEntry: JSON.stringify({
lastNavigatedTo: 1,
lastPruned: 2,
}),
},
},
{
type: 'remove_all_thread_activity_entries',
},
{
type: 'replace_thread_activity_entry',
payload: {
id: 'test_B_id',
threadActivityStoreEntry: JSON.stringify({
lastNavigatedTo: 3,
lastPruned: 4,
}),
},
},
{
type: 'replace_thread_activity_entry',
payload: {
id: 'test_C_id',
threadActivityStoreEntry: JSON.stringify({
lastNavigatedTo: 5,
lastPruned: 6,
}),
},
},
{
type: 'remove_thread_activity_entries',
payload: {
ids: ['test_B_id'],
},
},
]);
data = await commCoreModule.getClientDBStore();
console.log(data.threadActivityEntries);
```