-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
146 lines (131 loc) · 2.87 KB
/
index.d.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
enum ListingType {
forSale = 'forSale',
forRent = 'forRent',
sold = 'sold',
}
enum ListingCategory {
byAgent = 'byAgent',
byOwner = 'byOwner',
}
enum SortOption {
verifiedSource = 'verifiedSource',
homesForYou = 'homesForYou',
priceHighToLow = 'priceHighToLow',
priceLowToHigh = 'priceLowToHigh',
paymentHighToLow = 'paymentHighToLow',
paymentLowToHigh = 'paymentLowToHigh',
newest = 'newest',
bedrooms = 'bedrooms',
bathrooms = 'bathrooms',
squareFeet = 'squareFeet',
lotSize = 'lotSize',
}
enum HomeType {
house = 'house',
townhome = 'townhome',
multiFamily = 'multiFamily',
condo = 'condo',
lot = 'lot',
apartment = 'apartment',
manufactured = 'manufactured',
}
enum ListingPublishOption {
ownerPosted = 'ownerPosted',
agentListed = 'agentListed',
newConstruction = 'newConstruction',
foreclosures = 'foreclosures',
auctions = 'auctions',
foreclosed = 'foreclosed',
preForeclosures = 'preForeclosures',
}
enum PropertyStatus {
comingSoon = 'comingSoon',
acceptingBackupOffers = 'acceptingBackupOffers',
pendingAndUnderContract = 'pendingAndUnderContract',
}
enum Tour {
open = 'open',
'3d' = '3d',
}
enum OtherAmenity {
ac = 'ac',
pool = 'pool',
waterfront = 'waterfront',
onsiteParking = 'onsiteParking',
inUnitLaundry = 'inUnitLaundry',
acceptZillowApplications = 'acceptZillowApplications',
incomeRestricted = 'incomeRestricted',
appartmentCommunity = 'appartmentCommunity',
}
enum View {
city = 'city',
mountain = 'mountain',
park = 'park',
water = 'water',
}
enum Pet {
allowsLargeDogs = 'allowsLargeDogs',
allowsSmallDogs = 'allowsSmallDogs',
allowsCats = 'allowsCats',
}
enum Basement {
finished = 'finished',
unfinished = 'unfinished',
}
declare type SearchAPIParams = {
keyword: string
type: ListingType
sort?: SortOption
price?: {
min?: number
max?: number
}
beds?: {
min?: number
max?: number
}
baths?: {
min?: number
max?: number
}
yearBuilt?: {
min?: number
max?: number
}
lotSize?: {
min?: number
max?: number
}
squareFeet?: {
min?: number
max?: number
}
homeTypes?: HomeType[]
listingType?: ListingCategory
listingPublishOptions?: ListingPublishOption[]
hoa?: number
propertyStatus?: PropertyStatus[]
tours?: Tour[]
otherAmenities?: OtherAmenity[]
views?: View[]
pets?: Pet[]
basement?: Basement[]
singleStoryOnly?: boolean
hide55plusCommunities?: boolean
daysOnZillow?: string | number
moveInDate?: string
mustHaveGarage?: boolean
parkingSpotsMin?: number
keywords?: string
page?: number
}
declare type PropertyAPIParams = {
url: string
}
declare class ZillowAPI {
private readonly apiKey: string;
constructor(apiKey: string);
search(params: SearchAPIParams): Promise<Record<any, any>>;
property(params: PropertyAPIParams): Promise<Record<any, any>>;
}
export default ZillowAPI;