Skip to content

Commit 7e3895e

Browse files
committed
1.10.9
1 parent d91b7bb commit 7e3895e

6 files changed

+10
-7
lines changed

CHANGELOG.md

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

3+
### 1.10.9 (May 6, 2023 UTC)
4+
* Fixed the type error in the declaration file.
5+
36
### 1.10.8 (May 5, 2023 UTC)
47
* Added the missing export of `RoomState` enum.
58
* Fixed the type error in the declaration file.

SendBirdCall.min.d.ts

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

@@ -517,7 +517,7 @@ declare type RoomEventMap = {
517517
invitationDeclined: { args: [RoomInvitation] };
518518
invitationAccepted: { args: [RoomInvitation] };
519519
invitationCanceled: { args: [RoomInvitation]}
520-
deleted: {};
520+
deleted: { args: [] };
521521
error: { args: [Error, Participant?] };
522522
};
523523

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

0 commit comments

Comments
 (0)