@sentropic/h2a 0.60.0 → 0.61.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/session.d.ts CHANGED
@@ -15,7 +15,7 @@ import type { H2AWorkspaceRef } from "./identity.js";
15
15
  export declare const H2A_SESSION_STATES: readonly ["opening", "live", "draining", "closed", "expired"];
16
16
  export declare const H2A_SESSION_NOTIFICATION_TOPICS: readonly ["presence.peer_joined", "presence.peer_left", "inbox.envelope_arrived", "negotiation.event_appended", "peer.blocked", "peer.unblocked"];
17
17
  export declare const H2A_SESSION_DEFAULT_HEARTBEAT_INTERVAL_MS = 5000;
18
- export declare const H2A_SESSION_DEFAULT_EXPIRY_MS = 15000;
18
+ export declare const H2A_SESSION_DEFAULT_EXPIRY_MS = 90000;
19
19
  export type H2ASessionState = (typeof H2A_SESSION_STATES)[number];
20
20
  export type H2ASessionNotificationTopic = (typeof H2A_SESSION_NOTIFICATION_TOPICS)[number];
21
21
  export declare const H2A_WORK_STATUSES: readonly ["working", "paused", "done", "blocked", "out-of-tokens"];
package/dist/session.js CHANGED
@@ -28,7 +28,7 @@ export const H2A_SESSION_NOTIFICATION_TOPICS = [
28
28
  "peer.unblocked"
29
29
  ];
30
30
  export const H2A_SESSION_DEFAULT_HEARTBEAT_INTERVAL_MS = 5000;
31
- export const H2A_SESSION_DEFAULT_EXPIRY_MS = 15000;
31
+ export const H2A_SESSION_DEFAULT_EXPIRY_MS = 90000;
32
32
  // Drumbeat (DEC-084): an agent's self-reported work status, surfaced in the
33
33
  // presence record so an external relance loop can detect stalls.
34
34
  export const H2A_WORK_STATUSES = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentropic/h2a",
3
- "version": "0.60.0",
3
+ "version": "0.61.0",
4
4
  "description": "Core contracts and runtime primitives for human-to-agent coordination.",
5
5
  "license": "MIT",
6
6
  "type": "module",