New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ellipsis-box

Package Overview
Dependencies
Maintainers
3
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ellipsis-box - npm Package Compare versions

Comparing version 0.0.5 to 0.2.1-1

4

files.js

@@ -5,4 +5,4 @@ "use strict";

module.exports = ellipsis => {
const client = require('./sdk')(ellipsis);
module.exports = (ellipsis, configJsonString, enterpriseId) => {
const client = require('./sdk')(ellipsis, configJsonString, enterpriseId);

@@ -9,0 +9,0 @@ return {

{
"name": "ellipsis-box",
"version": "0.0.5",
"version": "0.2.1-1",
"description": "Support for accessing the Box.com API from Ellipsis.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -5,6 +5,6 @@ "use strict";

module.exports = ellipsis => {
const configJSON = JSON.parse(ellipsis.env.BOX_CONFIG);
module.exports = (ellipsis, configJsonString, enterpriseId) => {
const configJSON = JSON.parse(configJsonString || ellipsis.env.BOX_CONFIG);
const sdk = BoxSDK.getPreconfiguredInstance(configJSON);
return sdk.getAppAuthClient('enterprise', ellipsis.env.BOX_APP_ENTERPRISE_ID);
return sdk.getAppAuthClient('enterprise', enterpriseId || ellipsis.env.BOX_APP_ENTERPRISE_ID);
}
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