diff --git a/dist/bundle.es.js b/dist/bundle.es.js index dc02455..aa0ef84 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -577,6 +577,10 @@ const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled'; const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled'; const KEEP_DAEMON_RUNNING = 'keepDaemonRunning'; const SHOW_URI_BAR_SUGGESTIONS = 'showUriBarSuggestions'; +const RECEIVE_SUBSCRIPTION_NOTIFICATIONS = 'receiveSubscriptionNotifications'; +const RECEIVE_REWARD_NOTIFICATIONS = 'receiveRewardNotifications'; +const RECEIVE_INTERESTS_NOTIFICATIONS = 'receiveInterestsNotifications'; +const RECEIVE_CREATOR_NOTIFICATIONS = 'receiveCreatorNotifications'; var settings = /*#__PURE__*/Object.freeze({ CREDIT_REQUIRED_ACKNOWLEDGED: CREDIT_REQUIRED_ACKNOWLEDGED, @@ -593,7 +597,11 @@ var settings = /*#__PURE__*/Object.freeze({ BACKGROUND_PLAY_ENABLED: BACKGROUND_PLAY_ENABLED, FOREGROUND_NOTIFICATION_ENABLED: FOREGROUND_NOTIFICATION_ENABLED, KEEP_DAEMON_RUNNING: KEEP_DAEMON_RUNNING, - SHOW_URI_BAR_SUGGESTIONS: SHOW_URI_BAR_SUGGESTIONS + SHOW_URI_BAR_SUGGESTIONS: SHOW_URI_BAR_SUGGESTIONS, + RECEIVE_SUBSCRIPTION_NOTIFICATIONS: RECEIVE_SUBSCRIPTION_NOTIFICATIONS, + RECEIVE_REWARD_NOTIFICATIONS: RECEIVE_REWARD_NOTIFICATIONS, + RECEIVE_INTERESTS_NOTIFICATIONS: RECEIVE_INTERESTS_NOTIFICATIONS, + RECEIVE_CREATOR_NOTIFICATIONS: RECEIVE_CREATOR_NOTIFICATIONS }); const DATE_NEW = 'dateNew'; diff --git a/src/constants/settings.js b/src/constants/settings.js index 767791c..f0edbe5 100644 --- a/src/constants/settings.js +++ b/src/constants/settings.js @@ -18,3 +18,7 @@ export const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled'; export const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled'; export const KEEP_DAEMON_RUNNING = 'keepDaemonRunning'; export const SHOW_URI_BAR_SUGGESTIONS = 'showUriBarSuggestions'; +export const RECEIVE_SUBSCRIPTION_NOTIFICATIONS = 'receiveSubscriptionNotifications'; +export const RECEIVE_REWARD_NOTIFICATIONS = 'receiveRewardNotifications'; +export const RECEIVE_INTERESTS_NOTIFICATIONS = 'receiveInterestsNotifications'; +export const RECEIVE_CREATOR_NOTIFICATIONS = 'receiveCreatorNotifications';