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

instasent

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

instasent - npm Package Compare versions

Comparing version 0.1.6 to 0.1.7

README.md

27

lib/client.js

@@ -7,3 +7,3 @@ /**

var http = require("http");
var https = require("https");

@@ -51,3 +51,3 @@ /**

options = {
host: 'https://api.instasent.com',
host: 'api.instasent.com',
path: path,

@@ -61,3 +61,3 @@ method: method,

'User-Agent': 'node.js/' + process.versions.node
}
},
};

@@ -73,3 +73,3 @@

request = http.request(options);
request = https.request(options);

@@ -185,2 +185,21 @@ request.on('socket', function (socket) {

},
send_sms_unicode: {
/**
* Get account sms's
*
* @param {Function} callback
* @return {void}
*/
create: function (from, to, text, callback) {
params = {
'allowUnicode': true,
'from': from,
'to': to,
'text': text
};
httpRequest('POST', '/sms/' , params, callback);
}
},
request_verify: {

@@ -187,0 +206,0 @@ /**

2

package.json
{
"name": "instasent",
"version": "0.1.6",
"version": "0.1.7",
"description": "A Nodejs wrapper library for Instasent's API",

@@ -5,0 +5,0 @@ "main": "./lib/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