@friendlyrobot/discord-pi-agent 0.10.5 → 0.10.6
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/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1002,7 +1002,7 @@ async function sendTypingSafe(channel, channelKey) {
|
|
|
1002
1002
|
headers: { Authorization: `Bot ${token}` }
|
|
1003
1003
|
});
|
|
1004
1004
|
if (res.ok) {
|
|
1005
|
-
logger5.debug(`[TYPING] STATUS UPDATED OK
|
|
1005
|
+
logger5.debug(`[TYPING] STATUS UPDATED OK`);
|
|
1006
1006
|
return;
|
|
1007
1007
|
}
|
|
1008
1008
|
if (res.status === 429) {
|
|
@@ -1202,7 +1202,7 @@ async function onMessage(message, config, agentService, sessionRegistry, authCon
|
|
|
1202
1202
|
messageId: message.id,
|
|
1203
1203
|
command: content,
|
|
1204
1204
|
hasResponse: Boolean(commandResult.response)
|
|
1205
|
-
},
|
|
1205
|
+
}, `command handled: ${content}`);
|
|
1206
1206
|
if (commandResult.response) {
|
|
1207
1207
|
await sendReply(message, commandResult.response);
|
|
1208
1208
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@friendlyrobot/discord-pi-agent",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.6",
|
|
4
4
|
"description": "Reusable Discord gateway bridge for persistent pi agent sessions",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/node": "^25.6.2",
|
|
49
|
-
"@typescript/native-preview": "^7.0.0-dev.
|
|
49
|
+
"@typescript/native-preview": "^7.0.0-dev.20260510.1",
|
|
50
50
|
"@vitest/ui": "^4.1.5",
|
|
51
51
|
"vitest": "^4.1.5"
|
|
52
52
|
}
|