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

dtable-web-api

Package Overview
Dependencies
Maintainers
1
Versions
405
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dtable-web-api - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

8

lib/dtable-web-api.js

@@ -451,2 +451,10 @@ "use strict";

}
}, {
key: "createGroup",
value: function createGroup(name) {
var url = this.server + '/api/v2.1/groups/';
var form = new _formData["default"]();
form.append('name', name);
return this._sendPostRequest(url, form);
}
}]);

@@ -453,0 +461,0 @@

3

package.json
{
"name": "dtable-web-api",
"version": "1.0.2",
"version": "1.0.3",
"description": "an interface for dtable-web",

@@ -11,3 +11,2 @@ "main": "lib/dtable-web-api.js",

"prepublishOnly": "npm run clean && npm run pub:lib"
},

@@ -14,0 +13,0 @@ "files": [

@@ -350,4 +350,11 @@ import axios from 'axios';

createGroup(name) {
const url = this.server + '/api/v2.1/groups/';
let form = new FormData();
form.append('name', name);
return this._sendPostRequest(url, form);
}
}
export default DTableWebAPI;
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