Skip to content

Commit e4ba673

Browse files
committed
1.10.7
1 parent d5428b9 commit e4ba673

6 files changed

+15
-11
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Change Log
22

3+
### 1.10.7 (Apr 21, 2023 UTC)
4+
- Improved connection quality listener in `DirectCall`.
5+
36
### 1.10.6 (Apr 12, 2023 UTC)
4-
- Added a feature to detect connection qualities in ongoing Direct Calls.
7+
- Added a feature to detect connection qualities in ongoing `DirectCall`.
58
- Added `ConnectionQualityState`.
69
- Added `ConnectionQualityMonitoringMode`.
710
- Added `ConnectionMetrics`.

SendBirdCall.min.d.ts

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

@@ -171,6 +171,7 @@ export enum ErrorCode {
171171
}
172172

173173
export enum ConnectionQualityState {
174+
UNAVAILABLE = 'unavailable',
174175
POOR = 'poor',
175176
FAIR = 'fair',
176177
AVERAGE = 'average',
@@ -184,10 +185,10 @@ export enum ConnectionQualityMonitoringMode {
184185
}
185186

186187
export interface ConnectionMetrics {
187-
mos: number;
188-
packetsLostRate: number;
189-
rtt: number;
190-
jitter: number;
188+
mos?: number;
189+
packetsLostRate?: number;
190+
rtt?: number;
191+
jitter?: number;
191192
connectionQuality: ConnectionQualityState;
192193
}
193194

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

0 commit comments

Comments
 (0)