Enhance bot functionality with new features and improvements

- Updated package dependencies to include `@sentry/node` for error tracking.
- Refactored command routing to incorporate user and guild blacklisting checks, improving command execution safety.
- Enhanced health server metrics to include queue waiting times, providing better insights into system performance.
- Introduced confirmation handling for guild backup commands, streamlining user interactions.
- Improved moderation commands with better error handling and case management, ensuring robust moderation capabilities.
- Added new duration parsing functions to handle timeout durations effectively, enhancing moderation features.
- Updated localization files to reflect new command structures and user guidance improvements.
This commit is contained in:
smueller
2026-07-23 09:53:44 +02:00
parent 4e135bcf43
commit ffaa1e26fd
31 changed files with 1831 additions and 363 deletions

View File

@@ -154,7 +154,7 @@ const backupCommand: SlashCommand = {
return;
}
await promptDeleteConfirmation(interaction, locale, backupId);
await promptDeleteConfirmation(interaction, context, locale, backupId);
return;
}
@@ -195,7 +195,7 @@ const backupCommand: SlashCommand = {
return;
}
await promptRestoreConfirmation(interaction, locale, backupId);
await promptRestoreConfirmation(interaction, context, locale, backupId);
}
}
};