Skip to content

Commit d91b7bb

Browse files
committed
1.10.8
1 parent e4ba673 commit d91b7bb

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
### 1.10.8 (May 5, 2023 UTC)
4+
* Added the missing export of `RoomState` enum.
5+
* Fixed the type error in the declaration file.
6+
* Changed the return type of `RoomListQuery.next()`, `RoomListQuery.prev()` to the actual `Room` instance, rather than the data object.
7+
38
### 1.10.7 (Apr 21, 2023 UTC)
49
- Improved connection quality listener in `DirectCall`.
510

SendBirdCall.min.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** 1.10.7 */
1+
/** 1.10.8 */
22
// eslint-disable-next-line no-undef,max-classes-per-file
33
export as namespace SendBirdCall;
44

@@ -202,15 +202,15 @@ export interface SendBirdCallListener {
202202

203203
export interface SendBirdCallRecordingListener {
204204
onRecordingSucceeded: ((callId: string, recordingId: string, options: DirectCallRecordOption, fileName?: string) => void) | null;
205-
onRecordingFailed: ((callId: string, recordingId: string, error) => void) | null;
205+
onRecordingFailed: ((callId: string, recordingId: string, error: Error) => void) | null;
206206
}
207207

208208
/**
209209
* Event Target
210210
*/
211211

212212
interface Event {
213-
readonly args?: any[];
213+
readonly args: any[];
214214
}
215215

216216
declare type nullish = null | undefined;

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

0 commit comments

Comments
 (0)