From fb72f67cd06493646b1b30b1f8335ec7553e91fe Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Thu, 18 Jun 2026 08:49:31 +0800 Subject: [PATCH] refactor(channels): remove allowlist match facade --- src/channels/plugins/allowlist-match.ts | 3 --- src/channels/plugins/index.ts | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) delete mode 100644 src/channels/plugins/allowlist-match.ts diff --git a/src/channels/plugins/allowlist-match.ts b/src/channels/plugins/allowlist-match.ts deleted file mode 100644 index e79b9a4a301..00000000000 --- a/src/channels/plugins/allowlist-match.ts +++ /dev/null @@ -1,3 +0,0 @@ -// Compatibility facade for channel-plugin allowlist match helpers. -export type { AllowlistMatch, AllowlistMatchSource } from "../allowlist-match.js"; -export { formatAllowlistMatchMeta } from "../allowlist-match.js"; diff --git a/src/channels/plugins/index.ts b/src/channels/plugins/index.ts index 9123066b1ad..eb873e926f4 100644 --- a/src/channels/plugins/index.ts +++ b/src/channels/plugins/index.ts @@ -22,7 +22,7 @@ export { formatAllowlistMatchMeta, type AllowlistMatch, type AllowlistMatchSource, -} from "./allowlist-match.js"; +} from "../allowlist-match.js"; export type { ChannelId } from "./types.public.js"; export type { ChannelPlugin } from "./types.plugin.js"; export { resolveChannelApprovalAdapter, resolveChannelApprovalCapability } from "./approvals.js";