Skip to content

Commit 43d5cd6

Browse files
committed
v3.0.99
1 parent d82f727 commit 43d5cd6

File tree

6 files changed

+20
-13
lines changed

6 files changed

+20
-13
lines changed

CHANGELOG.md

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

4+
## v3.0.99(MAY 3, 2019)
5+
* Added `isDiscoverable` property to `GroupChannel` and `GroupChannelParams`.
6+
* if `isDiscoverable` of a public group channel is set to false, then the channel will not appear during querying with `PublicGroupChannelListQuery`. (default: true)
7+
48
## v3.0.98(APR 5, 2019)
59
* Improved stability.
610

README.md

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

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

51-
## v3.0.98(APR 5, 2019)
51+
## v3.0.99(MAY 3, 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-
* Improved stability.
53+
* Added `isDiscoverable` property to `GroupChannel` and `GroupChannelParams`.
54+
* if `isDiscoverable` of a public group channel is set to false, then the channel will not appear during querying with `PublicGroupChannelListQuery`. (default: true)
5455

5556

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

SendBird.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for SendBird SDK v3.0.98
2+
* Type Definitions for SendBird SDK v3.0.99
33
* homepage: https://sendbird.com/
44
* git: https://github.com/smilefam/SendBird-SDK-JavaScript
55
*/
@@ -1106,6 +1106,7 @@ declare namespace SendBird {
11061106
isDistinct: boolean;
11071107
isSuper: boolean;
11081108
isPublic: boolean;
1109+
isDiscoverable: boolean;
11091110
isEphemeral: boolean;
11101111
channelUrl: string;
11111112
name: string;
@@ -1175,6 +1176,7 @@ declare namespace SendBird {
11751176
invitedAt: number;
11761177
isAccessCodeRequired: boolean;
11771178
hiddenState: 'unhidden' | 'hidden_allow_auto_unhide' | 'hidden_prevent_auto_unhide';
1179+
isDiscoverable: boolean;
11781180

11791181
isEqual(target: GroupChannel): boolean;
11801182
isIdentical(target: GroupChannel): boolean;

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.98",
3+
"version": "3.0.99",
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.98",
3+
"version": "3.0.99",
44
"description": "SendBird JavaScript SDK",
55
"main": "SendBird.min.js",
66
"dependencies": {

0 commit comments

Comments
 (0)