@andespindola/brainlink 1.6.8 → 1.6.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,6 +23,10 @@ const pollGraphVersion = async () => {
23
23
  if (version !== state.graphVersion) {
24
24
  state.graphVersion = version
25
25
  await loadContexts().catch((error) => console.error(error))
26
+ // Clear the request-dedup key so the refetch is not skipped: the viewport
27
+ // has not changed, but the vault has, so we must re-pull the chunk to pick
28
+ // up new nodes/edges (the dedup guard would otherwise short-circuit it).
29
+ state.lastChunkRequestKey = ''
26
30
  scheduleChunkFetch()
27
31
  }
28
32
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andespindola/brainlink",
3
- "version": "1.6.8",
3
+ "version": "1.6.9",
4
4
  "description": "Local-first knowledge memory for agents with Markdown, backlinks, indexing and context retrieval.",
5
5
  "type": "module",
6
6
  "license": "MIT",