Плагины Medusa
W
Wishlist
Alphabite's Medusa Wishlist Plugin
🧞♂️ Wishlist Plugin for Medusa
The Alphabite Wishlist Plugin is the most feature-complete wishlist system for MedusaJS. It supports both authenticated and guest users, multiple wishlists per user, and a full-featured SDK client for frontend integration.
This plugin ships with:
- 🔌 A fully typed JS SDK plugin
- 📭 A Postman collection
- ✅ Support for guest & authenticated customers
📚 Table of Contents
- ✨ Features
- 📦 Installation
- 🔧 Plugin Options
- 📦 API Endpoints
- 🧑💻 SDK Usage
- 🧪 Guest Wishlist Flow
- 🧩 Requirements
- 📭 Postman Collection
- 🤝 Contributing
✨ Features
- ✅ Multiple wishlists per customer
- ✅ Add/remove items to/from any wishlist
- ✅ Guest wishlist supported + transfer when registered
- ✅ Fully typed Medusa JS SDK integration with our SDK client
- ✅ Pagination and filtering built-in
📦 Installation
Install the plugin via npm:
npm install @alphabite/medusa-wishlist
In your , register the plugin:
const plugins = [{resolve: '@alphabite/medusa-wishlist',options: {// all are optional, read bellow about default valueswishlistFields: [],wishlistItemsFields: [],includeWishlistItems: true,includeWishlistItemsTake: 5,allowGuestWishlist: true,},},]
🔧 Plugin Options
Option | Type | Default | Description |
---|---|---|---|
Selectively include Medusa product or product variant fields on wishlist list/retrieve endpoints that have wishlist items included | |||
Selectively include Medusa product or product variant fields on wishlist items list/retrieve endpoints | |||
Automatically populate wishlist items in | |||
Limit number of items if is true | |||
Enables wishlist creation & usage without authentication (cookie-based) |
📦 API Endpoints
All endpoints are available under .
Method | Endpoint | Auth | Description |
---|---|---|---|
GET | ✅ | List wishlists for the current customer | |
POST | ➖ (optional) | Create a new wishlist | |
GET | ➖ (optional) | Retrieve a wishlist by ID | |
PUT | ✅ | Update wishlist metadata | |
DELETE | ✅ | Delete a wishlist | |
POST | ✅ | Transfer guest wishlist to logged-in user | |
GET | ➖ (optional) | Get items in a wishlist | |
POST | ➖ (optional) | Add an item to the wishlist | |
DELETE | ➖ (optional) | Remove an item from the wishlist |
🧑💻 SDK Usage
❗❗❗Read more about our Medusa compatible SDK here
import { AlphabiteMedusaClient, wishlistPlugin } from '@alphabite/sdk'const sdk = new AlphabiteMedusaClient({{baseUrl,debug: process.env.NODE_ENV === "development",publishableKey: process.env.NEXT_PUBLIC_MEDUSA_PUBLISHABLE_KEY,},[wishlistPlugin],{getAuthHeader: () => { return { authorization: `Bearer ${customerJwt}` } },}})// Create wishlistawait sdk.alphabite.wishlist.create({ name: 'My Sneakers' })// Add itemawait sdk.alphabite.wishlist.addItem({id: 'wishlist_id',product_variant_id: 'variant_id',})// List itemsconst { data } = await sdk.alphabite.wishlist.listItems({ id: 'wishlist_id' })
🧪 Guest Wishlist Flow
Guest wishlists work like guest carts:
- Create a wishlist (no auth required)
- Save the in a cookie
- Use that ID for listing/adding/removing items
- When the user signs up or logs in, call the endpoint to associate it:
await medusa.alphabite.wishlist.transfer({ id: wishlistId })
After that, the cookie is no longer needed.
🧩 Requirements
- Medusa v2.5.0+
- Works with both and
📭 Postman Collection
You’ll find the ready-to-import Postman collection at:
Use it to explore and test all endpoints interactively.
🤝 Contributing
We welcome issues, feedback, and PRs. Fork it, build it, improve it.
Let’s make commerce more personalized 🛍️