@teamvibe/poller 0.1.14 → 0.1.15

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.
Files changed (2) hide show
  1. package/dist/config.js +2 -2
  2. package/package.json +1 -1
package/dist/config.js CHANGED
@@ -13,8 +13,8 @@ const configSchema = z.object({
13
13
  // Poller settings
14
14
  MAX_CONCURRENT_SESSIONS: z.coerce.number().default(5),
15
15
  POLL_WAIT_TIME_SECONDS: z.coerce.number().default(20),
16
- VISIBILITY_TIMEOUT_SECONDS: z.coerce.number().default(300),
17
- HEARTBEAT_INTERVAL_MS: z.coerce.number().default(60000), // 1 minute
16
+ VISIBILITY_TIMEOUT_SECONDS: z.coerce.number().default(60),
17
+ HEARTBEAT_INTERVAL_MS: z.coerce.number().default(40000), // 40 seconds
18
18
  CLAUDE_TIMEOUT_MS: z.coerce.number().default(1800000), // 30 minutes
19
19
  STALE_LOCK_TIMEOUT_MS: z.coerce.number().default(2100000), // 35 minutes
20
20
  // Paths
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamvibe/poller",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "bin": {