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

@itentialopensource/adapter-utils

Package Overview
Dependencies
Maintainers
3
Versions
219
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@itentialopensource/adapter-utils - npm Package Compare versions

Comparing version 4.24.3 to 4.24.4

8

CHANGELOG.md
## 4.24.4 [11-12-2019]
* fix for return that is just an array of data (no objects)
See merge request itentialopensource/adapter-utils!139
---
## 4.24.3 [11-06-2019]

@@ -3,0 +11,0 @@

9

lib/translatorUtil.js

@@ -733,4 +733,9 @@ /* @copyright Itential, LLC 2018-9 */

for (let i = 0; i < transObj.length; i += 1) {
// move the fields we care about into a IAP Entity Object
outEntities.push(extractJSONEntity(transObj[i], entitySchema));
// is this just an array of data or something that needs to be translated?
if (typeof transObj[i] === 'object') {
// move the fields we care about into a IAP Entity Object
outEntities.push(extractJSONEntity(transObj[i], entitySchema));
} else {
outEntities.push(transObj[i]);
}
}

@@ -737,0 +742,0 @@

{
"name": "@itentialopensource/adapter-utils",
"version": "4.24.3",
"version": "4.24.4",
"description": "Itential Adapter Utility Libraries",

@@ -5,0 +5,0 @@ "scripts": {

Sorry, the diff of this file is too big to display

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