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

node-red-contrib-omron-fins

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-contrib-omron-fins - npm Package Compare versions

Comparing version 0.3.0-beta.1 to 0.3.0-beta.2

8

nodes/read.js

@@ -40,4 +40,4 @@ /*

node.outputFormatType = config.outputFormatType || "list";
node.outputProperty = config.outputProperty || "payload";
node.outputPropertyType = config.outputPropertyType || "str";
node.msgProperty = config.msgProperty || "payload";
node.msgPropertyType = config.msgPropertyType || "str";
node.connectionConfig = RED.nodes.getNode(node.connection);

@@ -138,7 +138,7 @@

//set the output property
var outputProperty = RED.util.evaluateNodeProperty(node.outputProperty, node.outputPropertyType, node, origInputMsg);
RED.util.setObjectProperty(origInputMsg, outputProperty, value, true);
RED.util.setObjectProperty(origInputMsg, node.msgProperty, value, true);
//include additional detail in msg.fins
origInputMsg.fins = {};
origInputMsg.fins.name = node.name; //node name for user logging / routing
origInputMsg.fins.request = {

@@ -145,0 +145,0 @@ address: sequence.request.address,

@@ -36,4 +36,4 @@ /*

node.dataType = config.dataType || "msg";
node.outputProperty = config.outputProperty || "payload";
node.outputPropertyType = config.outputPropertyType || "str";
node.msgProperty = config.msgProperty || "payload";
node.msgPropertyType = config.msgPropertyType || "str";
node.connectionConfig = RED.nodes.getNode(node.connection);

@@ -100,7 +100,7 @@ if (this.connectionConfig) {

//set the output property
var outputProperty = RED.util.evaluateNodeProperty(node.outputProperty, node.outputPropertyType, node, origInputMsg);
RED.util.setObjectProperty(origInputMsg, outputProperty, sequence.sid || 0, true);
RED.util.setObjectProperty(origInputMsg, node.msgProperty, sequence.sid || 0, true);
//include additional detail in msg.fins
origInputMsg.fins = {};
origInputMsg.fins.name = node.name; //node name for user logging / routing
origInputMsg.fins.request = {

@@ -107,0 +107,0 @@ address: sequence.request.address,

{
"name": "node-red-contrib-omron-fins",
"version": "0.3.0-beta.1",
"version": "0.3.0-beta.2",
"author": {

@@ -5,0 +5,0 @@ "name": "Steve-Mcl",

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