diff --git a/src/gateway/channel-health-monitor.ts b/src/gateway/channel-health-monitor.ts index a469723f330..343ab399ed3 100644 --- a/src/gateway/channel-health-monitor.ts +++ b/src/gateway/channel-health-monitor.ts @@ -23,13 +23,13 @@ const ONE_HOUR_MS = 60 * 60_000; * Providers should only publish that timestamp from transport/heartbeat/poll * signals, not from ordinary app messages. */ -export type ChannelHealthTimingPolicy = { +type ChannelHealthTimingPolicy = { monitorStartupGraceMs: number; channelConnectGraceMs: number; staleEventThresholdMs: number; }; -export type ChannelHealthMonitorDeps = { +type ChannelHealthMonitorDeps = { channelManager: ChannelManager; checkIntervalMs?: number; /** @deprecated use timing.monitorStartupGraceMs */ diff --git a/src/gateway/chat-abort.ts b/src/gateway/chat-abort.ts index f378a20d7d2..95f3e7f3167 100644 --- a/src/gateway/chat-abort.ts +++ b/src/gateway/chat-abort.ts @@ -20,7 +20,7 @@ export type ChatAbortControllerEntry = { kind?: "chat-send" | "agent"; }; -export type RegisteredChatAbortController = { +type RegisteredChatAbortController = { controller: AbortController; registered: boolean; entry?: ChatAbortControllerEntry; diff --git a/src/gateway/credentials.ts b/src/gateway/credentials.ts index 2f944dcb7df..8ae3f0db564 100644 --- a/src/gateway/credentials.ts +++ b/src/gateway/credentials.ts @@ -17,7 +17,7 @@ export type ExplicitGatewayAuth = { password?: string; }; -export type ResolvedGatewayCredentials = { +type ResolvedGatewayCredentials = { token?: string; password?: string; };