@siftd/connect-agent 0.2.13 → 0.2.14

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/heartbeat.js CHANGED
@@ -10,7 +10,7 @@ import { hostname } from 'os';
10
10
  import { createHash } from 'crypto';
11
11
  import { getServerUrl, getAgentToken, getUserId, isCloudMode } from './config.js';
12
12
  const HEARTBEAT_INTERVAL = 10000; // 10 seconds
13
- const VERSION = '0.2.13'; // Should match package.json
13
+ const VERSION = '0.2.14'; // Should match package.json
14
14
  const state = {
15
15
  intervalId: null,
16
16
  runnerId: null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siftd/connect-agent",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "description": "Master orchestrator agent - control Claude Code remotely via web",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -43,6 +43,7 @@
43
43
  "conf": "^13.0.1",
44
44
  "node-cron": "^3.0.3",
45
45
  "ora": "^8.1.1",
46
+ "pg": "^8.13.1",
46
47
  "vectra": "^0.9.0",
47
48
  "ws": "^8.18.3"
48
49
  },
@@ -50,6 +51,7 @@
50
51
  "@types/better-sqlite3": "^7.6.12",
51
52
  "@types/node": "^22.10.2",
52
53
  "@types/node-cron": "^3.0.11",
54
+ "@types/pg": "^8.11.10",
53
55
  "@types/ws": "^8.18.1",
54
56
  "typescript": "^5.7.2"
55
57
  }