support internal icon

This commit is contained in:
Julian Freeman
2026-04-16 18:55:30 -04:00
parent c3501d00af
commit 3e7bf3a7ce
151 changed files with 92 additions and 4 deletions

View File

@@ -9,6 +9,7 @@ export type ProfileSummary = {
name: string;
email: string | null;
avatarDataUrl: string | null;
avatarIcon: string | null;
avatarLabel: string;
path: string;
};
@@ -33,6 +34,7 @@ export type AssociatedProfileSummary = {
id: string;
name: string;
avatarDataUrl: string | null;
avatarIcon: string | null;
avatarLabel: string;
};
@@ -40,6 +42,7 @@ export type BookmarkAssociatedProfileSummary = {
id: string;
name: string;
avatarDataUrl: string | null;
avatarIcon: string | null;
avatarLabel: string;
bookmarkPath: string;
};