@signetai/connector-base 0.199.6 → 0.199.7

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 +7 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -7054,7 +7054,13 @@ function scanMemoryContent(content) {
7054
7054
  policyVersion: MEMORY_CONTENT_SAFETY_POLICY_VERSION
7055
7055
  };
7056
7056
  }
7057
- var DAEMON_DERIVED_MEMORY_SOURCE_TYPES = ["extract", "aggregate-recall", "session_end", "checkpoint", "dreaming"];
7057
+ var DAEMON_DERIVED_MEMORY_SOURCE_TYPES = [
7058
+ "extract",
7059
+ "aggregate-recall",
7060
+ "session_end",
7061
+ "checkpoint",
7062
+ "dreaming"
7063
+ ];
7058
7064
  var MEMORIES_FTS_TOKENIZER = "unicode61";
7059
7065
  function normalizeSql(sql) {
7060
7066
  return sql.replace(/\s+/g, " ").trim().toLowerCase();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/connector-base",
3
- "version": "0.199.6",
3
+ "version": "0.199.7",
4
4
  "description": "Base class for Signet harness connectors",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -26,7 +26,7 @@
26
26
  "typecheck": "tsc --noEmit"
27
27
  },
28
28
  "dependencies": {
29
- "@signetai/core": "0.199.6",
29
+ "@signetai/core": "0.199.7",
30
30
  "json5": "^2.2.3",
31
31
  "jsonc-parser": "3.3.1"
32
32
  },