@zabaca/lattice 1.0.10 → 1.0.11

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.
Files changed (2) hide show
  1. package/dist/main.js +2 -1
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -2334,7 +2334,8 @@ class SyncService {
2334
2334
  }
2335
2335
  const embeddingGenerated = await this.syncDocument(doc, options, preloadedDoc !== undefined);
2336
2336
  change.embeddingGenerated = embeddingGenerated;
2337
- this.manifest.updateEntry(doc.path, doc.contentHash, doc.frontmatterHash, doc.entities.length, doc.relationships.length);
2337
+ const currentDoc = await this.parser.parseDocument(change.path);
2338
+ this.manifest.updateEntry(currentDoc.path, currentDoc.contentHash, currentDoc.frontmatterHash, currentDoc.entities.length, currentDoc.relationships.length);
2338
2339
  break;
2339
2340
  }
2340
2341
  case "deleted": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zabaca/lattice",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "Human-initiated, AI-powered knowledge graph for markdown documentation",
5
5
  "type": "module",
6
6
  "bin": {