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
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
1.7.1
1.7.0
1.7.0 (June 4, 2021 UTC)
- Added capability to query rooms.
- Below interfaces are added in
SendBirdCallRoomListQueryRoomListQueryParams
- Below methods are added in
SendBirdCallcreateRoomListQuery(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
SendBirdCallinit(appId: string, apiHost?: string, websocketHost?: string): void
- Now, you can customize API/WebSocket host URL when
- Improved security.
- Improved stability.