@largezhou/ddingtalk 1.4.0-beta.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +2 -2
- package/README.md +2 -2
- package/package.json +5 -6
package/README.en.md
CHANGED
|
@@ -13,8 +13,8 @@ OpenClaw DingTalk channel plugin, using Stream mode to connect enterprise robots
|
|
|
13
13
|
- ✅ **Text Messages**: Send and receive text messages
|
|
14
14
|
- ✅ **Markdown Reply**: Robot replies in Markdown format
|
|
15
15
|
- ✅ **Image Messages**: Receive images from users, send local/remote images
|
|
16
|
-
- ✅ **
|
|
17
|
-
- ✅ **File
|
|
16
|
+
- ✅ **Audio & Video Messages**: Send and receive voice and video messages
|
|
17
|
+
- ✅ **File Messages**: Send and receive files, including rich text messages
|
|
18
18
|
- ✅ **Active Message Push**: Supports active message pushing, configurable for reminders or scheduled tasks
|
|
19
19
|
- ✅ **OpenClaw Commands**: Supports official OpenClaw commands such as /new, /compact
|
|
20
20
|
|
package/README.md
CHANGED
|
@@ -13,8 +13,8 @@ OpenClaw 钉钉(DingTalk)渠道插件,使用 Stream 模式接入企业机
|
|
|
13
13
|
- ✅ **文本消息收发**:接收和发送文本消息
|
|
14
14
|
- ✅ **Markdown 回复**:机器人回复 Markdown 格式
|
|
15
15
|
- ✅ **图片消息收发**:接收用户发送的图片,支持发送本地/远程图片
|
|
16
|
-
- ✅
|
|
17
|
-
- ✅
|
|
16
|
+
- ✅ **音视频消息**:支持接收和发送语音、视频消息
|
|
17
|
+
- ✅ **文件消息**:支持接收和发送文件,以及图文混排消息
|
|
18
18
|
- ✅ **主动推送消息**:支持主动推送消息,可以配置提醒或定时任务
|
|
19
19
|
- ✅ **支持 OpenClaw 命令**:支持 /new、/compact 等 OpenClaw 官方命令
|
|
20
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@largezhou/ddingtalk",
|
|
3
|
-
"version": "1.4.0
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "OpenClaw DingTalk (钉钉) channel plugin",
|
|
5
5
|
"main": "index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -29,19 +29,18 @@
|
|
|
29
29
|
"author": "largezhou",
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"dingtalk-stream": "^2.1.4"
|
|
32
|
+
"dingtalk-stream": "^2.1.4",
|
|
33
|
+
"zod": "^4.0.0"
|
|
33
34
|
},
|
|
34
35
|
"devDependencies": {
|
|
35
36
|
"@types/node": "^20.10.0",
|
|
36
37
|
"dotenv": "^17.3.1",
|
|
37
38
|
"openclaw": "*",
|
|
38
39
|
"tsx": "^4.6.0",
|
|
39
|
-
"typescript": "^5.3.0"
|
|
40
|
-
"zod": "^4.3.6"
|
|
40
|
+
"typescript": "^5.3.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"openclaw": "*"
|
|
44
|
-
"zod": "^4.0.0"
|
|
43
|
+
"openclaw": "*"
|
|
45
44
|
},
|
|
46
45
|
"openclaw": {
|
|
47
46
|
"extensions": [
|