Skip to content

Commit

Permalink
SDK v3.0.41
Browse files Browse the repository at this point in the history
  • Loading branch information
Alchemist85K committed Sep 7, 2017
1 parent 4e6ca53 commit a830d5a
Show file tree
Hide file tree
Showing 6 changed files with 390 additions and 342 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Changelog
=========

## v3.0.41
* Updated TypeScript Definition file(SendBird.d.ts).
> **NOTE**
Install via NPM and import like below in your TypeScript file:
```javascript
import * as SendBird from 'SendBird';
var sb = new SendBird({'appId': 'USER_APP_ID'});
// do something...
```
If you have trouble importing `SendBird`, please check your `tsconfig.json` file and change the value of `"allowSyntheticDefaultImports"` to `true` in `compilerOptions`.


## v3.0.40
* Added `serialize()` and `buildFromSerializedData()` in `User`, `Message` and `Channel`.
* Added `getChannelCount()` and `resetMyHistory()` in `GroupChannel`.
Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,17 @@ SendBird-SDK-JavaScript
# [Documentation](https://docs.sendbird.com/javascript)


## Upgrading to v3.0.40
## Upgrading to v3.0.41
If you want to check the record of other version, go to [Change Log](https://github.com/smilefam/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md).
* Added `serialize()` and `buildFromSerializedData()` in `User`, `Message` and `Channel`.
* Added `getChannelCount()` and `resetMyHistory()` in `GroupChannel`.
* Updated TypeScript Definition file(SendBird.d.ts).
> **NOTE**
Install via NPM and import like below in your TypeScript file:
```javascript
import * as SendBird from 'SendBird';
var sb = new SendBird({'appId': 'USER_APP_ID'});
// do something...
```
If you have trouble importing `SendBird`, please check your `tsconfig.json` file and change the value of `"allowSyntheticDefaultImports"` to `true` in `compilerOptions`.


## [Change Log](https://github.com/smilefam/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md)
Expand Down
Loading

0 comments on commit a830d5a

Please sign in to comment.