Socket
Socket
Sign inDemoInstall

@jupiterone/data-model

Package Overview
Dependencies
Maintainers
1
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupiterone/data-model - npm Package Compare versions

Comparing version 0.44.0 to 0.45.0

9

CHANGELOG.md

@@ -11,2 +11,11 @@ # Changelog

## 0.45.0 - 2022-03-05
- Updated `fqdn` property on `HOST` entity to allow string or array type
- Allow `null` to be assigned to the following `Device` properties:
- `category`
- `make`
- `model`
- `serial`
## 0.44.0 - 2022-02-03

@@ -13,0 +22,0 @@

8

dist/schemas/Device.json

@@ -12,3 +12,3 @@ {

"description": "The device category",
"type": "string",
"type": ["string", "null"],
"examples": [

@@ -25,7 +25,7 @@ "server",

"description": "Same as hardwareVendor: The manufacturer or vendor of the device, e.g. Apple Inc., Generic",
"type": "string"
"type": ["string", "null"]
},
"model": {
"description": "Same as hardwareModel: The device hardware model, e.g. MacBookPro13,3",
"type": "string"
"type": ["string", "null"]
},

@@ -38,3 +38,3 @@ "version": {

"description": "Same as hardwareSerial: The device serial number",
"type": "string"
"type": ["string", "null"]
},

@@ -41,0 +41,0 @@ "hardwareVendor": {

@@ -11,4 +11,13 @@ {

"fqdn": {
"description": "Fully qualified domain name",
"type": "string"
"description": "Fully qualified domain name(s)",
"anyOf": [
{ "type": "string" },
{
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
}
]
},

@@ -15,0 +24,0 @@ "hostname": {

{
"name": "@jupiterone/data-model",
"version": "0.44.0",
"version": "0.45.0",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "files": [

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

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