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

ee-soa-service

Package Overview
Dependencies
Maintainers
2
Versions
176
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ee-soa-service - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

21

lib/DefaultORMController.js

@@ -314,3 +314,3 @@ (function() {

var doList = function(entities) {
let localCost = (entities && entities.length) ? entities.length*Object.keys(entities[0]).length : 0;
let localCost = (entities && entities.length) ? entities.length*Object.keys(entities[0]).length : 0;

@@ -357,3 +357,3 @@ // maybe there is more data to load ....

}.bind(this));
}

@@ -914,3 +914,3 @@ }

*
* @param {object} request the request
* @param {object} request the request
* @param {function} the callback to invole after the work is done

@@ -931,7 +931,8 @@ * @param {object} baseQuery probably a orm query definition ...

// store data received on the model
Object.keys(content).forEach((fieldName) => {
model[fieldName] = content[fieldName] === '' ? null : content[fieldName];
});
if(type.object(content)) {
Object.keys(content).forEach((fieldName) => {
model[fieldName] = content[fieldName] === '' ? null : content[fieldName];
});
}
// added support for storing localized data

@@ -987,4 +988,4 @@ if (model.setLocale && request.languages && request.languages.length) model.setLocale(request.languages[0]);

, createRelation: function(queryData, callback, baseQuery) {

@@ -1121,3 +1122,3 @@ if(!queryData.hasRelatedTo()) return callback(new Error('[' + this.table + ']no relatedTo provided!'));

*
* @param {object} request the request
* @param {object} request the request
* @param {function} the callback to invole after the work is done

@@ -1172,3 +1173,3 @@ * @param {object} baseQuery probably a orm query definition ...

});
}
}
});

@@ -1175,0 +1176,0 @@ }

@@ -5,3 +5,3 @@ {

, "keywords" : ["ee", "soa", "service"]
, "version" : "1.3.0"
, "version" : "1.3.1"
, "author": {

@@ -8,0 +8,0 @@ "name" : "Tobias Kneubuehler"

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