You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(files): fix the issue with the invalid download URL for files
feat(chat): deprecate `getUnreadMessagesCount(limit:page:filter:sort:)` method in Chat interface
feat(chat): introduce `fetchUnreadMessagesCounts(limit:page:filter:sort:)` method in Chat interface
refactor(chat): remove code duplication from the `ChatImpl` constructors
refactor(chat): add thread safety to chat mapping logic
/// Returns info on all messages you didn't read on all joined channels. You can display this number on UI in the channel list of your chat app.
599
+
///
600
+
/// - Parameters:
601
+
/// - limit: Number of objects to return in response. The maximum value is 100
602
+
/// - page: Object used for pagination to define which previous or next result page you want to fetch
603
+
/// - filter: Expression used to filter the results. Returns only these channels whose properties satisfy the given expression are returned
604
+
/// - sort: A collection to specify the sort order
605
+
/// - completion: The async `Result` of the method call
606
+
/// - Returns: A Tuple containing an `Array` of unread messages for the current user across all joined channels, and the next pagination `PubNubHashedPage` (if one exists)
/// Returns info on all messages you didn't read on all joined channels. You can display this number on UI in the channel list of your chat app.
427
+
///
428
+
/// - Parameters:
429
+
/// - limit: Number of objects to return in response. The maximum value is 100
430
+
/// - page: Object used for pagination to define which previous or next result page you want to fetch
431
+
/// - filter: Expression used to filter the results. Returns only these channels whose properties satisfy the given expression are returned
432
+
/// - sort: A collection to specify the sort order
433
+
/// - completion: The async `Result` of the method call
434
+
/// - **Success**: A Tuple containing an `Array` of unread messages for the current user across all joined channels, and the next pagination `PubNubHashedPage` (if one exists)
435
+
/// - **Failure**: An `Error` describing the failure
0 commit comments