fix: Switch to Tailwind v3 - v4 incompatible with Astro
This commit is contained in:
296
node_modules/@zeit/schemas/user/index.js
generated
vendored
Normal file
296
node_modules/@zeit/schemas/user/index.js
generated
vendored
Normal file
@@ -0,0 +1,296 @@
|
||||
const Username = {
|
||||
type: 'string',
|
||||
minLength: 1,
|
||||
maxLength: 48,
|
||||
pattern: '^[a-z0-9][a-z0-9-]*[a-z0-9]$'
|
||||
};
|
||||
|
||||
const Name = {
|
||||
type: 'string',
|
||||
minLength: 1,
|
||||
maxLength: 32
|
||||
};
|
||||
|
||||
const Email = {
|
||||
type: 'string',
|
||||
minLength: 5,
|
||||
maxLength: 256
|
||||
};
|
||||
|
||||
const ImportFlowGitProvider = {
|
||||
oneOf: [
|
||||
{
|
||||
'enum': ['github', 'gitlab', 'bitbucket']
|
||||
},
|
||||
{
|
||||
type: 'null'
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
const ImportFlowGitNamespace = {
|
||||
oneOf: [
|
||||
{
|
||||
type: 'string'
|
||||
},
|
||||
{
|
||||
type: 'null'
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
const ImportFlowGitNamespaceId = {
|
||||
oneOf: [
|
||||
{
|
||||
type: 'string'
|
||||
},
|
||||
{
|
||||
type: 'number'
|
||||
},
|
||||
{
|
||||
type: 'null'
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
const ScopeId = {
|
||||
type: 'string'
|
||||
};
|
||||
|
||||
const GitNamespaceId = {
|
||||
oneOf: [
|
||||
{
|
||||
type: 'string'
|
||||
},
|
||||
{
|
||||
type: 'number'
|
||||
},
|
||||
{
|
||||
type: 'null'
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
const ViewPreference = {
|
||||
oneOf: [
|
||||
{
|
||||
'enum': ['cards', 'list']
|
||||
},
|
||||
{
|
||||
type: 'null'
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
const ToggleViewPreference = {
|
||||
oneOf: [
|
||||
{
|
||||
'enum': ['open', 'closed']
|
||||
},
|
||||
{
|
||||
type: 'null'
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
const PlatformVersion = {
|
||||
oneOf: [
|
||||
{
|
||||
// A `null` platform version means to always use the latest
|
||||
type: 'null'
|
||||
},
|
||||
{
|
||||
type: 'integer',
|
||||
minimum: 1,
|
||||
maximum: 2
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
const Avatar = {
|
||||
type: 'string',
|
||||
minLength: 40,
|
||||
maxLength: 40,
|
||||
pattern: '^[0-9a-f]+$'
|
||||
};
|
||||
|
||||
const Bio = {
|
||||
type: 'string'
|
||||
};
|
||||
|
||||
const Website = {
|
||||
type: 'string',
|
||||
minLength: 4,
|
||||
maxLength: 40
|
||||
};
|
||||
|
||||
const Profile = {
|
||||
type: 'object',
|
||||
properties: {
|
||||
service: {
|
||||
type: 'string'
|
||||
},
|
||||
link: {
|
||||
type: 'string'
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
const Profiles = {
|
||||
type: 'array',
|
||||
minItems: 0,
|
||||
maxItems: 100,
|
||||
uniqueItems: true,
|
||||
items: Profile,
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
const RemoteCaching = {
|
||||
type: 'object',
|
||||
properties: {
|
||||
enabled: {
|
||||
type: 'boolean'
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
const ToastDismissal = {
|
||||
type: 'object',
|
||||
properties: {
|
||||
scopeId: {
|
||||
type: 'string'
|
||||
},
|
||||
createdAt: {
|
||||
type: 'number'
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
const DismissedToast = {
|
||||
type: 'object',
|
||||
properties: {
|
||||
name: {
|
||||
type: 'string'
|
||||
},
|
||||
dismissals: {
|
||||
type: 'array',
|
||||
minItems: 0,
|
||||
maxItems: 50,
|
||||
items: ToastDismissal
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
const DismissedToasts = {
|
||||
type: 'array',
|
||||
minItems: 0,
|
||||
maxItems: 50,
|
||||
items: DismissedToast,
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
const FavoriteProjectOrSpace = {
|
||||
type: 'object',
|
||||
properties: {
|
||||
projectId: {
|
||||
type: 'string'
|
||||
},
|
||||
spaceId: {
|
||||
type: 'string'
|
||||
},
|
||||
scopeId: {
|
||||
type: 'string'
|
||||
},
|
||||
scopeSlug: {
|
||||
type: 'string'
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
const FavoriteProjectsAndSpaces = {
|
||||
type: 'array',
|
||||
minItems: 0,
|
||||
items: FavoriteProjectOrSpace,
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
const EnablePreviewFeedback = {
|
||||
oneOf: [
|
||||
{
|
||||
'enum': [
|
||||
'on',
|
||||
'off',
|
||||
'default',
|
||||
'on-force',
|
||||
'off-force',
|
||||
'default-force'
|
||||
]
|
||||
},
|
||||
{
|
||||
type: 'null'
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
const DefaultTeamId = {
|
||||
oneOf: [
|
||||
{
|
||||
type: 'string',
|
||||
maxLength: 29
|
||||
},
|
||||
{
|
||||
type: 'null'
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
const User = {
|
||||
type: 'object',
|
||||
additionalProperties: false,
|
||||
properties: {
|
||||
username: Username,
|
||||
name: Name,
|
||||
email: Email,
|
||||
billingChecked: { type: 'boolean' },
|
||||
avatar: Avatar,
|
||||
platformVersion: PlatformVersion,
|
||||
bio: Bio,
|
||||
website: Website,
|
||||
profiles: Profiles,
|
||||
importFlowGitProvider: ImportFlowGitProvider,
|
||||
importFlowGitNamespace: ImportFlowGitNamespace,
|
||||
importFlowGitNamespaceId: ImportFlowGitNamespaceId,
|
||||
scopeId: ScopeId,
|
||||
gitNamespaceId: GitNamespaceId,
|
||||
viewPreference: ViewPreference,
|
||||
favoritesViewPreference: ToggleViewPreference,
|
||||
recentsViewPreference: ToggleViewPreference,
|
||||
remoteCaching: RemoteCaching,
|
||||
dismissedToasts: DismissedToasts,
|
||||
enablePreviewFeedback: EnablePreviewFeedback,
|
||||
favoriteProjectsAndSpaces: FavoriteProjectsAndSpaces,
|
||||
defaultTeamId: DefaultTeamId
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
User,
|
||||
Username,
|
||||
Name,
|
||||
Email,
|
||||
Avatar,
|
||||
PlatformVersion,
|
||||
ImportFlowGitProvider,
|
||||
ImportFlowGitNamespace,
|
||||
ImportFlowGitNamespaceId,
|
||||
ScopeId,
|
||||
GitNamespaceId,
|
||||
ViewPreference,
|
||||
ToggleViewPreference,
|
||||
DismissedToasts
|
||||
};
|
||||
Reference in New Issue
Block a user