Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Change Log
### 1.10.20 (Nov 5, 2024 UTC)
* Fixed the bug that local stream become disabled when a user hold other direct call.
* Added start_ts and end_ts to the DirectCallLogListQueryParams.


### 1.10.19 (Mar 21, 2024 UTC)
* Fixed the crash of the previous version

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

Expand Down Expand Up @@ -420,6 +420,8 @@ export interface RoomListQuery {
export interface DirectCallLogListQueryParams {
myRole?: DirectCallUserRole;
endResults?: DirectCallEndResult[];
startedAt?: number;
endedAt?: number;
limit?: number;
}

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.19",
"version": "1.10.20",
"authors": [
"SendBird <[email protected]>"
],
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.19",
"version": "1.10.20",
"description": "SendBird Calls JavaScript SDK",
"main": "SendBirdCall.min.js",
"types": "SendBirdCall.min.d.ts",
Expand Down