diff --git a/eve_glue/notification_type.py b/eve_glue/notification_type.py index e65c8d6..7aa8bb7 100644 --- a/eve_glue/notification_type.py +++ b/eve_glue/notification_type.py @@ -240,3 +240,12 @@ class NotificationTypeEnumV2(enum.Enum): "WarInvalid": 240, } ) + +NotificationTypeEnumV7 = new_from_enum( # pylint: disable=invalid-name + "NotificationTypeEnumV7", + NotificationTypeEnumV6, + add={ + "MercOfferRetractedMsg": 241, + "OfferToAllyRetracted": 242, + } +)