We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5817b3e commit 2fadd76Copy full SHA for 2fadd76
1 file changed
src/mastodon/entities/v1/notification.ts
@@ -53,6 +53,11 @@ export type StatusNotification = BaseNotificationWithStatus<"status">;
53
*/
54
export type ReblogNotification = BaseNotificationWithStatus<"reblog">;
55
56
+/**
57
+ * Someone boosted one of your statuses
58
+ */
59
+export type QuoteNotification = BaseNotificationWithStatus<"quote">;
60
+
61
/**
62
* Someone followed you
63
@@ -107,6 +112,7 @@ export interface NotificationRegistry {
107
112
status: StatusNotification;
108
113
reblog: ReblogNotification;
109
114
follow: FollowNotification;
115
+ quote: QuoteNotification;
110
116
follow_request: FollowRequestNotification;
111
117
favourite: FavouriteNotification;
118
poll: PollNotification;
0 commit comments