@elizaos/plugin-telegram 1.0.0 → 1.0.2
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 +30 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-telegram",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -47,5 +47,34 @@
|
|
|
47
47
|
"repository": {
|
|
48
48
|
"type": "git",
|
|
49
49
|
"url": "git+https://github.com/elizaos-plugins/plugin-telegram.git"
|
|
50
|
+
},
|
|
51
|
+
"agentConfig": {
|
|
52
|
+
"pluginType": "elizaos:plugin:1.0.0",
|
|
53
|
+
"pluginParameters": {
|
|
54
|
+
"TELEGRAM_API_ROOT": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "Base URL for Telegram Bot API used by the TelegramService, allowing override of the default API endpoint.",
|
|
57
|
+
"required": false,
|
|
58
|
+
"sensitive": false
|
|
59
|
+
},
|
|
60
|
+
"TELEGRAM_BOT_TOKEN": {
|
|
61
|
+
"type": "string",
|
|
62
|
+
"description": "Telegram bot token used for authenticating and operating the Telegram bot.",
|
|
63
|
+
"required": true,
|
|
64
|
+
"sensitive": true
|
|
65
|
+
},
|
|
66
|
+
"TELEGRAM_ALLOWED_CHATS": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"description": "JSON-encoded array of Telegram chat IDs that are authorized to interact with the bot.",
|
|
69
|
+
"required": false,
|
|
70
|
+
"sensitive": false
|
|
71
|
+
},
|
|
72
|
+
"TELEGRAM_TEST_CHAT_ID": {
|
|
73
|
+
"type": "string",
|
|
74
|
+
"description": "Telegram chat ID used by the test suite to send, receive, and validate messages during Telegram bot tests.",
|
|
75
|
+
"required": true,
|
|
76
|
+
"sensitive": false
|
|
77
|
+
}
|
|
78
|
+
}
|
|
50
79
|
}
|
|
51
80
|
}
|