signetai 0.176.12 → 0.178.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/mcp-stdio.js CHANGED
@@ -47414,6 +47414,18 @@ function up110(db) {
47414
47414
  ON memory_entity_mentions(entity_id, memory_id);
47415
47415
  `);
47416
47416
  }
47417
+ function hasColumn19(db, table, column) {
47418
+ const rows = db.prepare(`PRAGMA table_info(${table})`).all();
47419
+ return rows.some((row) => row.name === column);
47420
+ }
47421
+ var COLUMNS2 = ["first_remember_at", "first_recall_at"];
47422
+ function up111(db) {
47423
+ for (const column of COLUMNS2) {
47424
+ if (!hasColumn19(db, "telemetry_install", column)) {
47425
+ db.exec(`ALTER TABLE telemetry_install ADD COLUMN ${column} TEXT`);
47426
+ }
47427
+ }
47428
+ }
47417
47429
  var MIGRATIONS = [
47418
47430
  {
47419
47431
  version: 1,
@@ -48289,6 +48301,17 @@ var MIGRATIONS = [
48289
48301
  version: 110,
48290
48302
  name: "memory-mention-join-index",
48291
48303
  up: up110
48304
+ },
48305
+ {
48306
+ version: 111,
48307
+ name: "telemetry-first-use",
48308
+ up: up111,
48309
+ artifacts: {
48310
+ columns: [
48311
+ { table: "telemetry_install", column: "first_remember_at" },
48312
+ { table: "telemetry_install", column: "first_recall_at" }
48313
+ ]
48314
+ }
48292
48315
  }
48293
48316
  ];
48294
48317
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -1,42 +1,42 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "version": "0.176.12",
3
+ "version": "0.178.0",
4
4
  "assets": [
5
5
  {
6
6
  "name": "signet-darwin-arm64",
7
7
  "platform": "darwin-arm64",
8
- "sha256": "41f6671d3b71ca565e0ab37c0ba103fe702029a0a4bcb3d329adf61450666d27",
9
- "size": 117110944
8
+ "sha256": "3c31c3b65d9d08d05f315e11dc48179efa08c63a72bb3d6aac5dee4d13268292",
9
+ "size": 117127456
10
10
  },
11
11
  {
12
12
  "name": "signet-darwin-x64",
13
13
  "platform": "darwin-x64",
14
- "sha256": "d01c765f92b65c60921a6742decfb61c38b49b6ebc9111da24a4101666cfb34f",
15
- "size": 121735744
14
+ "sha256": "688faf2eb21d70deb7349b2d90cf91ed2103a69f232525748fc571f4574a5078",
15
+ "size": 121752128
16
16
  },
17
17
  {
18
18
  "name": "signet-linux-arm64",
19
19
  "platform": "linux-arm64",
20
- "sha256": "229e020285f7e6122745cf0f0b35e2427852c23cb9dbcf50087d2ec08fc8c0e3",
21
- "size": 154344925
20
+ "sha256": "a3657d9f8e5d7e404b746d34ad3b80fecbfc08b8240e7a1528bf082c6fda29eb",
21
+ "size": 154363688
22
22
  },
23
23
  {
24
24
  "name": "signet-linux-x64",
25
25
  "platform": "linux-x64",
26
- "sha256": "2813be752ee40306ed5b9626db2b20eb808b790c4cb38b264f12db3cf4bab5fe",
27
- "size": 154903910
26
+ "sha256": "40e654f1f59d938817fe3c34eec1ba9644c809a753ecd84ebb726f10da16c020",
27
+ "size": 154922673
28
28
  },
29
29
  {
30
30
  "name": "signet-win32-x64.exe",
31
31
  "platform": "win32-x64",
32
- "sha256": "b5ddaedcb9c5d46b8d63f22934be3e1e53bb9228846cb8628eac2d82921e8d3d",
33
- "size": 171037184
32
+ "sha256": "3e5568dd603f8116ad14db7c4420b2bfc0a3e2f7e85d4805d96281a5463106cb",
33
+ "size": 171055616
34
34
  }
35
35
  ],
36
36
  "components": {
37
37
  "connectors": {
38
- "url": "signet-connectors-0.176.12.tar.gz",
39
- "sha256": "346165382ff4b3cf712c007c4e9aa445e934a39edc691746cdc75cccf6ddd6b6",
38
+ "url": "signet-connectors-0.178.0.tar.gz",
39
+ "sha256": "d5b2f88dc383c13183820d50f2ae6e6ac7b27c93b325a5d3e76aa66caa07b292",
40
40
  "size": 16247
41
41
  }
42
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signetai",
3
- "version": "0.176.12",
3
+ "version": "0.178.0",
4
4
  "description": "Signet native CLI installer wrapper",
5
5
  "type": "module",
6
6
  "bin": {
@@ -65,10 +65,10 @@
65
65
  "access": "public"
66
66
  },
67
67
  "optionalDependencies": {
68
- "signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.176.12/signetai-darwin-arm64-0.176.12.tgz",
69
- "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.176.12/signetai-darwin-x64-0.176.12.tgz",
70
- "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.176.12/signetai-linux-arm64-0.176.12.tgz",
71
- "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.176.12/signetai-linux-x64-0.176.12.tgz",
72
- "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.176.12/signetai-win32-x64-0.176.12.tgz"
68
+ "signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.178.0/signetai-darwin-arm64-0.178.0.tgz",
69
+ "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.178.0/signetai-darwin-x64-0.178.0.tgz",
70
+ "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.178.0/signetai-linux-arm64-0.178.0.tgz",
71
+ "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.178.0/signetai-linux-x64-0.178.0.tgz",
72
+ "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.178.0/signetai-win32-x64-0.178.0.tgz"
73
73
  }
74
74
  }