This repository has no description
0

Configure Feed

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

basic notification scope log document

+25
+25
.agent/logs/20251209_notification_api_client.md
··· 1 + get notified for the following: 2 + 3 + someone saves a url to library or collection directly from your card (include a "via" field in lexicon) 4 + someone adds your collection to one of their collections 5 + someone collections one of your bsky posts 6 + 7 + all of which can be configured (toggled on / off) on the settings page 8 + 9 + ```typescript 10 + export interface NotificationItem { 11 + id: string; 12 + user: User; 13 + card: UrlCard; 14 + createdAt: Date; 15 + collections: Collection[]; 16 + type: NotificationType; 17 + read: boolean; 18 + } 19 + ``` 20 + 21 + types: 22 + 23 + "user added your card to [their library | collections]" USER_ADDED_YOUR_CARD 24 + "user added your bsky post to [their library | collections]" USER_ADDED_YOUR_BSKY_POST 25 + "user added your collection to [their library | collections]" USER_ADDED_YOUR_COLLECTION