moltbot-dingtalk-stream 1.0.5 → 1.0.6
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/clawdbot.plugin.json +1 -1
- package/dist/clawdbot.plugin.json +48 -11
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/clawdbot.plugin.json
CHANGED
|
@@ -1,19 +1,56 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "moltbot-dingtalk-stream",
|
|
3
3
|
"name": "DingTalk Stream Channel",
|
|
4
|
-
"version": "1.0.
|
|
5
|
-
"description": "Custom channel for integrating
|
|
6
|
-
"author": "
|
|
4
|
+
"version": "1.0.6",
|
|
5
|
+
"description": "Custom channel for integrating Moltbot with DingTalk (Stream Mode)",
|
|
6
|
+
"author": "Jack",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"extensions":
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
],
|
|
8
|
+
"extensions": {
|
|
9
|
+
"channels": [
|
|
10
|
+
"./index.js"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
14
13
|
"configSchema": {
|
|
15
14
|
"type": "object",
|
|
16
|
-
"
|
|
17
|
-
|
|
15
|
+
"properties": {
|
|
16
|
+
"channels": {
|
|
17
|
+
"type": "object",
|
|
18
|
+
"properties": {
|
|
19
|
+
"moltbot-dingtalk-stream": {
|
|
20
|
+
"type": "object",
|
|
21
|
+
"properties": {
|
|
22
|
+
"accounts": {
|
|
23
|
+
"type": "object",
|
|
24
|
+
"additionalProperties": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"properties": {
|
|
27
|
+
"enabled": {
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"description": "Whether this account is enabled"
|
|
30
|
+
},
|
|
31
|
+
"clientId": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "AppKey from DingTalk developer console"
|
|
34
|
+
},
|
|
35
|
+
"clientSecret": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"description": "AppSecret from DingTalk developer console"
|
|
38
|
+
},
|
|
39
|
+
"webhookUrl": {
|
|
40
|
+
"type": "string",
|
|
41
|
+
"description": "Optional webhook URL for proactive messages"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"required": [
|
|
45
|
+
"clientId",
|
|
46
|
+
"clientSecret"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
18
55
|
}
|
|
19
56
|
}
|
package/dist/package.json
CHANGED