@signetai/connector-openclaw 0.200.29 → 0.202.3

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 +28 -4
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -11298,6 +11298,12 @@ function up131(db) {
11298
11298
  ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
11299
11299
  `);
11300
11300
  }
11301
+ function up132(db) {
11302
+ db.exec(`
11303
+ CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
11304
+ ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
11305
+ `);
11306
+ }
11301
11307
  var MIGRATIONS = [
11302
11308
  {
11303
11309
  version: 1,
@@ -12346,6 +12352,12 @@ var MIGRATIONS = [
12346
12352
  name: "dreaming-evidence-consumption",
12347
12353
  up: up131,
12348
12354
  artifacts: { tables: ["dreaming_evidence_consumption"] }
12355
+ },
12356
+ {
12357
+ version: 132,
12358
+ name: "observer-scoped-epistemic-assertions",
12359
+ up: up132,
12360
+ artifacts: { tables: ["epistemic_assertions"] }
12349
12361
  }
12350
12362
  ];
12351
12363
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -21716,7 +21728,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
21716
21728
  return true;
21717
21729
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
21718
21730
  }
21719
- function up132(db) {
21731
+ function up133(db) {
21720
21732
  db.exec(`
21721
21733
  CREATE TABLE IF NOT EXISTS schema_migrations (
21722
21734
  version INTEGER PRIMARY KEY,
@@ -22200,7 +22212,7 @@ function addColumnIfMissing52(db, table, column, definition) {
22200
22212
  db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
22201
22213
  }
22202
22214
  }
22203
- function up133(db) {
22215
+ function up134(db) {
22204
22216
  db.exec(`
22205
22217
  CREATE TABLE IF NOT EXISTS ingestion_jobs (
22206
22218
  id TEXT PRIMARY KEY,
@@ -25949,11 +25961,17 @@ function up1312(db) {
25949
25961
  ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
25950
25962
  `);
25951
25963
  }
25964
+ function up1322(db) {
25965
+ db.exec(`
25966
+ CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
25967
+ ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
25968
+ `);
25969
+ }
25952
25970
  var MIGRATIONS2 = [
25953
25971
  {
25954
25972
  version: 1,
25955
25973
  name: "baseline",
25956
- up: up132,
25974
+ up: up133,
25957
25975
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
25958
25976
  },
25959
25977
  {
@@ -26031,7 +26049,7 @@ var MIGRATIONS2 = [
26031
26049
  {
26032
26050
  version: 13,
26033
26051
  name: "ingestion-tracking",
26034
- up: up133,
26052
+ up: up134,
26035
26053
  artifacts: {
26036
26054
  columns: [
26037
26055
  { table: "memories", column: "source_path" },
@@ -26997,6 +27015,12 @@ var MIGRATIONS2 = [
26997
27015
  name: "dreaming-evidence-consumption",
26998
27016
  up: up1312,
26999
27017
  artifacts: { tables: ["dreaming_evidence_consumption"] }
27018
+ },
27019
+ {
27020
+ version: 132,
27021
+ name: "observer-scoped-epistemic-assertions",
27022
+ up: up1322,
27023
+ artifacts: { tables: ["epistemic_assertions"] }
27000
27024
  }
27001
27025
  ];
27002
27026
  var LATEST_SCHEMA_VERSION2 = MIGRATIONS2[MIGRATIONS2.length - 1]?.version ?? 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/connector-openclaw",
3
- "version": "0.200.29",
3
+ "version": "0.202.3",
4
4
  "description": "Signet connector for OpenClaw - configures workspace and memory hooks",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -25,8 +25,8 @@
25
25
  "test": "bun test"
26
26
  },
27
27
  "dependencies": {
28
- "@signetai/connector-base": "0.200.29",
29
- "@signetai/core": "0.200.29"
28
+ "@signetai/connector-base": "0.202.3",
29
+ "@signetai/core": "0.202.3"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^22.0.0",
@@ -49,7 +49,7 @@
49
49
  },
50
50
  "repository": {
51
51
  "type": "git",
52
- "url": "https://github.com/Signet-AI/signetai.git"
52
+ "url": "git+https://github.com/Signet-AI/signetai.git"
53
53
  },
54
54
  "homepage": "https://github.com/Signet-AI/signetai",
55
55
  "bugs": {