// Whatsapp plugin entrypoint registers its OpenClaw integration. import { defineBundledChannelEntry, loadBundledEntryExportSync, } from "openclaw/plugin-sdk/channel-entry-contract"; import type { OpenClawPluginApi } from "openclaw/plugin-sdk/channel-entry-contract"; function registerWhatsAppCallTool(api: OpenClawPluginApi): void { const registerTool = loadBundledEntryExportSync<(api: OpenClawPluginApi) => void>( import.meta.url, { specifier: "./call-tool-api.js", exportName: "registerWhatsAppCallTool", }, ); registerTool(api); } export default defineBundledChannelEntry({ id: "whatsapp", name: "WhatsApp", description: "WhatsApp channel plugin", importMetaUrl: import.meta.url, plugin: { specifier: "./channel-plugin-api.js", exportName: "whatsappPlugin", }, runtime: { specifier: "./runtime-setter-api.js", exportName: "setWhatsAppRuntime", }, registerFull: registerWhatsAppCallTool, });