@signetai/connector-openclaw 0.185.7 → 0.185.9

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 +34 -6
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -10776,6 +10776,14 @@ function up118(db) {
10776
10776
  WHERE status IN ('pending', 'leased');
10777
10777
  `);
10778
10778
  }
10779
+ function hasColumn22(db, table, column) {
10780
+ return db.prepare(`PRAGMA table_info(${table})`).all().some((row) => row.name === column);
10781
+ }
10782
+ function up119(db) {
10783
+ if (!hasColumn22(db, "telemetry_install", "last_seen_version")) {
10784
+ db.exec("ALTER TABLE telemetry_install ADD COLUMN last_seen_version TEXT");
10785
+ }
10786
+ }
10779
10787
  var MIGRATIONS = [
10780
10788
  {
10781
10789
  version: 1,
@@ -11731,6 +11739,12 @@ var MIGRATIONS = [
11731
11739
  version: 118,
11732
11740
  name: "queue-pressure-indices",
11733
11741
  up: up118
11742
+ },
11743
+ {
11744
+ version: 119,
11745
+ name: "telemetry-version-observation",
11746
+ up: up119,
11747
+ artifacts: { columns: [{ table: "telemetry_install", column: "last_seen_version" }] }
11734
11748
  }
11735
11749
  ];
11736
11750
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -20998,7 +21012,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
20998
21012
  return true;
20999
21013
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
21000
21014
  }
21001
- function up119(db) {
21015
+ function up120(db) {
21002
21016
  db.exec(`
21003
21017
  CREATE TABLE IF NOT EXISTS schema_migrations (
21004
21018
  version INTEGER PRIMARY KEY,
@@ -21087,12 +21101,12 @@ function up119(db) {
21087
21101
  } catch {}
21088
21102
  createMemoriesFts2(db);
21089
21103
  }
21090
- function hasColumn22(db, table, column) {
21104
+ function hasColumn23(db, table, column) {
21091
21105
  const rows = db.prepare(`PRAGMA table_info(${table})`).all();
21092
21106
  return rows.some((r) => r.name === column);
21093
21107
  }
21094
21108
  function addColumnIfMissing26(db, table, column, definition) {
21095
- if (!hasColumn22(db, table, column)) {
21109
+ if (!hasColumn23(db, table, column)) {
21096
21110
  db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
21097
21111
  }
21098
21112
  }
@@ -21242,12 +21256,12 @@ function up310(db) {
21242
21256
  WHERE content_hash IS NOT NULL AND is_deleted = 0
21243
21257
  `);
21244
21258
  }
21245
- function hasColumn23(db, table, column) {
21259
+ function hasColumn24(db, table, column) {
21246
21260
  const rows = db.prepare(`PRAGMA table_info(${table})`).all();
21247
21261
  return rows.some((r) => r.name === column);
21248
21262
  }
21249
21263
  function addColumnIfMissing32(db, table, column, definition) {
21250
- if (!hasColumn23(db, table, column)) {
21264
+ if (!hasColumn24(db, table, column)) {
21251
21265
  db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
21252
21266
  }
21253
21267
  }
@@ -24808,11 +24822,19 @@ function up1182(db) {
24808
24822
  WHERE status IN ('pending', 'leased');
24809
24823
  `);
24810
24824
  }
24825
+ function hasColumn222(db, table, column) {
24826
+ return db.prepare(`PRAGMA table_info(${table})`).all().some((row) => row.name === column);
24827
+ }
24828
+ function up1192(db) {
24829
+ if (!hasColumn222(db, "telemetry_install", "last_seen_version")) {
24830
+ db.exec("ALTER TABLE telemetry_install ADD COLUMN last_seen_version TEXT");
24831
+ }
24832
+ }
24811
24833
  var MIGRATIONS2 = [
24812
24834
  {
24813
24835
  version: 1,
24814
24836
  name: "baseline",
24815
- up: up119,
24837
+ up: up120,
24816
24838
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
24817
24839
  },
24818
24840
  {
@@ -25763,6 +25785,12 @@ var MIGRATIONS2 = [
25763
25785
  version: 118,
25764
25786
  name: "queue-pressure-indices",
25765
25787
  up: up1182
25788
+ },
25789
+ {
25790
+ version: 119,
25791
+ name: "telemetry-version-observation",
25792
+ up: up1192,
25793
+ artifacts: { columns: [{ table: "telemetry_install", column: "last_seen_version" }] }
25766
25794
  }
25767
25795
  ];
25768
25796
  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.185.7",
3
+ "version": "0.185.9",
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.185.7",
29
- "@signetai/core": "0.185.7"
28
+ "@signetai/connector-base": "0.185.9",
29
+ "@signetai/core": "0.185.9"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^22.0.0",