* feat: toggle typing status on channel provider * refactor: general refactorings * fix: check if channel implements method * test: channel listener specs * test: channel spec * test: baileys service spec
23 lines
478 B
YAML
23 lines
478 B
YAML
tags:
|
|
- Conversations API
|
|
operationId: toggle-typing-status
|
|
summary: Toggle typing status
|
|
description: Toggles the typing status in a conversation
|
|
parameters:
|
|
- name: typing_status
|
|
in: query
|
|
required: true
|
|
type: string
|
|
enum:
|
|
- 'on'
|
|
- 'recording'
|
|
- 'off'
|
|
description: Typing status.
|
|
responses:
|
|
200:
|
|
description: Typing status toggled successfully
|
|
401:
|
|
description: Unauthorized
|
|
404:
|
|
description: Conversation not found
|