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

node-axosoft

Package Overview
Dependencies
Maintainers
3
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-axosoft - npm Package Compare versions

Comparing version 2.2.1 to 2.3.0

2

lib/api.js

@@ -121,3 +121,3 @@ var _ = require('lodash');

// If this is a get request and there's specified data, add that to the request options object
if ('get' === requestType && requestData) {
if (requestData && ('get' === requestType || 'del' === requestType)) {
request_options.data = requestData;

@@ -124,0 +124,0 @@ }

@@ -98,2 +98,3 @@ var api = require('./api');

* @param integer project_id ID of single project
* @param integer project_to_move_to The ID of the project where all items associated with the project being deleted will be moved to
* @param function callback Callback function

@@ -103,4 +104,4 @@ *

*/
delete: function (project_id, callback) {
api.handleRestRequest('del', '/projects/' + project_id, null, callback);
delete: function (project_id, project_to_move_to, callback) {
api.handleRestRequest('del', '/projects/' + project_id, {project_to_move_to: project_to_move_to}, callback);
}

@@ -107,0 +108,0 @@

{
"name": "node-axosoft",
"version": "2.2.1",
"version": "2.3.0",
"description": "A node.js client for accessing the Axosoft API",

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

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