Integration
Svelte Commerce on PrestaShop
The webservice API is the constraint: no customer login and no cart-to-order checkout flow.
Coverage
24 of 43 storefront services are wired to a real PrestaShop endpoint.
Env wiring is not shipped — you add the branch.
$ npm uninstall @misiki/litekart-connector
$ npm i @misiki/prestashop-connector
$ npm run devSetup
1 · Point the config at the connector
// kitcommerce.config.ts
export * as services from '@misiki/prestashop-connector'2 · Set the environment
# .env
PUBLIC_PRESTASHOP_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. - Auth throws — the webservice API exposes no storefront login.
- Translatable fields need
<language>children on write; echoing adisplay=fullread straight back silently blanks them.
Full guide with troubleshooting, store identity and per-service behaviour: docs/PRESTASHOP.md