Skip to content

INTEGRATIONS

What's live today, what's next.

The public scorecard. Honest about gaps — either on the roadmap or intentionally out of scope. This is a living document, not a fixed roadmap.

Integration Status Category Capability
Anthropic / OpenAI Live AI Content suggestion router for offer descriptions. Admin-switchable provider. Per-provider encrypted key storage. Anthropic prompt-caching wired in.
inFakt Live Invoicing Accounting/invoicing adapter with KSeF indirection — issues documents and reads back clearance status.
KSeF Live Invoicing Polish national e-invoicing (KSeF 2.0 API). FA(3) issuance + clearance, KSeF number + UPO, KOR corrections — async submit → poll → UPO model.
Subiekt nexo Live Invoicing Invoicing via the Sfera bridge (Windows service): issue invoices + receipts, corrections, status + PDF. First InvoicingPort adapter.
Allegro Live Marketplace Full offer suite: lister, reader, creator, status reader, field updater. OAuth, cursor-based event journal. GPSR data, category lookup by EAN, seller policies, safety attachments.
ERLI Live Marketplace Polish marketplace. OfferManager (create/update offers, push stock, reconcile status, restock on cancellation) + OrderSource (webhook + inbox-poll). The second live marketplace.
DPD Live Shipping DPD Polska — labels and tracking via DPDInfoServices, courier pickup. On the ShippingProviderPort.
InPost Live Shipping ShipX integration: paczkomat + courier + labels + webhooks. Establishes the ShippingProviderPort.
PrestaShop Live Shop Catalog, inventory, full order flow. Ships a companion PrestaShop module (OL Dynamic Carrier) for marketplace-shipping round-trip.
WooCommerce Live Shop Source + destination + inventory. Order ingestion, product publish (incl. bulk), via the WooCommerce REST API. Guided setup wizard.
Fakturownia 📋 Planned Invoicing Invoicing adapter.
iFirma 📋 Planned Invoicing Invoicing adapter.
wFirma 📋 Planned Invoicing Invoicing adapter.
Amazon 📋 Planned Marketplace Marketplace adapter via SP-API.
Bol.com 📋 Planned Marketplace Marketplace adapter.
eBay 📋 Planned Marketplace Marketplace adapter via eBay Sell API.
Empik Marketplace 📋 Planned Marketplace Marketplace adapter.
OLX 📋 Planned Marketplace Marketplace adapter.
DHL 📋 Planned Shipping Shipping adapter on the ShippingProviderPort.
FedEx 📋 Planned Shipping Shipping adapter on the ShippingProviderPort.
GLS 📋 Planned Shipping Shipping adapter.
ORLEN Paczka 📋 Planned Shipping Shipping adapter.
BigCommerce 📋 Planned Shop Shop adapter via BigCommerce v3 API.
Magento 📋 Planned Shop Shop adapter via Magento 2 REST API.
Shopify 📋 Planned Shop Shop adapter via Storefront + Admin API.

CAPABILITY PORTS

What an integration is made of.

Every integration is a set of "ports" — abstractions over what a system can do. An adapter implements only the ports each client actually needs. The set of ports grows as the platform does.

OrderSource
Reads orders from a platform.
OrderProcessor
Writes orders to a platform; status updates; cancellations.
OfferLister
Lists offers on a marketplace.
OfferCreator
Creates new offers from product + category.
OfferReader / OfferStatusReader
Reads offer details, status, and events.
OfferFieldUpdater
Updates specific fields on an existing offer.
CategoryBrowser / CategoryBarcodeMatcher
Browses marketplace categories; matches products by EAN.
CategoryParametersReader
Reads required parameters for a category.
CatalogProductReader
Reads catalog product data (for prefilling listings).
SellerPoliciesReader
Reads saved seller policies (returns, shipping, etc.).
ResponsibleProducerReader
Reads GPSR (EU product-safety) data.
SafetyAttachmentUploader
Uploads product safety attachments.
ShippingProviderPort
Shipping operations — live with InPost and DPD.
InvoicingPort
Invoicing operations — live with Subiekt nexo, KSeF, and inFakt.

WRITE AN ADAPTER

Don't see what you need?

The plugin SDK lets you write your own adapter — for a new marketplace, a custom carrier, an internal ERP. The generator scaffolds the structure. The test-kit lets you test against real containers.

pnpm create-adapter my-platform
cd libs/integrations/my-platform

# Implement OrderSource, OfferLister,
# or whatever ports your platform needs.

pnpm test            # → real Postgres + Redis
pnpm dev:stack:up    # → see it running

Missing adapter? Start with the repo.

Code, docs, plugin SDK — all on GitHub.