Skip to content

Commit f1d1a2f

Browse files
committed
v3.0.91
1 parent 449f486 commit f1d1a2f

File tree

6 files changed

+25
-11
lines changed

6 files changed

+25
-11
lines changed

CHANGELOG.md

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

4+
## v3.0.91(NOV 30, 2018)
5+
* Minor bug fixed.
6+
47
## v3.0.90(NOV 23, 2018)
58
* Minor bug fixed.
69

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ For more information about `SyncManager`, please refer to [SyncManager README](h
4949

5050
# [Documentation](https://docs.sendbird.com/javascript)
5151

52-
## v3.0.90(NOV 23, 2018)
52+
## v3.0.91(NOV 30, 2018)
5353
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).
5454
* Minor bug fixed.
5555

SendBird.d.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for SendBird SDK v3.0.90
2+
* Type Definitions for SendBird SDK v3.0.91
33
* homepage: https://sendbird.com/
44
* git: https://github.com/smilefam/SendBird-SDK-JavaScript
55
*/
@@ -32,6 +32,14 @@ declare namespace SendBird {
3232
};
3333
type getFriendChangeLogsByTokenHandler = (data: getFriendChangeLogs, error: SendBirdError) => void;
3434

35+
type groupChannelChangeLogs = {
36+
updatedChannels: Array<GroupChannel>;
37+
deletedChannelUrls: Array<string>;
38+
hasMore: boolean;
39+
token: string;
40+
};
41+
type getGroupChannelChangeLogsHandler = (data: groupChannelChangeLogs, error: SendBirdError) => void;
42+
3543
interface DiscoveryObject {
3644
friendDiscoveryKey: string;
3745
friendName?: string;
@@ -165,6 +173,9 @@ declare namespace SendBird {
165173
getSubscribedTotalUnreadMessageCount(): number;
166174
getSubscribedCustomTypeTotalUnreadMessageCount(): number;
167175
getSubscribedCustomTypeUnreadMessageCount(customType: string): number;
176+
177+
getMyGroupChannelChangeLogsByToken(token: string, customTypes: Array<string>, callback:getGroupChannelChangeLogsHandler);
178+
getMyGroupChannelChangeLogsByTimestamp(ts: number, customTypes: Array<string>, callback:getGroupChannelChangeLogsHandler);
168179
}
169180

170181
interface Options {

SendBird.min.js

Lines changed: 7 additions & 7 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.90",
3+
"version": "3.0.91",
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.90",
3+
"version": "3.0.91",
44
"description": "SendBird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)