Socket
Socket
Sign inDemoInstall

@sinet/validation

Package Overview
Dependencies
10
Maintainers
7
Versions
48
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.15-f to 1.3.15-g

2

package.json
{
"name": "@sinet/validation",
"version": "1.3.15f",
"version": "1.3.15g",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -8,5 +8,5 @@ 'use strict';

'mcId' : Joi.string().guid().required().description( 'The microcredentials id' ),
'overallPurpose' : Joi.string().required().description( 'The purpose of the microcredentials' ),
'overallPurpose' : Joi.string().required().allow( [ null, '' ] ).description( 'The purpose of the microcredentials' ),
'badgeFilename' : Joi.string().required().description( 'The microcredentials\'s badge location' ),
'requiredCompetencies' : Joi.string().required().description( 'The requirements to complete the mc' )
'requiredCompetencies' : Joi.string().required().allow( [ null, '' ] ).description( 'The requirements to complete the mc' )
};

@@ -8,3 +8,3 @@ 'use strict';

'title' : Joi.string().required().description( 'The microcredentials title' ),
'description' : Joi.string().optional().allow( null ).description( 'The microcredentials description' ),
'description' : Joi.string().optional().allow( [ null, '' ] ).description( 'The microcredentials description' ),
'level' : Joi.any().valid( [ 'basic', 'premium' ] ).required().description( 'The level for the mc' ),

@@ -11,0 +11,0 @@ 'creator' : Joi.string().required().description( 'The id of the microcredentials creator' ),

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc