Releases: sendbird/sendbird-calls-javascript
Releases · sendbird/sendbird-calls-javascript
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
customItems
inRoom
. - Added
customItems
inRoomParams
. - Added
updateCustomItems(customItems: CustomItems): Promise<CustomItemsResult>
anddeleteCustomItems(customItemKeys: string[]): Promise<CustomItemsResult>
inRoom
. - Added
customItemsUpdated
andcustomItemsDeleted
inRoomEventMap
.
- 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
isOnHold
inDirectCall
. - Added
holdActiveCall
inDialParams
andAcceptParams
. - Added
onUserHoldStatusChanged
inDirectCall
.
- Added
- Added
getOngoingCalls()
inSendBirdCall
to 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
SendBirdCall
registerPushToken(pushToken: string, tokenType: TokenType): Promise<void>
unregisterPushToken(pushToken: string, tokenType: TokenType): Promise<void>
unregisterAllPushTokens(tokenType: TokenType): Promise<void>
- Below enum is added in
SendBirdCall
TokenType
- Below methods are added in
1.7.1
1.7.0
1.7.0 (June 4, 2021 UTC)
- Added capability to query rooms.
- Below interfaces are added in
SendBirdCall
RoomListQuery
RoomListQueryParams
- Below methods are added in
SendBirdCall
createRoomListQuery(params: RoomListQueryParams): RoomListQuery
- Below interfaces are added in
- Added support for customized host URL
- Now, you can customize API/WebSocket host URL when
init()
. - Below method is changed in
SendBirdCall
init(appId: string, apiHost?: string, websocketHost?: string): void
- Now, you can customize API/WebSocket host URL when
- Improved security.
- Improved stability.