From 7373b77baf6549c4751c2d38dd78db83f0c81137 Mon Sep 17 00:00:00 2001 From: Pranav Katariya Date: Tue, 27 Jan 2026 19:48:40 -0800 Subject: [PATCH] fix: define Zoom channel meta inline instead of using getChatChannelMeta Plugin channels need to define meta inline since they're not in the core CHAT_CHANNEL_META registry. Matches pattern from matrix/zalo extensions. --- extensions/zoom/src/channel.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/extensions/zoom/src/channel.ts b/extensions/zoom/src/channel.ts index e0c78eba9..69b72739b 100644 --- a/extensions/zoom/src/channel.ts +++ b/extensions/zoom/src/channel.ts @@ -1,7 +1,6 @@ import { buildChannelConfigSchema, DEFAULT_ACCOUNT_ID, - getChatChannelMeta, type ChannelPlugin, type ResolvedZoomAccount, resolveZoomAccount, @@ -10,7 +9,16 @@ import { zoomOnboardingAdapter, } from "clawdbot/plugin-sdk"; -const meta = getChatChannelMeta("zoom"); +const meta = { + id: "zoom", + label: "Zoom", + selectionLabel: "Zoom Team Chat", + docsPath: "/channels/zoom", + docsLabel: "zoom", + blurb: "Zoom Team Chat via Team Chat Bot API.", + order: 45, + quickstartAllowFrom: true, +}; export const zoomPlugin: ChannelPlugin = { id: "zoom",