@elizaos/plugin-discord 1.0.7 → 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 +13 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-discord",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -59,30 +59,29 @@
59
59
  "agentConfig": {
60
60
  "pluginType": "elizaos:plugin:1.0.0",
61
61
  "pluginParameters": {
62
- "DISCORD_APPLICATION_ID": {
63
- "type": "string",
64
- "description": "Discord application/client ID used for authenticating the bot with Discord API.",
65
- "required": true
66
- },
67
62
  "DISCORD_API_TOKEN": {
68
63
  "type": "string",
69
- "description": "Discord bot token used to authenticate and connect to Discord API.",
70
- "required": true
64
+ "description": "Discord API token used to authenticate and log in the Discord client/service.",
65
+ "required": true,
66
+ "sensitive": true
71
67
  },
72
68
  "CHANNEL_IDS": {
73
69
  "type": "string",
74
- "description": "Optional comma-separated list of Discord channel IDs the bot is allowed to operate in; if unset the bot works in all channels.",
75
- "required": false
70
+ "description": "Comma-separated list of Discord channel IDs the bot should operate in.",
71
+ "required": false,
72
+ "sensitive": false
76
73
  },
77
74
  "DISCORD_TEST_CHANNEL_ID": {
78
75
  "type": "string",
79
- "description": "Discord channel ID for running tests; used if not supplied in runtime settings.",
80
- "required": false
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
81
79
  },
82
80
  "DISCORD_VOICE_CHANNEL_ID": {
83
81
  "type": "string",
84
- "description": "Specifies the Discord voice channel ID that the bot should attempt to join before scanning for other available channels.",
85
- "required": false
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
86
85
  }
87
86
  }
88
87
  }