@zxcpadik/nodebotx
v1.0.11
Published
TypeScript client for Express.ms BotX API platform
Maintainers
Readme
nodebotx
TypeScript client for eXpress.ms BotX API platform.
Installation
npm install nodebotx
# or
pnpm add nodebotx
# or
yarn add nodebotxQuick Start
import { BotXClient } from '@zxcpadik/nodebotx';
const client = new BotXClient({
bot_id: 'your-bot-uuid',
secret_key: 'your-secret-key',
base_url: 'https://cts.your-company.com',
});
// Send notification to chat
const { sync_id } = await client.notifications.send_direct({
group_chat_id: 'chat-uuid',
notification: {
status: 'ok',
body: 'Hello from BotX!',
},
});AI Slop Warning ⚠️
All code in this project was generated by AI and may contain errors or security vulnerabilities. Review carefully before use.
Documentation
eXpress.ms API reference: https://hackmd.ccsteam.ru/PZJXHXPSRie_GCJIIk0e9w
