@signetai/connector-gemini 0.226.19 → 0.226.23
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
|
@@ -15927,6 +15927,12 @@ function up157(db) {
|
|
|
15927
15927
|
);
|
|
15928
15928
|
`);
|
|
15929
15929
|
}
|
|
15930
|
+
function up158(db) {
|
|
15931
|
+
db.exec(`
|
|
15932
|
+
CREATE INDEX IF NOT EXISTS idx_memories_agent_kind
|
|
15933
|
+
ON memories(agent_id, memory_kind);
|
|
15934
|
+
`);
|
|
15935
|
+
}
|
|
15930
15936
|
var MIGRATIONS = [
|
|
15931
15937
|
{
|
|
15932
15938
|
version: 1,
|
|
@@ -17207,6 +17213,12 @@ var MIGRATIONS = [
|
|
|
17207
17213
|
tables: ["embedding_repair_progress"],
|
|
17208
17214
|
columns: [{ table: "embedding_repair_checkpoints", column: "profile_fingerprint" }]
|
|
17209
17215
|
}
|
|
17216
|
+
},
|
|
17217
|
+
{
|
|
17218
|
+
version: 158,
|
|
17219
|
+
name: "dreaming-candidate-scan-index",
|
|
17220
|
+
up: up158,
|
|
17221
|
+
artifacts: { indexes: ["idx_memories_agent_kind"] }
|
|
17210
17222
|
}
|
|
17211
17223
|
];
|
|
17212
17224
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -28286,7 +28298,7 @@ var DAEMON_DERIVED_MEMORY_SOURCE_TYPES2 = [
|
|
|
28286
28298
|
"checkpoint",
|
|
28287
28299
|
"dreaming"
|
|
28288
28300
|
];
|
|
28289
|
-
function
|
|
28301
|
+
function up159(db) {
|
|
28290
28302
|
const hasColumn26 = (table, column) => {
|
|
28291
28303
|
const statement = db.prepare(`SELECT 1 FROM pragma_table_info('${table}') WHERE name = ?`);
|
|
28292
28304
|
try {
|
|
@@ -28936,7 +28948,7 @@ function up1410(db) {
|
|
|
28936
28948
|
)
|
|
28937
28949
|
`);
|
|
28938
28950
|
}
|
|
28939
|
-
function
|
|
28951
|
+
function up1510(db) {
|
|
28940
28952
|
db.exec(`
|
|
28941
28953
|
CREATE TABLE IF NOT EXISTS session_scores (
|
|
28942
28954
|
id TEXT PRIMARY KEY,
|
|
@@ -33594,6 +33606,12 @@ function up1572(db) {
|
|
|
33594
33606
|
);
|
|
33595
33607
|
`);
|
|
33596
33608
|
}
|
|
33609
|
+
function up1582(db) {
|
|
33610
|
+
db.exec(`
|
|
33611
|
+
CREATE INDEX IF NOT EXISTS idx_memories_agent_kind
|
|
33612
|
+
ON memories(agent_id, memory_kind);
|
|
33613
|
+
`);
|
|
33614
|
+
}
|
|
33597
33615
|
var MIGRATIONS2 = [
|
|
33598
33616
|
{
|
|
33599
33617
|
version: 1,
|
|
@@ -33664,7 +33682,7 @@ var MIGRATIONS2 = [
|
|
|
33664
33682
|
{
|
|
33665
33683
|
version: 11,
|
|
33666
33684
|
name: "session-scores",
|
|
33667
|
-
up:
|
|
33685
|
+
up: up1510,
|
|
33668
33686
|
artifacts: { tables: ["session_scores"] }
|
|
33669
33687
|
},
|
|
33670
33688
|
{
|
|
@@ -34801,7 +34819,7 @@ var MIGRATIONS2 = [
|
|
|
34801
34819
|
{
|
|
34802
34820
|
version: 151,
|
|
34803
34821
|
name: "transcript-import-bytes",
|
|
34804
|
-
up:
|
|
34822
|
+
up: up159,
|
|
34805
34823
|
artifacts: {
|
|
34806
34824
|
tables: [
|
|
34807
34825
|
"source_import_chunks",
|
|
@@ -34874,6 +34892,12 @@ var MIGRATIONS2 = [
|
|
|
34874
34892
|
tables: ["embedding_repair_progress"],
|
|
34875
34893
|
columns: [{ table: "embedding_repair_checkpoints", column: "profile_fingerprint" }]
|
|
34876
34894
|
}
|
|
34895
|
+
},
|
|
34896
|
+
{
|
|
34897
|
+
version: 158,
|
|
34898
|
+
name: "dreaming-candidate-scan-index",
|
|
34899
|
+
up: up1582,
|
|
34900
|
+
artifacts: { indexes: ["idx_memories_agent_kind"] }
|
|
34877
34901
|
}
|
|
34878
34902
|
];
|
|
34879
34903
|
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.226.
|
|
3
|
+
"version": "0.226.23",
|
|
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.226.
|
|
28
|
-
"@signetai/core": "0.226.
|
|
27
|
+
"@signetai/connector-base": "0.226.23",
|
|
28
|
+
"@signetai/core": "0.226.23"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|