Releases: sendbird/sendbird-calls-javascript
Releases · sendbird/sendbird-calls-javascript
1.10.0
1.10.0 (Jan 31, 2023 UTC)
- Added a feature to invite users to enter a room.
- Added
Room.sendInvitation(invitee: string): Promise<RoomInvitation>. - Added
RoomInvitationclass to manage invitation. - Added
RoomInvitation.accept(): Promise<void>,RoomInvitation.decline(): Promise<void>,RoomInvitation.cancel(): Promise<void>. - Added
invitationAccepted,invitationDeclined,invitationCanceledinRoomEventMap.
- Added
- Added a new interface to delete a room.
- Added
Room.delete().
- Added
1.9.3
1.9.2
1.9.1
1.9.0
1.8.2
1.8.1
1.8.0
1.8.0 (October 27, 2021 UTC)
For 1.8.0, a new feature is released for both Group call and Direct call features respectively.
For the Group call feature, you can now add and manage custom items to store additional information for a room.
- Added custom items feature in Group Call
- Added
customItemsinRoom. - Added
customItemsinRoomParams. - Added
updateCustomItems(customItems: CustomItems): Promise<CustomItemsResult>anddeleteCustomItems(customItemKeys: string[]): Promise<CustomItemsResult>inRoom. - Added
customItemsUpdatedandcustomItemsDeletedinRoomEventMap.
- Added
For the Direct call feature, you can now hold and resume calls which allows you to accept an incoming call or switch between calls.
- Added hold and resume feature in Direct Call
- Added
hold(): Promise<void>andunhold(force: boolean): Promise<void>inDirectCall. - Added
isOnHoldinDirectCall. - Added
holdActiveCallinDialParamsandAcceptParams. - Added
onUserHoldStatusChangedinDirectCall.
- Added
- Added
getOngoingCalls()inSendBirdCallto retrieve a list of ongoing Direct Calls in the Calls SDK. - Added missing return type of push token registration APIs.
- Improved stability.
1.7.2
1.7.2 (October 8, 2021 UTC)
- Added push token registration APIs
- Below methods are added in
SendBirdCallregisterPushToken(pushToken: string, tokenType: TokenType): Promise<void>unregisterPushToken(pushToken: string, tokenType: TokenType): Promise<void>unregisterAllPushTokens(tokenType: TokenType): Promise<void>
- Below enum is added in
SendBirdCallTokenType
- Below methods are added in