@mercurjs/docs 2.2.0-canary.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/content/blocks.mdx +209 -0
- package/content/learn/architecture.mdx +215 -0
- package/content/learn/attributes.mdx +89 -0
- package/content/learn/blocks.mdx +99 -0
- package/content/learn/commissions.mdx +175 -0
- package/content/learn/concepts.mdx +84 -0
- package/content/learn/installation.mdx +117 -0
- package/content/learn/introduction.mdx +71 -0
- package/content/learn/offers.mdx +78 -0
- package/content/learn/order-groups.mdx +114 -0
- package/content/learn/payouts.mdx +175 -0
- package/content/learn/product-requests.mdx +82 -0
- package/content/learn/products.mdx +79 -0
- package/content/learn/registry.mdx +155 -0
- package/content/learn/seller-members.mdx +62 -0
- package/content/learn/sellers.mdx +118 -0
- package/content/migration/from-1-x-to-2-0.mdx +152 -0
- package/content/migration/from-2-0-to-2-1.mdx +105 -0
- package/content/migration/overview.mdx +58 -0
- package/content/references/api/admin/commission-rates/batch-commission-rules.mdx +70 -0
- package/content/references/api/admin/commission-rates/create-commission-rate.mdx +95 -0
- package/content/references/api/admin/commission-rates/delete-commission-rate.mdx +40 -0
- package/content/references/api/admin/commission-rates/list-commission-rates.mdx +92 -0
- package/content/references/api/admin/commission-rates/retrieve-commission-rate.mdx +70 -0
- package/content/references/api/admin/commission-rates/update-commission-rate.mdx +84 -0
- package/content/references/api/admin/members/list-members.mdx +61 -0
- package/content/references/api/admin/offers/batch-create-offers.mdx +130 -0
- package/content/references/api/admin/offers/delete-offer.mdx +40 -0
- package/content/references/api/admin/offers/list-offers.mdx +106 -0
- package/content/references/api/admin/offers/retrieve-offer.mdx +82 -0
- package/content/references/api/admin/order-groups/list-order-groups.mdx +77 -0
- package/content/references/api/admin/order-groups/retrieve-order-group.mdx +56 -0
- package/content/references/api/admin/orders/get-order-commission-lines.mdx +65 -0
- package/content/references/api/admin/orders/get-order-order-group.mdx +56 -0
- package/content/references/api/admin/orders/list-orders.mdx +79 -0
- package/content/references/api/admin/payouts/list-payouts.mdx +75 -0
- package/content/references/api/admin/payouts/retrieve-payout.mdx +62 -0
- package/content/references/api/admin/product-attributes/create-attribute-value.mdx +76 -0
- package/content/references/api/admin/product-attributes/create-product-attribute.mdx +99 -0
- package/content/references/api/admin/product-attributes/delete-attribute-value.mdx +52 -0
- package/content/references/api/admin/product-attributes/delete-product-attribute.mdx +40 -0
- package/content/references/api/admin/product-attributes/list-product-attributes.mdx +91 -0
- package/content/references/api/admin/product-attributes/retrieve-product-attribute.mdx +81 -0
- package/content/references/api/admin/product-attributes/update-attribute-value.mdx +66 -0
- package/content/references/api/admin/product-attributes/update-product-attribute.mdx +76 -0
- package/content/references/api/admin/product-changes/cancel-product-change.mdx +68 -0
- package/content/references/api/admin/product-changes/confirm-product-change.mdx +47 -0
- package/content/references/api/admin/products/batch-product-attributes.mdx +96 -0
- package/content/references/api/admin/products/confirm-product.mdx +59 -0
- package/content/references/api/admin/products/create-product-variant.mdx +78 -0
- package/content/references/api/admin/products/create-product.mdx +169 -0
- package/content/references/api/admin/products/delete-product-variant.mdx +48 -0
- package/content/references/api/admin/products/delete-product.mdx +40 -0
- package/content/references/api/admin/products/list-product-variants.mdx +91 -0
- package/content/references/api/admin/products/list-products.mdx +109 -0
- package/content/references/api/admin/products/preview-product.mdx +78 -0
- package/content/references/api/admin/products/reject-product.mdx +59 -0
- package/content/references/api/admin/products/request-product-changes.mdx +59 -0
- package/content/references/api/admin/products/retrieve-product-variant.mdx +73 -0
- package/content/references/api/admin/products/retrieve-product.mdx +96 -0
- package/content/references/api/admin/products/set-product-sellers.mdx +47 -0
- package/content/references/api/admin/products/update-product-variant.mdx +89 -0
- package/content/references/api/admin/products/update-product.mdx +133 -0
- package/content/references/api/admin/sellers/add-seller-member.mdx +63 -0
- package/content/references/api/admin/sellers/approve-seller.mdx +54 -0
- package/content/references/api/admin/sellers/create-seller.mdx +100 -0
- package/content/references/api/admin/sellers/delete-member-invite.mdx +42 -0
- package/content/references/api/admin/sellers/delete-professional-details.mdx +52 -0
- package/content/references/api/admin/sellers/invite-seller-member.mdx +63 -0
- package/content/references/api/admin/sellers/list-member-invites.mdx +71 -0
- package/content/references/api/admin/sellers/list-seller-members.mdx +71 -0
- package/content/references/api/admin/sellers/list-seller-products.mdx +85 -0
- package/content/references/api/admin/sellers/list-sellers.mdx +96 -0
- package/content/references/api/admin/sellers/remove-seller-member.mdx +42 -0
- package/content/references/api/admin/sellers/resend-member-invite.mdx +55 -0
- package/content/references/api/admin/sellers/retrieve-seller.mdx +81 -0
- package/content/references/api/admin/sellers/suspend-seller.mdx +60 -0
- package/content/references/api/admin/sellers/terminate-seller.mdx +60 -0
- package/content/references/api/admin/sellers/unsuspend-seller.mdx +52 -0
- package/content/references/api/admin/sellers/unterminate-seller.mdx +52 -0
- package/content/references/api/admin/sellers/update-seller.mdx +83 -0
- package/content/references/api/admin/sellers/upsert-payment-details.mdx +88 -0
- package/content/references/api/admin/sellers/upsert-professional-details.mdx +78 -0
- package/content/references/api/admin/sellers/upsert-seller-address.mdx +91 -0
- package/content/references/api/admin.mdx +134 -0
- package/content/references/api/conventions.mdx +109 -0
- package/content/references/api/store/carts/add-line-item.mdx +115 -0
- package/content/references/api/store/carts/add-shipping-methods.mdx +84 -0
- package/content/references/api/store/carts/apply-promotions.mdx +83 -0
- package/content/references/api/store/carts/complete-cart.mdx +98 -0
- package/content/references/api/store/offers/list-offers.mdx +161 -0
- package/content/references/api/store/offers/retrieve-offer.mdx +112 -0
- package/content/references/api/store/order-groups/list-order-groups.mdx +105 -0
- package/content/references/api/store/order-groups/retrieve-order-group.mdx +78 -0
- package/content/references/api/store/product-attributes/list-product-attributes.mdx +134 -0
- package/content/references/api/store/product-attributes/retrieve-product-attribute.mdx +78 -0
- package/content/references/api/store/product-categories/list-product-categories.mdx +126 -0
- package/content/references/api/store/product-categories/retrieve-product-category.mdx +79 -0
- package/content/references/api/store/products/list-products.mdx +184 -0
- package/content/references/api/store/products/retrieve-product.mdx +107 -0
- package/content/references/api/store/search/search.mdx +136 -0
- package/content/references/api/store/sellers/list-sellers.mdx +105 -0
- package/content/references/api/store/sellers/retrieve-seller.mdx +62 -0
- package/content/references/api/store/shipping-options/list-shipping-options.mdx +74 -0
- package/content/references/api/store.mdx +67 -0
- package/content/references/api/vendor/members/accept-member-invite.mdx +65 -0
- package/content/references/api/vendor/members/retrieve-current-member.mdx +51 -0
- package/content/references/api/vendor/members/update-current-member.mdx +70 -0
- package/content/references/api/vendor/offers/batch-create-offers.mdx +123 -0
- package/content/references/api/vendor/offers/batch-offer-inventory-items.mdx +103 -0
- package/content/references/api/vendor/offers/create-offer.mdx +141 -0
- package/content/references/api/vendor/offers/delete-offer.mdx +51 -0
- package/content/references/api/vendor/offers/list-offers.mdx +125 -0
- package/content/references/api/vendor/offers/retrieve-offer.mdx +74 -0
- package/content/references/api/vendor/offers/update-offer.mdx +82 -0
- package/content/references/api/vendor/orders/cancel-fulfillment.mdx +63 -0
- package/content/references/api/vendor/orders/cancel-order.mdx +56 -0
- package/content/references/api/vendor/orders/complete-order.mdx +55 -0
- package/content/references/api/vendor/orders/create-fulfillment.mdx +76 -0
- package/content/references/api/vendor/orders/create-shipment.mdx +99 -0
- package/content/references/api/vendor/orders/get-order-commission-lines.mdx +66 -0
- package/content/references/api/vendor/orders/list-order-changes.mdx +75 -0
- package/content/references/api/vendor/orders/list-orders.mdx +103 -0
- package/content/references/api/vendor/orders/mark-fulfillment-delivered.mdx +62 -0
- package/content/references/api/vendor/orders/preview-order.mdx +65 -0
- package/content/references/api/vendor/orders/retrieve-order.mdx +84 -0
- package/content/references/api/vendor/payout-accounts/create-onboarding.mdx +68 -0
- package/content/references/api/vendor/payout-accounts/create-payout-account.mdx +59 -0
- package/content/references/api/vendor/payout-accounts/retrieve-payout-account-by-id.mdx +60 -0
- package/content/references/api/vendor/payout-accounts/retrieve-payout-account.mdx +77 -0
- package/content/references/api/vendor/payouts/list-payouts.mdx +90 -0
- package/content/references/api/vendor/payouts/retrieve-payout.mdx +63 -0
- package/content/references/api/vendor/product-attributes/list-product-attributes.mdx +135 -0
- package/content/references/api/vendor/product-attributes/retrieve-product-attribute.mdx +71 -0
- package/content/references/api/vendor/product-variants/list-variants.mdx +136 -0
- package/content/references/api/vendor/products/batch-product-attributes.mdx +104 -0
- package/content/references/api/vendor/products/cancel-product-change.mdx +62 -0
- package/content/references/api/vendor/products/create-product-variant.mdx +92 -0
- package/content/references/api/vendor/products/create-product.mdx +197 -0
- package/content/references/api/vendor/products/delete-product-variant.mdx +68 -0
- package/content/references/api/vendor/products/delete-product.mdx +62 -0
- package/content/references/api/vendor/products/list-product-variants.mdx +114 -0
- package/content/references/api/vendor/products/list-products.mdx +163 -0
- package/content/references/api/vendor/products/preview-product.mdx +61 -0
- package/content/references/api/vendor/products/retrieve-product-variant.mdx +76 -0
- package/content/references/api/vendor/products/retrieve-product.mdx +69 -0
- package/content/references/api/vendor/products/update-product-variant.mdx +104 -0
- package/content/references/api/vendor/products/update-product.mdx +148 -0
- package/content/references/api/vendor/sellers/create-seller.mdx +150 -0
- package/content/references/api/vendor/sellers/delete-professional-details.mdx +54 -0
- package/content/references/api/vendor/sellers/invite-seller-member.mdx +67 -0
- package/content/references/api/vendor/sellers/list-member-invites.mdx +82 -0
- package/content/references/api/vendor/sellers/list-seller-members.mdx +80 -0
- package/content/references/api/vendor/sellers/list-sellers.mdx +71 -0
- package/content/references/api/vendor/sellers/remove-seller-member.mdx +48 -0
- package/content/references/api/vendor/sellers/retrieve-current-seller-member.mdx +59 -0
- package/content/references/api/vendor/sellers/retrieve-current-seller.mdx +69 -0
- package/content/references/api/vendor/sellers/select-seller.mdx +44 -0
- package/content/references/api/vendor/sellers/update-current-seller.mdx +108 -0
- package/content/references/api/vendor/sellers/update-member-role.mdx +51 -0
- package/content/references/api/vendor/sellers/upsert-payment-details.mdx +74 -0
- package/content/references/api/vendor/sellers/upsert-professional-details.mdx +70 -0
- package/content/references/api/vendor/sellers/upsert-seller-address.mdx +81 -0
- package/content/references/api/vendor.mdx +150 -0
- package/content/references/configuration.mdx +155 -0
- package/content/references/modules/commission.mdx +106 -0
- package/content/references/modules/custom-fields.mdx +45 -0
- package/content/references/modules/media.mdx +55 -0
- package/content/references/modules/offer.mdx +64 -0
- package/content/references/modules/payout.mdx +121 -0
- package/content/references/modules/product-attribute.mdx +111 -0
- package/content/references/modules/product-edit.mdx +80 -0
- package/content/references/modules/search.mdx +112 -0
- package/content/references/modules/seller.mdx +175 -0
- package/content/references/overview.mdx +70 -0
- package/content/references/workflows/cart/add-seller-shipping-method-to-cart.mdx +44 -0
- package/content/references/workflows/cart/complete-cart-with-split-orders.mdx +36 -0
- package/content/references/workflows/cart/list-seller-shipping-options-for-cart.mdx +39 -0
- package/content/references/workflows/cart/update-cart-seller-promotions.mdx +42 -0
- package/content/references/workflows/commission/batch-commission-rules.mdx +45 -0
- package/content/references/workflows/commission/create-commission-rates.mdx +41 -0
- package/content/references/workflows/commission/delete-commission-rates.mdx +34 -0
- package/content/references/workflows/commission/refresh-order-commission-lines.mdx +30 -0
- package/content/references/workflows/commission/update-commission-rates.mdx +35 -0
- package/content/references/workflows/media/set-category-images.mdx +41 -0
- package/content/references/workflows/media/set-collection-images.mdx +41 -0
- package/content/references/workflows/member/accept-member-invite.mdx +33 -0
- package/content/references/workflows/member/add-seller-member.mdx +30 -0
- package/content/references/workflows/member/create-member-invites.mdx +34 -0
- package/content/references/workflows/member/delete-member-invite.mdx +24 -0
- package/content/references/workflows/member/remove-seller-member.mdx +28 -0
- package/content/references/workflows/member/resend-member-invite.mdx +28 -0
- package/content/references/workflows/member/update-member-role.mdx +28 -0
- package/content/references/workflows/member/update-member.mdx +35 -0
- package/content/references/workflows/offer/batch-offer-inventory-items.mdx +58 -0
- package/content/references/workflows/offer/create-offers.mdx +63 -0
- package/content/references/workflows/offer/delete-offers.mdx +35 -0
- package/content/references/workflows/offer/update-offers.mdx +51 -0
- package/content/references/workflows/order/cancel-order-fulfillment.mdx +34 -0
- package/content/references/workflows/order/confirm-claim-request.mdx +25 -0
- package/content/references/workflows/order/confirm-exchange-request.mdx +25 -0
- package/content/references/workflows/order/confirm-order-edit-request.mdx +25 -0
- package/content/references/workflows/order/confirm-return-receive.mdx +25 -0
- package/content/references/workflows/order/create-order-fulfillment.mdx +45 -0
- package/content/references/workflows/order-group/get-order-group-detail.mdx +29 -0
- package/content/references/workflows/order-group/get-order-groups-list.mdx +36 -0
- package/content/references/workflows/overview.mdx +72 -0
- package/content/references/workflows/payout/create-onboarding.mdx +36 -0
- package/content/references/workflows/payout/create-payout-account.mdx +33 -0
- package/content/references/workflows/payout/create-payout.mdx +30 -0
- package/content/references/workflows/payout/process-payout-for-webhook.mdx +32 -0
- package/content/references/workflows/product/confirm-products.mdx +46 -0
- package/content/references/workflows/product/create-products.mdx +63 -0
- package/content/references/workflows/product/link-sellers-to-product-category.mdx +40 -0
- package/content/references/workflows/product/link-sellers-to-product.mdx +40 -0
- package/content/references/workflows/product/reject-product.mdx +46 -0
- package/content/references/workflows/product/request-product-change.mdx +46 -0
- package/content/references/workflows/product-attribute/add-product-attributes-to-product.mdx +49 -0
- package/content/references/workflows/product-attribute/create-and-link-product-attributes-to-product.mdx +46 -0
- package/content/references/workflows/product-attribute/create-product-attribute-values.mdx +43 -0
- package/content/references/workflows/product-attribute/create-product-attributes.mdx +56 -0
- package/content/references/workflows/product-attribute/delete-product-attribute-values.mdx +30 -0
- package/content/references/workflows/product-attribute/delete-product-attributes.mdx +30 -0
- package/content/references/workflows/product-attribute/remove-product-attributes-from-product.mdx +29 -0
- package/content/references/workflows/product-attribute/update-product-attribute-values.mdx +44 -0
- package/content/references/workflows/product-attribute/update-product-attributes-on-product.mdx +41 -0
- package/content/references/workflows/product-attribute/update-product-attributes.mdx +48 -0
- package/content/references/workflows/product-attribute/upsert-product-attribute-values.mdx +43 -0
- package/content/references/workflows/product-edit/auto-confirm-product-change.mdx +39 -0
- package/content/references/workflows/product-edit/cancel-product-change.mdx +49 -0
- package/content/references/workflows/product-edit/confirm-product-change.mdx +57 -0
- package/content/references/workflows/product-edit/create-product-change.mdx +72 -0
- package/content/references/workflows/product-edit/reject-product-change.mdx +54 -0
- package/content/references/workflows/product-edit/stage-product-change.mdx +75 -0
- package/content/references/workflows/seller/approve-seller.mdx +34 -0
- package/content/references/workflows/seller/create-seller-account.mdx +59 -0
- package/content/references/workflows/seller/create-seller-defaults.mdx +22 -0
- package/content/references/workflows/seller/create-sellers.mdx +65 -0
- package/content/references/workflows/seller/delete-seller-professional-details.mdx +37 -0
- package/content/references/workflows/seller/delete-sellers.mdx +24 -0
- package/content/references/workflows/seller/invite-seller.mdx +28 -0
- package/content/references/workflows/seller/suspend-seller.mdx +35 -0
- package/content/references/workflows/seller/terminate-seller.mdx +35 -0
- package/content/references/workflows/seller/unsuspend-seller.mdx +34 -0
- package/content/references/workflows/seller/unterminate-seller.mdx +34 -0
- package/content/references/workflows/seller/update-seller-address.mdx +55 -0
- package/content/references/workflows/seller/update-seller-payment-details.mdx +52 -0
- package/content/references/workflows/seller/update-seller-professional-details.mdx +48 -0
- package/content/references/workflows/seller/update-sellers.mdx +57 -0
- package/content/resources/ai/llms.mdx +74 -0
- package/content/resources/ai/mcp.mdx +152 -0
- package/content/resources/ai/overview.mdx +97 -0
- package/content/resources/customization/custom-fields.mdx +182 -0
- package/content/resources/customization/extend-a-workflow.mdx +39 -0
- package/content/resources/customization/extending-panels.mdx +309 -0
- package/content/resources/deployment/medusa-cloud.mdx +167 -0
- package/content/resources/integrations/notifications.mdx +39 -0
- package/content/resources/integrations/search.mdx +122 -0
- package/content/resources/integrations/stripe-connect.mdx +395 -0
- package/content/resources/tutorials/add-a-block.mdx +74 -0
- package/content/resources/tutorials/attributes-and-variant-axes.mdx +111 -0
- package/content/resources/tutorials/build-a-block.mdx +134 -0
- package/content/resources/tutorials/configure-commissions.mdx +127 -0
- package/content/resources/tutorials/custom-api-route.mdx +142 -0
- package/content/resources/tutorials/custom-panel-page.mdx +78 -0
- package/content/resources/tutorials/first-marketplace.mdx +45 -0
- package/content/resources/tutorials/handle-product-requests.mdx +80 -0
- package/content/resources/tutorials/import-export-products.mdx +96 -0
- package/content/resources/tutorials/master-products-and-offers.mdx +89 -0
- package/content/resources/tutorials/recompose-a-page.mdx +129 -0
- package/content/resources/tutorials/replace-panel-components.mdx +116 -0
- package/content/resources/tutorials/seller-payouts-stripe.mdx +89 -0
- package/content/telemetry.mdx +67 -0
- package/content/tools/api-client.mdx +155 -0
- package/content/tools/cli.mdx +196 -0
- package/content/tools/dashboard-sdk.mdx +35 -0
- package/content/user-guide/admin/overview.mdx +23 -0
- package/content/user-guide/admin/stores.mdx +193 -0
- package/content/user-guide/vendor/overview.mdx +23 -0
- package/content/user-guide/vendor/stores.mdx +209 -0
- package/llms.txt +307 -0
- package/package.json +33 -0
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Store in Mercur Vendor Panel"
|
|
3
|
+
sidebarTitle: "Store"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
This guide explains how to manage store in the Mercur Vendor Panel.
|
|
7
|
+
|
|
8
|
+
## Store Set Up
|
|
9
|
+
|
|
10
|
+
You can set up a store in Mercur in three ways:
|
|
11
|
+
|
|
12
|
+
1. Admin Invitation: The admin invites you to join the platform and set up your first store.
|
|
13
|
+
2. Vendor Request: You create a new store in your panel, which the admin then confirms.
|
|
14
|
+
3. Vendor Self-Registration. When enabled, you can apply to join the platform through the storefront or other available entry points.
|
|
15
|
+
|
|
16
|
+
### Admin Invitation
|
|
17
|
+
|
|
18
|
+
Once the admin creates the store and invites you, you receive an email with a link to join as the store's admin. After accepting the invitation, you are redirected to the setup page, where you enter your details and set a password. Once completed, click “Continue” to start onboarding.
|
|
19
|
+
|
|
20
|
+
.png)
|
|
21
|
+
|
|
22
|
+
The onboarding setup is customizable depending on marketplace needs and may include:
|
|
23
|
+
|
|
24
|
+
- Store Details
|
|
25
|
+
- Address
|
|
26
|
+
- Company Details
|
|
27
|
+
- Payment Details
|
|
28
|
+
|
|
29
|
+
.png)
|
|
30
|
+
|
|
31
|
+
Depending on the marketplace configuration, you need to complete all required steps during onboarding or later in the store profile. The “Complete profile” block shows any missing information required by the marketplace. Once all required information is added, the block disappears.
|
|
32
|
+
|
|
33
|
+
.png)
|
|
34
|
+
|
|
35
|
+
### Vendor Request
|
|
36
|
+
|
|
37
|
+
A vendor can have multiple stores in Mercur. If you already have one, you can create another.
|
|
38
|
+
|
|
39
|
+
To create a store:
|
|
40
|
+
|
|
41
|
+
1. Click the store name in the upper left corner.
|
|
42
|
+
2. A menu appears showing your available stores, with the active one selected.
|
|
43
|
+
3. Click the “Add new store” button.
|
|
44
|
+
4. This opens a new page for store setup. The setup is customizable based on marketplace needs and may include:
|
|
45
|
+
- Store Details
|
|
46
|
+
- Address
|
|
47
|
+
- Company Details
|
|
48
|
+
- Payment Details
|
|
49
|
+
|
|
50
|
+
After creating the store, you are redirected to the store details page with a "Pending" status.
|
|
51
|
+
|
|
52
|
+
Depending on the marketplace setup, a “Complete profile” block may appear showing any missing information required by the marketplace. Once all required information is added, the block disappears.
|
|
53
|
+
|
|
54
|
+
<Frame>
|
|
55
|
+
.png)
|
|
56
|
+
</Frame>
|
|
57
|
+
|
|
58
|
+
### Vendor Self-Registration
|
|
59
|
+
|
|
60
|
+
When the marketplace admin enables self-registration, you can apply to join the platform through the storefront or other entry points. You are then redirected to the registration page to set up an admin account and create the first store.
|
|
61
|
+
|
|
62
|
+
After creating the store, you are redirected to the store details page with a "Pending" status.
|
|
63
|
+
|
|
64
|
+
Depending on the marketplace setup, a “Complete profile” block may appear showing any missing information required by the marketplace. Once all required information is added, the block disappears.
|
|
65
|
+
|
|
66
|
+
.png)
|
|
67
|
+
|
|
68
|
+
## Store Details
|
|
69
|
+
|
|
70
|
+
To view store details:
|
|
71
|
+
|
|
72
|
+
1. Go to “Settings” in the sidebar.
|
|
73
|
+
2. Go to “Store” in the sidebar.
|
|
74
|
+
|
|
75
|
+
This opens the store details page. Here, you can view and edit store details, address, company details, payment details, time off.
|
|
76
|
+
|
|
77
|
+
.png)
|
|
78
|
+
|
|
79
|
+
### Edit Store Details
|
|
80
|
+
|
|
81
|
+
To edit store details:
|
|
82
|
+
|
|
83
|
+
1. Go to “Settings” in the sidebar.
|
|
84
|
+
2. Go to “Store” in the sidebar.
|
|
85
|
+
3. Click the icon in the section's header.
|
|
86
|
+
4. Choose “Edit” from the dropdown.
|
|
87
|
+
5. In the side window that opens, you can edit the store:
|
|
88
|
+
- Name
|
|
89
|
+
- Description
|
|
90
|
+
- Handle
|
|
91
|
+
- Email
|
|
92
|
+
- Phone
|
|
93
|
+
- Website
|
|
94
|
+
- Media. You can add logo and banner. This media will be visible on the storefront.
|
|
95
|
+
6. Once you’re done, click the “Save” button.
|
|
96
|
+
|
|
97
|
+
<Warning>
|
|
98
|
+
A vendor can have only one currency per store. Once set, the vendor cannot change the currency.
|
|
99
|
+
</Warning>
|
|
100
|
+
|
|
101
|
+
.png)
|
|
102
|
+
|
|
103
|
+
### Edit Store Address
|
|
104
|
+
|
|
105
|
+
To edit store address:
|
|
106
|
+
|
|
107
|
+
1. Go to “Settings” in the sidebar.
|
|
108
|
+
2. Go to “Store” in the sidebar.
|
|
109
|
+
3. Click the icon in the “Address” header.
|
|
110
|
+
4. Choose “Edit” from the dropdown.
|
|
111
|
+
5. In the side window that opens, you can edit:
|
|
112
|
+
- Name
|
|
113
|
+
- Address
|
|
114
|
+
- Apartment, suite, etc.
|
|
115
|
+
- Postal Code
|
|
116
|
+
- City
|
|
117
|
+
- Country
|
|
118
|
+
- State
|
|
119
|
+
6. Once you're done, click the “Save” button.
|
|
120
|
+
|
|
121
|
+
.png)
|
|
122
|
+
|
|
123
|
+
### Edit Store Company Details
|
|
124
|
+
|
|
125
|
+
To edit company details:
|
|
126
|
+
|
|
127
|
+
1. Go to “Settings” in the sidebar.
|
|
128
|
+
2. Go to “Store” in the sidebar.
|
|
129
|
+
3. Click the icon in the “Company Details” header.
|
|
130
|
+
4. Choose “Edit” from the dropdown.
|
|
131
|
+
5. In the side window that opens, you can edit:
|
|
132
|
+
1. Company
|
|
133
|
+
2. Registration number
|
|
134
|
+
3. Tax ID
|
|
135
|
+
6. Once you're done, click the “Save” button.
|
|
136
|
+
|
|
137
|
+
.png)
|
|
138
|
+
|
|
139
|
+
### Edit Store Payment Details
|
|
140
|
+
|
|
141
|
+
To edit payment details:
|
|
142
|
+
|
|
143
|
+
1. Go to “Settings” in the sidebar.
|
|
144
|
+
2. Go to “Store” in the sidebar.
|
|
145
|
+
3. Click the icon in the “Payment Details” header.
|
|
146
|
+
4. Choose “Edit” from the dropdown.
|
|
147
|
+
5. In the side window, you can edit payment details:
|
|
148
|
+
1. For all countries except the United States, provide the following details based on your needs:
|
|
149
|
+
- Account name
|
|
150
|
+
- IBAN
|
|
151
|
+
- Account number
|
|
152
|
+
- SWIFT/BIC
|
|
153
|
+
2. For United States:
|
|
154
|
+
- Account name
|
|
155
|
+
- Account number
|
|
156
|
+
- ACH routing number
|
|
157
|
+
6. Once you're done, click the “Save” button.
|
|
158
|
+
|
|
159
|
+
.png)
|
|
160
|
+
|
|
161
|
+
## Time Off
|
|
162
|
+
|
|
163
|
+
In the “Time off” section, you can manage your store's time off. It specifies when the store will be unavailable to receive orders. You can specify one time off period and add a note. During this period, the store’s products will not be visible on the storefront.
|
|
164
|
+
|
|
165
|
+
<Frame>
|
|
166
|
+
.png)
|
|
167
|
+
</Frame>
|
|
168
|
+
|
|
169
|
+
### Create Time Off
|
|
170
|
+
|
|
171
|
+
To create a time off:
|
|
172
|
+
|
|
173
|
+
1. Go to “Settings” in the sidebar.
|
|
174
|
+
2. Go to “Store” in the sidebar.
|
|
175
|
+
3. Click the “Create” button in the “Time off” section.
|
|
176
|
+
4. In the side window, you can enter:
|
|
177
|
+
- First day
|
|
178
|
+
- Last day. If you leave this field empty, the store will be closed indefinitely.
|
|
179
|
+
- Note
|
|
180
|
+
5. Once you're done, click the “Save” button.
|
|
181
|
+
|
|
182
|
+
Once time off expires, it will disappear.
|
|
183
|
+
|
|
184
|
+

