From 04ca103090231f101f2d1ec320707a07f3df0fc3 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sat, 11 Apr 2026 18:52:25 +0100 Subject: [PATCH] fix(channels): bypass public channel meta types --- src/channels/chat-meta-shared.ts | 2 +- src/channels/plugins/exposure.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/channels/chat-meta-shared.ts b/src/channels/chat-meta-shared.ts index 796be9648d9..a0dc3c641ae 100644 --- a/src/channels/chat-meta-shared.ts +++ b/src/channels/chat-meta-shared.ts @@ -3,7 +3,7 @@ import type { PluginPackageChannel } from "../plugins/manifest.js"; import { normalizeOptionalString } from "../shared/string-coerce.js"; import { CHAT_CHANNEL_ORDER, type ChatChannelId } from "./ids.js"; import { resolveChannelExposure } from "./plugins/exposure.js"; -import type { ChannelMeta } from "./plugins/types.public.js"; +import type { ChannelMeta } from "./plugins/types.core.js"; export type ChatChannelMeta = ChannelMeta; diff --git a/src/channels/plugins/exposure.ts b/src/channels/plugins/exposure.ts index 51b49597a85..03ebdb36920 100644 --- a/src/channels/plugins/exposure.ts +++ b/src/channels/plugins/exposure.ts @@ -1,4 +1,4 @@ -import type { ChannelMeta } from "./types.public.js"; +import type { ChannelMeta } from "./types.core.js"; export function resolveChannelExposure( meta: Pick,