Skip to content

Commit 2fadd76

Browse files
committed
feat: add QuoteNotification type
1 parent 5817b3e commit 2fadd76

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/mastodon/entities/v1/notification.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ export type StatusNotification = BaseNotificationWithStatus<"status">;
5353
*/
5454
export type ReblogNotification = BaseNotificationWithStatus<"reblog">;
5555

56+
/**
57+
* Someone boosted one of your statuses
58+
*/
59+
export type QuoteNotification = BaseNotificationWithStatus<"quote">;
60+
5661
/**
5762
* Someone followed you
5863
*/
@@ -107,6 +112,7 @@ export interface NotificationRegistry {
107112
status: StatusNotification;
108113
reblog: ReblogNotification;
109114
follow: FollowNotification;
115+
quote: QuoteNotification;
110116
follow_request: FollowRequestNotification;
111117
favourite: FavouriteNotification;
112118
poll: PollNotification;

0 commit comments

Comments
 (0)