🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@isoftdata/universal-object-htp-utility

Package Overview
Dependencies
Maintainers
11
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@isoftdata/universal-object-htp-utility - npm Package Compare versions

Comparing version
3.18.0
to
3.18.1
+6
-2
inventory.js

@@ -112,4 +112,8 @@ import _ from "lodash"

// model: inventoryObjectRow.vehicle.model || '', //incorrect?
make: inventoryObjectRow.manufacturer?.name?.substring(0, 24) || inventoryObjectRow.vehicle?.make?.substring(0, 24) || '',
model: inventoryObjectRow.model?.name || inventoryObjectRow.vehicle?.model || '',
//make: inventoryObjectRow.manufacturer?.name?.substring(0, 24) || inventoryObjectRow.vehicle?.make?.substring(0, 24) || '',
// Vehicle Make
make: inventoryObjectRow.vehicle?.make?.substring(0, 24) || '',
// Vehicle Model
model: inventoryObjectRow.vehicle?.model?.substring(0, 49) || '',
//model: inventoryObjectRow.model?.name || inventoryObjectRow.vehicle?.model || '',
pmanufacturer: inventoryObjectRow.parentManufacturer.name?.substring(0, 24), //matches trigger

@@ -116,0 +120,0 @@ pmodel: inventoryObjectRow.parentModel.name?.substring(0,49), //matches trigger

{
"name": "@isoftdata/universal-object-htp-utility",
"version": "3.18.0",
"version": "3.18.1",
"description": "Functions to convert universal objects to htp schema",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",

@@ -16,3 +13,6 @@ "author": "",

"p-props": "^6.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}
}