diff --git a/src/channels/bundled-channel-catalog-read.ts b/src/channels/bundled-channel-catalog-read.ts index 8abcc456611..c9f0a25b689 100644 --- a/src/channels/bundled-channel-catalog-read.ts +++ b/src/channels/bundled-channel-catalog-read.ts @@ -11,7 +11,7 @@ type ChannelCatalogEntryLike = { }; }; -export type BundledChannelCatalogEntry = { +type BundledChannelCatalogEntry = { id: string; channel: PluginPackageChannel; aliases: readonly string[]; diff --git a/src/channels/conversation-binding-context.ts b/src/channels/conversation-binding-context.ts index 5136157ca43..b0ae8b79207 100644 --- a/src/channels/conversation-binding-context.ts +++ b/src/channels/conversation-binding-context.ts @@ -4,7 +4,7 @@ import { type ResolveCommandConversationResolutionInput, } from "./conversation-resolution.js"; -export type ConversationBindingContext = { +type ConversationBindingContext = { channel: string; accountId: string; conversationId: string; @@ -12,7 +12,7 @@ export type ConversationBindingContext = { threadId?: string; }; -export type ResolveConversationBindingContextInput = Omit< +type ResolveConversationBindingContextInput = Omit< ResolveCommandConversationResolutionInput, "includePlacementHint" > & { diff --git a/src/channels/conversation-resolution.ts b/src/channels/conversation-resolution.ts index 340abc4dedb..34cd125598a 100644 --- a/src/channels/conversation-resolution.ts +++ b/src/channels/conversation-resolution.ts @@ -18,7 +18,7 @@ import type { ChannelCommandConversationContext } from "./plugins/types.adapters import type { ChannelPlugin } from "./plugins/types.plugin.js"; import { normalizeAnyChannelId } from "./registry.js"; -export type ConversationResolutionSource = +type ConversationResolutionSource = | "command-provider" | "focused-binding" | "command-fallback" @@ -27,7 +27,7 @@ export type ConversationResolutionSource = | "inbound-bundled-plugin" | "inbound-fallback"; -export type ConversationResolution = { +type ConversationResolution = { canonical: { channel: string; accountId: string; @@ -57,7 +57,7 @@ export type ResolveCommandConversationResolutionInput = { includePlacementHint?: boolean; }; -export type ResolveInboundConversationResolutionInput = { +type ResolveInboundConversationResolutionInput = { cfg: OpenClawConfig; channel?: string | null; accountId?: string | null;