|
|
185
|
+
|
|
186
|
+
### Edit Time Off
|
|
187
|
+
|
|
188
|
+
To edit a time off:
|
|
189
|
+
|
|
190
|
+
1. Go to “Settings” in the sidebar.
|
|
191
|
+
2. Go to “Store” in the sidebar.
|
|
192
|
+
3. Click the icon in the time off row.
|
|
193
|
+
4. Choose “Edit” from the dropdown.
|
|
194
|
+
5. In the side window, you can edit:
|
|
195
|
+
- First day
|
|
196
|
+
- Last day. If you leave this field empty, the store will be closed indefinitely.
|
|
197
|
+
- Note
|
|
198
|
+
6. Once you're done, click the “Save” button.
|
|
199
|
+
|
|
200
|
+

|
|
201
|
+
|
|
202
|
+
### Delete Time Off
|
|
203
|
+
|
|
204
|
+
To delete a time off:
|
|
205
|
+
|
|
206
|
+
1. Go to “Settings” in the sidebar.
|
|
207
|
+
2. Go to “Store” in the sidebar.
|
|
208
|
+
3. Click the icon in the time off row.
|
|
209
|
+
4. Choose “Delete” from the dropdown.
|
package/llms.txt
ADDED
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
# Mercur Documentation
|
|
2
|
+
|
|
3
|
+
Bundled documentation for the Mercur marketplace framework. AI agents:
|
|
4
|
+
read this index, then open the referenced file under `content/` for the
|
|
5
|
+
full page before implementing anything. Paths are relative to this
|
|
6
|
+
package (`node_modules/@mercurjs/docs/`).
|
|
7
|
+
|
|
8
|
+
## Learn — concepts and getting started
|
|
9
|
+
|
|
10
|
+
- [Overview](content/learn/architecture.mdx) — How Mercur is built — architecture, technology stack, and how the pieces fit together.
|
|
11
|
+
- [Product Attributes](content/learn/attributes.mdx) — Typed, filterable product attributes on top of Medusa's native product options — including variant axes shared across the catalog.
|
|
12
|
+
- [Blocks](content/learn/blocks.mdx) — Self-contained pieces of marketplace functionality that get copied into your project as source code.
|
|
13
|
+
- [Commission](content/learn/commissions.mdx) — How marketplace commissions work in Mercur — rates, rules, the matching algorithm, and commission lines.
|
|
14
|
+
- [Concepts](content/learn/concepts.mdx) — Core concepts behind Mercur — from the Medusa foundation to blocks, panels, and the registry.
|
|
15
|
+
- [Installation](content/learn/installation.mdx) — Install Mercur and set up your marketplace project.
|
|
16
|
+
- [Introduction](content/learn/introduction.mdx) — Mercur is an open-source marketplace platform built on MedusaJS with a block-based architecture.
|
|
17
|
+
- [Offers](content/learn/offers.mdx) — An offer is a seller's sellable listing against a master product — their own SKU, price, inventory, and shipping.
|
|
18
|
+
- [Order Groups](content/learn/order-groups.mdx) — How multi-seller checkout creates order groups — the container that ties a single cart to multiple seller orders.
|
|
19
|
+
- [Payout](content/learn/payouts.mdx) — How seller payouts work in Mercur — accounts, onboarding, payment capture, and the transfer pipeline.
|
|
20
|
+
- [Product Requests & Approvals](content/learn/product-requests.mdx) — How vendor product submissions and edits are reviewed — the ProductChange pipeline that keeps a shared catalog under operator control.
|
|
21
|
+
- [Products](content/learn/products.mdx) — Mercur products are master products — a single shared catalog for the whole marketplace, with selling eligibility instead of ownership.
|
|
22
|
+
- [Registry](content/learn/registry.mdx) — Create, build, and host your own block registry.
|
|
23
|
+
- [Seller Members](content/learn/seller-members.mdx) — Multi-user seller accounts — member data, team management, store switching, and access rules.
|
|
24
|
+
- [Seller](content/learn/sellers.mdx) — The central marketplace actor — seller profile, lifecycle, registration flows, and business rules.
|
|
25
|
+
|
|
26
|
+
## Resources — tutorials, integrations, deployment
|
|
27
|
+
|
|
28
|
+
- [LLMs](content/resources/ai/llms.mdx) — Feed Mercur documentation directly to LLMs for accurate, context-aware assistance.
|
|
29
|
+
- [MCP Server](content/resources/ai/mcp.mdx) — Connect your AI environment to Mercur documentation via Model Context Protocol.
|
|
30
|
+
- [Building with AI](content/resources/ai/overview.mdx) — Mercur ships version-matched docs inside your project so AI coding agents build from accurate APIs instead of stale training data.
|
|
31
|
+
- [Custom Fields](content/resources/customization/custom-fields.mdx) — Extend any Medusa entity with additional fields without modifying core code.
|
|
32
|
+
- [Extend a workflow](content/resources/customization/extend-a-workflow.mdx) — Inject custom logic into an existing Mercur workflow through hooks — without rewriting it.
|
|
33
|
+
- [Extending Panels](content/resources/customization/extending-panels.mdx) — Add pages, customize navigation, branding, and replace components in the admin and vendor panels.
|
|
34
|
+
- [Medusa Cloud deployment](content/resources/deployment/medusa-cloud.mdx) — Deploy Mercur — backend, admin panel, and vendor panel — on Medusa Cloud.
|
|
35
|
+
- [Notifications](content/resources/integrations/notifications.mdx) — Send transactional emails and marketplace notifications with Resend.
|
|
36
|
+
- [Search](content/resources/integrations/search.mdx) — Mercur's provider-agnostic search module — zero-infrastructure Orama by default, swappable for Algolia, Meilisearch, or your own provider.
|
|
37
|
+
- [Stripe Connect Integration](content/resources/integrations/stripe-connect.mdx) — Set up Stripe Connect for marketplace payments and seller payouts — from Stripe Dashboard configuration to the full end-to-end payment lifecycle.
|
|
38
|
+
- [Add a feature with a block](content/resources/tutorials/add-a-block.mdx) — Install the reviews block end-to-end and see it live across the admin, vendor, and storefront surfaces.
|
|
39
|
+
- [Create attributes and variant axes](content/resources/tutorials/attributes-and-variant-axes.mdx) — Build the attribute catalog: a filterable attribute, a variant axis backed by a native product option, and an inline product-scoped axis.
|
|
40
|
+
- [Build your own block](content/resources/tutorials/build-a-block.mdx) — Author a reusable feature as a block — backend, panel UI, and docs — build it into a registry, and install it into any Mercur project.
|
|
41
|
+
- [Configure commissions](content/resources/tutorials/configure-commissions.mdx) — Set the global commission, add scoped rules for categories and sellers, and confirm the right rate lands on an order.
|
|
42
|
+
- [Add a custom API route](content/resources/tutorials/custom-api-route.mdx) — Create a backend endpoint, regenerate the route map, and call it from a panel page with full type safety end to end.
|
|
43
|
+
- [Add a custom panel page](content/resources/tutorials/custom-panel-page.mdx) — Add a page to the vendor portal with file-based routing — the dashboard SDK wires it in automatically.
|
|
44
|
+
- [Build your first marketplace](content/resources/tutorials/first-marketplace.mdx) — Go end-to-end: create a project, approve a seller, list a product, place a split order, and watch a payout settle.
|
|
45
|
+
- [Handle product requests](content/resources/tutorials/handle-product-requests.mdx) — Walk a vendor's product submission and a follow-up edit through the operator review pipeline — confirm, decline, or send back.
|
|
46
|
+
- [Import and export products via CSV](content/resources/tutorials/import-export-products.mdx) — Install the product-import-export block and give vendors CSV import and export drawers on their product list.
|
|
47
|
+
- [Work with master products and offers](content/resources/tutorials/master-products-and-offers.mdx) — Two sellers compete on one catalog entry: publish a master product, create competing offers, and read per-offer prices from the Store API.
|
|
48
|
+
- [Re-compose a built-in page](content/resources/tutorials/recompose-a-page.mdx) — Override a built-in panel page by dropping a route file at the same path and re-composing its compound component slots.
|
|
49
|
+
- [Replace panel components](content/resources/tutorials/replace-panel-components.mdx) — Swap the sidebar, topbar actions, or store setup screen for your own components through dashboard SDK configuration.
|
|
50
|
+
- [Set up seller payouts](content/resources/tutorials/seller-payouts-stripe.mdx) — Take a seller from zero to paid: Stripe Connect onboarding, an order through fulfillment, capture, and the automated payout.
|
|
51
|
+
|
|
52
|
+
## Tools — CLI, API client, dashboard SDK
|
|
53
|
+
|
|
54
|
+
- [API Client](content/tools/api-client.mdx) — Type-safe client for consuming Mercur APIs.
|
|
55
|
+
- [CLI](content/tools/cli.mdx) — Install blocks, scaffold projects, and generate types from the command line.
|
|
56
|
+
- [Dashboard SDK](content/tools/dashboard-sdk.mdx) — The Vite plugin that powers admin and vendor panel extension — file-based routing, virtual modules, and block resolution.
|
|
57
|
+
|
|
58
|
+
## References — modules, HTTP API, configuration
|
|
59
|
+
|
|
60
|
+
- [Admin API](content/references/api/admin.mdx) — Operator routes under /admin/* — sellers, commissions, payouts, master catalog, and marketplace-wide orders.
|
|
61
|
+
- [Batch Commission Rules](content/references/api/admin/commission-rates/batch-commission-rules.mdx) — Create, update, and delete a commission rate's rules in one request.
|
|
62
|
+
- [Create Commission Rate](content/references/api/admin/commission-rates/create-commission-rate.mdx) — Create a commission rate.
|
|
63
|
+
- [Delete Commission Rate](content/references/api/admin/commission-rates/delete-commission-rate.mdx) — Delete a commission rate.
|
|
64
|
+
- [List Commission Rates](content/references/api/admin/commission-rates/list-commission-rates.mdx) — Retrieve a paginated list of commission rates.
|
|
65
|
+
- [Retrieve Commission Rate](content/references/api/admin/commission-rates/retrieve-commission-rate.mdx) — Retrieve a commission rate by ID.
|
|
66
|
+
- [Update Commission Rate](content/references/api/admin/commission-rates/update-commission-rate.mdx) — Update a commission rate.
|
|
67
|
+
- [List Members](content/references/api/admin/members/list-members.mdx) — Retrieve a paginated list of members across all sellers.
|
|
68
|
+
- [Batch Create Offers](content/references/api/admin/offers/batch-create-offers.mdx) — Create up to 100 offers for a seller in one request.
|
|
69
|
+
- [Delete Offer](content/references/api/admin/offers/delete-offer.mdx) — Delete an offer.
|
|
70
|
+
- [List Offers](content/references/api/admin/offers/list-offers.mdx) — Retrieve a paginated list of offers across all sellers.
|
|
71
|
+
- [Retrieve Offer](content/references/api/admin/offers/retrieve-offer.mdx) — Retrieve an offer by ID.
|
|
72
|
+
- [List Order Groups](content/references/api/admin/order-groups/list-order-groups.mdx) — Retrieve a paginated list of order groups.
|
|
73
|
+
- [Retrieve Order Group](content/references/api/admin/order-groups/retrieve-order-group.mdx) — Retrieve an order group by ID.
|
|
74
|
+
- [Get Order Commission Lines](content/references/api/admin/orders/get-order-commission-lines.mdx) — Retrieve the commission lines calculated for an order.
|
|
75
|
+
- [Get Order's Order Group](content/references/api/admin/orders/get-order-order-group.mdx) — Retrieve the order group a specific order belongs to.
|
|
76
|
+
- [List Orders](content/references/api/admin/orders/list-orders.mdx) — Retrieve a paginated list of orders across all sellers.
|
|
77
|
+
- [List Payouts](content/references/api/admin/payouts/list-payouts.mdx) — Retrieve a paginated list of payouts across all sellers.
|
|
78
|
+
- [Retrieve Payout](content/references/api/admin/payouts/retrieve-payout.mdx) — Retrieve a payout by ID.
|
|
79
|
+
- [Upsert Attribute Values](content/references/api/admin/product-attributes/create-attribute-value.mdx) — Create or update values on a product attribute.
|
|
80
|
+
- [Create Product Attribute](content/references/api/admin/product-attributes/create-product-attribute.mdx) — Create a catalog product attribute.
|
|
81
|
+
- [Delete Attribute Value](content/references/api/admin/product-attributes/delete-attribute-value.mdx) — Delete a value from a product attribute.
|
|
82
|
+
- [Delete Product Attribute](content/references/api/admin/product-attributes/delete-product-attribute.mdx) — Delete a catalog product attribute.
|
|
83
|
+
- [List Product Attributes](content/references/api/admin/product-attributes/list-product-attributes.mdx) — Retrieve a paginated list of catalog product attributes.
|
|
84
|
+
- [Retrieve Product Attribute](content/references/api/admin/product-attributes/retrieve-product-attribute.mdx) — Retrieve a catalog product attribute by ID.
|
|
85
|
+
- [Update Attribute Value](content/references/api/admin/product-attributes/update-attribute-value.mdx) — Update a single value on a product attribute.
|
|
86
|
+
- [Update Product Attribute](content/references/api/admin/product-attributes/update-product-attribute.mdx) — Update a catalog product attribute.
|
|
87
|
+
- [Cancel Product Change](content/references/api/admin/product-changes/cancel-product-change.mdx) — Cancel a pending product change without applying it.
|
|
88
|
+
- [Confirm Product Change](content/references/api/admin/product-changes/confirm-product-change.mdx) — Approve a pending product change and apply it to the product.
|
|
89
|
+
- [Batch Product Attributes](content/references/api/admin/products/batch-product-attributes.mdx) — Add, remove, and update attributes on a product in one request.
|
|
90
|
+
- [Confirm Product](content/references/api/admin/products/confirm-product.mdx) — Approve a proposed product for publishing.
|
|
91
|
+
- [Create Product Variant](content/references/api/admin/products/create-product-variant.mdx) — Add a variant to a product.
|
|
92
|
+
- [Create Product](content/references/api/admin/products/create-product.mdx) — Create a master catalog product.
|
|
93
|
+
- [Delete Product Variant](content/references/api/admin/products/delete-product-variant.mdx) — Delete a variant from a product.
|
|
94
|
+
- [Delete Product](content/references/api/admin/products/delete-product.mdx) — Delete a master catalog product.
|
|
95
|
+
- [List Product Variants](content/references/api/admin/products/list-product-variants.mdx) — Retrieve a paginated list of a product's variants.
|
|
96
|
+
- [List Products](content/references/api/admin/products/list-products.mdx) — Retrieve a paginated list of master catalog products.
|
|
97
|
+
- [Preview Product Changes](content/references/api/admin/products/preview-product.mdx) — Retrieve the pending change set for a product.
|
|
98
|
+
- [Reject Product](content/references/api/admin/products/reject-product.mdx) — Reject a proposed product.
|
|
99
|
+
- [Request Product Changes](content/references/api/admin/products/request-product-changes.mdx) — Ask the vendor to revise a product before it can be published.
|
|
100
|
+
- [Retrieve Product Variant](content/references/api/admin/products/retrieve-product-variant.mdx) — Retrieve a single variant of a product.
|
|
101
|
+
- [Retrieve Product](content/references/api/admin/products/retrieve-product.mdx) — Retrieve a master catalog product by ID.
|
|
102
|
+
- [Set Product Sellers](content/references/api/admin/products/set-product-sellers.mdx) — Manage which sellers are eligible to sell a product.
|
|
103
|
+
- [Update Product Variant](content/references/api/admin/products/update-product-variant.mdx) — Update a variant of a product.
|
|
104
|
+
- [Update Product](content/references/api/admin/products/update-product.mdx) — Update a master catalog product.
|
|
105
|
+
- [Add Seller Member](content/references/api/admin/sellers/add-seller-member.mdx) — Add an existing member to a seller's team.
|
|
106
|
+
- [Approve Seller](content/references/api/admin/sellers/approve-seller.mdx) — Approve a pending seller.
|
|
107
|
+
- [Create Seller](content/references/api/admin/sellers/create-seller.mdx) — Create a new seller account.
|
|
108
|
+
- [Delete Member Invite](content/references/api/admin/sellers/delete-member-invite.mdx) — Delete a seller's member invite.
|
|
109
|
+
- [Delete Professional Details](content/references/api/admin/sellers/delete-professional-details.mdx) — Delete a seller's professional details.
|
|
110
|
+
- [Invite Seller Member](content/references/api/admin/sellers/invite-seller-member.mdx) — Invite a new member to a seller's team by email.
|
|
111
|
+
- [List Member Invites](content/references/api/admin/sellers/list-member-invites.mdx) — Retrieve a paginated list of a seller's member invites.
|
|
112
|
+
- [List Seller Members](content/references/api/admin/sellers/list-seller-members.mdx) — Retrieve a paginated list of a seller's members.
|
|
113
|
+
- [List Seller Products](content/references/api/admin/sellers/list-seller-products.mdx) — Retrieve a paginated list of a seller's products.
|
|
114
|
+
- [List Sellers](content/references/api/admin/sellers/list-sellers.mdx) — Retrieve a paginated list of sellers.
|
|
115
|
+
- [Remove Seller Member](content/references/api/admin/sellers/remove-seller-member.mdx) — Remove a member from a seller's team.
|
|
116
|
+
- [Resend Member Invite](content/references/api/admin/sellers/resend-member-invite.mdx) — Resend a seller's member invite.
|
|
117
|
+
- [Retrieve Seller](content/references/api/admin/sellers/retrieve-seller.mdx) — Retrieve a seller by ID.
|
|
118
|
+
- [Suspend Seller](content/references/api/admin/sellers/suspend-seller.mdx) — Suspend a seller.
|
|
119
|
+
- [Terminate Seller](content/references/api/admin/sellers/terminate-seller.mdx) — Terminate a seller account.
|
|
120
|
+
- [Unsuspend Seller](content/references/api/admin/sellers/unsuspend-seller.mdx) — Lift a seller's suspension.
|
|
121
|
+
- [Unterminate Seller](content/references/api/admin/sellers/unterminate-seller.mdx) — Reverse a seller termination.
|
|
122
|
+
- [Update Seller](content/references/api/admin/sellers/update-seller.mdx) — Update a seller's details.
|
|
123
|
+
- [Upsert Payment Details](content/references/api/admin/sellers/upsert-payment-details.mdx) — Create or update a seller's bank payment details.
|
|
124
|
+
- [Upsert Professional Details](content/references/api/admin/sellers/upsert-professional-details.mdx) — Create or update a seller's legal and tax details.
|
|
125
|
+
- [Upsert Seller Address](content/references/api/admin/sellers/upsert-seller-address.mdx) — Create or update a seller's address.
|
|
126
|
+
- [API conventions](content/references/api/conventions.mdx) — Authentication, seller scoping, pagination, field selection, and webhooks — shared by every Mercur API surface.
|
|
127
|
+
- [Store API](content/references/api/store.mdx) — Storefront routes under /store/* — discovery, multi-vendor carts, checkout, and order groups.
|
|
128
|
+
- [Add Line Item](content/references/api/store/carts/add-line-item.mdx) — Add a seller offer to the cart as a line item.
|
|
129
|
+
- [Add Shipping Method](content/references/api/store/carts/add-shipping-methods.mdx) — Add a seller shipping option to the cart.
|
|
130
|
+
- [Apply Promotions](content/references/api/store/carts/apply-promotions.mdx) — Apply promotion codes to the cart.
|
|
131
|
+
- [Complete Cart](content/references/api/store/carts/complete-cart.mdx) — Complete the cart and split it into per-seller orders under an order group.
|
|
132
|
+
- [List Offers](content/references/api/store/offers/list-offers.mdx) — Retrieve seller offers with per-offer calculated prices.
|
|
133
|
+
- [Retrieve Offer](content/references/api/store/offers/retrieve-offer.mdx) — Retrieve a seller offer by ID with its per-offer calculated price.
|
|
134
|
+
- [List Order Groups](content/references/api/store/order-groups/list-order-groups.mdx) — Retrieve the authenticated customer's order groups.
|
|
135
|
+
- [Retrieve Order Group](content/references/api/store/order-groups/retrieve-order-group.mdx) — Retrieve one of the authenticated customer's order groups by ID.
|
|
136
|
+
- [List Product Attributes](content/references/api/store/product-attributes/list-product-attributes.mdx) — Retrieve active global product attributes.
|
|
137
|
+
- [Retrieve Product Attribute](content/references/api/store/product-attributes/retrieve-product-attribute.mdx) — Retrieve an active global product attribute by ID.
|
|
138
|
+
- [List Product Categories](content/references/api/store/product-categories/list-product-categories.mdx) — Retrieve active, public product categories.
|
|
139
|
+
- [Retrieve Product Category](content/references/api/store/product-categories/retrieve-product-category.mdx) — Retrieve an active, public product category by ID.
|
|
140
|
+
- [List Products](content/references/api/store/products/list-products.mdx) — Retrieve published products from visible sellers.
|
|
141
|
+
- [Retrieve Product](content/references/api/store/products/retrieve-product.mdx) — Retrieve a published product by ID.
|
|
142
|
+
- [Search](content/references/api/store/search/search.mdx) — Query the search index across products and offers.
|
|
143
|
+
- [List Sellers](content/references/api/store/sellers/list-sellers.mdx) — Retrieve open sellers visible on the storefront.
|
|
144
|
+
- [Retrieve Seller](content/references/api/store/sellers/retrieve-seller.mdx) — Retrieve an open seller by ID.
|
|
145
|
+
- [List Shipping Options](content/references/api/store/shipping-options/list-shipping-options.mdx) — Retrieve available shipping options for a cart, grouped by seller.
|
|
146
|
+
- [Vendor API](content/references/api/vendor.mdx) — Seller-scoped routes under /vendor/* — every request operates on the authenticated member's selected seller.
|
|
147
|
+
- [Accept Member Invite](content/references/api/vendor/members/accept-member-invite.mdx) — Accept a seller team invite using its token.
|
|
148
|
+
- [Retrieve Current Member](content/references/api/vendor/members/retrieve-current-member.mdx) — Retrieve the authenticated member's profile for the active seller.
|
|
149
|
+
- [Update Current Member](content/references/api/vendor/members/update-current-member.mdx) — Update the authenticated member's profile.
|
|
150
|
+
- [Batch Create Offers](content/references/api/vendor/offers/batch-create-offers.mdx) — Create up to 100 offers in a single request.
|
|
151
|
+
- [Batch Offer Inventory Items](content/references/api/vendor/offers/batch-offer-inventory-items.mdx) — Link, update, or unlink inventory items on an offer.
|
|
152
|
+
- [Create Offer](content/references/api/vendor/offers/create-offer.mdx) — Create a listing for a product variant.
|
|
153
|
+
- [Delete Offer](content/references/api/vendor/offers/delete-offer.mdx) — Delete one of the seller's offers.
|
|
154
|
+
- [List Offers](content/references/api/vendor/offers/list-offers.mdx) — Retrieve a paginated list of the seller's offers.
|
|
155
|
+
- [Retrieve Offer](content/references/api/vendor/offers/retrieve-offer.mdx) — Retrieve one of the seller's offers by its ID.
|
|
156
|
+
- [Update Offer](content/references/api/vendor/offers/update-offer.mdx) — Update one of the seller's offers.
|
|
157
|
+
- [Cancel Fulfillment](content/references/api/vendor/orders/cancel-fulfillment.mdx) — Cancel a fulfillment on the order.
|
|
158
|
+
- [Cancel Order](content/references/api/vendor/orders/cancel-order.mdx) — Cancel the order.
|
|
159
|
+
- [Complete Order](content/references/api/vendor/orders/complete-order.mdx) — Mark the order as completed.
|
|
160
|
+
- [Create Fulfillment](content/references/api/vendor/orders/create-fulfillment.mdx) — Create a fulfillment for the order's items.
|
|
161
|
+
- [Create Shipment](content/references/api/vendor/orders/create-shipment.mdx) — Create a shipment for a fulfillment.
|
|
162
|
+
- [Get Order Commission Lines](content/references/api/vendor/orders/get-order-commission-lines.mdx) — Retrieve the commission lines charged on the order.
|
|
163
|
+
- [List Order Changes](content/references/api/vendor/orders/list-order-changes.mdx) — Retrieve the change history of an order.
|
|
164
|
+
- [List Orders](content/references/api/vendor/orders/list-orders.mdx) — Retrieve a paginated list of the seller's orders.
|
|
165
|
+
- [Mark Fulfillment as Delivered](content/references/api/vendor/orders/mark-fulfillment-delivered.mdx) — Mark a fulfillment as delivered.
|
|
166
|
+
- [Preview Order](content/references/api/vendor/orders/preview-order.mdx) — Preview the order with its pending order change applied.
|
|
167
|
+
- [Retrieve Order](content/references/api/vendor/orders/retrieve-order.mdx) — Retrieve a single order by ID.
|
|
168
|
+
- [Create Onboarding](content/references/api/vendor/payout-accounts/create-onboarding.mdx) — Start or refresh provider onboarding for a payout account.
|
|
169
|
+
- [Create Payout Account](content/references/api/vendor/payout-accounts/create-payout-account.mdx) — Create the seller's payout account with the configured provider.
|
|
170
|
+
- [Retrieve Payout Account](content/references/api/vendor/payout-accounts/retrieve-payout-account-by-id.mdx) — Retrieve one of the seller's payout accounts by ID.
|
|
171
|
+
- [List Payout Accounts](content/references/api/vendor/payout-accounts/retrieve-payout-account.mdx) — List the seller's payout accounts.
|
|
172
|
+
- [List Payouts](content/references/api/vendor/payouts/list-payouts.mdx) — List the seller's payouts.
|
|
173
|
+
- [Retrieve Payout](content/references/api/vendor/payouts/retrieve-payout.mdx) — Retrieve one of the seller's payouts by ID.
|
|
174
|
+
- [List Product Attributes](content/references/api/vendor/product-attributes/list-product-attributes.mdx) — Retrieve a paginated list of global product attributes.
|
|
175
|
+
- [Retrieve Product Attribute](content/references/api/vendor/product-attributes/retrieve-product-attribute.mdx) — Retrieve a product attribute by its ID.
|
|
176
|
+
- [List Variants](content/references/api/vendor/product-variants/list-variants.mdx) — Retrieve a paginated list of product variants across products.
|
|
177
|
+
- [Batch Product Attributes](content/references/api/vendor/products/batch-product-attributes.mdx) — Stage attribute additions, removals, and updates on a product.
|
|
178
|
+
- [Cancel Product Change](content/references/api/vendor/products/cancel-product-change.mdx) — Cancel the seller's pending change request for a product.
|
|
179
|
+
- [Create Product Variant](content/references/api/vendor/products/create-product-variant.mdx) — Stage the addition of a variant to a product.
|
|
180
|
+
- [Create Product](content/references/api/vendor/products/create-product.mdx) — Create a new product owned by the seller.
|
|
181
|
+
- [Delete Product Variant](content/references/api/vendor/products/delete-product-variant.mdx) — Stage the removal of a product variant as a change request.
|
|
182
|
+
- [Delete Product](content/references/api/vendor/products/delete-product.mdx) — Stage a product deletion as a change request.
|
|
183
|
+
- [List Product Variants](content/references/api/vendor/products/list-product-variants.mdx) — Retrieve a paginated list of a product's variants.
|
|
184
|
+
- [List Products](content/references/api/vendor/products/list-products.mdx) — Retrieve a paginated list of products visible to the seller.
|
|
185
|
+
- [Preview Product Change](content/references/api/vendor/products/preview-product.mdx) — Retrieve the seller's pending change request for a product.
|
|
186
|
+
- [Retrieve Product Variant](content/references/api/vendor/products/retrieve-product-variant.mdx) — Retrieve a single variant of a product.
|
|
187
|
+
- [Retrieve Product](content/references/api/vendor/products/retrieve-product.mdx) — Retrieve a product by its ID.
|
|
188
|
+
- [Update Product Variant](content/references/api/vendor/products/update-product-variant.mdx) — Stage an update to a product variant as a change request.
|
|
189
|
+
- [Update Product](content/references/api/vendor/products/update-product.mdx) — Stage an update to a product as a change request.
|
|
190
|
+
- [Create Seller](content/references/api/vendor/sellers/create-seller.mdx) — Register a new seller account with its first member.
|
|
191
|
+
- [Delete Professional Details](content/references/api/vendor/sellers/delete-professional-details.mdx) — Remove the seller's business registration details.
|
|
192
|
+
- [Invite Seller Member](content/references/api/vendor/sellers/invite-seller-member.mdx) — Invite a new member to the seller's team.
|
|
193
|
+
- [List Member Invites](content/references/api/vendor/sellers/list-member-invites.mdx) — List the seller's pending member invites.
|
|
194
|
+
- [List Seller Members](content/references/api/vendor/sellers/list-seller-members.mdx) — List the members of a seller account.
|
|
195
|
+
- [List Sellers](content/references/api/vendor/sellers/list-sellers.mdx) — List the seller accounts the authenticated member belongs to.
|
|
196
|
+
- [Remove Seller Member](content/references/api/vendor/sellers/remove-seller-member.mdx) — Remove a member from the seller's team.
|
|
197
|
+
- [Retrieve Current Seller Member](content/references/api/vendor/sellers/retrieve-current-seller-member.mdx) — Retrieve the authenticated member's membership in a seller.
|
|
198
|
+
- [Retrieve Current Seller](content/references/api/vendor/sellers/retrieve-current-seller.mdx) — Retrieve the seller the request is scoped to.
|
|
199
|
+
- [Select Seller](content/references/api/vendor/sellers/select-seller.mdx) — Set the active seller for the member's session.
|
|
200
|
+
- [Update Current Seller](content/references/api/vendor/sellers/update-current-seller.mdx) — Update the seller the request is scoped to.
|
|
201
|
+
- [Update Member Role](content/references/api/vendor/sellers/update-member-role.mdx) — Change the role of a seller team member.
|
|
202
|
+
- [Upsert Payment Details](content/references/api/vendor/sellers/upsert-payment-details.mdx) — Create or update the seller's bank account details.
|
|
203
|
+
- [Upsert Professional Details](content/references/api/vendor/sellers/upsert-professional-details.mdx) — Create or update the seller's business registration details.
|
|
204
|
+
- [Upsert Seller Address](content/references/api/vendor/sellers/upsert-seller-address.mdx) — Create or update the seller's address.
|
|
205
|
+
- [Configuration](content/references/configuration.mdx) — withMercur() options, environment variables, and provider configuration.
|
|
206
|
+
- [Commission module](content/references/modules/commission.mdx) — Data models and service methods for the Commission module.
|
|
207
|
+
- [Custom Fields module](content/references/modules/custom-fields.mdx) — Add extra columns to any entity without writing a custom module.
|
|
208
|
+
- [Media module](content/references/modules/media.mdx) — Image records for categories and collections — galleries, thumbnails, banners, and icons.
|
|
209
|
+
- [Offer module](content/references/modules/offer.mdx) — Data models, links, and service methods for the Offer module.
|
|
210
|
+
- [Payout module](content/references/modules/payout.mdx) — Data models, links, service methods, and the provider interface for the Payout module.
|
|
211
|
+
- [Product Attribute module](content/references/modules/product-attribute.mdx) — Data models, links, and service methods for the Product Attribute module.
|
|
212
|
+
- [Product Edit module](content/references/modules/product-edit.mdx) — Data models and lifecycle for product change requests on master products.
|
|
213
|
+
- [Search module](content/references/modules/search.mdx) — The provider-agnostic search module, its document shapes, and the provider contract.
|
|
214
|
+
- [Seller module](content/references/modules/seller.mdx) — Data models, links, and service methods for the Seller module.
|
|
215
|
+
- [References](content/references/overview.mdx) — Technical references for Mercur's modules, HTTP APIs, workflows, and configuration.
|
|
216
|
+
- [addSellerShippingMethodToCartWorkflow](content/references/workflows/cart/add-seller-shipping-method-to-cart.mdx) — Add shipping methods to a cart, replacing only the same seller's existing methods.
|
|
217
|
+
- [completeCartWithSplitOrdersWorkflow](content/references/workflows/cart/complete-cart-with-split-orders.mdx) — Complete a multi-seller cart by splitting it into per-seller orders under an order group.
|
|
218
|
+
- [listSellerShippingOptionsForCartWorkflow](content/references/workflows/cart/list-seller-shipping-options-for-cart.mdx) — List available shipping options for a cart, grouped by seller.
|
|
219
|
+
- [updateCartSellerPromotionsWorkflow](content/references/workflows/cart/update-cart-seller-promotions.mdx) — Apply, remove, or replace promotion codes on a cart with seller-scoped adjustments.
|
|
220
|
+
- [batchCommissionRulesWorkflow](content/references/workflows/commission/batch-commission-rules.mdx) — Create, update, and delete a commission rate's rules in one call.
|
|
221
|
+
- [createCommissionRatesWorkflow](content/references/workflows/commission/create-commission-rates.mdx) — Create one or more commission rates.
|
|
222
|
+
- [deleteCommissionRatesWorkflow](content/references/workflows/commission/delete-commission-rates.mdx) — Soft-delete commission rates after validating they can be removed.
|
|
223
|
+
- [refreshOrderCommissionLinesWorkflow](content/references/workflows/commission/refresh-order-commission-lines.mdx) — Recompute the commission lines for one or more orders.
|
|
224
|
+
- [updateCommissionRatesWorkflow](content/references/workflows/commission/update-commission-rates.mdx) — Update one or more commission rates.
|
|
225
|
+
- [setCategoryImagesWorkflow](content/references/workflows/media/set-category-images.mdx) — Replace a category's media gallery and icon, enforcing single thumbnail/banner.
|
|
226
|
+
- [setCollectionImagesWorkflow](content/references/workflows/media/set-collection-images.mdx) — Replace a collection's media gallery and icon, enforcing single thumbnail/banner.
|
|
227
|
+
- [acceptMemberInviteWorkflow](content/references/workflows/member/accept-member-invite.mdx) — Redeem an invite token and join a seller's team.
|
|
228
|
+
- [addSellerMemberWorkflow](content/references/workflows/member/add-seller-member.mdx) — Attach an existing member to a seller with a role.
|
|
229
|
+
- [createMemberInvitesWorkflow](content/references/workflows/member/create-member-invites.mdx) — Create tokenized member invitations for sellers.
|
|
230
|
+
- [deleteMemberInviteWorkflow](content/references/workflows/member/delete-member-invite.mdx) — Delete a pending member invite.
|
|
231
|
+
- [removeSellerMemberWorkflow](content/references/workflows/member/remove-seller-member.mdx) — Remove a member from a seller's team.
|
|
232
|
+
- [resendMemberInviteWorkflow](content/references/workflows/member/resend-member-invite.mdx) — Re-issue a member invite with a fresh token.
|
|
233
|
+
- [updateMemberRoleWorkflow](content/references/workflows/member/update-member-role.mdx) — Change a team member's role.
|
|
234
|
+
- [updateMemberWorkflow](content/references/workflows/member/update-member.mdx) — Update member profile fields matching a selector.
|
|
235
|
+
- [batchOfferInventoryItemsWorkflow](content/references/workflows/offer/batch-offer-inventory-items.mdx) — Create, update, and delete an offer's inventory-item links in one call.
|
|
236
|
+
- [createOffersWorkflow](content/references/workflows/offer/create-offers.mdx) — Create seller offers with inventory items and offer-scoped prices.
|
|
237
|
+
- [deleteOffersWorkflow](content/references/workflows/offer/delete-offers.mdx) — Delete one or more offers.
|
|
238
|
+
- [updateOffersWorkflow](content/references/workflows/offer/update-offers.mdx) — Update offer rows and rewrite their price ladders with replace semantics.
|
|
239
|
+
- [getOrderGroupDetailWorkflow](content/references/workflows/order-group/get-order-group-detail.mdx) — Retrieve one order group with per-order aggregated payment and fulfillment statuses.
|
|
240
|
+
- [getOrderGroupsListWorkflow](content/references/workflows/order-group/get-order-groups-list.mdx) — List order groups with pagination and per-order aggregated statuses.
|
|
241
|
+
- [cancelOrderFulfillmentWorkflow](content/references/workflows/order/cancel-order-fulfillment.mdx) — Cancel an unshipped fulfillment and restore reservations and stock.
|
|
242
|
+
- [confirmClaimRequestWorkflow](content/references/workflows/order/confirm-claim-request.mdx) — Confirm a claim request and fix reservations for offer bundles.
|
|
243
|
+
- [confirmExchangeRequestWorkflow](content/references/workflows/order/confirm-exchange-request.mdx) — Confirm an exchange request and fix reservations for offer bundles.
|
|
244
|
+
- [confirmOrderEditRequestWorkflow](content/references/workflows/order/confirm-order-edit-request.mdx) — Confirm an order edit and reconcile offer-bundle reservations.
|
|
245
|
+
- [confirmReturnReceiveWorkflow](content/references/workflows/order/confirm-return-receive.mdx) — Confirm a return receival, offer-aware restock included.
|
|
246
|
+
- [createOrderFulfillmentWorkflow](content/references/workflows/order/create-order-fulfillment.mdx) — Create a fulfillment for order items, offer-bundle aware.
|
|
247
|
+
- [Workflows](content/references/workflows/overview.mdx) — Every workflow exported by @mercurjs/core, grouped by domain.
|
|
248
|
+
- [createOnboardingWorkflow](content/references/workflows/payout/create-onboarding.mdx) — Start a provider onboarding session for a payout account.
|
|
249
|
+
- [createPayoutAccountWorkflow](content/references/workflows/payout/create-payout-account.mdx) — Create a payout account for a seller through the registered payout provider.
|
|
250
|
+
- [createPayoutWorkflow](content/references/workflows/payout/create-payout.mdx) — Issue a payout to a seller through the registered provider.
|
|
251
|
+
- [processPayoutForWebhookWorkflow](content/references/workflows/payout/process-payout-for-webhook.mdx) — Apply a payout provider webhook event to the matching account or payout.
|
|
252
|
+
- [addProductAttributesToProductWorkflow](content/references/workflows/product-attribute/add-product-attributes-to-product.mdx) — Attach existing or inline attributes (and their values) to a product.
|
|
253
|
+
- [createAndLinkProductAttributesToProductWorkflow](content/references/workflows/product-attribute/create-and-link-product-attributes-to-product.mdx) — Batch attach, detach, and update attribute selections on a product.
|
|
254
|
+
- [createProductAttributeValuesWorkflow](content/references/workflows/product-attribute/create-product-attribute-values.mdx) — Add values to an attribute, mirroring them onto its product option.
|
|
255
|
+
- [createProductAttributesWorkflow](content/references/workflows/product-attribute/create-product-attributes.mdx) — Create catalog attributes with values, mirror options, and category links.
|
|
256
|
+
- [deleteProductAttributeValuesWorkflow](content/references/workflows/product-attribute/delete-product-attribute-values.mdx) — Delete attribute values and shrink the mirror option accordingly.
|
|
257
|
+
- [deleteProductAttributesWorkflow](content/references/workflows/product-attribute/delete-product-attributes.mdx) — Delete attributes and their mirror product options.
|
|
258
|
+
- [removeProductAttributesFromProductWorkflow](content/references/workflows/product-attribute/remove-product-attributes-from-product.mdx) — Detach attributes from a product, deleting product-scoped ones.
|
|
259
|
+
- [updateProductAttributeValuesWorkflow](content/references/workflows/product-attribute/update-product-attribute-values.mdx) — Update attribute values matching a selector and re-sync the mirror option.
|
|
260
|
+
- [updateProductAttributesOnProductWorkflow](content/references/workflows/product-attribute/update-product-attributes-on-product.mdx) — Mutate a product's per-attribute value selections.
|
|
261
|
+
- [updateProductAttributesWorkflow](content/references/workflows/product-attribute/update-product-attributes.mdx) — Update attributes matching a selector and sync mirror option titles.
|
|
262
|
+
- [upsertProductAttributeValuesWorkflow](content/references/workflows/product-attribute/upsert-product-attribute-values.mdx) — Create or update attribute values in one call, keyed by id presence.
|
|
263
|
+
- [autoConfirmProductChangeWorkflow](content/references/workflows/product-edit/auto-confirm-product-change.mdx) — Conditionally confirm a ProductChange based on the product_request feature flag.
|
|
264
|
+
- [cancelProductChangeWorkflow](content/references/workflows/product-edit/cancel-product-change.mdx) — Cancel a pending ProductChange so its staged actions are never applied.
|
|
265
|
+
- [confirmProductChangeWorkflow](content/references/workflows/product-edit/confirm-product-change.mdx) — Confirm pending ProductChanges and apply their staged actions to the master product.
|
|
266
|
+
- [createProductChangeWorkflow](content/references/workflows/product-edit/create-product-change.mdx) — Create ProductChange records after validating no pending change exists per product.
|
|
267
|
+
- [rejectProductChangeWorkflow](content/references/workflows/product-edit/reject-product-change.mdx) — Decline a pending ProductChange with an optional reason for the vendor.
|
|
268
|
+
- [stageProductChangeWorkflow](content/references/workflows/product-edit/stage-product-change.mdx) — Stage a pending ProductChange with its actions and optionally auto-confirm it.
|
|
269
|
+
- [confirmProductsWorkflow](content/references/workflows/product/confirm-products.mdx) — Approve proposed products and publish them to the catalog.
|
|
270
|
+
- [createProductsWorkflow](content/references/workflows/product/create-products.mdx) — Create master catalog products with seller eligibility and creator attribution.
|
|
271
|
+
- [linkSellersToProductCategoryWorkflow](content/references/workflows/product/link-sellers-to-product-category.mdx) — Add or remove seller eligibility links on a product category.
|
|
272
|
+
- [linkSellersToProductWorkflow](content/references/workflows/product/link-sellers-to-product.mdx) — Add or remove seller eligibility links on a master product.
|
|
273
|
+
- [rejectProductWorkflow](content/references/workflows/product/reject-product.mdx) — Reject a proposed product submission with an optional message to the vendor.
|
|
274
|
+
- [requestProductChangeWorkflow](content/references/workflows/product/request-product-change.mdx) — Ask a vendor to revise a proposed product submission without changing its status.
|
|
275
|
+
- [approveSellerWorkflow](content/references/workflows/seller/approve-seller.mdx) — Approve a pending seller and open its store.
|
|
276
|
+
- [createSellerAccountWorkflow](content/references/workflows/seller/create-seller-account.mdx) — Create a seller with its owner member during self-registration.
|
|
277
|
+
- [createSellerDefaultsWorkflow](content/references/workflows/seller/create-seller-defaults.mdx) — Ensure the default seller roles exist.
|
|
278
|
+
- [createSellersWorkflow](content/references/workflows/seller/create-sellers.mdx) — Create one or more sellers and invite their first member.
|
|
279
|
+
- [deleteSellerProfessionalDetailsWorkflow](content/references/workflows/seller/delete-seller-professional-details.mdx) — Remove a seller's professional details.
|
|
280
|
+
- [deleteSellersWorkflow](content/references/workflows/seller/delete-sellers.mdx) — Delete sellers by id.
|
|
281
|
+
- [inviteSellerWorkflow](content/references/workflows/seller/invite-seller.mdx) — Send a marketplace invitation email to a prospective seller.
|
|
282
|
+
- [suspendSellerWorkflow](content/references/workflows/seller/suspend-seller.mdx) — Suspend a seller with an optional reason.
|
|
283
|
+
- [terminateSellerWorkflow](content/references/workflows/seller/terminate-seller.mdx) — Terminate a seller with an optional reason.
|
|
284
|
+
- [unsuspendSellerWorkflow](content/references/workflows/seller/unsuspend-seller.mdx) — Lift a seller suspension.
|
|
285
|
+
- [unterminateSellerWorkflow](content/references/workflows/seller/unterminate-seller.mdx) — Revert a terminated seller back to suspended.
|
|
286
|
+
- [updateSellerAddressWorkflow](content/references/workflows/seller/update-seller-address.mdx) — Upsert a seller's address.
|
|
287
|
+
- [updateSellerPaymentDetailsWorkflow](content/references/workflows/seller/update-seller-payment-details.mdx) — Upsert a seller's bank payment details.
|
|
288
|
+
- [updateSellerProfessionalDetailsWorkflow](content/references/workflows/seller/update-seller-professional-details.mdx) — Upsert a seller's professional (business) details.
|
|
289
|
+
- [updateSellersWorkflow](content/references/workflows/seller/update-sellers.mdx) — Update sellers matching a selector.
|
|
290
|
+
|
|
291
|
+
## User Guide — admin and vendor panels
|
|
292
|
+
|
|
293
|
+
- [Admin Panel](content/user-guide/admin/overview.mdx) — What marketplace operators do in the Admin Panel — no technical knowledge required.
|
|
294
|
+
- [Stores in Mercur Admin Panel](content/user-guide/admin/stores.mdx)
|
|
295
|
+
- [Vendor Panel](content/user-guide/vendor/overview.mdx) — What sellers do in the Vendor Panel — no technical knowledge required.
|
|
296
|
+
- [Store in Mercur Vendor Panel](content/user-guide/vendor/stores.mdx)
|
|
297
|
+
|
|
298
|
+
## Migration
|
|
299
|
+
|
|
300
|
+
- [From 1.x to 2.0](content/migration/from-1-x-to-2-0.mdx) — What changed and how to port your existing Mercur 1.x code to 2.0.
|
|
301
|
+
- [From 2.0 to 2.1](content/migration/from-2-0-to-2-1.mdx) — What changed in Mercur 2.1 and how to upgrade an existing 2.0.x project.
|
|
302
|
+
- [Migration Overview](content/migration/overview.mdx) — Understand what changes between Mercur 1.x and 2.0 and how to migrate your project.
|
|
303
|
+
|
|
304
|
+
## Other
|
|
305
|
+
|
|
306
|
+
- [Official Blocks](content/blocks.mdx) — Modular blocks from the official Mercur registry — install only what you need.
|
|
307
|
+
- [Telemetry](content/telemetry.mdx) — Learn about the anonymous usage data collected by the Mercur CLI
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mercurjs/docs",
|
|
3
|
+
"version": "2.2.0-canary.40",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/mercurjs/mercur",
|
|
7
|
+
"directory": "packages/docs"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"marketplace",
|
|
11
|
+
"multi-vendor",
|
|
12
|
+
"medusajs",
|
|
13
|
+
"documentation",
|
|
14
|
+
"llms"
|
|
15
|
+
],
|
|
16
|
+
"description": "Bundled Mercur documentation for AI agents — read node_modules/@mercurjs/docs/llms.txt, then open the referenced content/*.mdx.",
|
|
17
|
+
"author": "Mercur",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"files": [
|
|
20
|
+
"content",
|
|
21
|
+
"llms.txt"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "node ./scripts/build.mjs",
|
|
25
|
+
"dev": "node ./scripts/build.mjs"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=20"
|
|
32
|
+
}
|
|
33
|
+
}
|