Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@enplug/sdk-dashboard

Package Overview
Dependencies
Maintainers
8
Versions
204
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@enplug/sdk-dashboard - npm Package Compare versions

Comparing version 5.0.3 to 5.0.4-twitter.1

7

dist/dashboard.js

@@ -1058,2 +1058,3 @@ var enplug =

MessageNames["GetInstagramAccounts"] = "social.getInstagramAccounts";
MessageNames["TwitterSubscriptionStatus"] = "social.twitterSubscriptionStatus";
MessageNames["LookupTwitterId"] = "social.lookupTwitterId";

@@ -1142,2 +1143,8 @@ MessageNames["GetSlackTeams"] = "social.getSlackTeams";

};
Social.prototype.twitterSubscriptionStatus = function () {
return this.bridge.sendMessage({
namespace: internal_types_1.MessageNamespaces.Social,
name: internal_types_1.MessageNames.TwitterSubscriptionStatus,
});
};
Social.prototype.getSlackTeams = function () {

@@ -1144,0 +1151,0 @@ return this.bridge.sendMessage({

0

index.d.ts

@@ -0,0 +0,0 @@ import { EnplugDashboardSDK } from './src';

2

package.json
{
"name": "@enplug/sdk-dashboard",
"version": "5.0.3",
"version": "5.0.4-twitter.1",
"description": "Enplug Dashboard SDK",

@@ -5,0 +5,0 @@ "main": "./src/index.ts",

@@ -0,0 +0,0 @@ import {

@@ -0,0 +0,0 @@ import { InboundMessage, OutboundMessage, PendingCallInfo } from '../internal-types';

@@ -0,0 +0,0 @@ import { BridgeBase } from './bridge-base';

@@ -0,0 +0,0 @@ import {

@@ -317,2 +317,9 @@ /** These are meant to avaialable to client apps */

export interface TwitterSubscriptionStatusResponse {
UsedFollows: string[];
UsedTracks: string[];
AllowedFollows: 0;
AllowedTracks: 0;
}
export interface SocialItemMedia {

@@ -319,0 +326,0 @@ Source: string;

@@ -0,0 +0,0 @@ import { Account } from './account';

@@ -139,2 +139,3 @@ /**

GetInstagramAccounts = 'social.getInstagramAccounts',
TwitterSubscriptionStatus = 'social.twitterSubscriptionStatus',
LookupTwitterId = 'social.lookupTwitterId',

@@ -141,0 +142,0 @@ GetSlackTeams = 'social.getSlackTeams',

import { BridgeBase } from './bridge/bridge-base';
import { MessageNames, MessageNamespaces } from './internal-types';
import { PreapprovalDialogOptions, SocialItemsResponse } from './external-types';
import { PreapprovalDialogOptions, SocialItemsResponse, TwitterSubscriptionStatusResponse } from './external-types';
import { validateObject, validateString } from './utils';

@@ -65,2 +65,9 @@

twitterSubscriptionStatus(): Promise<TwitterSubscriptionStatusResponse> {
return this.bridge.sendMessage({
namespace: MessageNamespaces.Social,
name: MessageNames.TwitterSubscriptionStatus,
});
}
getSlackTeams(): Promise<any> {

@@ -67,0 +74,0 @@ return this.bridge.sendMessage({

@@ -0,0 +0,0 @@ const TAG = '[Dashboard SDK]';

Sorry, the diff of this file is not supported yet

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