Skip to content

Commit f7fbaca

Browse files
committed
0.8.1
g
1 parent f0fff0e commit f7fbaca

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Change Log
2+
### 0.8.1 (Mar 13, 2020)
3+
* Bug fix
4+
* Fixed error when user accepted call without specifying localMediaView
5+
* Below properties are added in `DirectCall`
6+
* `readonly callId: string`
7+
* `readonly isEnded: boolean`
28

39
### 0.8.0 (Mar 9, 2020)
410
* Interface for video call has been implemented

SendBirdCall.min.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** 0.8.0 */
1+
/** 0.8.1 */
22

33
export as namespace SendBirdCall;
44

@@ -81,6 +81,7 @@ export interface DirectCall {
8181
onCustomItemsDeleted: ((call: DirectCall, deletedKeys: string[]) => void) | null;
8282
onEnded: ((call: DirectCall) => void) | null;
8383

84+
readonly callId: string;
8485
readonly caller: DirectCallUser;
8586
readonly callee: DirectCallUser;
8687
readonly isVideoCall: boolean;
@@ -92,6 +93,7 @@ export interface DirectCall {
9293
readonly isRemoteVideoEnabled: boolean;
9394
readonly myRole: DirectCallUserRole;
9495
readonly endedBy: DirectCallUser;
96+
readonly isEnded: boolean;
9597
readonly endResult: DirectCallEndResult;
9698
readonly customItems: CustomItems;
9799
readonly localMediaView: HTMLMediaElement;

SendBirdCall.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird-calls",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"authors": [
55
"SendBird <[email protected]>"
66
],

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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

0 commit comments

Comments
 (0)