@dingtalk-real-ai/dingtalk-connector 0.8.16 → 0.8.17-beta.1
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.
|
@@ -345,6 +345,8 @@ Options:
|
|
|
345
345
|
console.log(dim(` Configuration saved to ${getConfigPath()}`) + '\n');
|
|
346
346
|
console.log(cyan('Please restart the gateway to apply changes:') + '\n');
|
|
347
347
|
console.log(cyan(' openclaw gateway restart') + '\n');
|
|
348
|
+
// Note: the ~3 min warm-up is an OpenClaw gateway behaviour, not plugin-specific.
|
|
349
|
+
console.log(green('⏳ After restart, allow ~3 minutes for the gateway to fully initialize — then you can chat with your bot!') + '\n');
|
|
348
350
|
return;
|
|
349
351
|
}
|
|
350
352
|
|
|
@@ -367,6 +369,8 @@ Options:
|
|
|
367
369
|
} else {
|
|
368
370
|
console.log(cyan('Please restart the gateway to apply changes:') + '\n');
|
|
369
371
|
console.log(cyan(' openclaw gateway restart') + '\n');
|
|
372
|
+
// Note: the ~3 min warm-up is an OpenClaw gateway behaviour, not plugin-specific.
|
|
373
|
+
console.log(green('⏳ After restart, allow ~3 minutes for the gateway to fully initialize — then you can chat with your bot!') + '\n');
|
|
370
374
|
}
|
|
371
375
|
} catch (err) {
|
|
372
376
|
console.error('\n' + red('❌ Authorization failed: ') + err.message + '\n');
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "dingtalk-connector",
|
|
3
|
+
"name": "DingTalk Channel",
|
|
4
|
+
"version": "0.8.17-beta.1",
|
|
5
|
+
"description": "Official OpenClaw DingTalk channel plugin | 钉钉官方 OpenClaw 插件",
|
|
6
|
+
"author": "DingTalk Real Team",
|
|
7
|
+
"main": "index.ts",
|
|
3
8
|
"channels": [
|
|
4
9
|
"dingtalk-connector"
|
|
5
10
|
],
|
|
6
|
-
"skills": ["./skills"],
|
|
7
11
|
"configSchema": {
|
|
8
12
|
"type": "object",
|
|
9
13
|
"additionalProperties": false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dingtalk-real-ai/dingtalk-connector",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.17-beta.1",
|
|
4
4
|
"description": "Official OpenClaw DingTalk channel plugin | 钉钉官方 OpenClaw 插件",
|
|
5
5
|
"main": "index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,9 @@
|
|
|
26
26
|
"clean": "rm -rf node_modules package-lock.json",
|
|
27
27
|
"install:fresh": "npm run clean && npm install",
|
|
28
28
|
"dev": "echo 'Run: openclaw start'",
|
|
29
|
-
"validate": "npm run lint && npm run type-check && npm run version:check"
|
|
29
|
+
"validate": "npm run lint && npm run type-check && npm run version:check",
|
|
30
|
+
"prepack": "node -e \"const fs=require('fs'),p=JSON.parse(fs.readFileSync('package.json','utf8'));p._devDependencies=p.devDependencies;delete p.devDependencies;fs.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n')\"",
|
|
31
|
+
"postpack": "node -e \"const fs=require('fs'),p=JSON.parse(fs.readFileSync('package.json','utf8'));if(p._devDependencies){p.devDependencies=p._devDependencies;delete p._devDependencies;fs.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n')}\""
|
|
30
32
|
},
|
|
31
33
|
"keywords": [
|
|
32
34
|
"openclaw",
|
|
@@ -110,7 +112,7 @@
|
|
|
110
112
|
},
|
|
111
113
|
"installDependencies": true
|
|
112
114
|
},
|
|
113
|
-
"
|
|
115
|
+
"_devDependencies": {
|
|
114
116
|
"@types/node": "^20.19.37",
|
|
115
117
|
"@vitest/coverage-v8": "^2.0.0",
|
|
116
118
|
"@vitest/ui": "^2.1.9",
|