feat: Implement product detail syncing with rowversion-based change detection and integrate it into category product synchronization.

This commit is contained in:
sebseb7
2025-11-24 14:50:40 +01:00
parent 6dbac0d3c1
commit b4d202bb23
5 changed files with 281 additions and 6 deletions

View File

@@ -67,6 +67,10 @@ export async function findMatches(query, cacheDir) {
matchingCategoryIds.add(node.kKategorie);
}
}));
if (matchingCategoryIds.size >= 20) {
break;
}
}
return Array.from(matchingCategoryIds);