fix(Events): WebhooksUpdate enum value (#10970)

fix: change Events.WebhooksUpdate value
This commit is contained in:
Qjuh
2025-07-11 20:39:12 +02:00
committed by GitHub
parent 9fc3e5ea72
commit 1404e32849
2 changed files with 3 additions and 3 deletions

View File

@@ -89,7 +89,7 @@
* @property {string} VoiceServerUpdate voiceServerUpdate * @property {string} VoiceServerUpdate voiceServerUpdate
* @property {string} VoiceStateUpdate voiceStateUpdate * @property {string} VoiceStateUpdate voiceStateUpdate
* @property {string} Warn warn * @property {string} Warn warn
* @property {string} WebhooksUpdate webhookUpdate * @property {string} WebhooksUpdate webhooksUpdate
*/ */
// JSDoc for IntelliSense purposes // JSDoc for IntelliSense purposes
@@ -186,5 +186,5 @@ module.exports = {
VoiceServerUpdate: 'voiceServerUpdate', VoiceServerUpdate: 'voiceServerUpdate',
VoiceStateUpdate: 'voiceStateUpdate', VoiceStateUpdate: 'voiceStateUpdate',
Warn: 'warn', Warn: 'warn',
WebhooksUpdate: 'webhookUpdate', WebhooksUpdate: 'webhooksUpdate',
}; };

View File

@@ -6087,7 +6087,7 @@ export enum Events {
VoiceServerUpdate = 'voiceServerUpdate', VoiceServerUpdate = 'voiceServerUpdate',
VoiceStateUpdate = 'voiceStateUpdate', VoiceStateUpdate = 'voiceStateUpdate',
TypingStart = 'typingStart', TypingStart = 'typingStart',
WebhooksUpdate = 'webhookUpdate', WebhooksUpdate = 'webhooksUpdate',
InteractionCreate = 'interactionCreate', InteractionCreate = 'interactionCreate',
Error = 'error', Error = 'error',
Warn = 'warn', Warn = 'warn',