From 6766f8ed0879a5acad0442c60e4582978e36ff00 Mon Sep 17 00:00:00 2001 From: Mateusz Krasucki Date: Wed, 11 Dec 2019 10:33:35 +0000 Subject: [PATCH] ADD NotificationTypeEnumV8 - Adds NotificationTypeEnumV8 that adds three new raffle related notification types introduced with HyperNet Relay release. --- eve_glue/notification_type.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/eve_glue/notification_type.py b/eve_glue/notification_type.py index 7aa8bb7..37a6257 100644 --- a/eve_glue/notification_type.py +++ b/eve_glue/notification_type.py @@ -249,3 +249,13 @@ class NotificationTypeEnumV2(enum.Enum): "OfferToAllyRetracted": 242, } ) + +NotificationTypeEnumV8 = new_from_enum( # pylint: disable=invalid-name + "NotificationTypeEnumV8", + NotificationTypeEnumV7, + add={ + "RaffleCreated": 243, + "RaffleExpired": 244, + "RaffleFinished": 245, + } +)