Skip to content

Commit

Permalink
v3.0.152
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcho committed Jun 10, 2021
1 parent b31eb81 commit 14262ef
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## v3.0.152(JUNE 10, 2021)
- Added `getMessage` in `BaseMessage`.

## v3.0.151(MAY 28, 2021)
- Added `MessageTypeFilter` in `BaseChannel`.
- Improved stability.
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,9 +325,8 @@ The `sb.setErrorFirstCallback(false)` returns callbacks to their original parame

## Changelogs

## v3.0.151(MAY 28, 2021)
## v3.0.152(JUNE 10, 2021)

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

- Added `MessageTypeFilter` in `BaseChannel`.
- Improved stability.
- Added `getMessage` in `BaseMessage`.
6 changes: 5 additions & 1 deletion SendBird.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Type Definitions for Sendbird SDK v3.0.151
* Type Definitions for Sendbird SDK v3.0.152
* homepage: https://sendbird.com/
* git: https://github.com/sendbird/Sendbird-SDK-JavaScript
*/
Expand Down Expand Up @@ -87,6 +87,10 @@ declare namespace SendBird {
};
OpenChannel: OpenChannelStatic;
GroupChannel: GroupChannelStatic;

BaseMessage: {
getMessage(params: MessageRetrievalParams, callback?: messageCallback): Promise<BaseMessageInstance>;
};
UserMessage: UserMessageStatic;
FileMessage: FileMessageStatic;
AdminMessage: AdminMessageStatic;
Expand Down
4 changes: 2 additions & 2 deletions SendBird.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sendbird",
"version": "3.0.151",
"version": "3.0.152",
"authors": [
"Sendbird <[email protected]>"
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sendbird",
"version": "3.0.151",
"version": "3.0.152",
"description": "Sendbird JavaScript SDK",
"main": "SendBird.min.js",
"dependencies": {
Expand Down

0 comments on commit 14262ef

Please sign in to comment.