@signetai/signet-memory-openclaw 0.196.0 → 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 +17 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11425,6 +11425,18 @@ function up127(db) {
|
|
|
11425
11425
|
ON ontology_contradictions(agent_id, left_source_id, right_source_id);
|
|
11426
11426
|
`);
|
|
11427
11427
|
}
|
|
11428
|
+
function up128(db) {
|
|
11429
|
+
db.exec(`
|
|
11430
|
+
CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_status_created_at
|
|
11431
|
+
ON memory_jobs(status, created_at)
|
|
11432
|
+
WHERE job_type <> 'extract';
|
|
11433
|
+
CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_error_updated_at
|
|
11434
|
+
ON memory_jobs(updated_at DESC)
|
|
11435
|
+
WHERE status IN ('pending', 'leased', 'dead')
|
|
11436
|
+
AND job_type <> 'extract'
|
|
11437
|
+
AND error IS NOT NULL;
|
|
11438
|
+
`);
|
|
11439
|
+
}
|
|
11428
11440
|
var MIGRATIONS = [
|
|
11429
11441
|
{
|
|
11430
11442
|
version: 1,
|
|
@@ -12451,6 +12463,11 @@ var MIGRATIONS = [
|
|
|
12451
12463
|
name: "ontology-contradictions",
|
|
12452
12464
|
up: up127,
|
|
12453
12465
|
artifacts: { tables: ["ontology_contradictions"] }
|
|
12466
|
+
},
|
|
12467
|
+
{
|
|
12468
|
+
version: 128,
|
|
12469
|
+
name: "bounded-queue-diagnostics",
|
|
12470
|
+
up: up128
|
|
12454
12471
|
}
|
|
12455
12472
|
];
|
|
12456
12473
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|