File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1+
2+ export class GiftBattlepassRequestDto {
3+ /** The member id of the receiver */
4+
5+ receiverId : number ;
6+ }
Original file line number Diff line number Diff line change 11export * from './ExtendedMemberBattlepassResponse' ;
22export * from './MemberBattlepassResponse' ;
33export * from './BattlepassTierResponse' ;
4+ export * from './GiftBattlepassRequestDto' ;
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export enum NotificationApplications {
1919 STRIKES = 2048 ,
2020 AWARDS = 4096 ,
2121 REP_CAP_NOTIFICATION = 8192 ,
22+ BATTLEPASS_GIFT = 16384 ,
2223}
2324
2425export const NotificationApplicationsInfo : { [ key in NotificationApplications ] : { description : string ; platforms : NotificationPlatforms } } = {
@@ -77,5 +78,9 @@ export const NotificationApplicationsInfo: { [key in NotificationApplications]:
7778 [ NotificationApplications . REP_CAP_NOTIFICATION ] : {
7879 description : 'Reputation Cap Notifications.' ,
7980 platforms : NotificationPlatforms . DISCORD | NotificationPlatforms . MOBILE | NotificationPlatforms . WEBAPP
81+ } ,
82+ [ NotificationApplications . BATTLEPASS_GIFT ] : {
83+ description : 'Battlepass Gift Notifications.' ,
84+ platforms : NotificationPlatforms . DISCORD | NotificationPlatforms . MOBILE | NotificationPlatforms . WEBAPP
8085 }
8186} ;
You can’t perform that action at this time.
0 commit comments