新增 Synology Chat 渠道扩展,支持在 Yuxi 平台中集成群晖 Synology Chat 即时通讯渠道。 包含以下功能模块: - client: Synology Chat API 客户端封装 - accounts: 账户管理 - webhook: Webhook 事件处理 - security: 安全校验 - dedupe: 消息去重 - status: 会话状态管理 - session: 会话管理 - types: 类型定义
29 lines
731 B
JSON
29 lines
731 B
JSON
{
|
|
"id": "synology-chat",
|
|
"name": "Synology Chat",
|
|
"version": "1.0.0",
|
|
"label": "Synology Chat",
|
|
"description": "Synology Chat channel plugin for direct and group messaging via webhook with text and file support",
|
|
"author": "ForcePilot",
|
|
"order": 110,
|
|
"dependencies": ["aiohttp"],
|
|
"python_requires": ">=3.12",
|
|
"enabled": true,
|
|
"capabilities": {
|
|
"chat_types": ["direct", "group"],
|
|
"message_types": ["text", "file"],
|
|
"reactions": false,
|
|
"typing_indicator": false,
|
|
"threads": false,
|
|
"edit": false,
|
|
"unsend": false,
|
|
"reply": false,
|
|
"media": true,
|
|
"effects": false,
|
|
"native_commands": false,
|
|
"polls": false,
|
|
"streaming": false,
|
|
"block_streaming": false
|
|
}
|
|
}
|