@elizaos/plugin-discord 1.0.8 → 1.0.9

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.
Files changed (1) hide show
  1. package/package.json +27 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-discord",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -58,6 +58,31 @@
58
58
  "gitHead": "646c632924826e2b75c2304a75ee56959fe4a460",
59
59
  "agentConfig": {
60
60
  "pluginType": "elizaos:plugin:1.0.0",
61
- "pluginParameters": {}
61
+ "pluginParameters": {
62
+ "DISCORD_API_TOKEN": {
63
+ "type": "string",
64
+ "description": "Discord API token used to authenticate and log in the Discord client/service.",
65
+ "required": true,
66
+ "sensitive": true
67
+ },
68
+ "CHANNEL_IDS": {
69
+ "type": "string",
70
+ "description": "Comma-separated list of Discord channel IDs the bot should operate in.",
71
+ "required": false,
72
+ "sensitive": false
73
+ },
74
+ "DISCORD_TEST_CHANNEL_ID": {
75
+ "type": "string",
76
+ "description": "Discord channel ID used by the test suite to locate the test channel for sending messages, joining/leaving voice, and other interactions.",
77
+ "required": true,
78
+ "sensitive": false
79
+ },
80
+ "DISCORD_VOICE_CHANNEL_ID": {
81
+ "type": "string",
82
+ "description": "ID of the Discord voice channel the bot should connect to when scanning guilds. If not set, the bot selects a channel based on member activity.",
83
+ "required": false,
84
+ "sensitive": false
85
+ }
86
+ }
62
87
  }
63
88
  }