-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
48 lines (43 loc) · 1 KB
/
types.ts
File metadata and controls
48 lines (43 loc) · 1 KB
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
export enum PropertyType {
APARTMENT = 'Apartment',
VILLA = 'Villa',
FLOOR = 'Floor',
LAND = 'Land',
COMMERCIAL = 'Commercial'
}
export enum FinishingLevel {
STANDARD = 'Standard',
SUPER_DELUXE = 'Super Deluxe',
ULTRA_MODERN = 'Ultra Modern'
}
export interface LocationData {
governorate: string;
areas: string[];
}
export interface SearchCriteria {
governorate: string;
area: string;
propertyType: PropertyType;
bedrooms: number;
bathrooms: number;
sizeSqm: number;
finishing: FinishingLevel;
parkingSpaces: number;
}
export interface MarketFactor {
name: string;
impact: 'POSITIVE' | 'NEGATIVE' | 'NEUTRAL';
description: string;
}
export interface PredictionResult {
estimatedPriceKWD: number;
priceRangeLow: number;
priceRangeHigh: number;
pricePerSqm: number;
currency: string;
confidenceScore: number; // 0 to 100
analysis: string;
marketTrend: 'UP' | 'DOWN' | 'STABLE';
keyFactors: MarketFactor[];
historicalTrend: { year: string; avgPrice: number }[];
}