Skip to content

Commit 5f67a15

Browse files
committed
1.5.0
1 parent e22564a commit 5f67a15

File tree

6 files changed

+26
-7
lines changed

6 files changed

+26
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Change Log
2+
### 1.5.0 (Dec 24, 2020 UTC)
3+
* Added support for integration with Sendbird Chat
4+
* Added `sendBirdChatOptions` to `DialParams`
5+
* Added support for `Call summary` on the dashboard.
6+
* Improved backend scalability
7+
* Enhanced security for compliance
8+
29
### 1.4.1 (Nov 3, 2020 UTC)
310
* Improved stability
411

SendBirdCall.min.d.ts

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** 1.4.1 */
1+
/** 1.5.0 */
22

33
// eslint-disable-next-line no-undef
44
export as namespace SendBirdCall;
@@ -46,6 +46,7 @@ export interface DialParams {
4646
isVideoCall: boolean;
4747
callOption: DirectCallOption;
4848
customItems?: CustomItems;
49+
sendBirdChatOptions?: SendBirdChatOptions;
4950
}
5051

5152
export interface AcceptParams {
@@ -284,16 +285,27 @@ export interface CustomItems {
284285
[key: string]: string;
285286
}
286287

288+
export interface SendBirdChatOptions {
289+
channelUrl: string;
290+
}
291+
287292
export interface MediaAccess {
288293
dispose(): void;
289294
}
290295

291-
export interface DirectCallRecordOption {
296+
export interface RecordOption {
292297
callId: string;
293298
recordingType: RecordingType;
294299
fileName?: string;
295300
}
296301

302+
declare const RecordOption: {
303+
new(option: RecordOption): RecordOption;
304+
};
305+
306+
307+
export interface DirectCallRecordOption extends RecordOption {}
308+
297309
declare const DirectCallRecordOption: {
298310
new(option: DirectCallRecordOption): DirectCallRecordOption;
299311
};

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.4.1",
3+
"version": "1.5.0",
44
"authors": [
55
"SendBird <support@sendbird.com>"
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.4.1",
3+
"version": "1.5.0",
44
"description": "SendBird Calls JavaScript SDK",
55
"main": "SendBirdCall.min.js",
66
"types": "SendBirdCall.min.d.ts",

0 commit comments

Comments
 (0)