TypeScript 61.9%
HTML 37.2%
SQL 0.7%
1/**2 * Reusable acquisition adapters (SPEC §1, §5, §10). Connectors compose these instead of writing3 * one-off scraping code: storefront platforms (Shopify, WooCommerce), sitemaps/robots, RSS/Atom,4 * schema.org products, PDF price lists and pagination loops.5 */6export * from './pagination.js';7export * from './sitemap.js';8export * from './rss.js';9export * from './pdf.js';10export * from './schemaorg.js';11export { ShopifyStoreConnector, ShopifyConfigSchema, ShopifyProductSchema, ShopifyPayloadSchema, toStorefrontProduct as shopifyToStorefrontProduct, type ShopifyConfig, type ShopifyPayload, type ShopifyProduct } from './shopify.js';12export { WooCommerceStoreConnector, WooConfigSchema, WooProductSchema, WooPayloadSchema, toStorefrontProduct as wooToStorefrontProduct, type WooConfig, type WooPayload, type WooProduct } from './woocommerce.js';13export * from './storefront.js';14