diff --git a/frontend/lib/types.ts b/frontend/lib/types.ts index 4cc8b17..e2fcc18 100644 --- a/frontend/lib/types.ts +++ b/frontend/lib/types.ts @@ -27,9 +27,14 @@ export interface Member extends PartialMember { bio: string | null; links: string[] | null; id: string; + display_name: string | null; name: string; avatar_urls: string[] | null; + names: Name[]; + pronouns: Pronoun[]; + fields: Field[]; + user?: PartialUser; }