@signetai/connector-openclaw 0.214.12 → 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.
- package/dist/index.js +28 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -16128,6 +16128,12 @@ function up143(db) {
|
|
|
16128
16128
|
`);
|
|
16129
16129
|
}
|
|
16130
16130
|
}
|
|
16131
|
+
function up144(db) {
|
|
16132
|
+
const columns = new Set(db.prepare("PRAGMA table_info(memory_jobs)").all().map((row) => row.name).filter((name) => typeof name === "string"));
|
|
16133
|
+
if (!columns.has("lease_token")) {
|
|
16134
|
+
db.exec("ALTER TABLE memory_jobs ADD COLUMN lease_token TEXT");
|
|
16135
|
+
}
|
|
16136
|
+
}
|
|
16131
16137
|
var MIGRATIONS = [
|
|
16132
16138
|
{
|
|
16133
16139
|
version: 1,
|
|
@@ -17265,6 +17271,12 @@ var MIGRATIONS = [
|
|
|
17265
17271
|
{ table: "embedding_index_state", column: "provider_endpoint" }
|
|
17266
17272
|
]
|
|
17267
17273
|
}
|
|
17274
|
+
},
|
|
17275
|
+
{
|
|
17276
|
+
version: 144,
|
|
17277
|
+
name: "memory-job-lease-token",
|
|
17278
|
+
up: up144,
|
|
17279
|
+
artifacts: { columns: [{ table: "memory_jobs", column: "lease_token" }] }
|
|
17268
17280
|
}
|
|
17269
17281
|
];
|
|
17270
17282
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -31107,7 +31119,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
31107
31119
|
return true;
|
|
31108
31120
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
31109
31121
|
}
|
|
31110
|
-
function
|
|
31122
|
+
function up145(db) {
|
|
31111
31123
|
db.exec(`
|
|
31112
31124
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
31113
31125
|
version INTEGER PRIMARY KEY,
|
|
@@ -31617,7 +31629,7 @@ function up1310(db) {
|
|
|
31617
31629
|
addColumnIfMissing52(db, "memories", "source_path", "TEXT");
|
|
31618
31630
|
addColumnIfMissing52(db, "memories", "source_section", "TEXT");
|
|
31619
31631
|
}
|
|
31620
|
-
function
|
|
31632
|
+
function up146(db) {
|
|
31621
31633
|
db.exec(`
|
|
31622
31634
|
CREATE TABLE IF NOT EXISTS telemetry_events (
|
|
31623
31635
|
id TEXT PRIMARY KEY,
|
|
@@ -35856,11 +35868,17 @@ function up1432(db) {
|
|
|
35856
35868
|
`);
|
|
35857
35869
|
}
|
|
35858
35870
|
}
|
|
35871
|
+
function up1442(db) {
|
|
35872
|
+
const columns = new Set(db.prepare("PRAGMA table_info(memory_jobs)").all().map((row) => row.name).filter((name) => typeof name === "string"));
|
|
35873
|
+
if (!columns.has("lease_token")) {
|
|
35874
|
+
db.exec("ALTER TABLE memory_jobs ADD COLUMN lease_token TEXT");
|
|
35875
|
+
}
|
|
35876
|
+
}
|
|
35859
35877
|
var MIGRATIONS2 = [
|
|
35860
35878
|
{
|
|
35861
35879
|
version: 1,
|
|
35862
35880
|
name: "baseline",
|
|
35863
|
-
up:
|
|
35881
|
+
up: up145,
|
|
35864
35882
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
35865
35883
|
},
|
|
35866
35884
|
{
|
|
@@ -35949,7 +35967,7 @@ var MIGRATIONS2 = [
|
|
|
35949
35967
|
{
|
|
35950
35968
|
version: 14,
|
|
35951
35969
|
name: "telemetry",
|
|
35952
|
-
up:
|
|
35970
|
+
up: up146,
|
|
35953
35971
|
artifacts: { tables: ["telemetry_events"] }
|
|
35954
35972
|
},
|
|
35955
35973
|
{
|
|
@@ -36993,6 +37011,12 @@ var MIGRATIONS2 = [
|
|
|
36993
37011
|
{ table: "embedding_index_state", column: "provider_endpoint" }
|
|
36994
37012
|
]
|
|
36995
37013
|
}
|
|
37014
|
+
},
|
|
37015
|
+
{
|
|
37016
|
+
version: 144,
|
|
37017
|
+
name: "memory-job-lease-token",
|
|
37018
|
+
up: up1442,
|
|
37019
|
+
artifacts: { columns: [{ table: "memory_jobs", column: "lease_token" }] }
|
|
36996
37020
|
}
|
|
36997
37021
|
];
|
|
36998
37022
|
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.
|
|
3
|
+
"version": "0.214.13",
|
|
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.
|
|
29
|
-
"@signetai/core": "0.214.
|
|
28
|
+
"@signetai/connector-base": "0.214.13",
|
|
29
|
+
"@signetai/core": "0.214.13"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.0.0",
|