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) <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-04-20 16:11:45 +02:00
parent 2a5c402ef6
commit 3d53974d76

View File

@@ -1799,6 +1799,7 @@ export interface components {
/** Format: uuid */ /** Format: uuid */
id?: string; id?: string;
displayName?: string; displayName?: string;
personType?: string;
firstName?: string; firstName?: string;
lastName?: string; lastName?: string;
/** Format: int64 */ /** Format: int64 */
@@ -1809,7 +1810,6 @@ export interface components {
deathYear?: number; deathYear?: number;
alias?: string; alias?: string;
notes?: string; notes?: string;
personType?: string;
}; };
SenderModel: { SenderModel: {
/** Format: uuid */ /** Format: uuid */
@@ -1877,10 +1877,10 @@ export interface components {
timeout?: number; timeout?: number;
}; };
PageNotificationDTO: { PageNotificationDTO: {
/** Format: int32 */
totalPages?: number;
/** Format: int64 */ /** Format: int64 */
totalElements?: number; totalElements?: number;
/** Format: int32 */
totalPages?: number;
pageable?: components["schemas"]["PageableObject"]; pageable?: components["schemas"]["PageableObject"];
first?: boolean; first?: boolean;
last?: boolean; last?: boolean;
@@ -2015,6 +2015,10 @@ export interface components {
/** Format: date-time */ /** Format: date-time */
happenedAt: string; happenedAt: string;
youMentioned: boolean; youMentioned: boolean;
/** Format: int32 */
count: number;
/** Format: date-time */
happenedAtUntil?: string;
}; };
InvitePrefillDTO: { InvitePrefillDTO: {
firstName: string; 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'];