-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
94 lines (84 loc) · 1.6 KB
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
export type CountrySelectValue = {
flag: string
label: string
latlng: number[]
region: string
value: string
}
export type CategoryValue = {
label: string
icon: string
description: string
}
export type ListingData = {
category: string
locationValue: CountrySelectValue
guestCount: number
roomCount: number
bathroomCount: number
imageSrc: string
price: number
title: string
description: string
}
export type AuthUser = {
id: string
name: string | null
image: string
description?: string
}
export type Listing = {
id: string
category?: string
locationValue: string
guestCount?: number
roomCount?: number
bathroomCount?: number
imageSrc: string
price?: number
title: string
imagePublicId?: string
description?: string
reservations?: Reservation[]
auth_user?: AuthUser
cratedAt?: string | null
}
export type Reservation = {
id: string
totalPrice: number
startDate: string
endDate: string
listingId: string
user?: AuthUser
}
export type ReservationWithListing = Reservation & {
listing: Listing
}
export type QueryParams = {
page?: string
category?: string
locationValue?: string
roomCount?: number
guestCount?: number
bathroomCount?: number
startDate?: string
endDate?: string
}
export type UpdateProfileData = {
name?: string
email?: string
currentPassword?: string
newPassword?: string
image?: string
description?: string
imagePublicId?: string
}
export type MyTripsType = {
reservation: Reservation
listing: Listing
user: AuthUser
}
export type UserProfileData = {
listings: Listing[]
user: AuthUser
}