@dingtalk-real-ai/dingtalk-connector 0.8.11-beta.0 → 0.8.11

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/CHANGELOG.md CHANGED
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.8.11] - 2026-04-01
9
+
10
+ ### 新增 / Added
11
+ - ✨ **升级 Zod v4 + 自动生成 configSchema** - 将 Zod 从 v3 升级至 v4(`zod@^4.3.6`),通过 SDK 的 `buildChannelConfigSchema()` 自动从 Zod Schema 生成 JSON Schema,替代手动维护的 `configSchema.schema`
12
+ **Upgrade Zod v4 + auto-generate configSchema** - Upgraded Zod from v3 to v4, auto-generating JSON Schema via SDK's `buildChannelConfigSchema()`
13
+
14
+ ### 改进 / Improvements
15
+ - ✅ **依赖结构优化,减小安装体积** - 将 `openclaw` 移至 `peerDependencies`(optional),将 `fluent-ffmpeg`/`@ffmpeg-installer/ffmpeg`/`@ffprobe-installer/ffprobe` 移至 `optionalDependencies`,移除未使用的 `pako`
16
+ **Dependency optimization, reduced install size** - Moved `openclaw` to `peerDependencies` (optional), moved ffmpeg packages to `optionalDependencies`, removed unused `pako`
17
+
8
18
  ## [0.8.10] - 2026-03-31
9
19
 
10
20
  ### 修复 / Fixes
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "dingtalk-connector",
3
3
  "name": "DingTalk Channel",
4
- "version": "0.8.11-beta.0",
4
+ "version": "0.8.11",
5
5
  "description": "DingTalk (钉钉) messaging channel via Stream mode with AI Card streaming",
6
6
  "author": "DingTalk Real Team",
7
7
  "main": "index.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dingtalk-real-ai/dingtalk-connector",
3
- "version": "0.8.11-beta.0",
3
+ "version": "0.8.11",
4
4
  "description": "DingTalk (钉钉) channel connector — Stream mode with AI Card streaming",
5
5
  "main": "index.ts",
6
6
  "type": "module",
@@ -46,24 +46,22 @@
46
46
  "dependencies": {
47
47
  "axios": "1.6.0",
48
48
  "dingtalk-stream": "2.1.4",
49
- "fluent-ffmpeg": "^2.1.3",
50
49
  "form-data": "^4.0.0",
51
- "mammoth": "^1.8.0",
52
- "pako": "^2.1.0",
53
- "pdf-parse": "^1.1.1",
54
50
  "zod": "^4.3.6"
55
51
  },
56
52
  "peerDependencies": {
57
53
  "openclaw": "^2026.3.23-2"
58
54
  },
59
- "optionalDependencies": {
60
- "@ffmpeg-installer/ffmpeg": "^1.1.0",
61
- "@ffprobe-installer/ffprobe": "^2.1.2"
55
+ "peerDependenciesMeta": {
56
+ "openclaw": {
57
+ "optional": true
58
+ }
62
59
  },
63
60
  "devDependencies": {
64
61
  "@types/node": "^20.19.37",
65
62
  "@vitest/coverage-v8": "^2.0.0",
66
63
  "@vitest/ui": "^2.1.9",
64
+ "openclaw": "^2026.3.23-2",
67
65
  "typescript": "^5.6.0",
68
66
  "vitest": "^2.1.9"
69
67
  },
@@ -76,4 +74,4 @@
76
74
  ],
77
75
  "installDependencies": true
78
76
  }
79
- }
77
+ }