Skip to content

Commit bfc673f

Browse files
committed
v1.0.5
1 parent 7542dfc commit bfc673f

File tree

5 files changed

+17
-13
lines changed

5 files changed

+17
-13
lines changed

CHANGELOG.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
## Change Log
22

3+
### v1.0.5(Nov 23, 2018)
4+
* added SendBird parameter to SendBirdDesk.init().
5+
* bug-fix in 'SendBird missing' error at init().
6+
37
### v1.0.4(July 18, 2018)
4-
* add setApiHost to customize host.
8+
* added setApiHost to customize host.
59

610
### v1.0.3(July 4, 2018)
7-
* correct package.json to fix library path.
11+
* corrected package.json to fix library path.
812

913
### v1.0.2(May 21, 2018)
10-
* apply ticket assignment update.
14+
* applied ticket assignment update.
1115

1216
### v1.0.1(Mar 30, 2018)
13-
* add SendBirdDesk.init().
14-
* add SendBirdDesk.isDeskChannel(channel).
15-
* add TypeScript interface - SendBird.Desk.d.ts.
16-
* add console logger in debug mode.
17+
* added SendBirdDesk.init().
18+
* added SendBirdDesk.isDeskChannel(channel).
19+
* added TypeScript interface - SendBird.Desk.d.ts.
20+
* added console logger in debug mode.
1721

1822
### v1.0.0-zendesk(Mar 16, 2018)
1923
* Zendesk-integrated version release.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Authentication in SendBird Desk is done by calling `SendBirdDesk.authenticate()`
3838
const sb = new SendBird({ appId : 'YOUR_APP_ID' });
3939
sb.connect(userId, accessToken, (res, err) => {
4040
if(err) throw err;
41-
SendBirdDesk.init();
41+
SendBirdDesk.init(SendBird);
4242
SendBirdDesk.authenticate(userId, accessToken, (res, err) => {
4343
if(err) throw err;
4444
// Now you can use Desk SDK later on

SendBird.Desk.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for SendBird Desc SDK v1.0.4
2+
* Type Definitions for SendBird Desc SDK v1.0.5
33
* homepage: https://sendbird.com/
44
*/
55
declare const SendBirdDesk: SendBirdDeskStatic;
@@ -21,7 +21,7 @@ interface SendBirdDeskStatic {
2121
Message: MessageStatic;
2222
Error: SendBirdDeskErrorStatic;
2323

24-
init();
24+
init(SendBird: Object);
2525
authenticate(userId: String, callback: Callback);
2626
authenticate(userId: String, accessToken: String, callback: Callback);
2727
isDeskChannel(channel: GroupChannel): Boolean;

SendBird.Desk.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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird-desk",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "SendBird Desk SDK Integration Guide for JavaScript =========== SendBird Desk is a chat customer service platform built on SendBird SDK and API.",
55
"main": "SendBird.Desk.min.js",
66
"scripts": {

0 commit comments

Comments
 (0)