Skip to content

Commit

Permalink
1.10.10
Browse files Browse the repository at this point in the history
  • Loading branch information
git-babel committed Jun 16, 2023
1 parent 71239cc commit 6fc161b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

### 1.10.10 (Jun 16, 2023)
* Added `DirectCall.onCalleeDialReceived` event listener to notify the caller when the callee has received the call. This listener will be called when the callee has received the `SendBirdCallListener.onRinging` event.

### 1.10.9 (May 10, 2023 UTC)
* Fixed the type error in the declaration file.

Expand Down
3 changes: 2 additions & 1 deletion SendBirdCall.min.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** 1.10.9 */
/** 1.10.10 */
// eslint-disable-next-line no-undef,max-classes-per-file
export as namespace SendBirdCall;

Expand Down Expand Up @@ -274,6 +274,7 @@ export interface DirectCall {
onCustomItemsUpdated: ((call: DirectCall, updatedKeys: string[]) => void) | null;
onCustomItemsDeleted: ((call: DirectCall, deletedKeys: string[]) => void) | null;
onRemoteRecordingStatusChanged: ((call: DirectCall) => void) | null;
onCalleeDialReceived: (call: DirectCall) => void | null;
onUserHoldStatusChanged: ((call: DirectCall, isLocalUser: boolean, isUserOnHold: boolean) => void) | null;
onEnded: ((call: DirectCall) => void) | null;

Expand Down
4 changes: 2 additions & 2 deletions SendBirdCall.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sendbird-calls",
"version": "1.10.9",
"version": "1.10.10",
"authors": [
"SendBird <support@sendbird.com>"
],
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sendbird-calls",
"version": "1.10.9",
"version": "1.10.10",
"description": "SendBird Calls JavaScript SDK",
"main": "SendBirdCall.min.js",
"types": "SendBirdCall.min.d.ts",
Expand Down

0 comments on commit 6fc161b

Please sign in to comment.