@signetai/connector-claude-code 0.214.11 → 0.214.13

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 +3 -3
package/dist/index.js CHANGED
@@ -16129,6 +16129,12 @@ function up143(db) {
16129
16129
  `);
16130
16130
  }
16131
16131
  }
16132
+ function up144(db) {
16133
+ const columns = new Set(db.prepare("PRAGMA table_info(memory_jobs)").all().map((row) => row.name).filter((name) => typeof name === "string"));
16134
+ if (!columns.has("lease_token")) {
16135
+ db.exec("ALTER TABLE memory_jobs ADD COLUMN lease_token TEXT");
16136
+ }
16137
+ }
16132
16138
  var MIGRATIONS = [
16133
16139
  {
16134
16140
  version: 1,
@@ -17266,6 +17272,12 @@ var MIGRATIONS = [
17266
17272
  { table: "embedding_index_state", column: "provider_endpoint" }
17267
17273
  ]
17268
17274
  }
17275
+ },
17276
+ {
17277
+ version: 144,
17278
+ name: "memory-job-lease-token",
17279
+ up: up144,
17280
+ artifacts: { columns: [{ table: "memory_jobs", column: "lease_token" }] }
17269
17281
  }
17270
17282
  ];
17271
17283
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -29135,7 +29147,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
29135
29147
  return true;
29136
29148
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
29137
29149
  }
29138
- function up144(db) {
29150
+ function up145(db) {
29139
29151
  db.exec(`
29140
29152
  CREATE TABLE IF NOT EXISTS schema_migrations (
29141
29153
  version INTEGER PRIMARY KEY,
@@ -29645,7 +29657,7 @@ function up1310(db) {
29645
29657
  addColumnIfMissing52(db, "memories", "source_path", "TEXT");
29646
29658
  addColumnIfMissing52(db, "memories", "source_section", "TEXT");
29647
29659
  }
29648
- function up145(db) {
29660
+ function up146(db) {
29649
29661
  db.exec(`
29650
29662
  CREATE TABLE IF NOT EXISTS telemetry_events (
29651
29663
  id TEXT PRIMARY KEY,
@@ -33884,11 +33896,17 @@ function up1432(db) {
33884
33896
  `);
33885
33897
  }
33886
33898
  }
33899
+ function up1442(db) {
33900
+ const columns = new Set(db.prepare("PRAGMA table_info(memory_jobs)").all().map((row) => row.name).filter((name) => typeof name === "string"));
33901
+ if (!columns.has("lease_token")) {
33902
+ db.exec("ALTER TABLE memory_jobs ADD COLUMN lease_token TEXT");
33903
+ }
33904
+ }
33887
33905
  var MIGRATIONS2 = [
33888
33906
  {
33889
33907
  version: 1,
33890
33908
  name: "baseline",
33891
- up: up144,
33909
+ up: up145,
33892
33910
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
33893
33911
  },
33894
33912
  {
@@ -33977,7 +33995,7 @@ var MIGRATIONS2 = [
33977
33995
  {
33978
33996
  version: 14,
33979
33997
  name: "telemetry",
33980
- up: up145,
33998
+ up: up146,
33981
33999
  artifacts: { tables: ["telemetry_events"] }
33982
34000
  },
33983
34001
  {
@@ -35021,6 +35039,12 @@ var MIGRATIONS2 = [
35021
35039
  { table: "embedding_index_state", column: "provider_endpoint" }
35022
35040
  ]
35023
35041
  }
35042
+ },
35043
+ {
35044
+ version: 144,
35045
+ name: "memory-job-lease-token",
35046
+ up: up1442,
35047
+ artifacts: { columns: [{ table: "memory_jobs", column: "lease_token" }] }
35024
35048
  }
35025
35049
  ];
35026
35050
  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-claude-code",
3
- "version": "0.214.11",
3
+ "version": "0.214.13",
4
4
  "description": "Signet connector for Claude Code (Anthropic CLI)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -24,8 +24,8 @@
24
24
  "typecheck": "tsc --noEmit"
25
25
  },
26
26
  "dependencies": {
27
- "@signetai/connector-base": "0.214.11",
28
- "@signetai/core": "0.214.11"
27
+ "@signetai/connector-base": "0.214.13",
28
+ "@signetai/core": "0.214.13"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",