openapi-enforcer
Advanced tools
Comparing version 0.11.0 to 0.11.1
@@ -26,2 +26,3 @@ /** | ||
function deserialize(exception, schema, value) { | ||
if (value === null && schema['x-allow-null'] === true) return null; | ||
if (schema.allOf) { | ||
@@ -92,2 +93,3 @@ const result = {}; | ||
function serialize(exception, schema, value) { | ||
if (value === null && schema['x-allow-null'] === true) return null; | ||
if (schema.allOf) { | ||
@@ -94,0 +96,0 @@ const result = {}; |
@@ -83,3 +83,3 @@ { | ||
"types": "index.d.ts", | ||
"version": "0.11.0" | ||
"version": "0.11.1" | ||
} |
635466
12123