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

lightning-flow-scanner-core

Package Overview
Dependencies
Maintainers
3
Versions
173
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lightning-flow-scanner-core - npm Package Compare versions

Comparing version 3.17.1-beta202406010635.0 to 3.17.1-beta202406011706.0

4

out/main/rules/InactiveFlow.js

@@ -45,3 +45,3 @@ "use strict";

const nodeElementString = JSON.stringify(node.element);
if (node.subtype == "status" && nodeElementString != '"Active"') {
if (node.subtype == "status" && nodeElementString != '\"Active\"') {
inactiveFlows.push(node);

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

for (const det of inactiveFlows) {
results.push(new core.ResultDetails(det));
results.push(new core.ResultDetails(new core.FlowAttribute(JSON.stringify(det.element), det.subtype, "!= Active")));
}

@@ -55,0 +55,0 @@ return new core.RuleResult(this, results);

{
"name": "lightning-flow-scanner-core",
"version": "3.17.1-beta202406010635.0",
"version": "3.17.1-beta202406011706.0",
"main": "out/**",

@@ -5,0 +5,0 @@ "types": "index.d.ts",

@@ -22,3 +22,3 @@ import { RuleCommon } from "../models/RuleCommon";

const nodeElementString = JSON.stringify(node.element);
if (node.subtype == "status" && nodeElementString != '"Active"') {
if (node.subtype == "status" && nodeElementString != '\"Active\"') {
inactiveFlows.push(node);

@@ -29,3 +29,3 @@ }

for (const det of inactiveFlows) {
results.push(new core.ResultDetails(det));
results.push(new core.ResultDetails(new core.FlowAttribute(JSON.stringify(det.element), det.subtype,"!= Active")));
}

@@ -32,0 +32,0 @@ return new core.RuleResult(this, results);

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