Releases: sendbird/sendbird-calls-javascript
Releases · sendbird/sendbird-calls-javascript
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
1.0.0 (Mar 24, 2020)
- README has been updated. Refer to readme to learn how to configure media devices.
- Interfaces for media devices are added / changed.
- Below methods are added in
SendBirdCall
getCurrentVideoInputDevice(): MediaDeviceInfo
getAvailableVideoInputDevices(): MediaDeviceInfo[]
selectVideoInputDevice(mediaDeviceInfo: MediaDeviceInfo): void
updateMediaDevices(constraints: { audio: boolean; video: boolean }): void
useMedia(constraints: { audio: boolean; video: boolean }): MediaAccess
- Below event listener is added in
SendBirdCallListener
onVideoInputDeviceChanged: ((currentVideoInputDevice: MediaDeviceInfo, availableVideoInputDevices: MediaDeviceInfo[]) => void) | null
- Below methods are changed in
SendBirdCall
getCurrentVideoInputDevice(): MediaDeviceInfo
getAvailableAudioInputDevices()
is now synchronousselectAudioInputDevice(mediaDeviceInfo: MediaDeviceInfo)
is now synchronousgetAvailableAudioOutputDevices()
is now synchronousselectAudioOutputDevice(mediaDeviceInfo: MediaDeviceInfo)
is now synchronous
- Below methods are added in
0.9.0
0.8.1
0.8.1 (Mar 13, 2020)
- Bug fix
- Fixed error when user accepted call without specifying localMediaView
- Below properties are added in
DirectCall
readonly callId: string
readonly isEnded: boolean
0.8.0
0.8.0 (Mar 9, 2020)
-
Interface for video call has been implemented
-
Below properties are added in
DirectCall
readonly isLocalVideoEnabled: boolean
readonly isRemoteVideoEnabled: boolean
readonly localMediaView: HTMLMediaElement
readonly remoteMediaView: HTMLMediaElement
-
Below methods are added in
DirectCall
setLocalMediaView(): Promise<void>
setRemoteMediaView(): Promise<void>
stopVideo(): void
startVideo(): void
-
Below implementable event listeners are added in
DirectCall
onRemoteVideoSettingsChanged: ((call: DirectCall) => void) | null
-
Below property is added in
DirectCallOption
videoEnabled?: boolean
-
-
Wrong type definitions have been fixed
- Type definitions for below methods in class
SendBirdCall
has been fixed.getAvailableAudioInputDevices(): MediaDeviceInfo[]
->getAvailableAudioInputDevices(): Promise<MediaDeviceInfo[]>
selectAudioInputDevice(mediaDeviceInfo: MediaDeviceInfo): void
->selectAudioInputDevice(mediaDeviceInfo: MediaDeviceInfo): Promise<void>
getAvailableAudioOutputDevices(): MediaDeviceInfo[]
->getAvailableAudioOutputDevices(): Promise<MediaDeviceInfo[]>
selectAudioOutputDevice(mediaDeviceInfo: MediaDeviceInfo): void
->selectAudioOutputDevice(mediaDeviceInfo: MediaDeviceInfo): Promise<void>
- Type definitions for below methods in class
0.7.0
0.7.0 (Feb 21, 2020)
-
Selecting an audio input / output device is implemented.
- Below methods are added in
SendBirdCall
getCurrentAudioInputDevice(): MediaDeviceInfo
getAvailableAudioInputDevices(): MediaDeviceInfo[]
selectAudioInputDevice(mediaDeviceInfo: MediaDeviceInfo): void
getCurrentAudioOutputDevice(): MediaDeviceInfo
getAvailableAudioOutputDevices(): MediaDeviceInfo[]
selectAudioOutputDevice(mediaDeviceInfo: MediaDeviceInfo): void
- Below implementable event listeners are added in
SendBirdCallListener
onAudioInputDeviceChanged: ((currentAudioInputDevice: MediaDeviceInfo, availableAudioInputDevices: MediaDeviceInfo[]) => void) | null
onAudioOutputDeviceChanged: ((currentAudioOutputDevice: MediaDeviceInfo, availableAudioOutputDevices: MediaDeviceInfo[]) => void) | null
- Below methods are added in
-
Setting / retrieving custom items is implemented.
- Below methods are added in
SendBirdCall
updateCustomItems(callId: string, customItems: CustomItems, callback?: CustomItemsHandler): Promise<CustomItemsResult>
deleteCustomItems(callId: string, customItemKeys: string[], callback?: CustomItemsHandler): Promise<CustomItemsResult>
deleteAllCustomItems(callId: string, callback?: CustomItemsHandler): Promise<CustomItemsResult>
- Below property is added in
DirectCall
readonly customItems: CustomItems
- Below methods are added in
DirectCall
updateCustomItems(customItems: CustomItems, callback?: CustomItemsHandler): Promise<CustomItemsResult>
deleteCustomItems(customItemsKeys: string[], callback?: CustomItemsHandler): Promise<CustomItemsResult>
deleteAllCustomItems(callback?: CustomItemsHandler): Promise<CustomItemsResult>
- Below implementable event listeners are added in
DirectCall
onCustomItemsUpdated: ((call: DirectCall, updatedKeys: string[]) => void) | null
onCustomItemsDeleted: ((call: DirectCall, deletedKeys: string[]) => void) | null
- Below property is added in
DirectCallLog
readonly customItems: CustomItems
- Below methods are added in
-
Reconnection is implemented in
DirectCall
- Below implementable event listeners are added in
DirectCall
onReconnected: ((call: DirectCall) => void) | null
onReconnecting: ((call: DirectCall) => void) | null
- Below implementable event listeners are added in
-
Signature of the
SendBirdCall.dial()
has been changed.dial(userId: string, isVideoCall: boolean, callOption: DirectCallOption, callback?: DialHandler): DirectCall
is now deprecateddial(params: DialParams, callback?: DialHandler): DirectCall
is now recommended.
-
Signature of the
DirectCall.accept()
has been changed.accept(callOption: DirectCallOption): void
is now deprecatedaccept(params: AcceptParams): void
is now recommended.
0.6.10
0.6.10 (Jan 31, 2020)
- Added Typescript Definition.
- Polished error description.
- Properties / Method deprecated. Deprecated interfaces might be removed in future releases.
DirectCall.onRemoteAudioEnabled
is deprecated. UseonRemoteAudioSettingsChanged
Instead.DirectCall.mute
is deprecated. UsemuteMicrophone
Instead.DirectCall.unmute
is deprecated. UseunmuteMicrophone
Instead.
- Min / max of the
limit
field forSendBirdCall.createDirectCallLogListQuery
parameter has been adjusted to 10 / 100 each. DirectCall.onRemoteAudioSettingsChanged / onRemoteAudioEnabled
is not fired anymore when actual setting is not changed.