feat: adding image processing

This commit is contained in:
Chubby Granny Chaser
2024-09-14 00:09:34 +01:00
18 changed files with 165 additions and 77 deletions

View File

@@ -150,6 +150,10 @@ declare global {
updateProfile: (
updateProfile: UpdateProfileRequest
) => Promise<UserProfile>;
updateProfile: (updateProfile: UpdateProfileProps) => Promise<UserProfile>;
processProfileImage: (
path: string
) => Promise<{ imagePath: string; mimeType: string }>;
getFriendRequests: () => Promise<FriendRequest[]>;
updateFriendRequest: (
userId: string,