@xdarkicex/openclaw-memory-libravdb 1.4.52 → 1.4.53

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.
@@ -114,10 +114,9 @@ export function createDreamPromotionHandle(cfg, getRpc, logger = console, fsApi
114
114
  sourceMtimeMs: stat.mtimeMs,
115
115
  ingestVersion: DREAM_PROMOTION_VERSION,
116
116
  hashBackend: getHashBackendName(),
117
- entries: candidates.map((candidate, index) => ({
117
+ entries: candidates.map((candidate) => ({
118
118
  ...candidate,
119
119
  sourceLine: candidate.line,
120
- line: index + 1,
121
120
  })),
122
121
  };
123
122
  await rpc.call("promote_dream_entries", params);
@@ -203,10 +202,9 @@ export async function promoteDreamDiaryFile(rpc, opts) {
203
202
  sourceMtimeMs: sourceMtimeMs ?? 0,
204
203
  ingestVersion: DREAM_PROMOTION_VERSION,
205
204
  hashBackend: getHashBackendName(),
206
- entries: candidates.map((candidate, index) => ({
205
+ entries: candidates.map((candidate) => ({
207
206
  ...candidate,
208
207
  sourceLine: candidate.line,
209
- line: index + 1,
210
208
  })),
211
209
  });
212
210
  }
package/dist/index.js CHANGED
@@ -32612,10 +32612,9 @@ function createDreamPromotionHandle(cfg, getRpc, logger = console, fsApi = creat
32612
32612
  sourceMtimeMs: stat.mtimeMs,
32613
32613
  ingestVersion: DREAM_PROMOTION_VERSION,
32614
32614
  hashBackend: getHashBackendName(),
32615
- entries: candidates.map((candidate, index) => ({
32615
+ entries: candidates.map((candidate) => ({
32616
32616
  ...candidate,
32617
- sourceLine: candidate.line,
32618
- line: index + 1
32617
+ sourceLine: candidate.line
32619
32618
  }))
32620
32619
  };
32621
32620
  await rpc.call("promote_dream_entries", params);
@@ -32698,10 +32697,9 @@ async function promoteDreamDiaryFile(rpc, opts) {
32698
32697
  sourceMtimeMs: sourceMtimeMs ?? 0,
32699
32698
  ingestVersion: DREAM_PROMOTION_VERSION,
32700
32699
  hashBackend: getHashBackendName(),
32701
- entries: candidates.map((candidate, index) => ({
32700
+ entries: candidates.map((candidate) => ({
32702
32701
  ...candidate,
32703
- sourceLine: candidate.line,
32704
- line: index + 1
32702
+ sourceLine: candidate.line
32705
32703
  }))
32706
32704
  });
32707
32705
  }
@@ -2,7 +2,7 @@
2
2
  "id": "libravdb-memory",
3
3
  "name": "LibraVDB Memory",
4
4
  "description": "Persistent vector memory with three-tier hybrid scoring",
5
- "version": "1.4.52",
5
+ "version": "1.4.53",
6
6
  "kind": [
7
7
  "memory",
8
8
  "context-engine"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xdarkicex/openclaw-memory-libravdb",
3
- "version": "1.4.52",
3
+ "version": "1.4.53",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",