@fontdo/5g-message 1.0.12 → 1.0.13

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.
@@ -0,0 +1,37 @@
1
+ {
2
+ "id": "5g-message",
3
+ "channels": ["5g-message"],
4
+ "configSchema": {
5
+ "type": "object",
6
+ "additionalProperties": false,
7
+ "properties": {
8
+ "host": {
9
+ "type": "string",
10
+ "title": "服务器地址",
11
+ "description": "Fontdo 5G 消息平台地址(不含协议前缀,如 5g.fontdo.com)"
12
+ },
13
+ "appId": {
14
+ "type": "string",
15
+ "title": "应用 ID",
16
+ "description": "从平台获取的应用 ID"
17
+ },
18
+ "appKey": {
19
+ "type": "string",
20
+ "title": "应用密钥",
21
+ "description": "从平台获取的应用密钥"
22
+ },
23
+ "botName": {
24
+ "type": "string",
25
+ "title": "机器人名称",
26
+ "description": "机器人在对话中的显示名称",
27
+ "default": "Fontdo Bot"
28
+ },
29
+ "enabled": {
30
+ "type": "boolean",
31
+ "title": "启用账号",
32
+ "description": "是否启用该账号",
33
+ "default": true
34
+ }
35
+ }
36
+ }
37
+ }
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@fontdo/5g-message",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "OpenClaw 通道插件,用于连接 Fontdo 5G 消息平台",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "files": [
8
- "dist"
8
+ "dist",
9
+ "openclaw.plugin.json"
9
10
  ],
10
11
  "scripts": {
11
12
  "clean": "shx rm -rf dist",