@elizaos/plugin-line 2.0.3-beta.2 → 2.0.3-beta.3

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-line",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -28,6 +28,7 @@
28
28
  }
29
29
  },
30
30
  "files": [
31
+ "registry-entry.json",
31
32
  "dist"
32
33
  ],
33
34
  "scripts": {
@@ -41,7 +42,7 @@
41
42
  "typecheck": "tsgo --noEmit"
42
43
  },
43
44
  "dependencies": {
44
- "@elizaos/core": "2.0.3-beta.2",
45
+ "@elizaos/core": "2.0.3-beta.3",
45
46
  "@line/bot-sdk": "^11.0.0"
46
47
  },
47
48
  "devDependencies": {
@@ -108,5 +109,5 @@
108
109
  }
109
110
  }
110
111
  },
111
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
112
+ "gitHead": "f54b0f4eaed317d59fa7dbcdce20f4cdb0734420"
112
113
  }
@@ -0,0 +1,86 @@
1
+ {
2
+ "id": "line",
3
+ "name": "Line",
4
+ "description": "LINE connector for bot messaging and customer conversations.",
5
+ "npmName": "@elizaos/plugin-line",
6
+ "version": "2.0.0-beta.0",
7
+ "source": "bundled",
8
+ "tags": ["connector", "messaging", "line", "social", "social-chat"],
9
+ "config": {
10
+ "LINE_ENABLED": {
11
+ "type": "boolean",
12
+ "required": false,
13
+ "sensitive": false,
14
+ "label": "Enabled",
15
+ "help": "Enable or disable this feature",
16
+ "advanced": false
17
+ },
18
+ "LINE_DM_POLICY": {
19
+ "type": "string",
20
+ "required": false,
21
+ "sensitive": false,
22
+ "label": "Dm Policy",
23
+ "help": "DM policy (e.g. allow, deny, allowlist)",
24
+ "advanced": false
25
+ },
26
+ "LINE_ALLOW_FROM": {
27
+ "type": "string",
28
+ "required": false,
29
+ "sensitive": false,
30
+ "label": "Allow From",
31
+ "help": "Comma-separated allowed user list",
32
+ "advanced": false
33
+ },
34
+ "LINE_GROUP_POLICY": {
35
+ "type": "string",
36
+ "required": false,
37
+ "sensitive": false,
38
+ "label": "Group Policy",
39
+ "help": "Group message policy (e.g. allow, deny)",
40
+ "advanced": false
41
+ },
42
+ "LINE_WEBHOOK_PATH": {
43
+ "type": "file-path",
44
+ "required": false,
45
+ "sensitive": false,
46
+ "label": "Webhook Path",
47
+ "help": "Webhook path",
48
+ "advanced": false
49
+ },
50
+ "LINE_CHANNEL_SECRET": {
51
+ "type": "secret",
52
+ "required": false,
53
+ "sensitive": true,
54
+ "label": "Channel Secret",
55
+ "help": "Secret for Line Channel",
56
+ "advanced": false
57
+ },
58
+ "LINE_CHANNEL_ACCESS_TOKEN": {
59
+ "type": "secret",
60
+ "required": true,
61
+ "sensitive": true,
62
+ "label": "Channel Access Token",
63
+ "help": "Access token for Line Channel",
64
+ "advanced": false
65
+ }
66
+ },
67
+ "render": {
68
+ "visible": true,
69
+ "pinTo": [],
70
+ "style": "setup-panel",
71
+ "icon": "Circle",
72
+ "group": "connector",
73
+ "groupOrder": 1,
74
+ "actions": ["enable", "configure", "setup-guide"]
75
+ },
76
+ "resources": {
77
+ "setupGuideUrl": "https://docs.eliza.ai/plugin-setup-guide#line"
78
+ },
79
+ "dependsOn": [],
80
+ "kind": "connector",
81
+ "subtype": "messaging",
82
+ "auth": {
83
+ "kind": "token",
84
+ "credentialKeys": ["LINE_CHANNEL_ACCESS_TOKEN"]
85
+ }
86
+ }