// src/services/avDeviceBuilder.js // // Thin wrapper around the core AV enrichment orchestrator (rich/build shape). // All heavy lifting (base collect, relevant Meraki filtering, shared matchers/enrichers, domain attach, topology) // lives in services/enrichment/avEnrichmentCore.js. // This keeps backward compat for callers (e.g. /av/devices/build, characterize). import { enrichAVForStore } from './enrichment/avEnrichmentCore.js'; export async function buildAVDevices(storeNumber) { // Thin delegation to core (rich shape preserves exact prior contract for build results). return enrichAVForStore(storeNumber, { shape: 'rich' }); } export default buildAVDevices;