This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

docs: update FeedItem to use UrlCard instead of UrlCardWithCollectionsAndLibraries

Co-authored-by: aider (anthropic/claude-sonnet-4-20250514) <aider@aider.chat>

+1 -2
+1 -2
docs/plan/api_client_type_unification.md
··· 288 288 export interface FeedItem { 289 289 id: string; 290 290 user: User; // Changed from FeedActivityActor 291 - card: UrlCardWithCollectionsAndLibraries; // Changed from FeedActivityCard, now includes author 291 + card: UrlCard; // Changed from FeedActivityCard, now includes author 292 292 createdAt: Date; 293 293 collections: Collection[]; // Changed to use unified Collection 294 294 } ··· 742 742 card: { 743 743 ...cardData, 744 744 author: cardAuthorProfiles.get(cardData.authorId), 745 - collections: collectionsForCard, 746 745 }, 747 746 createdAt: activity.createdAt, 748 747 collections: collectionsForCard,