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

node-red-contrib-nexmo

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-contrib-nexmo - npm Package Compare versions

Comparing version 2.0.2 to 2.1.0

nodes/nexmo-auth.html

7

nodes/nexmo-credentials.js

@@ -11,9 +11,4 @@ module.exports = function (RED) {

RED.nodes.registerType("nexmo-credentials", nexmoCredentialNode, {
credentials: {
"api_key": { type: "password" },
"api_secret": { type: "password" }
}
});
RED.nodes.registerType("nexmo-credentials", nexmoCredentialNode);
}

@@ -10,3 +10,4 @@ module.exports = function (RED) {

this.topic = n.topic;
this.auth = RED.nodes.getNode(n.auth);
this.cred = RED.nodes.getNode(n.cred);
this.auth = this.auth = RED.nodes.getNode(n.auth)

@@ -22,4 +23,4 @@ let node = this;

'api_secret': this.auth.credentials.api_secret,
'to': this.auth.number,
'from': this.auth.from,
'to': this.cred.number,
'from': this.cred.from,
'text': msg.payload

@@ -26,0 +27,0 @@ },

{
"name": "node-red-contrib-nexmo",
"version": "2.0.2",
"version": "2.1.0",
"description": "This node let you send SMS via the Nexmo API",
"author": "Nicolas FRBEZAR <nicolas.frbezar@actemium.com>",
"keywords": [
"node-red",
"node-red",
"sms",

@@ -20,5 +20,6 @@ "Nexmo",

"nexmo": "nodes/nexmo.js",
"nexmo-credentials": "nodes/nexmo-credentials.js"
"nexmo-credentials": "nodes/nexmo-credentials.js",
"nexmo-auth": "nodes/nexmo-auth.js"
}
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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