From 9656ae649cd9fea55d55b23101b6ffe16e279717 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sat, 11 Apr 2026 16:42:35 +0100 Subject: [PATCH] fix(channels): bypass public channel types in registry --- src/channels/registry.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/channels/registry.ts b/src/channels/registry.ts index 775e0d23fc8..b6322a85bd8 100644 --- a/src/channels/registry.ts +++ b/src/channels/registry.ts @@ -14,7 +14,8 @@ import { normalizeChatChannelId, type ChatChannelId, } from "./ids.js"; -import type { ChannelId, ChannelMeta } from "./plugins/types.public.js"; +import type { ChannelId } from "./plugins/channel-id.types.js"; +import type { ChannelMeta } from "./plugins/types.core.js"; export { getChatChannelMeta, listChatChannels } from "./chat-meta.js"; export { CHANNEL_IDS, CHAT_CHANNEL_ORDER } from "./ids.js"; export type { ChatChannelId } from "./ids.js";