Release v0.3.2
0.3.2 (2023-07-18)
Breaking Change
listBatchMessages
no longer takes a single pagination for all topics but instead a list of Pairs with a topic and pagination for each pair.
Replace an current batch messages code with the something like below:
val messages = conversations.listBatchMessages(
listOf(
Pair("topic1", Pagination(limit = 1, after = Date())),
Pair("topic2", null)
)
)
Documentation
What's Changed
- Add test to confirm topics match JS by @nplasterer in #90
- Deploy docs to github pages on merge by @nplasterer in #89
- Docs: Remove conversation ID content, update rel status name by @jhaaaa in #87
- Docs: fix typo by @jhaaaa in #92
- Paginate per batched query by @nplasterer in #96
Full Changelog: 0.3.1...0.3.2