From 977415ca2eb6560bbbbefc9739fee14422690bef Mon Sep 17 00:00:00 2001 From: Renaud Chaput Date: Fri, 14 Jun 2024 12:37:51 +0200 Subject: [PATCH] Add new attribute from #30707 --- app/javascript/mastodon/api_types/notifications.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/javascript/mastodon/api_types/notifications.ts b/app/javascript/mastodon/api_types/notifications.ts index 8658b1d6dd..73b89cbde4 100644 --- a/app/javascript/mastodon/api_types/notifications.ts +++ b/app/javascript/mastodon/api_types/notifications.ts @@ -45,6 +45,7 @@ export interface BaseNotificationGroupJSON { type: NotificationType; sample_accounts: ApiAccountJSON[]; latest_page_notification_at: string; // FIXME: This will only be present if the notification group is returned in a paginated list, not requested directly + most_recent_notification_id: string; page_min_id?: string; page_max_id?: string; }