@wenbin_wb/dsh-bridge 2.5.2 → 2.5.4
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/lib/feishu/gateway.js +2 -1
- package/lib/feishu/lark-bundled.mjs +125150 -0
- package/package.json +12 -5
package/README.en.md
CHANGED
|
@@ -103,8 +103,8 @@ npm install -g @deepseek-ai/dsh
|
|
|
103
103
|
# Install the latest version
|
|
104
104
|
dsh plugin --profile web add @wenbin_wb/dsh-bridge
|
|
105
105
|
|
|
106
|
-
# Or
|
|
107
|
-
dsh plugin --profile web add @wenbin_wb/dsh-bridge@2.5.
|
|
106
|
+
# Or install a specific version (e.g. 2.5.4)
|
|
107
|
+
dsh plugin --profile web add @wenbin_wb/dsh-bridge@2.5.4
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
> 💡 **No global install permission?** Use `npx`:
|
package/README.md
CHANGED
|
@@ -103,8 +103,8 @@ npm install -g @deepseek-ai/dsh
|
|
|
103
103
|
# 安装最新版
|
|
104
104
|
dsh plugin --profile web add @wenbin_wb/dsh-bridge
|
|
105
105
|
|
|
106
|
-
# 或指定版本(如 2.5.
|
|
107
|
-
dsh plugin --profile web add @wenbin_wb/dsh-bridge@2.5.
|
|
106
|
+
# 或指定版本(如 2.5.4)
|
|
107
|
+
dsh plugin --profile web add @wenbin_wb/dsh-bridge@2.5.4
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
> 💡 **没有全局安装权限?** 使用 `npx` 方式:
|
package/lib/feishu/gateway.js
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
import fs from 'node:fs'
|
|
6
6
|
import path from 'node:path'
|
|
7
7
|
import { Service } from '@deepseek-ai/cordis'
|
|
8
|
-
import
|
|
8
|
+
import LarkSdk from './lark-bundled.mjs'
|
|
9
|
+
const Lark = LarkSdk.default || LarkSdk
|
|
9
10
|
|
|
10
11
|
export class FeishuGateway extends Service {
|
|
11
12
|
static name = 'feishu'
|