Releases: sendbird/SendBird-SDK-JavaScript
Releases · sendbird/SendBird-SDK-JavaScript
v3.0.101
- Improved stability.
- Added
resendUserMessage()
inBaseChannel
to retry to send aUserMessage
which hasrequestID
. - Added
requestState
and enumMessageRequestState
which has NONE, PENDING, FAILED, and SUCCEEDED inSendBird
. - Added
myLastRead
inGroupChannel
to detect last read timestamp of current connected user.
v3.0.100
- Improved stability.
- Added
delete()
inGroupChannel
to delete theGroupChannel
. Only operators can do this action.
v3.0.99
- Added
isDiscoverable
property toGroupChannel
andGroupChannelParams
.- if
isDiscoverable
of a public group channel is set to false, then the channel will not appear during querying withPublicGroupChannelListQuery
. (default: true)
- if
v3.0.98
v3.0.97
v3.0.96
- Minor bug fixed.
v3.0.95
v3.0.94
- Improved stability.
- Minor bug fixed.
- Updated SendBird.d.ts file for TypeScript.
v3.0.93
- Add push trigger option to enable/disable remote push notification.
- Added
setPushTriggerOption(option, callback)
toSendBird
. It determines whether the current user receives remote push notification in all group channels. - Added
getPushTriggerOption(callback)
toSendBird
. It returns the current push trigger option setting for all group channels. - Added
setMyPushTriggerOption(option, callback)
toGroupChannel
. It determines whether the current user receives remote push notification in the group channel. - Added
getMyPushTriggerOption(callback)
toGroupChannel
. It returns the current push trigger option setting for the group channel.
- Added
- Snooze or stop snooze remote push notification in specific duration.
- Added
setSnoozePeriod(snoozeOn, startTs, endTs, callback)
intoSendBird
. It enables or disables snooze in the period. - Added
getSnoozePeriod(callback)
intoSendBird
. It returns the current snooze setting for the current user.
- Added