Skip to content

Commit 3079c36

Browse files
committed
v3.0.36
1 parent ae0141e commit 3079c36

File tree

6 files changed

+20
-14
lines changed

6 files changed

+20
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Changelog
22
=========
3+
## v3.0.36
4+
* Updated login status check.
5+
* minor bugfix for NodeJS.
6+
37
## v3.0.35
48
* Updated dependent libs for NodeJS.
59

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ SendBird-SDK-JavaScript
2929
# [Documentation](https://docs.sendbird.com/javascript)
3030

3131

32-
## Upgrading to v3.0.35
33-
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).
34-
* Updated dependent libs for NodeJS.
32+
## Upgrading to v3.0.36
33+
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).
34+
* Updated login status check.
35+
* minor bugfix for NodeJS.
3536

3637

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

SendBird.d.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,18 +227,20 @@ interface BaseChannel {
227227

228228
/* MetaCounter */
229229
createMetaCounters(metaCounterMap: Object, callback: Function): void;
230+
updateMetaCounters(metaCounterMap: Object, callback: Function): void;
230231
updateMetaCounters(metaCounterMap: Object, upsert: boolean, callback: Function): void;
231232
increaseMetaCounters(metaCounterMap: Object, callback: Function): void;
232233
decreaseMetaCounters(metaCounterMap: Object, callback: Function): void;
233-
getMetaCounters(keys: Object, callback: Function): void;
234+
getMetaCounters(keys: Array<string>, callback: Function): void;
234235
getAllMetaCounters(callback: Function): void;
235236
deleteMetaCounter(key: string, callback: Function): void;
236237
deleteAllMetaCounters(callback: Function): void;
237238

238239
/* MetaData */
239240
createMetaData(metaDataMap: Object, callback: Function): void;
241+
updateMetaData(metaDataMap: Object, callback: Function): void;
240242
updateMetaData(metaDataMap: Object, upsert: boolean, callback: Function): void;
241-
getMetaData(keys: Object, callback: Function): void;
243+
getMetaData(keys: Array<string>, callback: Function): void;
242244
getAllMetaData(callback: Function): void;
243245
deleteMetaData(key: string, callback: Function): void;
244246
deleteAllMetaData(callback: Function): void;
@@ -416,7 +418,6 @@ interface GroupChannel extends BaseChannel {
416418

417419
setPushPreference(pushOn: boolean, callback: Function): void;
418420
getPushPreference(callback: Function): void;
419-
420421
}
421422

422423
declare var SendBird: SendBirdFactory;

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.35",
3+
"version": "3.0.36",
44
"authors": [
55
"SendBird <[email protected]>"
66
],

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

0 commit comments

Comments
 (0)