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

randalthor-dropboxapi

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

randalthor-dropboxapi - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

10

client.js

@@ -81,4 +81,7 @@ const Dropbox = require("dropbox").Dropbox;

async deleteFileSync(path) {
const options = {
path: path
};
try {
await this.dpx.filesDeleteV2(path);
await this.dpx.filesDeleteV2(options);
} catch (error) {

@@ -90,4 +93,7 @@ console.error(error);

async getTempLink(path) {
const options = {
path: path
};
try {
return await this.dpx.filesGetTemporaryLink(path);
return await this.dpx.filesGetTemporaryLink(options);
} catch (error) {

@@ -94,0 +100,0 @@ console.error(error);

2

package.json
{
"name": "randalthor-dropboxapi",
"version": "1.1.1",
"version": "1.1.2",
"description": "Client Wrapper for Dropbox Node API",

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

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