/** * Compliance Scope Profiling -- barrel re-export. * * Block constants 1-7 and hidden questions live in * ./compliance-scope-profiling-blocks * * Blocks 8-9 and the aggregated SCOPE_QUESTION_BLOCKS array live in * ./compliance-scope-profiling-vvt-blocks * * All helper/export functions live in * ./compliance-scope-profiling-helpers */ // --- data / constants --- export { PROFILE_AUTOFILL_QUESTION_IDS, HIDDEN_SCORING_QUESTIONS, } from './compliance-scope-profiling-blocks' // --- blocks aggregate --- export { SCOPE_QUESTION_BLOCKS, } from './compliance-scope-profiling-vvt-blocks' // --- all functions --- export { prefillFromCompanyProfile, getAutoFilledScoringAnswers, getProfileInfoForBlock, prefillFromVVTAnswers, prefillFromLoeschfristenAnswers, exportToVVTAnswers, exportToLoeschfristenAnswers, exportToTOMProfile, isBlockComplete, getBlockProgress, getTotalProgress, getAnswerValue, getAllQuestions, getUnansweredRequiredQuestions, } from './compliance-scope-profiling-helpers'