Initial commit
This commit is contained in:
@@ -0,0 +1,76 @@
|
||||
import { AssetType } from '../domain/enums'
|
||||
import type { Need } from '../domain/need'
|
||||
|
||||
export const mockNeeds: Need[] = [
|
||||
{
|
||||
id: 'need-001',
|
||||
companyName: 'Innovatech AG',
|
||||
contactName: 'Sandra Meier',
|
||||
assetType: AssetType.OFFICE,
|
||||
requiredArea: { min: 600, max: 1000 },
|
||||
preferredLocations: ['Zürich', 'Zürich-West', 'Zürich Kreis 5'],
|
||||
excludedLocations: [],
|
||||
budgetRange: { maxPerSqm: 45, maxMonthlyTotal: 40000, currency: 'CHF' },
|
||||
timing: {
|
||||
earliestMoveIn: '2025-08-01',
|
||||
latestMoveIn: '2026-01-01',
|
||||
contractDurationMonths: 60,
|
||||
flexibleTiming: true,
|
||||
},
|
||||
mustCriteriaText: ['ÖV-Anbindung < 5 Min', 'Mindestfläche 600m²', 'Ausbaugrad modern'],
|
||||
softFactors: {
|
||||
minPrestige: 70,
|
||||
minAccessibility: 80,
|
||||
requireParking: false,
|
||||
maxPublicTransportMinutes: 6,
|
||||
},
|
||||
weightingProfile: {
|
||||
area: 0.20,
|
||||
location: 0.20,
|
||||
budget: 0.15,
|
||||
timing: 0.15,
|
||||
prestige: 0.10,
|
||||
accessibility: 0.10,
|
||||
expansionPotential: 0.05,
|
||||
flexibility: 0.05,
|
||||
},
|
||||
confidenceInCriteria: 0.88,
|
||||
extractedFromText: 'Wir suchen moderne Büroflächen in Zürich-West, ca. 700–900m², Budget max CHF 42/m², Bezug Herbst 2025.',
|
||||
organizationId: 'org-wincasa',
|
||||
createdAt: '2025-04-15T10:00:00Z',
|
||||
updatedAt: '2025-05-01T09:00:00Z',
|
||||
},
|
||||
{
|
||||
id: 'need-002',
|
||||
companyName: 'Schweizer Logistik GmbH',
|
||||
contactName: 'Thomas Brun',
|
||||
assetType: AssetType.LOGISTICS,
|
||||
requiredArea: { min: 1500, max: 4000 },
|
||||
preferredLocations: ['Basel', 'Muttenz', 'Pratteln', 'Reinach BL'],
|
||||
budgetRange: { maxPerSqm: 18, currency: 'CHF' },
|
||||
timing: {
|
||||
earliestMoveIn: '2025-09-01',
|
||||
latestMoveIn: '2026-06-01',
|
||||
contractDurationMonths: 36,
|
||||
flexibleTiming: false,
|
||||
},
|
||||
mustCriteriaText: ['Autobahnanschluss < 5 Min', 'Rampe / Andienung', 'Hallenhöhe min 6m'],
|
||||
softFactors: {
|
||||
requireParking: true,
|
||||
},
|
||||
weightingProfile: {
|
||||
area: 0.25,
|
||||
location: 0.20,
|
||||
budget: 0.20,
|
||||
timing: 0.15,
|
||||
prestige: 0.02,
|
||||
accessibility: 0.10,
|
||||
expansionPotential: 0.05,
|
||||
flexibility: 0.03,
|
||||
},
|
||||
confidenceInCriteria: 0.94,
|
||||
organizationId: 'org-wincasa',
|
||||
createdAt: '2025-03-20T14:00:00Z',
|
||||
updatedAt: '2025-04-10T11:00:00Z',
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user