@signetai/connector-openclaw 0.196.1 → 0.196.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.
- package/dist/index.js +38 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -11165,6 +11165,18 @@ function up127(db) {
|
|
|
11165
11165
|
ON ontology_contradictions(agent_id, left_source_id, right_source_id);
|
|
11166
11166
|
`);
|
|
11167
11167
|
}
|
|
11168
|
+
function up128(db) {
|
|
11169
|
+
db.exec(`
|
|
11170
|
+
CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_status_created_at
|
|
11171
|
+
ON memory_jobs(status, created_at)
|
|
11172
|
+
WHERE job_type <> 'extract';
|
|
11173
|
+
CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_error_updated_at
|
|
11174
|
+
ON memory_jobs(updated_at DESC)
|
|
11175
|
+
WHERE status IN ('pending', 'leased', 'dead')
|
|
11176
|
+
AND job_type <> 'extract'
|
|
11177
|
+
AND error IS NOT NULL;
|
|
11178
|
+
`);
|
|
11179
|
+
}
|
|
11168
11180
|
var MIGRATIONS = [
|
|
11169
11181
|
{
|
|
11170
11182
|
version: 1,
|
|
@@ -12191,6 +12203,11 @@ var MIGRATIONS = [
|
|
|
12191
12203
|
name: "ontology-contradictions",
|
|
12192
12204
|
up: up127,
|
|
12193
12205
|
artifacts: { tables: ["ontology_contradictions"] }
|
|
12206
|
+
},
|
|
12207
|
+
{
|
|
12208
|
+
version: 128,
|
|
12209
|
+
name: "bounded-queue-diagnostics",
|
|
12210
|
+
up: up128
|
|
12194
12211
|
}
|
|
12195
12212
|
];
|
|
12196
12213
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -21551,7 +21568,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
21551
21568
|
return true;
|
|
21552
21569
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
21553
21570
|
}
|
|
21554
|
-
function
|
|
21571
|
+
function up129(db) {
|
|
21555
21572
|
db.exec(`
|
|
21556
21573
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
21557
21574
|
version INTEGER PRIMARY KEY,
|
|
@@ -21994,7 +22011,7 @@ function up1110(db) {
|
|
|
21994
22011
|
ON session_scores(session_key);
|
|
21995
22012
|
`);
|
|
21996
22013
|
}
|
|
21997
|
-
function
|
|
22014
|
+
function up1210(db) {
|
|
21998
22015
|
db.exec(`
|
|
21999
22016
|
CREATE TABLE IF NOT EXISTS scheduled_tasks (
|
|
22000
22017
|
id TEXT PRIMARY KEY,
|
|
@@ -25657,11 +25674,23 @@ function up1272(db) {
|
|
|
25657
25674
|
ON ontology_contradictions(agent_id, left_source_id, right_source_id);
|
|
25658
25675
|
`);
|
|
25659
25676
|
}
|
|
25677
|
+
function up1282(db) {
|
|
25678
|
+
db.exec(`
|
|
25679
|
+
CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_status_created_at
|
|
25680
|
+
ON memory_jobs(status, created_at)
|
|
25681
|
+
WHERE job_type <> 'extract';
|
|
25682
|
+
CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_error_updated_at
|
|
25683
|
+
ON memory_jobs(updated_at DESC)
|
|
25684
|
+
WHERE status IN ('pending', 'leased', 'dead')
|
|
25685
|
+
AND job_type <> 'extract'
|
|
25686
|
+
AND error IS NOT NULL;
|
|
25687
|
+
`);
|
|
25688
|
+
}
|
|
25660
25689
|
var MIGRATIONS2 = [
|
|
25661
25690
|
{
|
|
25662
25691
|
version: 1,
|
|
25663
25692
|
name: "baseline",
|
|
25664
|
-
up:
|
|
25693
|
+
up: up129,
|
|
25665
25694
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
25666
25695
|
},
|
|
25667
25696
|
{
|
|
@@ -25733,7 +25762,7 @@ var MIGRATIONS2 = [
|
|
|
25733
25762
|
{
|
|
25734
25763
|
version: 12,
|
|
25735
25764
|
name: "scheduled-tasks",
|
|
25736
|
-
up:
|
|
25765
|
+
up: up1210,
|
|
25737
25766
|
artifacts: { tables: ["scheduled_tasks", "task_runs"] }
|
|
25738
25767
|
},
|
|
25739
25768
|
{
|
|
@@ -26683,6 +26712,11 @@ var MIGRATIONS2 = [
|
|
|
26683
26712
|
name: "ontology-contradictions",
|
|
26684
26713
|
up: up1272,
|
|
26685
26714
|
artifacts: { tables: ["ontology_contradictions"] }
|
|
26715
|
+
},
|
|
26716
|
+
{
|
|
26717
|
+
version: 128,
|
|
26718
|
+
name: "bounded-queue-diagnostics",
|
|
26719
|
+
up: up1282
|
|
26686
26720
|
}
|
|
26687
26721
|
];
|
|
26688
26722
|
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.196.
|
|
3
|
+
"version": "0.196.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.196.
|
|
29
|
-
"@signetai/core": "0.196.
|
|
28
|
+
"@signetai/connector-base": "0.196.2",
|
|
29
|
+
"@signetai/core": "0.196.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.0.0",
|