v3: eigener Scraper (OBI live verifiziert) statt braucheklima-Daten; Elektromärkte (MediaMarkt/Saturn/expert/Euronics)+Amazon; Startseite reframed 'wo gibt es Klimageräte'; SaaS-Design; Monitor any-AC + Modell-Filter

This commit is contained in:
2026-06-28 06:35:38 +00:00
parent 67f25ffd10
commit 61c7542dc3
17 changed files with 394 additions and 389 deletions
+9
View File
@@ -0,0 +1,9 @@
// Adapter-Vorlage. Pro Händler implementieren: meta, products, fetchProduct, fetchStores.
// Elektronikmärkte (MediaMarkt/Saturn/expert/Euronics) sind teils client-rendered →
// JSON-Endpoint (oft "/api/..../availability?storeId=") via Netzwerk-Capture nutzen,
// sonst Headless (Playwright) im Cron-Container.
const UA = 'KuehlfinderBot/0.1 (+https://kuehlfinder.de/bot)';
export const meta = { id: 'TEMPLATE', name: 'TEMPLATE', kind: 'elektro' };
export const products = {};
export async function fetchProduct(productId, ctx) { return null; }
export async function fetchStores() { return []; }