Comparing version 3.0.115 to 3.0.116
{ | ||
"name": "sendbird", | ||
"version": "3.0.115", | ||
"version": "3.0.116", | ||
"authors": ["SendBird <support@sendbird.com>"], | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/sendbird/SendBird-SDK-JavaScript", |
# Changelog | ||
## v3.0.116(JAN 10, 2020) | ||
- Improved stability. | ||
## v3.0.115(DEC 24, 2019) | ||
@@ -11,3 +15,2 @@ | ||
- Added `includeReaction` parameter to `getMessageChangeLogsByID()`, `getMessageChangeLogsByTimestamp()` in `BaseChannel`. | ||
- Added always push notification support. | ||
- Added `markAsDelivered()`, `getDeliveryReceipt()` in `GroupChannel`. | ||
@@ -14,0 +17,0 @@ - Added `onDeliveryReceiptUpdated` in `ChannelHandler`. |
{ | ||
"name": "sendbird", | ||
"version": "3.0.115", | ||
"version": "3.0.116", | ||
"description": "SendBird JavaScript SDK", | ||
@@ -32,2 +32,2 @@ "main": "SendBird.min.js", | ||
"typings": "SendBird.d.ts" | ||
} | ||
} |
@@ -48,15 +48,6 @@ [![npm](https://img.shields.io/npm/v/sendbird.svg?style=popout&colorB=red)](https://www.npmjs.com/package/sendbird) | ||
## v3.0.115(DEC 24, 2019) | ||
## v3.0.116(JAN 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 `reactions` in `BaseMessage`. | ||
- Added `addReaction()`, `deleteReaction()` in `BaseChannel`. | ||
- Added `onReactionUpdated()` in `ChannelHandler`. | ||
- Added `applyReactionEvent()` in `BaseMessage`. | ||
- Added `includeReaction` parameter to `get**MessagesByID()`, `get**MessagesByTimestamp()` in `BaseChannel`. | ||
- Added `includeReaction` parameter to `getMessageChangeLogsByID()`, `getMessageChangeLogsByTimestamp()` in `BaseChannel`. | ||
- Added always push notification support. | ||
- Added `markAsDelivered()`, `getDeliveryReceipt()` in `GroupChannel`. | ||
- Added `onDeliveryReceiptUpdated` in `ChannelHandler`. | ||
- Improved stability. | ||
@@ -63,0 +54,0 @@ |
/** | ||
* Type Definitions for SendBird SDK v3.0.115 | ||
* Type Definitions for SendBird SDK v3.0.116 | ||
* homepage: https://sendbird.com/ | ||
@@ -14,3 +14,3 @@ * git: https://github.com/sendbird/SendBird-SDK-JavaScript | ||
version: number; | ||
new ({ appId }: { appId: string }): SendBird.SendBirdInstance; | ||
new({ appId }: { appId: string }): SendBird.SendBirdInstance; | ||
getInstance(): SendBird.SendBirdInstance; | ||
@@ -183,2 +183,4 @@ } | ||
markAsDelivered(channelUrl: String): void; | ||
getGroupChannelCount(memberStateFilter: string, callback: commonCallback): void; | ||
@@ -236,3 +238,3 @@ | ||
interface UserEventHandlerStatic { | ||
new (): UserEventHandler; | ||
new(): UserEventHandler; | ||
} | ||
@@ -245,3 +247,3 @@ interface UserEventHandler { | ||
interface ChannelHandlerStatic { | ||
new (): ChannelHandler; | ||
new(): ChannelHandler; | ||
} | ||
@@ -280,3 +282,3 @@ interface ChannelHandler { | ||
interface ConnectionHandlerStatic { | ||
new (): ConnectionHandler; | ||
new(): ConnectionHandler; | ||
} | ||
@@ -330,3 +332,3 @@ interface ConnectionHandler { | ||
interface GroupChannelTotalUnreadMessageCountParams { | ||
new (): GroupChannelTotalUnreadMessageCountParams; | ||
new(): GroupChannelTotalUnreadMessageCountParams; | ||
channelCustomTypesFilter: Array<string>; | ||
@@ -337,3 +339,3 @@ superChannelFilter: 'all' | 'super' | 'nonsuper'; | ||
interface UserMessageParams { | ||
new (): UserMessageParams; | ||
new(): UserMessageParams; | ||
message: string; | ||
@@ -365,3 +367,3 @@ data: string; | ||
interface FileMessageParams { | ||
new (): FileMessageParams; | ||
new(): FileMessageParams; | ||
file: File; | ||
@@ -1292,3 +1294,3 @@ fileUrl: string; | ||
interface GroupChannelParams { | ||
new (): GroupChannelParams; | ||
new(): GroupChannelParams; | ||
isDistinct: boolean; | ||
@@ -1317,3 +1319,3 @@ isSuper: boolean; | ||
interface ScheduledUserMessageParams { | ||
new (): ScheduledUserMessageParams; | ||
new(): ScheduledUserMessageParams; | ||
message: string; | ||
@@ -1344,3 +1346,3 @@ data: string; | ||
interface MessageMetaArray { | ||
new (key: string, value: Array<string>): MessageMetaArray; | ||
new(key: string, value: Array<string>): MessageMetaArray; | ||
key: string; | ||
@@ -1350,3 +1352,3 @@ value: Array<string>; | ||
interface Reaction { | ||
new (): Reaction; | ||
new(): Reaction; | ||
key: string; | ||
@@ -1357,3 +1359,3 @@ userIds: Array<string>; | ||
interface ReactionEvent { | ||
new (): ReactionEvent; | ||
new(): ReactionEvent; | ||
messageId: string; | ||
@@ -1444,2 +1446,5 @@ userId: string; | ||
markAsDelivered(): void; | ||
getDeliveryReceipt(message: UserMessage | FileMessage | AdminMessage): number; | ||
startTyping(): void; | ||
@@ -1446,0 +1451,0 @@ endTyping(): void; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1479
360403
59