Supplier Integrations
Suppliers provide the products that Logidav imports, manages, and fulfills. Each supplier has a dedicated bundle that handles catalog import, stock synchronization, and supplier-specific workflows like dropshipping or pallet management.
Supported Suppliers
| Supplier | Bundle | Key Function |
|---|---|---|
| Bigbuy | BigbuyBundle | Dropship product import and stock sync |
| Vidaxl | VidaxlBundle | Catalog synchronization and product import |
| AsirGroup | AsirGroupBundle + AsirGroupModeBundle | Pallet management, stock tracking, barcode scanning |
Common Architecture
All supplier integrations follow a consistent pattern:
- Dedicated bundle under
src/with its own API client, services, and commands - Import commands that pull product data and stock levels from the supplier
- Normalization of supplier-specific formats into the Logidav product model
- Stock synchronization to keep inventory levels current across all sales channels
:::tip Adding a new supplier
Follow the existing bundle structure (e.g., BigbuyBundle) when adding a new supplier integration. Each bundle should contain its own API client, import commands, and data mapping logic.
:::