mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 21:31:35 +00:00
* refactor: move telegram and imessage schemas to plugins * test: allow bundled schema facade regression coverage * refactor: remove orphaned command config helper
9 lines
355 B
TypeScript
9 lines
355 B
TypeScript
// Telegram API module exposes the plugin public contract.
|
|
export { buildChannelConfigSchema } from "openclaw/plugin-sdk/channel-config-schema";
|
|
export { TelegramConfigSchema } from "./src/config-schema.js";
|
|
export {
|
|
normalizeTelegramCommandDescription,
|
|
normalizeTelegramCommandName,
|
|
resolveTelegramCustomCommands,
|
|
} from "./src/command-config.js";
|