Skip to content

Commit

Permalink
v3.0.128
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisallo committed Jul 10, 2020
1 parent 5b2e0da commit dd192dd
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v3.0.128(JUL 10, 2020)

- Added `addOperators()` and `removeOperators()` in `GroupChannel` and `OpenChannel`.
- Bug-fix in missing `data` field of file message.

## v3.0.127(JUN 26, 2020)

- Added a dependency for `axios` and `form-data`.
Expand Down
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,12 @@ Check out [Basic Sample with SyncManager](https://github.com/sendbird/SendBird-J

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

## v3.0.127(JUN 26, 2020)
## v3.0.128(JUL 10, 2020)

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).

- Added a dependency for `axios` and `form-data`.
- 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.
- Added `getUnreadMemberCount()` and `getUndeliveredMemberCount()` in `GroupChannel`.
- Deprecated `getReadReceipt()` and `getDeliveryReceipt()` in `GroupChannel`.
- Bug-fix in updating operators in `GroupChannel`.
- Added `addOperators()` and `removeOperators()` in `GroupChannel` and `OpenChannel`.
- Bug-fix in missing `data` field of file message.

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

Expand Down
6 changes: 5 additions & 1 deletion SendBird.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Type Definitions for SendBird SDK v3.0.127
* Type Definitions for SendBird SDK v3.0.128
* homepage: https://sendbird.com/
* git: https://github.com/sendbird/SendBird-SDK-JavaScript
*/
Expand Down Expand Up @@ -1111,6 +1111,10 @@ declare namespace SendBird {
deleteMessage(message: FileMessage | UserMessage, callback: commonCallback): void;
cancelUploadingFileMessage(messageReqId: string, callback: cancelUploadingFileMessageCallback): boolean;

/** Operators */
addOperators(operatorUserIds: Array<string>, callback: commonCallback): void;
removeOperators(operatorUserIds: Array<string>, callback: commonCallback): void;

/** Reaction */
addReaction(message: UserMessage | FileMessage | AdminMessage, key: string, callback: reactionEventCallback): void;
deleteReaction(
Expand Down
4 changes: 2 additions & 2 deletions SendBird.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sendbird",
"version": "3.0.127",
"version": "3.0.128",
"authors": ["SendBird <[email protected]>"],
"homepage": "https://github.com/sendbird/SendBird-SDK-JavaScript",
"description": "SendBird JavaScript SDK",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sendbird",
"version": "3.0.127",
"version": "3.0.128",
"description": "SendBird JavaScript SDK",
"main": "SendBird.min.js",
"dependencies": {
Expand Down

0 comments on commit dd192dd

Please sign in to comment.