/** * Reusable acquisition adapters (SPEC §1, §5, §10). Connectors compose these instead of writing * one-off scraping code: storefront platforms (Shopify, WooCommerce), sitemaps/robots, RSS/Atom, * schema.org products, PDF price lists and pagination loops. */ export * from './pagination.js'; export * from './sitemap.js'; export * from './rss.js'; export * from './pdf.js'; export * from './schemaorg.js'; export { ShopifyStoreConnector, ShopifyConfigSchema, ShopifyProductSchema, ShopifyPayloadSchema, toStorefrontProduct as shopifyToStorefrontProduct, type ShopifyConfig, type ShopifyPayload, type ShopifyProduct } from './shopify.js'; export { WooCommerceStoreConnector, WooConfigSchema, WooProductSchema, WooPayloadSchema, toStorefrontProduct as wooToStorefrontProduct, type WooConfig, type WooPayload, type WooProduct } from './woocommerce.js'; export * from './storefront.js';