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

@memberjunction/core

Package Overview
Dependencies
Maintainers
0
Versions
223
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.3.1 to 2.3.2

10

dist/generic/baseEngine.js

@@ -323,3 +323,11 @@ "use strict";

for (const item of result.Results) {
singleObject[item.Code] = item.Results;
//convert the results to entity objects before
//adding them to the singleObject
const entities = [];
for (const entityData of item.Results) {
const entity = await md.GetEntityObject(item.EntityName, contextUser);
entity.SetMany(entityData);
entities.push(entity);
}
singleObject[item.Code] = entities;
}

@@ -326,0 +334,0 @@ this[config.PropertyName] = singleObject;

4

package.json
{
"name": "@memberjunction/core",
"version": "2.3.1",
"version": "2.3.2",
"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.3.1",
"@memberjunction/global": "2.3.2",
"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