fix: clean up reaction tooling
This commit is contained in:
@@ -17,7 +17,8 @@
|
|||||||
- Groups: `whatsapp.groups`, `telegram.groups`, and `imessage.groups` now act as allowlists when set. Add `"*"` to keep allow-all behavior.
|
- Groups: `whatsapp.groups`, `telegram.groups`, and `imessage.groups` now act as allowlists when set. Add `"*"` to keep allow-all behavior.
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
- Tools: add Telegram/WhatsApp reaction tools (with per-provider gating), unify reaction removal semantics across Discord/Slack/Telegram/WhatsApp, and allow WhatsApp reaction routing across accounts.
|
- Tools: add Telegram/WhatsApp reaction tools (with per-provider gating). Thanks @zats for PR #353.
|
||||||
|
- Tools: unify reaction removal semantics across Discord/Slack/Telegram/WhatsApp and allow WhatsApp reaction routing across accounts.
|
||||||
- Gateway/CLI: add daemon runtime selection (Node recommended; Bun optional) and document WhatsApp/Baileys Bun WebSocket instability on reconnect.
|
- Gateway/CLI: add daemon runtime selection (Node recommended; Bun optional) and document WhatsApp/Baileys Bun WebSocket instability on reconnect.
|
||||||
- CLI: add `clawdbot docs` live docs search with pretty output.
|
- CLI: add `clawdbot docs` live docs search with pretty output.
|
||||||
- Agent: treat compaction retry AbortError as a fallback trigger without swallowing non-abort errors. Thanks @erikpr1994 for PR #341.
|
- Agent: treat compaction retry AbortError as a fallback trigger without swallowing non-abort errors. Thanks @erikpr1994 for PR #341.
|
||||||
|
|||||||
@@ -590,30 +590,6 @@ export async function monitorWebInbox(options: {
|
|||||||
const jid = toWhatsappJid(to);
|
const jid = toWhatsappJid(to);
|
||||||
await sock.sendPresenceUpdate("composing", jid);
|
await sock.sendPresenceUpdate("composing", jid);
|
||||||
},
|
},
|
||||||
/**
|
|
||||||
* Send a reaction (emoji) to a specific message.
|
|
||||||
* Pass an empty string for emoji to remove the reaction.
|
|
||||||
*/
|
|
||||||
sendReaction: async (
|
|
||||||
chatJid: string,
|
|
||||||
messageId: string,
|
|
||||||
emoji: string,
|
|
||||||
fromMe: boolean,
|
|
||||||
participant?: string,
|
|
||||||
): Promise<void> => {
|
|
||||||
const jid = toWhatsappJid(chatJid);
|
|
||||||
await sock.sendMessage(jid, {
|
|
||||||
react: {
|
|
||||||
text: emoji,
|
|
||||||
key: {
|
|
||||||
remoteJid: jid,
|
|
||||||
id: messageId,
|
|
||||||
fromMe,
|
|
||||||
participant,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
},
|
|
||||||
} as const;
|
} as const;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user