@elizaos/plugin-feishu 2.0.3-beta.2 → 2.0.3-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-feishu",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.4",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -31,6 +31,7 @@
31
31
  }
32
32
  },
33
33
  "files": [
34
+ "registry-entry.json",
34
35
  "dist",
35
36
  "auto-enable.ts"
36
37
  ],
@@ -43,7 +44,7 @@
43
44
  }
44
45
  },
45
46
  "dependencies": {
46
- "@elizaos/core": "2.0.3-beta.2",
47
+ "@elizaos/core": "2.0.3-beta.4",
47
48
  "@larksuiteoapi/node-sdk": "^1.40.0",
48
49
  "@types/node": "^25.0.3",
49
50
  "typescript": "^6.0.3"
@@ -116,5 +117,5 @@
116
117
  "node": "ESM build available via exports.import"
117
118
  }
118
119
  },
119
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
120
+ "gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
120
121
  }
@@ -0,0 +1,86 @@
1
+ {
2
+ "id": "feishu",
3
+ "name": "Feishu",
4
+ "description": "Feishu connector for bots, chats, and workflow notifications on Lark/Feishu.",
5
+ "npmName": "@elizaos/plugin-feishu",
6
+ "version": "2.0.0-beta.0",
7
+ "source": "bundled",
8
+ "tags": [
9
+ "connector",
10
+ "messaging",
11
+ "feishu",
12
+ "productivity",
13
+ "social",
14
+ "social-chat"
15
+ ],
16
+ "config": {
17
+ "FEISHU_APP_ID": {
18
+ "type": "string",
19
+ "required": true,
20
+ "sensitive": false,
21
+ "label": "App Id",
22
+ "help": "Feishu/Lark application ID (cli_xxx format) for bot authentication.",
23
+ "advanced": false
24
+ },
25
+ "FEISHU_DOMAIN": {
26
+ "type": "string",
27
+ "required": false,
28
+ "sensitive": false,
29
+ "label": "Domain",
30
+ "help": "Domain to use: 'feishu' for China or 'lark' for global.",
31
+ "advanced": false
32
+ },
33
+ "FEISHU_APP_SECRET": {
34
+ "type": "secret",
35
+ "required": true,
36
+ "sensitive": true,
37
+ "label": "App Secret",
38
+ "help": "Feishu/Lark application secret for bot authentication.",
39
+ "advanced": false
40
+ },
41
+ "FEISHU_TEST_CHAT_ID": {
42
+ "type": "string",
43
+ "required": false,
44
+ "sensitive": false,
45
+ "label": "Test Chat Id",
46
+ "help": "Chat ID used by the test suite for validation.",
47
+ "advanced": false
48
+ },
49
+ "FEISHU_ALLOWED_CHATS": {
50
+ "type": "json",
51
+ "required": false,
52
+ "sensitive": false,
53
+ "label": "Allowed Chats",
54
+ "help": "JSON-encoded array of chat IDs authorized to interact with the bot.",
55
+ "advanced": false
56
+ }
57
+ },
58
+ "render": {
59
+ "visible": false,
60
+ "pinTo": [],
61
+ "style": "setup-panel",
62
+ "icon": "Feather",
63
+ "group": "connector",
64
+ "groupOrder": 1,
65
+ "actions": [
66
+ "enable",
67
+ "configure",
68
+ "setup-guide"
69
+ ]
70
+ },
71
+ "resources": {
72
+ "homepage": "https://github.com/elizaos/eliza#readme",
73
+ "repository": "https://github.com/elizaos/eliza",
74
+ "setupGuideUrl": "https://docs.eliza.ai/plugin-setup-guide#feishu-lark"
75
+ },
76
+ "dependsOn": [],
77
+ "kind": "connector",
78
+ "subtype": "messaging",
79
+ "auth": {
80
+ "kind": "token",
81
+ "credentialKeys": []
82
+ },
83
+ "channels": [
84
+ "feishu"
85
+ ]
86
+ }