···11+get notified for the following:
22+33+ someone saves a url to library or collection directly from your card (include a "via" field in lexicon)
44+ someone adds your collection to one of their collections
55+ someone collections one of your bsky posts
66+77+all of which can be configured (toggled on / off) on the settings page
88+99+```typescript
1010+export interface NotificationItem {
1111+ id: string;
1212+ user: User;
1313+ card: UrlCard;
1414+ createdAt: Date;
1515+ collections: Collection[];
1616+ type: NotificationType;
1717+ read: boolean;
1818+}
1919+```
2020+2121+types:
2222+2323+ "user added your card to [their library | collections]" USER_ADDED_YOUR_CARD
2424+ "user added your bsky post to [their library | collections]" USER_ADDED_YOUR_BSKY_POST
2525+ "user added your collection to [their library | collections]" USER_ADDED_YOUR_COLLECTION