Skip to content

Commit 52ba321

Browse files
committed
v3.0.64
1 parent eebe652 commit 52ba321

File tree

6 files changed

+27
-12
lines changed

6 files changed

+27
-12
lines changed

CHANGELOG.md

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

4+
## v3.0.64(Jun 1, 2018)
5+
* Added a typing indicator throttle option in SendBird.Options.
6+
* Fixed a minor bug for `GroupChannelParams`, `UserMessageParams` and `FileMessageParams`.
7+
* Fixed a minor bug for `includeEmpty` to accept only a boolean argument.
8+
49
## v3.0.63
510
* Fixed an occasional member count mismatch in a super group channel.
611

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,11 @@ If you have trouble importing `SendBird`, please check your `tsconfig.json` file
3939
# [Documentation](https://docs.sendbird.com/javascript)
4040

4141

42-
## Upgrading to v3.0.63
42+
## Upgrading to v3.0.64(Jun 1, 2018)
4343
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).
44-
* Fixed an occasional member count mismatch in a super group channel.
44+
* Added a typing indicator throttle option in SendBird.Options.
45+
* Fixed a minor bug for `GroupChannelParams`, `UserMessageParams` and `FileMessageParams`.
46+
* Fixed a minor bug for `includeEmpty` to accept only a boolean argument.
4547

4648

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

SendBird.d.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for SendBird SDK v3.0.63
2+
* Type Definitions for SendBird SDK v3.0.64
33
* homepage: https://sendbird.com/
44
* git: https://github.com/smilefam/SendBird-SDK-JavaScript
55
*/
@@ -55,6 +55,8 @@ declare namespace SendBird {
5555
FileMessageParams: FileMessageParams;
5656
GroupChannelTotalUnreadMessageCountParams: GroupChannelTotalUnreadMessageCountParams;
5757

58+
Options: Options;
59+
5860
connect(userId: string, callback?: userCallback): void;
5961
connect(userId: string, apiHost: string, wsHost: string, callback?: userCallback): void;
6062
connect(userId: string, accessToken: string, callback?: userCallback): void;
@@ -146,6 +148,11 @@ declare namespace SendBird {
146148
markAsReadWithChannelUrls(channelUrls: Array<string>, callback: commonCallback): void;
147149
}
148150

151+
interface Options {
152+
useMemberAsMessageSender: boolean,
153+
typingIndicatorThrottle: number
154+
}
155+
149156
interface FriendListQuery {
150157
hasMore: boolean;
151158
isLoading: boolean;
@@ -209,7 +216,6 @@ declare namespace SendBird {
209216
channelUrl: string;
210217
channelType: string;
211218
messageId: number;
212-
message: string;
213219
messageType: string;
214220
data: string;
215221
customType: string;
@@ -226,6 +232,7 @@ declare namespace SendBird {
226232
}
227233

228234
interface AdminMessage extends BaseMessageInstance {
235+
message: string;
229236
translations: Object;
230237
}
231238
interface AdminMessageStatic {
@@ -247,6 +254,7 @@ declare namespace SendBird {
247254
pushNotificationDeliveryOption: 'default' | 'suppress';
248255
}
249256
interface UserMessage extends BaseMessageInstance {
257+
message: string;
250258
sender: User;
251259
reqId: string;
252260
translations: Object;

SendBird.min.js

Lines changed: 6 additions & 6 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.63",
3+
"version": "3.0.64",
44
"authors": ["SendBird <[email protected]>"],
55
"homepage": "https://github.com/smilefam/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.63",
3+
"version": "3.0.64",
44
"description": "SendBird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)