@sinet/validation
Advanced tools
Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "@sinet/validation", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -18,7 +18,7 @@ 'use strict'; | ||
'IsActivated' : Joi.any().valid( 0, 1 ).description( 'Whether the account has been activated' ), | ||
'LastLogin' : Joi.date().description( 'The date that the user last logged in' ), | ||
'LastLogin' : Joi.date().allow( null ).description( 'The date that the user last logged in' ), | ||
'LastName' : Joi.string().max( 64 ).description( 'The last name for the user' ), | ||
'LicenseAccepted' : Joi.date().description( 'The date that the user accepted the license' ), | ||
'LicensesInitials' : Joi.string().max( 10 ).description( 'The initials the user used for accepting the license' ), | ||
'LoginCount' : Joi.number().integer().positive().max( 5 ).description( 'The number of times the user has logged in' ), | ||
'LicenseAccepted' : Joi.date().allow( null ).description( 'The date that the user accepted the license' ), | ||
'LicensesInitials' : Joi.string().allow( null ).max( 10 ).description( 'The initials the user used for accepting the license' ), | ||
'LoginCount' : Joi.number().integer().positive().max( 5 ).allow( 0 ).description( 'The number of times the user has logged in' ), | ||
'LoginName' : Joi.string().max( 128 ).description( 'The login name for the user' ), | ||
@@ -25,0 +25,0 @@ 'Modified' : Joi.date().description( 'The date the user was modified' ), |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
5535