mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-18 21:40:53 +00:00
26 lines
809 B
TypeScript
26 lines
809 B
TypeScript
// Barrel exports for the web channel pieces. Splitting the original 900+ line
|
|
// module keeps responsibilities small and testable.
|
|
export {
|
|
DEFAULT_WEB_MEDIA_BYTES,
|
|
HEARTBEAT_PROMPT,
|
|
HEARTBEAT_TOKEN,
|
|
monitorWebChannel,
|
|
resolveHeartbeatRecipients,
|
|
runWebHeartbeatOnce,
|
|
} from "./plugin-sdk/whatsapp.js";
|
|
export { extractMediaPlaceholder, extractText, monitorWebInbox } from "./plugin-sdk/whatsapp.js";
|
|
export { loginWeb } from "./plugin-sdk/whatsapp.js";
|
|
export { loadWebMedia, optimizeImageToJpeg } from "./plugin-sdk/whatsapp.js";
|
|
export { sendMessageWhatsApp } from "./plugin-sdk/whatsapp.js";
|
|
export {
|
|
createWaSocket,
|
|
formatError,
|
|
getStatusCode,
|
|
logoutWeb,
|
|
logWebSelfId,
|
|
pickWebChannel,
|
|
WA_WEB_AUTH_DIR,
|
|
waitForWaConnection,
|
|
webAuthExists,
|
|
} from "./plugin-sdk/whatsapp.js";
|