Just stopping now bc PC needs to reboot.

This commit is contained in:
2025-03-11 14:40:34 -05:00
parent cfcf118275
commit 0cdfd1a0eb
9 changed files with 872 additions and 15 deletions

View File

@ -1,3 +1,4 @@
export type updateUser = {
id?: string;
updated_at?: Date;
@ -7,6 +8,17 @@ export type updateUser = {
provider?: string;
};
export type UserStatus = {
id: string;
user_id: string;
status: string;
created_at: string;
profiles: {
full_name: string;
avatar_url: string | null;
};
};
export type NotificationMessage = {
sound?: string;
title: string;