@liveblocks/node
- Added pagination support to
.getInboxNotifications()
. See docs. - New method
.getOrCreate()
which combines.getRoom()
and.createRoom()
. See docs. - New method
.upsertRoom()
which combines.updateRoom()
and.createRoom()
. See docs. - New method
.iterRooms()
which is like.getRooms()
except pagination happens automatically. See docs. - New method
.iterInboxNotifications()
which is like.getInboxNotifications()
except pagination happens automatically. See
docs. - New method
.mutateStorage()
which can be used to make changes to Storage from your backend. See docs. - New method
.massMutateStorage()
which can be used to make changes to Storage for multiple rooms simultaneously. See
docs. - Updated method
.deleteRoom()
to no longer throw when the room already does not exist. See docs.
@liveblocks/react-ui
- Add new icons to
<Icon.* />
.
@liveblocks/emails
- Implement a new core logic for thread notification event.
- Mark
htmlBody
fromprepareThreadNotificationEmailAsHtml
andreactBody
fromprepareThreadNotificationEmailAsReact
as deprecated. Usebody
property instead.