19 lines
779 B
TypeScript
19 lines
779 B
TypeScript
export type {
|
|
ChannelAdapter,
|
|
ChannelStatus,
|
|
InboundMessage,
|
|
OutboundMessage,
|
|
OutboundAttachment,
|
|
Attachment,
|
|
ToolStatusEvent,
|
|
MessageHandler,
|
|
} from './types.js';
|
|
export { ChannelRegistry } from './registry.js';
|
|
export { splitMessage } from './utils.js';
|
|
export { TelegramAdapter, type TelegramAdapterConfig } from './telegram/index.js';
|
|
export { WebChatAdapter, type WebChatAdapterConfig } from './webchat/index.js';
|
|
export { DiscordAdapter, type DiscordAdapterConfig } from './discord/index.js';
|
|
export { SlackAdapter, type SlackAdapterConfig } from './slack/index.js';
|
|
export { WhatsAppAdapter, type WhatsAppAdapterConfig } from './whatsapp/index.js';
|
|
export { PairingManager, type PairingConfig, type PairingStore, type ApprovedSender } from './pairing.js';
|