Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const { accountId, conversationId } = adapter.decodeThreadId(threadId);
| Edit messages | Partial | Telegram only |
| Delete messages | Partial | Telegram, X (full delete); Bluesky, Reddit (self-only) |
| Reactions | Partial | Telegram and WhatsApp (add/remove emoji) |
| Typing indicators | Partial | Facebook Messenger and Telegram |
| Typing indicators | Partial | Facebook Messenger, Telegram, and WhatsApp (requires recent inbound message) |
| AI streaming | Partial | Post+edit on Telegram; single post on others |
| File attachments | Yes | Via media upload endpoint |
| Fetch messages | Yes | Full conversation history |
Expand All @@ -148,7 +148,7 @@ const { accountId, conversationId } = adapter.decodeThreadId(threadId);
|---------|----|----|----------|----------|---|---------|--------|
| Send text | Y | Y | Y | Y | Y | Y | Y |
| Buttons | Y | Y | Y | Y | - | - | - |
| Typing | Y | - | Y | - | - | - | - |
| Typing | Y | - | Y | Y | - | - | - |
| Delete | - | - | Y | - | Y | Self | Self |
| Reactions | - | - | Y | Y | - | - | - |
| Media | Y | Y | Y | Y | Y | - | - |
Expand Down
4 changes: 3 additions & 1 deletion src/api-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ export class ZernioApiClient {
* Send a typing indicator for a conversation.
* POST /v1/inbox/conversations/{conversationId}/typing
*
* Supported on Facebook Messenger and Telegram. No-op on other platforms.
* Supported on Facebook Messenger, Telegram, and WhatsApp. No-op on
* other platforms. WhatsApp additionally requires a recent inbound
* message in the conversation (Meta references the inbound message id).
*/
async sendTyping(conversationId: string, accountId: string): Promise<void> {
await this.request<{ success: boolean }>(
Expand Down
Loading