@signetai/signet-memory-openclaw 0.185.7 → 0.185.8

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 +14 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -11036,6 +11036,14 @@ function up118(db) {
11036
11036
  WHERE status IN ('pending', 'leased');
11037
11037
  `);
11038
11038
  }
11039
+ function hasColumn22(db, table, column) {
11040
+ return db.prepare(`PRAGMA table_info(${table})`).all().some((row) => row.name === column);
11041
+ }
11042
+ function up119(db) {
11043
+ if (!hasColumn22(db, "telemetry_install", "last_seen_version")) {
11044
+ db.exec("ALTER TABLE telemetry_install ADD COLUMN last_seen_version TEXT");
11045
+ }
11046
+ }
11039
11047
  var MIGRATIONS = [
11040
11048
  {
11041
11049
  version: 1,
@@ -11991,6 +11999,12 @@ var MIGRATIONS = [
11991
11999
  version: 118,
11992
12000
  name: "queue-pressure-indices",
11993
12001
  up: up118
12002
+ },
12003
+ {
12004
+ version: 119,
12005
+ name: "telemetry-version-observation",
12006
+ up: up119,
12007
+ artifacts: { columns: [{ table: "telemetry_install", column: "last_seen_version" }] }
11994
12008
  }
11995
12009
  ];
11996
12010
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/signet-memory-openclaw",
3
- "version": "0.185.7",
3
+ "version": "0.185.8",
4
4
  "description": "Signet adapter for OpenClaw — runtime plugin for AI agent memory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",