@hestia-earth/schema-convert 33.5.4 → 33.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/json.js +1 -1
- package/package.json +1 -1
package/json.js
CHANGED
|
@@ -403,7 +403,7 @@ var propertyTypeToValue = {
|
|
|
403
403
|
return items
|
|
404
404
|
? '$ref' in items
|
|
405
405
|
? propertyTypeToValue.object(val, schemas, items, params)
|
|
406
|
-
: Array.isArray(items.type)
|
|
406
|
+
: Array.isArray(items.type) || items.anyOf
|
|
407
407
|
? val === IGNORE_FIELD_KEY
|
|
408
408
|
? null
|
|
409
409
|
: propertyTypeToValue.auto(val, schemas, items, params)
|