signetai 0.192.2 → 0.193.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
@@ -40955,6 +40955,24 @@ function up123(db) {
40955
40955
  ON embedding_index_failures(source_type, source_id);
40956
40956
  `);
40957
40957
  }
40958
+ function up124(db) {
40959
+ db.exec(`
40960
+ CREATE TABLE IF NOT EXISTS imported_source_lifecycle (
40961
+ id TEXT PRIMARY KEY,
40962
+ source_id TEXT NOT NULL,
40963
+ agent_id TEXT NOT NULL,
40964
+ status TEXT NOT NULL CHECK(status IN ('unsupported', 'reviewed')),
40965
+ reason TEXT NOT NULL,
40966
+ removed_at TEXT NOT NULL,
40967
+ reviewed_at TEXT,
40968
+ created_at TEXT NOT NULL,
40969
+ updated_at TEXT NOT NULL,
40970
+ UNIQUE(source_id, agent_id)
40971
+ );
40972
+ CREATE INDEX IF NOT EXISTS idx_imported_source_lifecycle_agent
40973
+ ON imported_source_lifecycle(agent_id, status, updated_at DESC);
40974
+ `);
40975
+ }
40958
40976
  var MIGRATIONS = [
40959
40977
  {
40960
40978
  version: 1,
@@ -41955,6 +41973,14 @@ var MIGRATIONS = [
41955
41973
  name: "embedding-index-failures",
41956
41974
  up: up123,
41957
41975
  artifacts: { tables: ["embedding_index_failures"] }
41976
+ },
41977
+ {
41978
+ version: 124,
41979
+ name: "import-derived-lifecycle",
41980
+ up: up124,
41981
+ artifacts: {
41982
+ tables: ["imported_source_lifecycle"]
41983
+ }
41958
41984
  }
41959
41985
  ];
41960
41986
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -1,42 +1,42 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "version": "0.192.2",
3
+ "version": "0.193.0",
4
4
  "assets": [
5
5
  {
6
6
  "name": "signet-darwin-arm64",
7
7
  "platform": "darwin-arm64",
8
- "sha256": "ae21369cf1efe9f1a55945845bffee6260a715f47cc88271c6522715b71a28b2",
9
- "size": 117556768
8
+ "sha256": "5650215d97a506f75ff8671e9ceea928f67f36cd575520ed49d9018c5d433c19",
9
+ "size": 124541344
10
10
  },
11
11
  {
12
12
  "name": "signet-darwin-x64",
13
13
  "platform": "darwin-x64",
14
- "sha256": "9c45b54da4a88679bd0d70e4442dcea3f69e91abbc3a80790d07aa0456d564fa",
15
- "size": 122178112
14
+ "sha256": "2940b454dec1cbc96a170caf6cc24ab29844f49852c6c16cfa92ce908ef9c81d",
15
+ "size": 129518144
16
16
  },
17
17
  {
18
18
  "name": "signet-linux-arm64",
19
19
  "platform": "linux-arm64",
20
- "sha256": "d5a137fe406dded464531d6d1701b3f5d3303ebbc4e0040aab1bdd5f53ca94f7",
21
- "size": 154790707
20
+ "sha256": "f7cbe63ae54699a42d36527c83f79bd98256a91f219453666583221666d8e1d0",
21
+ "size": 169087440
22
22
  },
23
23
  {
24
24
  "name": "signet-linux-x64",
25
25
  "platform": "linux-x64",
26
- "sha256": "c479cc2df1c2904222ff935a3658e8420249de703832992d154d19d8a38a2089",
27
- "size": 155349692
26
+ "sha256": "bfb81054560f63d3a145bffc9ed68cf2b307190a65619e7e8f9abc0526acf43f",
27
+ "size": 171462022
28
28
  },
29
29
  {
30
30
  "name": "signet-win32-x64.exe",
31
31
  "platform": "win32-x64",
32
- "sha256": "b6f912b74bc115fac84b205a9aaa801b9509b8c362dd907969e6336b807234e8",
33
- "size": 171482112
32
+ "sha256": "946d00cce4ceffccca47ad9460315e9ff29efc8d47b79a5ce2e60be3c8a31eaf",
33
+ "size": 179587584
34
34
  }
35
35
  ],
36
36
  "components": {
37
37
  "connectors": {
38
- "url": "signet-connectors-0.192.2.tar.gz",
39
- "sha256": "d2aa40da715273f718795cb9e9f2064c203253fba92c6fb244dd525b8eae0c15",
38
+ "url": "signet-connectors-0.193.0.tar.gz",
39
+ "sha256": "bb28bf48f13daeb6334c9ba3299d1adcc0b3ffa3fe34116c611cb341057cc08d",
40
40
  "size": 16887
41
41
  }
42
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signetai",
3
- "version": "0.192.2",
3
+ "version": "0.193.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.192.2/signetai-darwin-arm64-0.192.2.tgz",
69
- "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.2/signetai-darwin-x64-0.192.2.tgz",
70
- "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.2/signetai-linux-arm64-0.192.2.tgz",
71
- "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.2/signetai-linux-x64-0.192.2.tgz",
72
- "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.192.2/signetai-win32-x64-0.192.2.tgz"
68
+ "signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.193.0/signetai-darwin-arm64-0.193.0.tgz",
69
+ "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.193.0/signetai-darwin-x64-0.193.0.tgz",
70
+ "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.193.0/signetai-linux-arm64-0.193.0.tgz",
71
+ "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.193.0/signetai-linux-x64-0.193.0.tgz",
72
+ "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.193.0/signetai-win32-x64-0.193.0.tgz"
73
73
  }
74
74
  }