@0x/json-schemas
Advanced tools
Comparing version 2.1.5 to 2.1.6
[ | ||
{ | ||
"timestamp": 1547225310, | ||
"version": "2.1.6", | ||
"changes": [ | ||
{ | ||
"note": "Dependencies updated" | ||
} | ||
] | ||
}, | ||
{ | ||
"timestamp": 1547040760, | ||
@@ -51,4 +60,3 @@ "version": "2.1.5", | ||
{ | ||
"note": | ||
"Improve schemas by enforcing that amounts that must be whole numbers (e.g Order asset amounts) no longer allow decimal amounts", | ||
"note": "Improve schemas by enforcing that amounts that must be whole numbers (e.g Order asset amounts) no longer allow decimal amounts", | ||
"pr": 1173 | ||
@@ -67,4 +75,3 @@ }, | ||
{ | ||
"note": | ||
"Convert all schemas to JSON files so that they can be used with `json-schema` implemenations in other programming languages.", | ||
"note": "Convert all schemas to JSON files so that they can be used with `json-schema` implemenations in other programming languages.", | ||
"pr": 1145 | ||
@@ -260,4 +267,3 @@ } | ||
{ | ||
"note": | ||
"Update Order & SignedOrder schemas, remove ECSignature schema and add Hex schema as part of V2 upgrades", | ||
"note": "Update Order & SignedOrder schemas, remove ECSignature schema and add Hex schema as part of V2 upgrades", | ||
"pr": 615 | ||
@@ -264,0 +270,0 @@ } |
@@ -8,2 +8,6 @@ <!-- | ||
## v2.1.6 - _January 11, 2019_ | ||
* Dependencies updated | ||
## v2.1.5 - _January 9, 2019_ | ||
@@ -10,0 +14,0 @@ |
{ | ||
"id": "/wholeNumberSchema", | ||
"type": "string", | ||
"pattern": "^\\d+$" | ||
"anyOf": [ | ||
{ | ||
"type": "string", | ||
"pattern": "^\\d+$" | ||
}, | ||
{ | ||
"type": "integer" | ||
} | ||
] | ||
} |
@@ -837,6 +837,11 @@ export declare const schemas: { | ||
"id": string; | ||
"type": string; | ||
"pattern": string; | ||
"anyOf": ({ | ||
"type": string; | ||
"pattern": string; | ||
} | { | ||
"type": string; | ||
"pattern"?: undefined; | ||
})[]; | ||
}; | ||
}; | ||
//# sourceMappingURL=schemas.d.ts.map |
{ | ||
"name": "@0x/json-schemas", | ||
"version": "2.1.5", | ||
"version": "2.1.6", | ||
"engines": { | ||
@@ -42,3 +42,3 @@ "node": ">=6.12" | ||
"dependencies": { | ||
"@0x/typescript-typings": "^3.0.6", | ||
"@0x/typescript-typings": "^3.0.7", | ||
"@types/node": "*", | ||
@@ -49,4 +49,4 @@ "jsonschema": "^1.2.0", | ||
"devDependencies": { | ||
"@0x/tslint-config": "^2.0.0", | ||
"@0x/utils": "^2.1.1", | ||
"@0x/tslint-config": "^2.0.1", | ||
"@0x/utils": "^3.0.0", | ||
"@types/lodash.foreach": "^4.5.3", | ||
@@ -70,3 +70,3 @@ "@types/lodash.values": "^4.3.3", | ||
}, | ||
"gitHead": "5b7eff217e9c8d09d64ff8721d7a16e1df8a7c58" | ||
"gitHead": "cf3787edbb9e8acf7160ab93b903b54c63bdffda" | ||
} |
Sorry, the diff of this file is not supported yet
2044
69662
64