Skip to content

Commit a830d5a

Browse files
committed
SDK v3.0.41
1 parent 4e6ca53 commit a830d5a

File tree

6 files changed

+390
-342
lines changed

6 files changed

+390
-342
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changelog
22
=========
33

4+
## v3.0.41
5+
* Updated TypeScript Definition file(SendBird.d.ts).
6+
> **NOTE**
7+
Install via NPM and import like below in your TypeScript file:
8+
```javascript
9+
import * as SendBird from 'SendBird';
10+
var sb = new SendBird({'appId': 'USER_APP_ID'});
11+
// do something...
12+
```
13+
If you have trouble importing `SendBird`, please check your `tsconfig.json` file and change the value of `"allowSyntheticDefaultImports"` to `true` in `compilerOptions`.
14+
15+
416
## v3.0.40
517
* Added `serialize()` and `buildFromSerializedData()` in `User`, `Message` and `Channel`.
618
* Added `getChannelCount()` and `resetMyHistory()` in `GroupChannel`.

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,17 @@ SendBird-SDK-JavaScript
2929
# [Documentation](https://docs.sendbird.com/javascript)
3030

3131

32-
## Upgrading to v3.0.40
32+
## Upgrading to v3.0.41
3333
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).
34-
* Added `serialize()` and `buildFromSerializedData()` in `User`, `Message` and `Channel`.
35-
* Added `getChannelCount()` and `resetMyHistory()` in `GroupChannel`.
34+
* Updated TypeScript Definition file(SendBird.d.ts).
35+
> **NOTE**
36+
Install via NPM and import like below in your TypeScript file:
37+
```javascript
38+
import * as SendBird from 'SendBird';
39+
var sb = new SendBird({'appId': 'USER_APP_ID'});
40+
// do something...
41+
```
42+
If you have trouble importing `SendBird`, please check your `tsconfig.json` file and change the value of `"allowSyntheticDefaultImports"` to `true` in `compilerOptions`.
3643

3744

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

0 commit comments

Comments
 (0)