Skip to content

Commit d8d5aa2

Browse files
committed
1.1.4
1 parent d684abe commit d8d5aa2

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Change Log
2+
### 1.1.4 (July 14, 2020)
3+
* Bug fix
4+
* Fixed typo in `d.ts`.
5+
* Fixed import error in Node environment.
26
### 1.1.3 (June 18, 2020)
37
* Improved stability.
48
### 1.1.2 (June 16, 2020)

SendBirdCall.min.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/** 1.1.3 */
1+
/** 1.1.4 */
22

33
export as namespace SendBirdCall;
44

5-
export function init(appId): void;
5+
export function init(appId: string): void;
66
export function authenticate(authOption: AuthOption, handler?: AuthHandler): Promise<User>;
77
export function deauthenticate(): void;
88
export function connectWebSocket(): Promise<void>;
@@ -26,7 +26,7 @@ export function updateCustomItems(callId: string, customItems: CustomItems, call
2626
export function deleteCustomItems(callId: string, customItemKeys: string[], callback?: CustomItemsHandler): Promise<CustomItemsResult>;
2727
export function deleteAllCustomItems(callId: string, callback?: CustomItemsHandler): Promise<CustomItemsResult>;
2828
export function setLoggerLevel(level: LoggerLevel): LoggerLevel;
29-
export function setRingingTimeout(timeout: int);
29+
export function setRingingTimeout(timeout: number): void;
3030
export function getCall(callId: string): DirectCall;
3131
export const sdkVersion: string;
3232
export const appId: string;

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.1.3",
3+
"version": "1.1.4",
44
"authors": [
55
"SendBird <[email protected]>"
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.1.3",
3+
"version": "1.1.4",
44
"description": "SendBird Calls JavaScript SDK",
55
"main": "SendBirdCall.min.js",
66
"types": "SendBirdCall.min.d.ts",

0 commit comments

Comments
 (0)