summaryrefslogtreecommitdiff
path: root/bot/src/schemas/stream.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'bot/src/schemas/stream.hpp')
-rw-r--r--bot/src/schemas/stream.hpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/bot/src/schemas/stream.hpp b/bot/src/schemas/stream.hpp
index acc6af1..357d476 100644
--- a/bot/src/schemas/stream.hpp
+++ b/bot/src/schemas/stream.hpp
@@ -4,7 +4,18 @@
#include <string>
namespace bot::schemas {
- enum EventType { LIVE, OFFLINE, TITLE, GAME, GITHUB = 10, CUSTOM = 99 };
+ enum EventType {
+ LIVE,
+ OFFLINE,
+ TITLE,
+ GAME,
+ STV_EMOTE_CREATE = 10,
+ STV_EMOTE_DELETE = 11,
+ STV_EMOTE_UPDATE = 12,
+ GITHUB = 40,
+ CUSTOM = 99
+ };
+
EventType string_to_event_type(const std::string &type);
std::string event_type_to_string(const int &type);