streamlined address and availability

This commit is contained in:
jackiettran
2025-08-20 14:56:16 -04:00
parent 66dc187295
commit ddd27a59f9
10 changed files with 1173 additions and 314 deletions

View File

@@ -1,3 +1,19 @@
export interface Address {
id: string;
userId: string;
address1: string;
address2?: string;
city: string;
state: string;
zipCode: string;
country: string;
latitude?: number;
longitude?: number;
isPrimary: boolean;
createdAt: string;
updatedAt: string;
}
export interface User {
id: string;
username: string;
@@ -13,6 +29,7 @@ export interface User {
country?: string;
profileImage?: string;
isVerified: boolean;
addresses?: Address[];
}
export interface Message {