@zeit/schemas
Advanced tools
Comparing version 2.31.0 to 2.32.0
{ | ||
"name": "@zeit/schemas", | ||
"version": "2.31.0", | ||
"version": "2.32.0", | ||
"description": "All schemas used for validation that are shared between our projects", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -230,2 +230,14 @@ const Username = { | ||
const DefaultTeamId = { | ||
oneOf: [ | ||
{ | ||
type: 'string', | ||
maxLength: 29 | ||
}, | ||
{ | ||
type: 'null' | ||
} | ||
] | ||
}; | ||
const User = { | ||
@@ -253,3 +265,4 @@ type: 'object', | ||
enablePreviewFeedback: EnablePreviewFeedback, | ||
favoriteProjectsAndSpaces: FavoriteProjectsAndSpaces | ||
favoriteProjectsAndSpaces: FavoriteProjectsAndSpaces, | ||
defaultTeamId: DefaultTeamId | ||
} | ||
@@ -256,0 +269,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
32393
1307