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

mvom

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mvom - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

8

CHANGELOG.md
# CHANGELOG.md
## 0.0.10
###### _2018-06-12_
- An object in the Schema is now only considered to be a "data definition" if it contains both
a `type` and a `path` property. If an object doesn't contain both of these properties, it will
be treated as a subdocument object instead of a data definition. The upshot of this is that
`type` can now be used as a data-describing property in a Schema definition, provided that it does
not appear alongside a `path` property in that same definition. @shawnmcknight
## 0.0.9

@@ -3,0 +11,0 @@ ###### _2018-06-07_

2

package.json
{
"name": "mvom",
"author": "STORIS",
"version": "0.0.9",
"version": "0.0.10",
"description": "Multivalue Object Mapper",

@@ -6,0 +6,0 @@ "main": "./index.js",

@@ -331,3 +331,3 @@ 'use strict';

this._isDataDefinition = obj => Object.prototype.hasOwnProperty.call(obj, this._typeProperty);
this._isDataDefinition = obj => Object.prototype.hasOwnProperty.call(obj, this._typeProperty) && Object.prototype.hasOwnProperty.call(obj, 'path');

@@ -334,0 +334,0 @@ this._mergeSchemaDictionaries = (schema, keyPath) => {

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