All 3 auth methods work & update public profile table as well

This commit is contained in:
2025-03-10 13:59:04 -05:00
parent 07bf94d393
commit f9fd5dafc5
6 changed files with 140 additions and 83 deletions

View File

@ -1,3 +1,12 @@
export type updateUser = {
id?: string;
updated_at?: Date;
email?: string;
full_name?: string;
avatar_url?: string;
provider?: string;
};
export type NotificationMessage = {
sound?: string;
title: string;