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

node-selectel-manager

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-selectel-manager - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

2

actions/create-container.js

@@ -13,4 +13,4 @@ /**

* @param {String} containerPath Path to container without URL
* @param {Object} [additionalHeaders]
* @param {Function} callback
* @param {Object} [additionalHeaders]
*/

@@ -17,0 +17,0 @@ module.exports = function(containerPath, additionalHeaders, callback) {

@@ -16,10 +16,13 @@ /**

* @param {String} hostingPath path without URL
* @param {String} [archive]
* @param {Function} callback
* @param {Object} [additionalHeaders]
*/
module.exports = function (fullLocalPath, hostingPath, additionalHeaders, callback) {
if (typeof additionalHeaders === 'function') {
callback = additionalHeaders;
additionalHeaders = null;
module.exports = function (fullLocalPath, hostingPath, archive, callback) {
if (typeof archive === 'function') {
callback = archive;
archive = null;
}
if (archive) {
hostingPath += '?extract-archive=' + archive;
}
async.waterfall(

@@ -40,5 +43,3 @@ [

};
utils.copyHeaders(req, additionalHeaders);
request(req, wfCb);

@@ -51,3 +52,3 @@ }

} else {
if (data.statusCode == 201) {
if (data.statusCode == 201 || data.statusCode == 200) {
callback(null, {success: true});

@@ -54,0 +55,0 @@ } else {

{
"name": "node-selectel-manager",
"version": "0.0.6",
"version": "0.0.7",
"author": {

@@ -5,0 +5,0 @@ "email": "george.skarbovskiy@gmail.com"

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