import type { CrmLead } from '../domain/crmLead' import { CrmLeadStage } from '../domain/crmLead' import { AssetType } from '../domain/enums' /** * Seed-Daten des CRM-Kanals (Runde 5, §12). * * Bewusst wenige, dafür vollständige Datensätze: ein CRM-Lead ohne * Ansprechpartner und ohne letzten Kontakt wäre keiner. Orte und Flächen * liegen im Raum Basel und Nordwestschweiz, passend zum übrigen Bestand. */ export const crmLeads: CrmLead[] = [ { id: 'crm-001', companyName: 'Rheinblick Treuhand AG', contactPerson: 'Andrea Vogt', contactEmail: 'a.vogt@rheinblick-treuhand.ch', contactPhone: '+41 61 271 44 18', locationHint: 'Basel, Innenstadt', assetType: AssetType.OFFICE, areaSqmMin: 280, areaSqmMax: 420, stage: CrmLeadStage.NEGOTIATION, ownerName: 'Thomas Müller', crmSystem: 'Salesforce', lastContactAt: '2026-08-04T09:15:00.000Z', note: 'Mietvertrag am jetzigen Standort läuft Ende März 2027 aus. Zwei Objekte besichtigt, Zollstrasse favorisiert.', }, { id: 'crm-002', companyName: 'Nordwest Dental Gruppe', contactPerson: 'Dr. Marc Bühler', contactEmail: 'buehler@nw-dental.ch', locationHint: 'Basel, Kleinbasel', assetType: AssetType.RETAIL, areaSqmMin: 180, areaSqmMax: 260, stage: CrmLeadStage.VIEWING, ownerName: 'Sandra Keller', crmSystem: 'Salesforce', lastContactAt: '2026-08-01T14:40:00.000Z', note: 'Sucht Erdgeschossfläche mit Schaufenster für zweite Praxis. Besichtigung für KW 33 angefragt.', }, { id: 'crm-003', companyName: 'Altmann Logistik AG', contactPerson: 'Peter Altmann', contactPhone: '+41 61 811 09 62', locationHint: 'Pratteln', assetType: AssetType.LOGISTICS, areaSqmMin: 1800, areaSqmMax: 3200, stage: CrmLeadStage.QUALIFIED, ownerName: 'Thomas Müller', crmSystem: 'HubSpot', lastContactAt: '2026-07-28T07:55:00.000Z', note: 'Expansion aus Muttenz. Rampe und 24h-Zufahrt zwingend.', }, { id: 'crm-004', companyName: 'Studio Helle Räume GmbH', contactPerson: 'Livia Sommer', contactEmail: 'kontakt@hellraeume.ch', locationHint: 'Basel, Gundeldingen', assetType: AssetType.OFFICE, areaSqmMin: 90, areaSqmMax: 160, stage: CrmLeadStage.NEW, ownerName: 'Sandra Keller', crmSystem: 'HubSpot', lastContactAt: '2026-07-24T16:05:00.000Z', note: 'Anfrage über Kontaktformular. Budget noch offen.', }, { id: 'crm-005', companyName: 'Birsfelden Manufaktur AG', contactPerson: 'Jonas Wyss', contactEmail: 'j.wyss@birsfelden-manufaktur.ch', contactPhone: '+41 61 313 27 40', locationHint: 'Birsfelden', assetType: AssetType.LIGHT_INDUSTRIAL, areaSqmMin: 640, areaSqmMax: 900, stage: CrmLeadStage.QUALIFIED, ownerName: 'Thomas Müller', crmSystem: 'Salesforce', lastContactAt: '2026-07-19T11:20:00.000Z', }, ]