#!/usr/bin/env node /** * Manual trigger for the daily store phone export job. * Useful for testing without waiting for the weekday 10am cron. * * Usage: * node scripts/exportStorePhones.js * * Requires STORE_PHONE_EXPORT_ROOM_ID (and the usual Webex credentials) * in .env. */ import { runStorePhoneExport } from '../src/jobs/storePhoneExport.js'; await runStorePhoneExport();