Skip to content

Commit

Permalink
fix: add public profile type
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh committed Mar 15, 2024
1 parent a0f51af commit 81050b9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/member/member.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ export type MemberStorage = {
maximum: number;
};

export type PublicProfile = {
id: UUID;
member: Member;
bio: string;
facebookId: string;
linkedinId: string;
twitterId: string;
createdAt: string;
updatedAt: string;
};

export enum MemberType {
Individual = 'individual',
Group = 'group',
Expand Down

0 comments on commit 81050b9

Please sign in to comment.