Skip to content

Commit 6fc161b

Browse files
committed
1.10.10
1 parent 71239cc commit 6fc161b

6 files changed

+10
-6
lines changed

CHANGELOG.md

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

3+
### 1.10.10 (Jun 16, 2023)
4+
* 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.
5+
36
### 1.10.9 (May 10, 2023 UTC)
47
* Fixed the type error in the declaration file.
58

SendBirdCall.min.d.ts

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

@@ -274,6 +274,7 @@ export interface DirectCall {
274274
onCustomItemsUpdated: ((call: DirectCall, updatedKeys: string[]) => void) | null;
275275
onCustomItemsDeleted: ((call: DirectCall, deletedKeys: string[]) => void) | null;
276276
onRemoteRecordingStatusChanged: ((call: DirectCall) => void) | null;
277+
onCalleeDialReceived: (call: DirectCall) => void | null;
277278
onUserHoldStatusChanged: ((call: DirectCall, isLocalUser: boolean, isUserOnHold: boolean) => void) | null;
278279
onEnded: ((call: DirectCall) => void) | null;
279280

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.9",
3+
"version": "1.10.10",
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.9",
3+
"version": "1.10.10",
44
"description": "SendBird Calls JavaScript SDK",
55
"main": "SendBirdCall.min.js",
66
"types": "SendBirdCall.min.d.ts",

0 commit comments

Comments
 (0)