Skip to content

Commit 4a8ed02

Browse files
committed
1.10.4
1 parent 9b2740e commit 4a8ed02

6 files changed

+14
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
### 1.10.4 (Mar 10, 2023 UTC)
4+
* Added a feature to kick other participants in a room with the same user id as the current user.
5+
* Added `kickSiblings` in `EnterParams`.
6+
37
### 1.10.3 (Mar 2, 2023 UTC)
48
* Fixed an error in `SendbirdCall.connectWebSocket()`.
59
* Removed the unexpected console logs.

SendBirdCall.min.d.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** 1.10.3 */
1+
/** 1.10.4 */
22
// eslint-disable-next-line no-undef,max-classes-per-file
33
export as namespace SendBirdCall;
44

@@ -651,6 +651,10 @@ export interface EnterParams {
651651
* Enables a participant's video settings when entering a room.
652652
*/
653653
videoEnabled: boolean;
654+
/**
655+
* Kicks out any participants in the room who have the same user id as the user entering the room.
656+
*/
657+
kickSiblings?: boolean;
654658
}
655659

656660
export enum ParticipantState {

SendBirdCall.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird-calls",
3-
"version": "1.10.3",
3+
"version": "1.10.4",
44
"authors": [
55
"SendBird <support@sendbird.com>"
66
],

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird-calls",
3-
"version": "1.10.3",
3+
"version": "1.10.4",
44
"description": "SendBird Calls JavaScript SDK",
55
"main": "SendBirdCall.min.js",
66
"types": "SendBirdCall.min.d.ts",

0 commit comments

Comments
 (0)