Skip to content

Commit 4148dbe

Browse files
authored
Merge pull request #12 from sendbird/release/1.10.17
Release 1.10.17
2 parents aec9809 + c546c1a commit 4148dbe

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Change Log
2+
### 1.10.17 (Feb 21, 2024 UTC)
3+
* Added `webhook` property in `DialParams`.
4+
25
### 1.10.16 (Dec 15, 2023 UTC)
36
* Added `DirectCallEndResult.NOT_CONNECTED`. When a direct call is ended before connecting, the call will have an end result of `DirectCallEndResult.NOT_CONNECTED`.
47

SendBirdCall.min.d.ts

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

@@ -55,6 +55,7 @@ export interface DialParams {
5555
customItems?: CustomItems;
5656
sendBirdChatOptions?: SendBirdChatOptions;
5757
holdActiveCall?: boolean;
58+
webhook?: Webhook;
5859
}
5960

6061
export interface AcceptParams {
@@ -436,6 +437,12 @@ export interface CustomItems {
436437
[key: string]: string;
437438
}
438439

440+
export interface Webhook {
441+
url: string;
442+
enabledEvents: string[];
443+
headers?: {[key: string]: string};
444+
}
445+
439446
export interface SendBirdChatOptions {
440447
channelUrl: string;
441448
}

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

0 commit comments

Comments
 (0)