From d5ade616d508ed55b73817d55a7884db13c3e76c Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Mon, 14 Jul 2025 18:53:46 +0300 Subject: [PATCH] docs: fix complete cart workflow in marketplace vendors recipe (#12953) --- www/apps/book/public/llms-full.txt | 4 ++++ .../app/recipes/marketplace/examples/vendors/page.mdx | 6 ++++-- www/apps/resources/generated/edit-dates.mjs | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/www/apps/book/public/llms-full.txt b/www/apps/book/public/llms-full.txt index 7e287e01e8..e1fc5c401c 100644 --- a/www/apps/book/public/llms-full.txt +++ b/www/apps/book/public/llms-full.txt @@ -18576,6 +18576,8 @@ npx create-medusa-app@latest my-medusa-store Where `my-medusa-store` is the name of the project's directory and PostgreSQL database created for the project. When you run the command, you'll be asked whether you want to install the Next.js Starter Storefront. +To customize the default installation behavior, such as specify a database URL, refer to the [create-medusa-app reference](https://docs.medusajs.com/resources/create-medusa-app/index.html.md). + After answering the prompts, the command installs the Medusa application in a directory with your project name, and sets up a PostgreSQL database that the application connects to. If you chose to install the storefront with the Medusa application, the storefront is installed in a separate directory named `{project-name}-storefront`. @@ -94142,6 +94144,8 @@ const createVendorOrdersWorkflow = createWorkflow( "shipping_address.*", "billing_address.*", "shipping_methods.*", + "shipping_methods.tax_lines.*", + "shipping_methods.adjustments.*", ], }, }) diff --git a/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx b/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx index 69243e3000..fe8be711fe 100644 --- a/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx +++ b/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx @@ -1643,8 +1643,8 @@ export const createVendorOrdersWorkflowHighlights = [ ["30", "completeCartWorkflow", "Create the parent order from the cart."], ["36", "groupVendorItemsStep", "Group the items by their vendor."], ["40", "getOrderDetailWorkflow", "Retrieve the parent order's details."], - ["59", "createVendorOrdersStep", "Create child orders for each vendor"], - ["64", "createRemoteLinkStep", "Create the links returned by the previous step."] + ["61", "createVendorOrdersStep", "Create child orders for each vendor"], + ["66", "createRemoteLinkStep", "Create the links returned by the previous step."] ] ```ts title="src/workflows/marketplace/create-vendor-orders/index.ts" collapsibleLines="1-13" expandMoreLabel="Show Imports" @@ -1699,6 +1699,8 @@ const createVendorOrdersWorkflow = createWorkflow( "shipping_address.*", "billing_address.*", "shipping_methods.*", + "shipping_methods.tax_lines.*", + "shipping_methods.adjustments.*", ], }, }) diff --git a/www/apps/resources/generated/edit-dates.mjs b/www/apps/resources/generated/edit-dates.mjs index fa5cf7faf5..e3f4a4540e 100644 --- a/www/apps/resources/generated/edit-dates.mjs +++ b/www/apps/resources/generated/edit-dates.mjs @@ -114,7 +114,7 @@ export const generatedEditDates = { "app/recipes/digital-products/examples/standard/page.mdx": "2025-04-24T15:41:05.364Z", "app/recipes/digital-products/page.mdx": "2025-05-20T07:51:40.719Z", "app/recipes/ecommerce/page.mdx": "2025-06-24T08:50:10.116Z", - "app/recipes/marketplace/examples/vendors/page.mdx": "2025-05-20T07:51:40.721Z", + "app/recipes/marketplace/examples/vendors/page.mdx": "2025-07-14T13:59:32.168Z", "app/recipes/marketplace/page.mdx": "2025-05-20T07:51:40.721Z", "app/recipes/multi-region-store/page.mdx": "2025-05-20T07:51:40.721Z", "app/recipes/omnichannel/page.mdx": "2025-05-20T07:51:40.722Z",