@ospin/fct-graph
Advanced tools
Comparing version 2.3.0 to 2.4.0
{ | ||
"name": "@ospin/fct-graph", | ||
"author": "danielseehausen", | ||
"version": "2.3.0", | ||
"version": "2.4.0", | ||
"description": "Graph data structure with conditional edges via 'slots' on nodes. Intended to represent physical and virtual functionalities on a device.", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
@@ -52,3 +52,3 @@ const Joi = require('joi') | ||
name: Joi.string().required(), | ||
displayType: Joi.string().allow(...Object.values(Slot.DISPLAY_TYPES)).required(), | ||
displayType: Joi.string().allow(...Object.values(Slot.DISPLAY_TYPES), null).required(), | ||
dataStreams: Joi.array().items(DataStream.SCHEMA).required(), | ||
@@ -55,0 +55,0 @@ unit: Joi.string().allow(...this.ALL_UNIT_VALUES).required(), // inherited |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
96949