@signetai/connector-base 0.201.2 → 0.202.0
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 +12 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -11344,6 +11344,12 @@ function up131(db) {
|
|
|
11344
11344
|
ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
|
|
11345
11345
|
`);
|
|
11346
11346
|
}
|
|
11347
|
+
function up132(db) {
|
|
11348
|
+
db.exec(`
|
|
11349
|
+
CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
|
|
11350
|
+
ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
|
|
11351
|
+
`);
|
|
11352
|
+
}
|
|
11347
11353
|
var MIGRATIONS = [
|
|
11348
11354
|
{
|
|
11349
11355
|
version: 1,
|
|
@@ -12392,6 +12398,12 @@ var MIGRATIONS = [
|
|
|
12392
12398
|
name: "dreaming-evidence-consumption",
|
|
12393
12399
|
up: up131,
|
|
12394
12400
|
artifacts: { tables: ["dreaming_evidence_consumption"] }
|
|
12401
|
+
},
|
|
12402
|
+
{
|
|
12403
|
+
version: 132,
|
|
12404
|
+
name: "observer-scoped-epistemic-assertions",
|
|
12405
|
+
up: up132,
|
|
12406
|
+
artifacts: { tables: ["epistemic_assertions"] }
|
|
12395
12407
|
}
|
|
12396
12408
|
];
|
|
12397
12409
|
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.
|
|
3
|
+
"version": "0.202.0",
|
|
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.
|
|
29
|
+
"@signetai/core": "0.202.0",
|
|
30
30
|
"json5": "^2.2.3",
|
|
31
31
|
"jsonc-parser": "3.3.1"
|
|
32
32
|
},
|