Add Mattermost as a supported messaging channel with bot API and WebSocket integration. Includes channel state tracking (tint, summary, details), multi-account support, and delivery target routing. Update documentation and tests to include Mattermost alongside existing channels.
27 lines
973 B
TypeScript
27 lines
973 B
TypeScript
// Split into focused modules to keep files small and improve edit locality.
|
|
|
|
export * from "./types.agent-defaults.js";
|
|
export * from "./types.agents.js";
|
|
export * from "./types.auth.js";
|
|
export * from "./types.base.js";
|
|
export * from "./types.browser.js";
|
|
export * from "./types.channels.js";
|
|
export * from "./types.clawdbot.js";
|
|
export * from "./types.cron.js";
|
|
export * from "./types.discord.js";
|
|
export * from "./types.gateway.js";
|
|
export * from "./types.hooks.js";
|
|
export * from "./types.imessage.js";
|
|
export * from "./types.messages.js";
|
|
export * from "./types.models.js";
|
|
export * from "./types.mattermost.js";
|
|
export * from "./types.msteams.js";
|
|
export * from "./types.plugins.js";
|
|
export * from "./types.queue.js";
|
|
export * from "./types.sandbox.js";
|
|
export * from "./types.signal.js";
|
|
export * from "./types.skills.js";
|
|
export * from "./types.slack.js";
|
|
export * from "./types.telegram.js";
|
|
export * from "./types.tools.js";
|
|
export * from "./types.whatsapp.js";
|