schemaglobin
Advanced tools
Comparing version 3.3.2 to 3.3.3
@@ -7,5 +7,5 @@ import { Schema, SchemaWithSchemas, SchemaOptions, SchemaType, NullIfOptional } from "../types"; | ||
readonly props: S; | ||
readonly value?: { | ||
readonly value?: Partial<{ | ||
[K in keyof S]: SchemaType<S[K]>; | ||
} | NullIfOptional<R>; | ||
}> | NullIfOptional<R>; | ||
readonly required?: R; | ||
@@ -12,0 +12,0 @@ } |
{ | ||
"name": "schemaglobin", | ||
"description": "Validate user-entered data.", | ||
"version": "3.3.2", | ||
"version": "3.3.3", | ||
"repository": "https://github.com/dhoulb/schemaglobin", | ||
@@ -27,3 +27,3 @@ "author": "Dave Houlbrooke <dave@shax.com>", | ||
"devDependencies": { | ||
"@types/jest": "^24.0.23", | ||
"@types/jest": "^25.1.1", | ||
"@typescript-eslint/eslint-plugin": "2.9.0", | ||
@@ -35,7 +35,7 @@ "@typescript-eslint/parser": "^2.9.0", | ||
"eslint-plugin-prettier": "^3.1.1", | ||
"jest": "^24.9.0", | ||
"jest": "^25.1.0", | ||
"prettier": "^1.19.1", | ||
"ts-jest": "^24.2.0", | ||
"ts-jest": "^25.0.0", | ||
"typescript": "^3.7.2" | ||
} | ||
} |
@@ -10,3 +10,3 @@ import { Schema, SchemaWithSchemas, SchemaOptions, SchemaType, NullIfOptional } from "../types"; | ||
readonly props: S; | ||
readonly value?: { [K in keyof S]: SchemaType<S[K]> } | NullIfOptional<R>; | ||
readonly value?: Partial<{ [K in keyof S]: SchemaType<S[K]> }> | NullIfOptional<R>; | ||
readonly required?: R; | ||
@@ -13,0 +13,0 @@ } |
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
223478