@signetai/connector-gemini 0.176.2 → 0.176.4
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 +24 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -10396,6 +10396,12 @@ function up109(db) {
|
|
|
10396
10396
|
);
|
|
10397
10397
|
`);
|
|
10398
10398
|
}
|
|
10399
|
+
function up110(db) {
|
|
10400
|
+
db.exec(`
|
|
10401
|
+
CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
|
|
10402
|
+
ON memory_entity_mentions(entity_id, memory_id);
|
|
10403
|
+
`);
|
|
10404
|
+
}
|
|
10399
10405
|
var MIGRATIONS = [
|
|
10400
10406
|
{
|
|
10401
10407
|
version: 1,
|
|
@@ -11266,6 +11272,11 @@ var MIGRATIONS = [
|
|
|
11266
11272
|
artifacts: {
|
|
11267
11273
|
tables: ["telemetry_install"]
|
|
11268
11274
|
}
|
|
11275
|
+
},
|
|
11276
|
+
{
|
|
11277
|
+
version: 110,
|
|
11278
|
+
name: "memory-mention-join-index",
|
|
11279
|
+
up: up110
|
|
11269
11280
|
}
|
|
11270
11281
|
];
|
|
11271
11282
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -18662,7 +18673,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
18662
18673
|
return true;
|
|
18663
18674
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
18664
18675
|
}
|
|
18665
|
-
function
|
|
18676
|
+
function up111(db) {
|
|
18666
18677
|
db.exec(`
|
|
18667
18678
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
18668
18679
|
version INTEGER PRIMARY KEY,
|
|
@@ -22079,11 +22090,17 @@ function up1092(db) {
|
|
|
22079
22090
|
);
|
|
22080
22091
|
`);
|
|
22081
22092
|
}
|
|
22093
|
+
function up1102(db) {
|
|
22094
|
+
db.exec(`
|
|
22095
|
+
CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
|
|
22096
|
+
ON memory_entity_mentions(entity_id, memory_id);
|
|
22097
|
+
`);
|
|
22098
|
+
}
|
|
22082
22099
|
var MIGRATIONS2 = [
|
|
22083
22100
|
{
|
|
22084
22101
|
version: 1,
|
|
22085
22102
|
name: "baseline",
|
|
22086
|
-
up:
|
|
22103
|
+
up: up111,
|
|
22087
22104
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
22088
22105
|
},
|
|
22089
22106
|
{
|
|
@@ -22949,6 +22966,11 @@ var MIGRATIONS2 = [
|
|
|
22949
22966
|
artifacts: {
|
|
22950
22967
|
tables: ["telemetry_install"]
|
|
22951
22968
|
}
|
|
22969
|
+
},
|
|
22970
|
+
{
|
|
22971
|
+
version: 110,
|
|
22972
|
+
name: "memory-mention-join-index",
|
|
22973
|
+
up: up1102
|
|
22952
22974
|
}
|
|
22953
22975
|
];
|
|
22954
22976
|
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-gemini",
|
|
3
|
-
"version": "0.176.
|
|
3
|
+
"version": "0.176.4",
|
|
4
4
|
"description": "Signet connector for Gemini CLI",
|
|
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.176.
|
|
28
|
-
"@signetai/core": "0.176.
|
|
27
|
+
"@signetai/connector-base": "0.176.4",
|
|
28
|
+
"@signetai/core": "0.176.4"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|