Skip to content

Commit

Permalink
Merge pull request #12 from sendbird/release/1.10.17
Browse files Browse the repository at this point in the history
Release 1.10.17
  • Loading branch information
git-babel authored Feb 21, 2024
2 parents aec9809 + c546c1a commit 4148dbe
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Change Log
### 1.10.17 (Feb 21, 2024 UTC)
* Added `webhook` property in `DialParams`.

### 1.10.16 (Dec 15, 2023 UTC)
* Added `DirectCallEndResult.NOT_CONNECTED`. When a direct call is ended before connecting, the call will have an end result of `DirectCallEndResult.NOT_CONNECTED`.

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

Expand Down Expand Up @@ -55,6 +55,7 @@ export interface DialParams {
customItems?: CustomItems;
sendBirdChatOptions?: SendBirdChatOptions;
holdActiveCall?: boolean;
webhook?: Webhook;
}

export interface AcceptParams {
Expand Down Expand Up @@ -436,6 +437,12 @@ export interface CustomItems {
[key: string]: string;
}

export interface Webhook {
url: string;
enabledEvents: string[];
headers?: {[key: string]: string};
}

export interface SendBirdChatOptions {
channelUrl: string;
}
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.16",
"version": "1.10.17",
"authors": [
"SendBird <support@sendbird.com>"
],
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.16",
"version": "1.10.17",
"description": "SendBird Calls JavaScript SDK",
"main": "SendBirdCall.min.js",
"types": "SendBirdCall.min.d.ts",
Expand Down

0 comments on commit 4148dbe

Please sign in to comment.