jsonrpc: add more functions (#3641)

* jsonrpc: add more functions

  - `getChatContacts()`
  - `createGroupChat()`
  - `createBroadcastList()`
  - `setChatName()`
  - `setChatProfileImage()`
  - `downloadFullMessage()`
  - `lookupContactIdByAddr()`
  - `sendVideochatInvitation()`

* jsonrpc: add searchMessages

* jsonrpc add messageIdsToSearchResults function
and `MessageSearchResult` type

* fix return type of message_ids_to_search_results
This commit is contained in:
Simon Laux
2022-10-04 14:37:48 +02:00
committed by GitHub
parent 9277b46620
commit 683fc1f081
5 changed files with 416 additions and 9 deletions

View File

@@ -3,6 +3,20 @@
## Unreleased
### API-Changes
- jsonrpc: add function: #3641
- `getChatContacts()`
- `createGroupChat()`
- `createBroadcastList()`
- `setChatName()`
- `setChatProfileImage()`
- `downloadFullMessage()`
- `lookupContactIdByAddr()`
- `sendVideochatInvitation()`
- `searchMessages()`
- `messageIdsToSearchResults()`
- jsonrpc: add type: #3641
- `MessageSearchResult`
### Changes