Skip to content

Commit d087b8b

Browse files
committed
v3.0.131
1 parent b15786c commit d087b8b

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3-
## v3.0.130(AUG 7, 2020)
3+
## v3.0.131(AUG 7, 2020)
4+
5+
- Fixed duplicated `appInfo` in `SendBird.d.ts`.
6+
7+
## v3.0.130(AUG 7, 2020) (DEPRECATED)
48

59
- Added `order` in `GroupChannelMemberListQuery`. The value could be `member_nickname_alphabetical` (default) or `operator_then_member_alphabetical`.
610
- Added `isMuted` in `Member`.

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,11 @@ Check out [Basic Sample with SyncManager](https://github.com/sendbird/SendBird-J
5252

5353
# [Documentation](https://docs.sendbird.com/javascript)
5454

55-
## v3.0.130(AUG 7, 2020)
55+
## v3.0.131(AUG 7, 2020)
5656

5757
If you want to check the record of other version, go to [Change Log](https://github.com/sendbird/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md).
5858

59-
- Added `order` in `GroupChannelMemberListQuery`. The value could be `member_nickname_alphabetical` (default) or `operator_then_member_alphabetical`.
60-
- Added `isMuted` in `Member`.
61-
- Removed value type check in `channel.createMetaData()` and `channel.updateMetaData()`.
62-
- Bug-fix on `profileUrl` setter.
59+
- Fixed duplicated `appInfo` in `SendBird.d.ts`.
6360

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

SendBird.d.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for SendBird SDK v3.0.130
2+
* Type Definitions for SendBird SDK v3.0.131
33
* homepage: https://sendbird.com/
44
* git: https://github.com/sendbird/SendBird-SDK-JavaScript
55
*/
@@ -59,9 +59,6 @@ declare namespace SendBird {
5959
friendName?: string;
6060
}
6161
interface SendBirdInstance {
62-
currentUser: User;
63-
appInfo: AppInfo;
64-
6562
User: UserStatic;
6663
Member: MemberStatic;
6764
OpenChannel: OpenChannelStatic;
@@ -84,6 +81,7 @@ declare namespace SendBird {
8481
MessageMetaArray: MessageMetaArray;
8582
Options: Options;
8683

84+
currentUser: User;
8785
appInfo: AppInfo;
8886
ekey: string;
8987

SendBird.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",
3-
"version": "3.0.130",
3+
"version": "3.0.131",
44
"authors": ["SendBird <[email protected]>"],
55
"homepage": "https://github.com/sendbird/SendBird-SDK-JavaScript",
66
"description": "SendBird JavaScript SDK",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.130",
3+
"version": "3.0.131",
44
"description": "SendBird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)