@signetai/connector-openclaw 0.214.0 → 0.214.2

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 +104 -4
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -16061,6 +16061,38 @@ function up139(db) {
16061
16061
  ON native_source_sync_state(agent_id, status);
16062
16062
  `);
16063
16063
  }
16064
+ function up140(db) {
16065
+ db.exec(`
16066
+ CREATE TABLE IF NOT EXISTS transcript_recovery_frontiers (
16067
+ agent_id TEXT NOT NULL,
16068
+ harness TEXT NOT NULL,
16069
+ root_path TEXT NOT NULL,
16070
+ cursor_path TEXT,
16071
+ updated_at TEXT NOT NULL,
16072
+ PRIMARY KEY (agent_id, harness, root_path)
16073
+ );
16074
+ `);
16075
+ }
16076
+ function up141(db) {
16077
+ db.exec(`
16078
+ CREATE TABLE IF NOT EXISTS source_sync_checkpoints (
16079
+ agent_id TEXT NOT NULL,
16080
+ source_key TEXT NOT NULL,
16081
+ phase TEXT NOT NULL,
16082
+ cursor TEXT,
16083
+ scanned INTEGER NOT NULL DEFAULT 0,
16084
+ complete INTEGER NOT NULL DEFAULT 0,
16085
+ updated_at TEXT NOT NULL,
16086
+ PRIMARY KEY (agent_id, source_key, phase)
16087
+ );
16088
+ `);
16089
+ }
16090
+ function up142(db) {
16091
+ const columns = db.prepare("PRAGMA table_info(source_sync_checkpoints)").all();
16092
+ if (!columns.some((column) => column.name === "frontier")) {
16093
+ db.exec("ALTER TABLE source_sync_checkpoints ADD COLUMN frontier TEXT");
16094
+ }
16095
+ }
16064
16096
  var MIGRATIONS = [
16065
16097
  {
16066
16098
  version: 1,
@@ -17164,6 +17196,24 @@ var MIGRATIONS = [
17164
17196
  name: "native-source-sync-state",
17165
17197
  up: up139,
17166
17198
  artifacts: { tables: ["native_source_sync_state"] }
17199
+ },
17200
+ {
17201
+ version: 140,
17202
+ name: "transcript-recovery-frontier",
17203
+ up: up140,
17204
+ artifacts: { tables: ["transcript_recovery_frontiers"] }
17205
+ },
17206
+ {
17207
+ version: 141,
17208
+ name: "source-sync-checkpoints",
17209
+ up: up141,
17210
+ artifacts: { tables: ["source_sync_checkpoints"] }
17211
+ },
17212
+ {
17213
+ version: 142,
17214
+ name: "source-sync-frontier",
17215
+ up: up142,
17216
+ artifacts: { columns: [{ table: "source_sync_checkpoints", column: "frontier" }] }
17167
17217
  }
17168
17218
  ];
17169
17219
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -31006,7 +31056,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
31006
31056
  return true;
31007
31057
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
31008
31058
  }
31009
- function up140(db) {
31059
+ function up143(db) {
31010
31060
  db.exec(`
31011
31061
  CREATE TABLE IF NOT EXISTS schema_migrations (
31012
31062
  version INTEGER PRIMARY KEY,
@@ -31516,7 +31566,7 @@ function up1310(db) {
31516
31566
  addColumnIfMissing52(db, "memories", "source_path", "TEXT");
31517
31567
  addColumnIfMissing52(db, "memories", "source_section", "TEXT");
31518
31568
  }
31519
- function up142(db) {
31569
+ function up144(db) {
31520
31570
  db.exec(`
31521
31571
  CREATE TABLE IF NOT EXISTS telemetry_events (
31522
31572
  id TEXT PRIMARY KEY,
@@ -35688,11 +35738,43 @@ function up1392(db) {
35688
35738
  ON native_source_sync_state(agent_id, status);
35689
35739
  `);
35690
35740
  }
35741
+ function up1402(db) {
35742
+ db.exec(`
35743
+ CREATE TABLE IF NOT EXISTS transcript_recovery_frontiers (
35744
+ agent_id TEXT NOT NULL,
35745
+ harness TEXT NOT NULL,
35746
+ root_path TEXT NOT NULL,
35747
+ cursor_path TEXT,
35748
+ updated_at TEXT NOT NULL,
35749
+ PRIMARY KEY (agent_id, harness, root_path)
35750
+ );
35751
+ `);
35752
+ }
35753
+ function up1412(db) {
35754
+ db.exec(`
35755
+ CREATE TABLE IF NOT EXISTS source_sync_checkpoints (
35756
+ agent_id TEXT NOT NULL,
35757
+ source_key TEXT NOT NULL,
35758
+ phase TEXT NOT NULL,
35759
+ cursor TEXT,
35760
+ scanned INTEGER NOT NULL DEFAULT 0,
35761
+ complete INTEGER NOT NULL DEFAULT 0,
35762
+ updated_at TEXT NOT NULL,
35763
+ PRIMARY KEY (agent_id, source_key, phase)
35764
+ );
35765
+ `);
35766
+ }
35767
+ function up1422(db) {
35768
+ const columns = db.prepare("PRAGMA table_info(source_sync_checkpoints)").all();
35769
+ if (!columns.some((column) => column.name === "frontier")) {
35770
+ db.exec("ALTER TABLE source_sync_checkpoints ADD COLUMN frontier TEXT");
35771
+ }
35772
+ }
35691
35773
  var MIGRATIONS2 = [
35692
35774
  {
35693
35775
  version: 1,
35694
35776
  name: "baseline",
35695
- up: up140,
35777
+ up: up143,
35696
35778
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
35697
35779
  },
35698
35780
  {
@@ -35781,7 +35863,7 @@ var MIGRATIONS2 = [
35781
35863
  {
35782
35864
  version: 14,
35783
35865
  name: "telemetry",
35784
- up: up142,
35866
+ up: up144,
35785
35867
  artifacts: { tables: ["telemetry_events"] }
35786
35868
  },
35787
35869
  {
@@ -36791,6 +36873,24 @@ var MIGRATIONS2 = [
36791
36873
  name: "native-source-sync-state",
36792
36874
  up: up1392,
36793
36875
  artifacts: { tables: ["native_source_sync_state"] }
36876
+ },
36877
+ {
36878
+ version: 140,
36879
+ name: "transcript-recovery-frontier",
36880
+ up: up1402,
36881
+ artifacts: { tables: ["transcript_recovery_frontiers"] }
36882
+ },
36883
+ {
36884
+ version: 141,
36885
+ name: "source-sync-checkpoints",
36886
+ up: up1412,
36887
+ artifacts: { tables: ["source_sync_checkpoints"] }
36888
+ },
36889
+ {
36890
+ version: 142,
36891
+ name: "source-sync-frontier",
36892
+ up: up1422,
36893
+ artifacts: { columns: [{ table: "source_sync_checkpoints", column: "frontier" }] }
36794
36894
  }
36795
36895
  ];
36796
36896
  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.214.0",
3
+ "version": "0.214.2",
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.214.0",
29
- "@signetai/core": "0.214.0"
28
+ "@signetai/connector-base": "0.214.2",
29
+ "@signetai/core": "0.214.2"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^22.0.0",