Integration
Svelte Commerce on Magento
Customer token auth via /V1/integration/customer/token works well. Magento_Review and Magento_Wishlist ship no webapi.xml, so neither has a REST surface at all.
Coverage
26 of 43 storefront services are wired to a real Magento endpoint.
Env wiring is not shipped — you add the branch.
$ npm uninstall @misiki/litekart-connector
$ npm i @misiki/magento-connector
$ npm run devSetup
1 · Point the config at the connector
// kitcommerce.config.ts
export * as services from '@misiki/magento-connector'2 · Set the environment
# .env
PUBLIC_MAGENTO_API_URL=# Not yet read by init.ts — add this branch yourselfWhat to know
- Env wiring is not shipped: add a branch to
src/lib/core/connectors/init.ts. - Review and wishlist have no REST surface in core — a custom module would be required.
Full guide with troubleshooting, store identity and per-service behaviour: docs/MAGENTO.md