/** * Company Profile Presets — Branchenvorlagen fuer typische Kundenszenarien * * Jeder Preset enthaelt ein vorbefuelltes CompanyProfile + typische Scope-Antworten. * Der Kunde waehlt beim Onboarding ein Profil und passt es dann an. * * Data split: Interface here, preset data in ./company-profile-preset-data.ts */ export interface CompanyProfilePreset { id: string label: string description: string icon: string /** Vorbefuellte CompanyProfile-Felder */ profile: { legalForm: string industry: string[] businessModel: string companySize: string employeeCount: string headquartersCountry: string targetMarkets: string[] isDataController: boolean isDataProcessor: boolean } /** Typische Scope-Antworten fuer diese Branche */ scopeHints: Record /** Typische Dokumente die diese Branche braucht */ recommendedDocs: string[] } export { COMPANY_PROFILE_PRESETS } from './company-profile-preset-data'