Socket
Socket
Sign inDemoInstall

@memberjunction/core

Package Overview
Dependencies
Maintainers
0
Versions
213
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@memberjunction/core - npm Package Compare versions

Comparing version 2.2.0 to 2.2.1

7

dist/generic/baseEngine.js

@@ -148,5 +148,8 @@ "use strict";

const eName = event.baseEntity.EntityInfo.Name.toLowerCase().trim();
const matchingAutoRefreshConfig = this.Configs.some(c => c.AutoRefresh && c.EntityName.trim().toLowerCase() === eName);
if (matchingAutoRefreshConfig)
const matchingAutoRefreshConfig = this.Configs.some((config) => {
return config.AutoRefresh && config.EntityName && config.EntityName.trim().toLowerCase() === eName;
});
if (matchingAutoRefreshConfig) {
return this.DebounceIndividualBaseEntityEvent(event);
}
}

@@ -153,0 +156,0 @@ return true;

{
"name": "@memberjunction/core",
"version": "2.2.0",
"version": "2.2.1",
"description": "MemberJunction: Core Library including Metadata, Application, Entity Retrieval and Manipulation, and Utilities",

@@ -22,3 +22,3 @@ "main": "dist/index.js",

"dependencies": {
"@memberjunction/global": "2.2.0",
"@memberjunction/global": "2.2.1",
"rxjs": "^7.8.1",

@@ -25,0 +25,0 @@ "zod": "^3.23.8"

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