Socket
Socket
Sign inDemoInstall

sendbird

Package Overview
Dependencies
Maintainers
1
Versions
226
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sendbird - npm Package Compare versions

Comparing version 3.0.129 to 3.0.130

2

bower.json
{
"name": "sendbird",
"version": "3.0.129",
"version": "3.0.130",
"authors": ["SendBird <support@sendbird.com>"],

@@ -5,0 +5,0 @@ "homepage": "https://github.com/sendbird/SendBird-SDK-JavaScript",

# Changelog
## v3.0.130(AUG 7, 2020)
- Added `order` in `GroupChannelMemberListQuery`. The value could be `member_nickname_alphabetical` (default) or `operator_then_member_alphabetical`.
- Added `isMuted` in `Member`.
- Removed value type check in `channel.createMetaData()` and `channel.updateMetaData()`.
- Bug-fix on `profileUrl` setter.
## v3.0.129(JUL 24, 2020)

@@ -4,0 +11,0 @@

{
"name": "sendbird",
"version": "3.0.129",
"version": "3.0.130",
"description": "SendBird JavaScript SDK",

@@ -8,3 +8,2 @@ "main": "SendBird.min.js",

"ws": "6.0.0",
"xhr2": "0.1.4",
"agentkeepalive": "2.2.0",

@@ -11,0 +10,0 @@ "axios": "^0.19.2",

@@ -55,11 +55,10 @@ [![npm](https://img.shields.io/npm/v/sendbird.svg?style=popout&colorB=red)](https://www.npmjs.com/package/sendbird)

## v3.0.129(JUL 24, 2020)
## v3.0.130(AUG 7, 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).
- Renamed `includeReaction` to `includeReactions` in `channel.getMessageChangeLogs()` (`includeReaction` is deprecated).
- Added `ogMetaData` in `BaseMessage`.
- `ogMetaData` holds open graph properties including `title`, `url`, `description`, and `defaultImage`.
- `ogMetaData.defaultImage` has the image-related properties including `url`, `secureUrl`, `type`, `width`, `height`, `alt` as defined in the target website.
- `ogMetaData` may not be set at the moment of sending. Once the message is sent, Sendbird service would fetch and analyze the open graph property and give the result as a form of message update event.
- Added `order` in `GroupChannelMemberListQuery`. The value could be `member_nickname_alphabetical` (default) or `operator_then_member_alphabetical`.
- Added `isMuted` in `Member`.
- Removed value type check in `channel.createMetaData()` and `channel.updateMetaData()`.
- Bug-fix on `profileUrl` setter.

@@ -66,0 +65,0 @@ ## [Change Log](https://github.com/sendbird/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md)

/**
* Type Definitions for SendBird SDK v3.0.129
* Type Definitions for SendBird SDK v3.0.130
* homepage: https://sendbird.com/

@@ -63,2 +63,4 @@ * git: https://github.com/sendbird/SendBird-SDK-JavaScript

currentUser: User;
appInfo: AppInfo;
User: UserStatic;

@@ -259,7 +261,9 @@ Member: MemberStatic;

interface AppInfo {
uploadSizeLimit: number;
emojiHash: string;
uploadSizeLimit: number;
useReaction: boolean;
premiumFeatureList: Array<string>;
applicationAttributes: Array<string>;
isUsingReaction: boolean;
}
interface FriendListQuery {

@@ -471,5 +475,4 @@ hasMore: boolean;

reqId: string;
url: string; // DEPRECATED
plainUrl: string;
secureUrl: string;
url: string;
name: string;

@@ -538,5 +541,4 @@ size: number;

interface ThumbnailObject {
url: string; // DEPRECATED
url: string;
plainUrl: string;
secureUrl: string;
height: number;

@@ -558,5 +560,4 @@ width: number;

nickname: string;
profileUrl: string; // DEPRECATED
profileUrl: string;
plainProfileUrl: string;
secureProfileUrl: string;
metaData: Object;

@@ -594,2 +595,3 @@ connectionStatus: string;

role: 'none' | 'operator';
isMuted: boolean;
isBlockedByMe: boolean;

@@ -1798,2 +1800,3 @@ isBlockingMe: boolean;

isLoading: boolean;
order: 'member_nickname_alphabetical' | 'operator_then_member_alphabetical';
mutedMemberFilter: 'all' | 'muted' | 'unmuted';

@@ -1800,0 +1803,0 @@ operatorFilter: 'all' | 'operator' | 'nonoperator'; // DEPRECATED

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc