refactor: remove internal ChatSessionState from public exports

ChatSessionState is an implementation detail of the transport's
session tracking. Users don't need to access it since the sessions
map is private.

Co-authored-by: Eric Allam <eric@trigger.dev>
This commit is contained in:
Cursor Agent
2026-02-15 11:49:57 +00:00
committed by Eric Allam
parent e3c3b5090f
commit fc72884466
+1 -1
View File
@@ -1,3 +1,3 @@
export { TriggerChatTransport, createChatTransport } from "./transport.js";
export type { TriggerChatTransportOptions, ChatTaskPayload, ChatSessionState } from "./types.js";
export type { TriggerChatTransportOptions, ChatTaskPayload } from "./types.js";
export { VERSION } from "./version.js";