@signetai/connector-base 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 +12 -0
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -16174,6 +16174,12 @@ function up143(db) {
16174
16174
  `);
16175
16175
  }
16176
16176
  }
16177
+ function up144(db) {
16178
+ const columns = new Set(db.prepare("PRAGMA table_info(memory_jobs)").all().map((row) => row.name).filter((name) => typeof name === "string"));
16179
+ if (!columns.has("lease_token")) {
16180
+ db.exec("ALTER TABLE memory_jobs ADD COLUMN lease_token TEXT");
16181
+ }
16182
+ }
16177
16183
  var MIGRATIONS = [
16178
16184
  {
16179
16185
  version: 1,
@@ -17311,6 +17317,12 @@ var MIGRATIONS = [
17311
17317
  { table: "embedding_index_state", column: "provider_endpoint" }
17312
17318
  ]
17313
17319
  }
17320
+ },
17321
+ {
17322
+ version: 144,
17323
+ name: "memory-job-lease-token",
17324
+ up: up144,
17325
+ artifacts: { columns: [{ table: "memory_jobs", column: "lease_token" }] }
17314
17326
  }
17315
17327
  ];
17316
17328
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/connector-base",
3
- "version": "0.214.11",
3
+ "version": "0.214.13",
4
4
  "description": "Base class for Signet harness connectors",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -26,7 +26,7 @@
26
26
  "typecheck": "tsc --noEmit"
27
27
  },
28
28
  "dependencies": {
29
- "@signetai/core": "0.214.11",
29
+ "@signetai/core": "0.214.13",
30
30
  "json5": "^2.2.3",
31
31
  "jsonc-parser": "3.3.1"
32
32
  },