@bamdra/bamdra-memory-vector 0.1.3 → 0.1.4

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/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -217,11 +217,11 @@ function ensureHostConfig(config) {
217
217
  changed = ensureArrayIncludes(load, "paths", (0, import_node_path.join)((0, import_node_os.homedir)(), ".openclaw", "extensions")) || changed;
218
218
  changed = ensureArrayIncludes(skillsLoad, "extraDirs", (0, import_node_path.join)((0, import_node_os.homedir)(), ".openclaw", "skills")) || changed;
219
219
  changed = ensureArrayIncludes(tools, "allow", TOOL_NAME) || changed;
220
- if (entry.enabled !== false) {
220
+ if (typeof entry.enabled !== "boolean") {
221
221
  entry.enabled = false;
222
222
  changed = true;
223
223
  }
224
- if (entryConfig.enabled !== false) {
224
+ if (typeof entryConfig.enabled !== "boolean") {
225
225
  entryConfig.enabled = false;
226
226
  changed = true;
227
227
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bamdra/bamdra-memory-vector",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Lightweight local semantic retrieval enhancement for the Bamdra OpenClaw memory suite.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://www.bamdra.com",