signetai 0.151.0 → 0.152.1

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
@@ -38636,6 +38636,61 @@ function up88(db) {
38636
38636
  ON transcript_capture_jobs(agent_id, session_id, status);
38637
38637
  `);
38638
38638
  }
38639
+ function up89(db) {
38640
+ db.exec(`
38641
+ CREATE TABLE IF NOT EXISTS job_cancellations (
38642
+ id TEXT PRIMARY KEY,
38643
+ source_table TEXT NOT NULL,
38644
+ source_id TEXT NOT NULL,
38645
+ status_before TEXT NOT NULL,
38646
+ payload_json TEXT NOT NULL,
38647
+ reason TEXT,
38648
+ actor TEXT NOT NULL,
38649
+ actor_type TEXT NOT NULL,
38650
+ request_id TEXT,
38651
+ created_at TEXT NOT NULL
38652
+ )
38653
+ `);
38654
+ if (!indexExists(db, "job_cancellations", "idx_job_cancellations_source")) {
38655
+ db.exec(`CREATE INDEX IF NOT EXISTS idx_job_cancellations_source
38656
+ ON job_cancellations(source_table, source_id)`);
38657
+ }
38658
+ if (!indexExists(db, "job_cancellations", "idx_job_cancellations_created_at")) {
38659
+ db.exec(`CREATE INDEX IF NOT EXISTS idx_job_cancellations_created_at
38660
+ ON job_cancellations(created_at)`);
38661
+ }
38662
+ }
38663
+ function indexExists(db, table, indexName) {
38664
+ const rows = db.prepare(`PRAGMA index_list(${table})`).all();
38665
+ return rows.some((row) => row.name === indexName);
38666
+ }
38667
+ function up90(db) {
38668
+ db.exec(`
38669
+ CREATE TABLE IF NOT EXISTS job_archive (
38670
+ id TEXT PRIMARY KEY,
38671
+ source_table TEXT NOT NULL,
38672
+ source_id TEXT NOT NULL,
38673
+ status TEXT NOT NULL,
38674
+ payload_json TEXT NOT NULL,
38675
+ archived_at TEXT NOT NULL,
38676
+ archived_by TEXT NOT NULL,
38677
+ reason TEXT,
38678
+ created_at TEXT NOT NULL
38679
+ )
38680
+ `);
38681
+ if (!indexExists2(db, "job_archive", "idx_job_archive_source")) {
38682
+ db.exec(`CREATE INDEX IF NOT EXISTS idx_job_archive_source
38683
+ ON job_archive(source_table, source_id)`);
38684
+ }
38685
+ if (!indexExists2(db, "job_archive", "idx_job_archive_archived_at")) {
38686
+ db.exec(`CREATE INDEX IF NOT EXISTS idx_job_archive_archived_at
38687
+ ON job_archive(archived_at)`);
38688
+ }
38689
+ }
38690
+ function indexExists2(db, table, indexName) {
38691
+ const rows = db.prepare(`PRAGMA index_list(${table})`).all();
38692
+ return rows.some((row) => row.name === indexName);
38693
+ }
38639
38694
  var MIGRATIONS = [
38640
38695
  {
38641
38696
  version: 1,
@@ -39355,6 +39410,22 @@ var MIGRATIONS = [
39355
39410
  artifacts: {
39356
39411
  tables: ["transcript_recovery_files"]
39357
39412
  }
39413
+ },
39414
+ {
39415
+ version: 89,
39416
+ name: "job-cancellations",
39417
+ up: up89,
39418
+ artifacts: {
39419
+ tables: ["job_cancellations"]
39420
+ }
39421
+ },
39422
+ {
39423
+ version: 90,
39424
+ name: "job-archive",
39425
+ up: up90,
39426
+ artifacts: {
39427
+ tables: ["job_archive"]
39428
+ }
39358
39429
  }
39359
39430
  ];
39360
39431
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -1,43 +1,43 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "version": "0.151.0",
3
+ "version": "0.152.1",
4
4
  "assets": [
5
5
  {
6
6
  "name": "signet-darwin-arm64",
7
7
  "platform": "darwin-arm64",
8
- "sha256": "915f05b6c1aa81af8a0d33568008475e79e5b355963aa109e3ea5a7bc000c203",
9
- "size": 118613536
8
+ "sha256": "f4804eca5ff04215c50f0b69cd35fbf9fafb8bf5fa8ece5f877d90f51c687a1e",
9
+ "size": 118679584
10
10
  },
11
11
  {
12
12
  "name": "signet-darwin-x64",
13
13
  "platform": "darwin-x64",
14
- "sha256": "7be24e8118ada60965ff413531b1d776ba79e266036bb39e9f4b2447e21b6112",
15
- "size": 123226688
14
+ "sha256": "f4ad9a54054a839245e153b3e84c2936d788fcb64f2f972f928c7d6b8cddf154",
15
+ "size": 123292224
16
16
  },
17
17
  {
18
18
  "name": "signet-linux-arm64",
19
19
  "platform": "linux-arm64",
20
- "sha256": "9bb60e5bd5aa62dc01930ca44e064a22da89ab6eb83b117072234e258adb6080",
21
- "size": 155835005
20
+ "sha256": "da9db02462aca26873d4feeaadf65390c7446686051f1f8f7bb2fe62ff486135",
21
+ "size": 155912006
22
22
  },
23
23
  {
24
24
  "name": "signet-linux-x64",
25
25
  "platform": "linux-x64",
26
- "sha256": "6236b30d457ca53dcb9555dd859487122e81d265f319ea44298fc36ea976446f",
27
- "size": 156393996
26
+ "sha256": "59a938537994ad24c8750bc863a0913b873b4b99b5a1cede7ac67a531a1d2b41",
27
+ "size": 156471001
28
28
  },
29
29
  {
30
30
  "name": "signet-win32-x64.exe",
31
31
  "platform": "win32-x64",
32
- "sha256": "37b3e539c4fae44f9a2c4c84b399a56941b1cb0e6755cbaecc13096fc8ae2ae3",
33
- "size": 172526592
32
+ "sha256": "1895a54d0002502e894a751e41ad03405582641a3adb499000aaff77c8939e2c",
33
+ "size": 172603392
34
34
  }
35
35
  ],
36
36
  "components": {
37
37
  "connectors": {
38
- "url": "signet-connectors-0.151.0.tar.gz",
39
- "sha256": "4ed2c38cc2d6cd0d3599e70ecd02f3a05f85927851f3073570b9e4d99debddaf",
40
- "size": 15995
38
+ "url": "signet-connectors-0.152.1.tar.gz",
39
+ "sha256": "3983189bc0f62d1b720f222b4634618d3133e06e8ace76ad39312fb286b9c260",
40
+ "size": 15564
41
41
  }
42
42
  }
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signetai",
3
- "version": "0.151.0",
3
+ "version": "0.152.1",
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.151.0/signetai-darwin-arm64-0.151.0.tgz",
69
- "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.151.0/signetai-darwin-x64-0.151.0.tgz",
70
- "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.151.0/signetai-linux-arm64-0.151.0.tgz",
71
- "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.151.0/signetai-linux-x64-0.151.0.tgz",
72
- "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.151.0/signetai-win32-x64-0.151.0.tgz"
68
+ "signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.152.1/signetai-darwin-arm64-0.152.1.tgz",
69
+ "signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.152.1/signetai-darwin-x64-0.152.1.tgz",
70
+ "signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.152.1/signetai-linux-arm64-0.152.1.tgz",
71
+ "signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.152.1/signetai-linux-x64-0.152.1.tgz",
72
+ "signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.152.1/signetai-win32-x64-0.152.1.tgz"
73
73
  }
74
74
  }