@signetai/connector-forge 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 +28 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -11325,6 +11325,12 @@ function up131(db) {
|
|
|
11325
11325
|
ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
|
|
11326
11326
|
`);
|
|
11327
11327
|
}
|
|
11328
|
+
function up132(db) {
|
|
11329
|
+
db.exec(`
|
|
11330
|
+
CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
|
|
11331
|
+
ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
|
|
11332
|
+
`);
|
|
11333
|
+
}
|
|
11328
11334
|
var MIGRATIONS = [
|
|
11329
11335
|
{
|
|
11330
11336
|
version: 1,
|
|
@@ -12373,6 +12379,12 @@ var MIGRATIONS = [
|
|
|
12373
12379
|
name: "dreaming-evidence-consumption",
|
|
12374
12380
|
up: up131,
|
|
12375
12381
|
artifacts: { tables: ["dreaming_evidence_consumption"] }
|
|
12382
|
+
},
|
|
12383
|
+
{
|
|
12384
|
+
version: 132,
|
|
12385
|
+
name: "observer-scoped-epistemic-assertions",
|
|
12386
|
+
up: up132,
|
|
12387
|
+
artifacts: { tables: ["epistemic_assertions"] }
|
|
12376
12388
|
}
|
|
12377
12389
|
];
|
|
12378
12390
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -20005,7 +20017,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
20005
20017
|
return true;
|
|
20006
20018
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
20007
20019
|
}
|
|
20008
|
-
function
|
|
20020
|
+
function up133(db) {
|
|
20009
20021
|
db.exec(`
|
|
20010
20022
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
20011
20023
|
version INTEGER PRIMARY KEY,
|
|
@@ -20489,7 +20501,7 @@ function addColumnIfMissing52(db, table, column, definition) {
|
|
|
20489
20501
|
db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
|
|
20490
20502
|
}
|
|
20491
20503
|
}
|
|
20492
|
-
function
|
|
20504
|
+
function up134(db) {
|
|
20493
20505
|
db.exec(`
|
|
20494
20506
|
CREATE TABLE IF NOT EXISTS ingestion_jobs (
|
|
20495
20507
|
id TEXT PRIMARY KEY,
|
|
@@ -24238,11 +24250,17 @@ function up1312(db) {
|
|
|
24238
24250
|
ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
|
|
24239
24251
|
`);
|
|
24240
24252
|
}
|
|
24253
|
+
function up1322(db) {
|
|
24254
|
+
db.exec(`
|
|
24255
|
+
CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
|
|
24256
|
+
ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
|
|
24257
|
+
`);
|
|
24258
|
+
}
|
|
24241
24259
|
var MIGRATIONS2 = [
|
|
24242
24260
|
{
|
|
24243
24261
|
version: 1,
|
|
24244
24262
|
name: "baseline",
|
|
24245
|
-
up:
|
|
24263
|
+
up: up133,
|
|
24246
24264
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
24247
24265
|
},
|
|
24248
24266
|
{
|
|
@@ -24320,7 +24338,7 @@ var MIGRATIONS2 = [
|
|
|
24320
24338
|
{
|
|
24321
24339
|
version: 13,
|
|
24322
24340
|
name: "ingestion-tracking",
|
|
24323
|
-
up:
|
|
24341
|
+
up: up134,
|
|
24324
24342
|
artifacts: {
|
|
24325
24343
|
columns: [
|
|
24326
24344
|
{ table: "memories", column: "source_path" },
|
|
@@ -25286,6 +25304,12 @@ var MIGRATIONS2 = [
|
|
|
25286
25304
|
name: "dreaming-evidence-consumption",
|
|
25287
25305
|
up: up1312,
|
|
25288
25306
|
artifacts: { tables: ["dreaming_evidence_consumption"] }
|
|
25307
|
+
},
|
|
25308
|
+
{
|
|
25309
|
+
version: 132,
|
|
25310
|
+
name: "observer-scoped-epistemic-assertions",
|
|
25311
|
+
up: up1322,
|
|
25312
|
+
artifacts: { tables: ["epistemic_assertions"] }
|
|
25289
25313
|
}
|
|
25290
25314
|
];
|
|
25291
25315
|
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-forge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.202.0",
|
|
4
4
|
"description": "Signet connector for ForgeCode - installs MCP, identity, and skills integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"typecheck": "tsc --noEmit"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@signetai/connector-base": "0.
|
|
28
|
-
"@signetai/core": "0.
|
|
27
|
+
"@signetai/connector-base": "0.202.0",
|
|
28
|
+
"@signetai/core": "0.202.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|