@@ -5,22 +5,23 @@ export enum NotificationPlatforms {
55}
66
77export enum NotificationApplications {
8- INACTIVITY = 1 ,
9- DAILY_EVENT_OVERVIEW = 2 ,
10- EVENT_CHANGES = 4 ,
11- EVENT_REMINDER = 8 ,
12- AWAY_CHANGES = 16 ,
13- ATTACK_ITEM = 32 ,
14- ITEM_DROPS = 64 ,
15- MEMBER_DUES = 128 ,
16- MEMBER_GRADUATION = 256 ,
17- ANNOUNCEMENT = 512 ,
18- DIVISION_UPDATES = 1024 ,
19- STRIKES = 2048 ,
20- AWARDS = 4096 ,
21- REP_CAP_NOTIFICATION = 8192 ,
22- BATTLEPASS_GIFT = 16384 ,
23- ITEM_NO_LONGER_HIDDEN = 32768
8+ INACTIVITY = 1 << 0 ,
9+ DAILY_EVENT_OVERVIEW = 1 << 1 ,
10+ EVENT_CHANGES = 1 << 2 ,
11+ EVENT_REMINDER = 1 << 3 ,
12+ AWAY_CHANGES = 1 << 4 ,
13+ ATTACK_ITEM = 1 << 5 ,
14+ ITEM_DROPS = 1 << 6 ,
15+ MEMBER_DUES = 1 << 7 ,
16+ MEMBER_GRADUATION = 1 << 8 ,
17+ ANNOUNCEMENT = 1 << 9 ,
18+ DIVISION_UPDATES = 1 << 10 ,
19+ STRIKES = 1 << 11 ,
20+ AWARDS = 1 << 12 ,
21+ REP_CAP_NOTIFICATION = 1 << 13 ,
22+ BATTLEPASS_GIFT = 1 << 14 ,
23+ ITEM_NO_LONGER_HIDDEN = 1 << 15 ,
24+ MEMBER_QUEST = 1 << 16
2425}
2526
2627export const NotificationApplicationsInfo : { [ key in NotificationApplications ] : { description : string ; platforms : NotificationPlatforms } } = {
@@ -87,5 +88,9 @@ export const NotificationApplicationsInfo: { [key in NotificationApplications]:
8788 [ NotificationApplications . BATTLEPASS_GIFT ] : {
8889 description : 'Battlepass Gift Notifications.' ,
8990 platforms : NotificationPlatforms . DISCORD | NotificationPlatforms . MOBILE | NotificationPlatforms . WEBAPP
91+ } ,
92+ [ NotificationApplications . MEMBER_QUEST ] : {
93+ description : 'Member Quests Notifications.' ,
94+ platforms : NotificationPlatforms . DISCORD | NotificationPlatforms . MOBILE | NotificationPlatforms . WEBAPP
9095 }
9196} ;
0 commit comments