feat: add friend wishlist link

This commit is contained in:
Vaka.pro
2026-04-26 23:29:20 +03:00
parent f8fcda0d13
commit 34179b3f30
4 changed files with 50 additions and 1 deletions

View File

@@ -15,6 +15,14 @@ export const profileSchema = z.object({
export type Profile = z.infer<typeof profileSchema>;
export const friendProfileSchema = z.object({
slug: z.string(),
displayName: z.string(),
avatarUrl: z.string().nullable(),
});
export type FriendProfile = z.infer<typeof friendProfileSchema>;
export const updateProfileSchema = z.object({
slug: z
.string()