[deploy] Fix dashboard inline JS syntax error
All checks were successful
Deploy Discord Bot / deploy (push) Successful in 37s
All checks were successful
Deploy Discord Bot / deploy (push) Successful in 37s
This commit is contained in:
75
node_modules/.prisma/client/wasm.js
generated
vendored
75
node_modules/.prisma/client/wasm.js
generated
vendored
@@ -141,6 +141,10 @@ exports.Prisma.GuildSettingsScalarFieldEnum = {
|
||||
reactionRolesEnabled: 'reactionRolesEnabled',
|
||||
reactionRolesConfig: 'reactionRolesConfig',
|
||||
eventsEnabled: 'eventsEnabled',
|
||||
registerEnabled: 'registerEnabled',
|
||||
registerConfig: 'registerConfig',
|
||||
serverStatsEnabled: 'serverStatsEnabled',
|
||||
serverStatsConfig: 'serverStatsConfig',
|
||||
supportRoleId: 'supportRoleId',
|
||||
updatedAt: 'updatedAt',
|
||||
createdAt: 'createdAt'
|
||||
@@ -157,6 +161,30 @@ exports.Prisma.TicketScalarFieldEnum = {
|
||||
status: 'status',
|
||||
claimedBy: 'claimedBy',
|
||||
transcript: 'transcript',
|
||||
firstClaimAt: 'firstClaimAt',
|
||||
firstResponseAt: 'firstResponseAt',
|
||||
kbSuggestionSentAt: 'kbSuggestionSentAt',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.TicketAutomationRuleScalarFieldEnum = {
|
||||
id: 'id',
|
||||
guildId: 'guildId',
|
||||
name: 'name',
|
||||
condition: 'condition',
|
||||
action: 'action',
|
||||
active: 'active',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.KnowledgeBaseArticleScalarFieldEnum = {
|
||||
id: 'id',
|
||||
guildId: 'guildId',
|
||||
title: 'title',
|
||||
keywords: 'keywords',
|
||||
content: 'content',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
@@ -228,6 +256,45 @@ exports.Prisma.EventSignupScalarFieldEnum = {
|
||||
canceledAt: 'canceledAt'
|
||||
};
|
||||
|
||||
exports.Prisma.RegisterFormScalarFieldEnum = {
|
||||
id: 'id',
|
||||
guildId: 'guildId',
|
||||
name: 'name',
|
||||
description: 'description',
|
||||
reviewChannelId: 'reviewChannelId',
|
||||
notifyRoleIds: 'notifyRoleIds',
|
||||
isActive: 'isActive',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.RegisterFormFieldScalarFieldEnum = {
|
||||
id: 'id',
|
||||
formId: 'formId',
|
||||
label: 'label',
|
||||
type: 'type',
|
||||
required: 'required',
|
||||
order: 'order'
|
||||
};
|
||||
|
||||
exports.Prisma.RegisterApplicationScalarFieldEnum = {
|
||||
id: 'id',
|
||||
guildId: 'guildId',
|
||||
userId: 'userId',
|
||||
formId: 'formId',
|
||||
status: 'status',
|
||||
reviewedBy: 'reviewedBy',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.RegisterApplicationAnswerScalarFieldEnum = {
|
||||
id: 'id',
|
||||
applicationId: 'applicationId',
|
||||
fieldId: 'fieldId',
|
||||
value: 'value'
|
||||
};
|
||||
|
||||
exports.Prisma.SortOrder = {
|
||||
asc: 'asc',
|
||||
desc: 'desc'
|
||||
@@ -262,12 +329,18 @@ exports.Prisma.NullsOrder = {
|
||||
exports.Prisma.ModelName = {
|
||||
GuildSettings: 'GuildSettings',
|
||||
Ticket: 'Ticket',
|
||||
TicketAutomationRule: 'TicketAutomationRule',
|
||||
KnowledgeBaseArticle: 'KnowledgeBaseArticle',
|
||||
Level: 'Level',
|
||||
TicketSupportSession: 'TicketSupportSession',
|
||||
Birthday: 'Birthday',
|
||||
ReactionRoleSet: 'ReactionRoleSet',
|
||||
Event: 'Event',
|
||||
EventSignup: 'EventSignup'
|
||||
EventSignup: 'EventSignup',
|
||||
RegisterForm: 'RegisterForm',
|
||||
RegisterFormField: 'RegisterFormField',
|
||||
RegisterApplication: 'RegisterApplication',
|
||||
RegisterApplicationAnswer: 'RegisterApplicationAnswer'
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user