detailed profiles info
This commit is contained in:
@@ -19,12 +19,29 @@ export type ExtensionSummary = {
|
||||
version: string | null;
|
||||
iconDataUrl: string | null;
|
||||
profileIds: string[];
|
||||
profiles: AssociatedProfileSummary[];
|
||||
};
|
||||
|
||||
export type BookmarkSummary = {
|
||||
url: string;
|
||||
title: string;
|
||||
profileIds: string[];
|
||||
profiles: BookmarkAssociatedProfileSummary[];
|
||||
};
|
||||
|
||||
export type AssociatedProfileSummary = {
|
||||
id: string;
|
||||
name: string;
|
||||
avatarDataUrl: string | null;
|
||||
avatarLabel: string;
|
||||
};
|
||||
|
||||
export type BookmarkAssociatedProfileSummary = {
|
||||
id: string;
|
||||
name: string;
|
||||
avatarDataUrl: string | null;
|
||||
avatarLabel: string;
|
||||
bookmarkPath: string;
|
||||
};
|
||||
|
||||
export type ProfileSortKey = "name" | "email" | "id";
|
||||
|
||||
Reference in New Issue
Block a user