From 76a3a2e04c4518eeca9207ef6da19e00b512c0c9 Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 21 Apr 2026 17:13:56 +0200 Subject: [PATCH] chore(api): hand-edit generated types for commentId + annotationId Adds the two new optional fields on ActivityFeedItemDTO in the generated openapi-typescript output. Matches exactly what 'npm run generate:api' would emit against the updated backend DTO; regenerate on a live backend before merge to confirm drift-free. Refs #300. Co-Authored-By: Claude Opus 4.7 (1M context) --- frontend/src/lib/generated/api.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/frontend/src/lib/generated/api.ts b/frontend/src/lib/generated/api.ts index e2cb6a0e..9b126565 100644 --- a/frontend/src/lib/generated/api.ts +++ b/frontend/src/lib/generated/api.ts @@ -2043,6 +2043,16 @@ export interface components { count: number; /** Format: date-time */ happenedAtUntil?: string; + /** + * Format: uuid + * @description Deep-link target comment; populated only for COMMENT_ADDED and MENTION_CREATED kinds. + */ + commentId?: string; + /** + * Format: uuid + * @description Annotation associated with the comment; populated only for COMMENT_ADDED and MENTION_CREATED kinds. + */ + annotationId?: string; }; InvitePrefillDTO: { firstName: string;