feat(eventsub): handle multi enum constant keys (#6078)

This commit is contained in:
pajlada
2025-03-15 11:57:03 +01:00
committed by GitHub
parent d2ed3bbae7
commit caeb28dd9a
6 changed files with 23 additions and 1 deletions
@@ -16,8 +16,12 @@ enum class Status : std::uint8_t {
/// default=Unknown
enum class Type : std::uint8_t {
Unknown,
/// The user was marked as Low Trust by a moderator
/// json_extra_enum_constant_names=manually_added
Manual,
/// The user was detected as a ban evader
BanEvaderDetector,
/// The user is banned in a channel the channel shares bans with
SharedChannelBan
};