/** * Task Handlers Index * * Exports all task handlers for the task worker. * * Product Discovery: * - handleProductDiscoveryCurl: curl/axios based (for curl transport) * - handleProductDiscoveryHttp: Puppeteer browser-based (for http transport) */ export { handleProductDiscovery as handleProductDiscoveryCurl } from './product-discovery-curl'; export { handleProductDiscoveryHttp } from './product-discovery-http'; export { handlePayloadFetch as handlePayloadFetchCurl } from './payload-fetch-curl'; export { handleProductRefresh } from './product-refresh'; export { handleStoreDiscovery } from './store-discovery'; export { handleStoreDiscoveryHttp } from './store-discovery-http'; export { handleEntryPointDiscovery } from './entry-point-discovery'; export { handleAnalyticsRefresh } from './analytics-refresh'; export { handleWhoami } from './whoami';