Skip to content

Commit dd192dd

Browse files
committed
v3.0.128
1 parent 5b2e0da commit dd192dd

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

CHANGELOG.md

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

3+
## v3.0.128(JUL 10, 2020)
4+
5+
- Added `addOperators()` and `removeOperators()` in `GroupChannel` and `OpenChannel`.
6+
- Bug-fix in missing `data` field of file message.
7+
38
## v3.0.127(JUN 26, 2020)
49

510
- Added a dependency for `axios` and `form-data`.

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,12 @@ Check out [Basic Sample with SyncManager](https://github.com/sendbird/SendBird-J
5252

5353
# [Documentation](https://docs.sendbird.com/javascript)
5454

55-
## v3.0.127(JUN 26, 2020)
55+
## v3.0.128(JUL 10, 2020)
5656

5757
If you want to check the record of other version, go to [Change Log](https://github.com/sendbird/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md).
5858

59-
- Added a dependency for `axios` and `form-data`.
60-
- Please add [axios](https://github.com/axios/axios) to the `script` tag if you're using SendBird by copy-and-paste the `SendBird.min.js` file.
61-
- Added `getUnreadMemberCount()` and `getUndeliveredMemberCount()` in `GroupChannel`.
62-
- Deprecated `getReadReceipt()` and `getDeliveryReceipt()` in `GroupChannel`.
63-
- Bug-fix in updating operators in `GroupChannel`.
59+
- Added `addOperators()` and `removeOperators()` in `GroupChannel` and `OpenChannel`.
60+
- Bug-fix in missing `data` field of file message.
6461

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

SendBird.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for SendBird SDK v3.0.127
2+
* Type Definitions for SendBird SDK v3.0.128
33
* homepage: https://sendbird.com/
44
* git: https://github.com/sendbird/SendBird-SDK-JavaScript
55
*/
@@ -1111,6 +1111,10 @@ declare namespace SendBird {
11111111
deleteMessage(message: FileMessage | UserMessage, callback: commonCallback): void;
11121112
cancelUploadingFileMessage(messageReqId: string, callback: cancelUploadingFileMessageCallback): boolean;
11131113

1114+
/** Operators */
1115+
addOperators(operatorUserIds: Array<string>, callback: commonCallback): void;
1116+
removeOperators(operatorUserIds: Array<string>, callback: commonCallback): void;
1117+
11141118
/** Reaction */
11151119
addReaction(message: UserMessage | FileMessage | AdminMessage, key: string, callback: reactionEventCallback): void;
11161120
deleteReaction(

SendBird.min.js

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

0 commit comments

Comments
 (0)