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

checkbook-api

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

checkbook-api - npm Package Compare versions

Comparing version 3.2.1 to 3.2.2

7

lib/endpoints/user.js

@@ -38,2 +38,9 @@ 'use strict';

}, callback);
},
delete: function(user_id, callback) {
return this.resource.request({
method: 'DELETE',
uri: '/user/' + user_id
}, callback);
}

@@ -40,0 +47,0 @@

2

package.json
{
"name": "checkbook-api",
"version": "3.2.1",
"version": "3.2.2",
"description": "Node.js library for the Checkbook.io API",

@@ -5,0 +5,0 @@ "keywords": [

@@ -127,2 +127,3 @@ # Node.js library for the Checkbook.io API

* ```list(query, callback)``` [:book:](https://docs.checkbook.io/reference#get-users)
* ```delete(user_id, callback)``` [:book:](https://docs.checkbook.io/reference#delete-user)

@@ -129,0 +130,0 @@ ---

@@ -80,2 +80,17 @@ var CheckbookAPI = require("../lib/checkbook");

});
*/
/*
Delete the specified marketplace user
https://docs.checkbook.io/reference#delete-user
*/
/*
Checkbook.users.delete('222e276dc9b548fda3faa7eacb56c655', function (error, response) {
if (error) {
console.log('Error:', error);
} else {
console.log('Response:', response);
}
});
*/
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