Socket
Socket
Sign inDemoInstall

@sinet/validation

Package Overview
Dependencies
Maintainers
2
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sinet/validation - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

package.json
{
"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' ),

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