From 6a2860d8809a806b43f3973e20816cd9a067eb6a Mon Sep 17 00:00:00 2001 From: Runjuu Date: Tue, 28 Nov 2023 14:22:31 -0800 Subject: [PATCH] fix(notification): add missed NotificationType --- src/types/indexer/notification.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/indexer/notification.ts b/src/types/indexer/notification.ts index 2e9a15cd3..d16bd2060 100644 --- a/src/types/indexer/notification.ts +++ b/src/types/indexer/notification.ts @@ -11,6 +11,7 @@ export enum NotificationType { NOTE_POSTED = 'NOTE_POSTED', MENTIONED = 'MENTIONED', TIPPED = 'TIPPED', + TIP_CONFIG_SET = 'TIP_CONFIG_SET' } export type NotificationTypeKey = keyof typeof NotificationType