- Migration 094: images for 12 Cisco 8K MPA + A9K-8HG-FLEX + ASR-9000V models - Migration 095: price denorm refresh (EUR 679→1376, USD 166→835 with 180d window) - Migration 096: bulk vendor_compat by form_factor — all 9013 transceivers now have OEM compatibility patterns (was 0/9013 because all slugs are scraped-*) - wiitek.ts: disable dead scraper (wiitek.com unreachable since 2026-04, EAI_AGAIN) - scheduler.ts: add compute:price-denorm job (daily 05:30 UTC) to keep street_price_usd/price_verified_eur fresh without manual migration runs - seed-from-npm.ts: ON CONFLICT now also updates vendor_compat (was only updated_at)
15 lines
489 B
TypeScript
15 lines
489 B
TypeScript
/**
|
|
* Wiitek Scraper — wiitek.com
|
|
*
|
|
* Chinese manufacturer/reseller, direct factory prices.
|
|
* Covers: CSFP, SFP-DD, CFP, CFP2, OSFP224, QSFP112 and all standard forms.
|
|
* Good for price benchmarking.
|
|
*
|
|
* Schedule: every 8h
|
|
*/
|
|
|
|
export async function scrapeWiitek(): Promise<void> {
|
|
// wiitek.com unreachable since 2026-04 (ConnectTimeoutError on all requests)
|
|
console.warn("[wiitek] Scraper disabled — www.wiitek.com:443 connection timeout on every attempt (2026-04-25)");
|
|
}
|