Skip to content

Commit 14262ef

Browse files
committed
v3.0.152
1 parent b31eb81 commit 14262ef

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v3.0.152(JUNE 10, 2021)
4+
- Added `getMessage` in `BaseMessage`.
5+
36
## v3.0.151(MAY 28, 2021)
47
- Added `MessageTypeFilter` in `BaseChannel`.
58
- Improved stability.

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -325,9 +325,8 @@ The `sb.setErrorFirstCallback(false)` returns callbacks to their original parame
325325

326326
## Changelogs
327327

328-
## v3.0.151(MAY 28, 2021)
328+
## v3.0.152(JUNE 10, 2021)
329329

330330
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).
331331

332-
- Added `MessageTypeFilter` in `BaseChannel`.
333-
- Improved stability.
332+
- Added `getMessage` in `BaseMessage`.

SendBird.d.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for Sendbird SDK v3.0.151
2+
* Type Definitions for Sendbird SDK v3.0.152
33
* homepage: https://sendbird.com/
44
* git: https://github.com/sendbird/Sendbird-SDK-JavaScript
55
*/
@@ -87,6 +87,10 @@ declare namespace SendBird {
8787
};
8888
OpenChannel: OpenChannelStatic;
8989
GroupChannel: GroupChannelStatic;
90+
91+
BaseMessage: {
92+
getMessage(params: MessageRetrievalParams, callback?: messageCallback): Promise<BaseMessageInstance>;
93+
};
9094
UserMessage: UserMessageStatic;
9195
FileMessage: FileMessageStatic;
9296
AdminMessage: AdminMessageStatic;

SendBird.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.151",
3+
"version": "3.0.152",
44
"authors": [
55
"Sendbird <[email protected]>"
66
],

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sendbird",
3-
"version": "3.0.151",
3+
"version": "3.0.152",
44
"description": "Sendbird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)