ForcePilot/backend/package/yuxi/channel/extensions/zoomchat/plugin.json
Kris d5e36d33b7 feat(channel): 添加 Zalo OA、Zoom Chat 和 Zulip 渠道扩展
新增 Zalo OA、Zoom Chat、Zulip 三个渠道扩展。

Zalo OA 渠道扩展主要模块:sidecar_client, config, gateway, outbound, streaming, pairing, security, auth, dedupe, directory, monitor, status, session, reactions, tools

Zoom Chat 渠道扩展主要模块:config, gateway, webhook, outbound, streaming, pairing, security, crypto, dedupe, actions, media, mentions, monitor, status, session, reactions, threading

Zulip 渠道扩展主要模块:client, config, gateway, outbound, streaming, pairing, security, monitor, status
2026-05-21 12:06:26 +08:00

31 lines
938 B
JSON

{
"id": "zoomchat",
"name": "Zoom Team Chat",
"version": "0.1.0",
"label": "Zoom Team Chat",
"aliases": ["zoom", "zoom-chat", "zoomteamchat"],
"description": "Zoom Team Chat 渠道插件,基于 Server-to-Server OAuth + REST Chat API",
"author": "ForcePilot Team",
"order": 105,
"dependencies": ["httpx"],
"capabilities": {
"chat_types": ["direct", "group", "channel"],
"message_types": ["text", "image", "file", "audio", "video"],
"streaming": true,
"streaming_mode": "block",
"block_streaming": true,
"reactions": true,
"threads": true,
"reply": true,
"media": true,
"mentions": true,
"typing_indicator": false,
"edit": false,
"unsend": false,
"polls": false,
"templates": false,
"native_commands": false
},
"enabled": false,
"python_requires": ">=3.12"
}