Skip to content

Commit 3ec908d

Browse files
committed
v3.0.97
1 parent fb8fe61 commit 3ec908d

File tree

6 files changed

+25
-18
lines changed

6 files changed

+25
-18
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.97(MAR 14, 2019)
5+
* Improved stability.
6+
47
## v3.0.96(FEB 21, 2019)
58
* Minor bug fixed.
69

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ Check out [Basic Sample with SyncManager](https://github.com/smilefam/SendBird-J
4848

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

51-
## v3.0.96(FEB 21, 2019)
51+
## v3.0.97(MAR 14, 2019)
5252
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).
53-
* Minor bug fixed.
53+
* Improved stability.
5454

5555

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

SendBird.d.ts

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for SendBird SDK v3.0.96
2+
* Type Definitions for SendBird SDK v3.0.97
33
* homepage: https://sendbird.com/
44
* git: https://github.com/smilefam/SendBird-SDK-JavaScript
55
*/
@@ -892,17 +892,17 @@ declare namespace SendBird {
892892
createMutedUserListQuery(): MutedUserListQuery;
893893
createBannedUserListQuery(): BannedUserListQuery;
894894

895-
updateChannel(name: string, coverUrl: string, data: string, callback: openChannelCallback): void;
895+
updateChannel(name: string, coverUrlOrImageFile: string | File, data: string, callback: openChannelCallback): void;
896896
updateChannel(
897897
name: string,
898-
coverUrl: string,
898+
coverUrlOrImageFile: string | File,
899899
data: string,
900900
operatorUserIds: Array<string> | string,
901901
callback: openChannelCallback
902902
): void; // DEPRECATED
903903
updateChannel(
904904
name: string,
905-
coverUrl: string,
905+
coverUrlOrImageFile: string | File,
906906
data: string,
907907
operatorUserIds: Array<string> | string,
908908
customType: string,
@@ -911,14 +911,14 @@ declare namespace SendBird {
911911

912912
updateChannelWithOperatorUserIds(
913913
name: string,
914-
coverUrl: string,
914+
coverUrlOrImageFile: string | File,
915915
data: string,
916916
operatorUserIds: Array<string> | string,
917917
callback: openChannelCallback
918918
): void;
919919
updateChannelWithOperatorUserIds(
920920
name: string,
921-
coverUrl: string,
921+
coverUrlOrImageFile: string | File,
922922
data: string,
923923
operatorUserIds: Array<string> | string,
924924
customType: string,
@@ -1327,6 +1327,9 @@ declare namespace SendBird {
13271327
}
13281328

13291329
type groupChannelListQueryCallback = (groupChannelList: Array<GroupChannel>, error: SendBirdError) => void;
1330+
interface GroupChannelListQueryStatic {
1331+
buildFromSerializedData(serializedObject: object): GroupChannelListQuery;
1332+
}
13301333
interface GroupChannelListQuery {
13311334
limit: number;
13321335
hasNext: boolean;
@@ -1350,6 +1353,7 @@ declare namespace SendBird {
13501353
metadataOrderKeyFilter: string;
13511354
hiddenChannelFilter: 'unhidden_only' | 'hidden_only' | 'hidden_allow_auto_unhide' | 'hidden_prevent_auto_unhide'
13521355

1356+
serialize(): object;
13531357
next(callback: groupChannelListQueryCallback): void;
13541358
}
13551359

SendBird.min.js

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

0 commit comments

Comments
 (0)