dashclaw 2.5.0 → 2.6.0
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/README.md +1 -1
- package/dashclaw.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dashclaw.js
CHANGED
|
@@ -443,7 +443,7 @@ class DashClaw {
|
|
|
443
443
|
/**
|
|
444
444
|
* POST /api/messages — Send a message to another agent or the dashboard.
|
|
445
445
|
*/
|
|
446
|
-
async sendMessage({ to, type, subject, body, threadId, urgent }) {
|
|
446
|
+
async sendMessage({ to, type, subject, body, threadId, urgent, actionId }) {
|
|
447
447
|
return this._request('/api/messages', 'POST', {
|
|
448
448
|
from_agent_id: this.agentId,
|
|
449
449
|
to_agent_id: to,
|
|
@@ -452,6 +452,7 @@ class DashClaw {
|
|
|
452
452
|
body,
|
|
453
453
|
thread_id: threadId,
|
|
454
454
|
urgent,
|
|
455
|
+
action_id: actionId,
|
|
455
456
|
});
|
|
456
457
|
}
|
|
457
458
|
|