fix(channels): bypass public channel meta types

This commit is contained in:
Vincent Koc
2026-04-11 18:52:25 +01:00
parent 8923e9bcba
commit 04ca103090
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -1,4 +1,4 @@
import type { ChannelMeta } from "./types.public.js";
import type { ChannelMeta } from "./types.core.js";
export function resolveChannelExposure(
meta: Pick<ChannelMeta, "exposure" | "showConfigured" | "showInSetup">,