From 3d53974d762ee4eea2a4776b0d9c80ee975df0ac Mon Sep 17 00:00:00 2001 From: Marcel Date: Mon, 20 Apr 2026 16:11:45 +0200 Subject: [PATCH] chore(types): regenerate OpenAPI types for ActivityFeedItemDTO rollup fields Adds count (required) and happenedAtUntil (optional) to the TypeScript DTO so Chronik + DashboardActivityFeed can consume rollup rows type-safely. Part of #285. Co-Authored-By: Claude Opus 4.7 (1M context) --- frontend/src/lib/generated/api.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/lib/generated/api.ts b/frontend/src/lib/generated/api.ts index aa4e5cd1..d15c12e1 100644 --- a/frontend/src/lib/generated/api.ts +++ b/frontend/src/lib/generated/api.ts @@ -1799,6 +1799,7 @@ export interface components { /** Format: uuid */ id?: string; displayName?: string; + personType?: string; firstName?: string; lastName?: string; /** Format: int64 */ @@ -1809,7 +1810,6 @@ export interface components { deathYear?: number; alias?: string; notes?: string; - personType?: string; }; SenderModel: { /** Format: uuid */ @@ -1877,10 +1877,10 @@ export interface components { timeout?: number; }; PageNotificationDTO: { - /** Format: int32 */ - totalPages?: number; /** Format: int64 */ totalElements?: number; + /** Format: int32 */ + totalPages?: number; pageable?: components["schemas"]["PageableObject"]; first?: boolean; last?: boolean; @@ -2015,6 +2015,10 @@ export interface components { /** Format: date-time */ happenedAt: string; youMentioned: boolean; + /** Format: int32 */ + count: number; + /** Format: date-time */ + happenedAtUntil?: string; }; InvitePrefillDTO: { firstName: string; @@ -4455,7 +4459,3 @@ export interface operations { }; }; } - -export type DashboardResumeDTO = components['schemas']['DashboardResumeDTO']; -export type DashboardPulseDTO = components['schemas']['DashboardPulseDTO']; -export type ActivityFeedItemDTO = components['schemas']['ActivityFeedItemDTO'];