docs: capitalize use of Framework across docs (#12207)
* docs: capitalize use of Framework across docs * generate llm
This commit is contained in:
@@ -41,7 +41,7 @@ export const metadata = {
|
||||
|
||||
In this tutorial, you will learn how to send notifications to customers who have abandoned their carts.
|
||||
|
||||
When you install a Medusa application, you get a fully-fledged commerce platform with a framework for customization. The Medusa application's commerce features are built around [commerce modules](../../../commerce-modules/page.mdx), which are available out-of-the-box. These features include cart-management capabilities.
|
||||
When you install a Medusa application, you get a fully-fledged commerce platform with a Framework for customization. The Medusa application's commerce features are built around [commerce modules](../../../commerce-modules/page.mdx), which are available out-of-the-box. These features include cart-management capabilities.
|
||||
|
||||
Medusa's [Notification Module](../../../architectural-modules/notification/page.mdx) allows you to send notifications to users or customers, such as password reset emails, order confirmation SMS, or other types of notifications.
|
||||
|
||||
@@ -272,7 +272,7 @@ You create a step with `createStep` from the Workflows SDK. It accepts two param
|
||||
1. The step's unique name, which is `create-review`.
|
||||
2. An async function that receives two parameters:
|
||||
- The step's input, which is in this case an object with the review's properties.
|
||||
- An object that has properties including the [Medusa container](!docs!/learn/fundamentals/medusa-container), which is a registry of framework and commerce tools that you can access in the step.
|
||||
- An object that has properties including the [Medusa container](!docs!/learn/fundamentals/medusa-container), which is a registry of Framework and commerce tools that you can access in the step.
|
||||
|
||||
In the step function, you first resolve the Notification Module's service, which has methods to manage notifications. Then, you prepare the data of each notification, and create the notifications with the `createNotifications` method.
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ Medusa Cloud provides a beta Store Credits feature that facilitates building a l
|
||||
|
||||
</Note>
|
||||
|
||||
When you install a Medusa application, you get a fully-fledged commerce platform with a framework for customization. The Medusa application's commerce features are built around [commerce modules](../../../commerce-modules/page.mdx), which are available out-of-the-box. These features include management capabilities related to carts, orders, promotions, and more.
|
||||
When you install a Medusa application, you get a fully-fledged commerce platform with a Framework for customization. The Medusa application's commerce features are built around [commerce modules](../../../commerce-modules/page.mdx), which are available out-of-the-box. These features include management capabilities related to carts, orders, promotions, and more.
|
||||
|
||||
A loyalty point system allows customers to earn points for purchases, which can be redeemed for discounts or rewards. In this tutorial, you'll learn how to customize the Medusa application to implement a loyalty points system.
|
||||
|
||||
@@ -527,7 +527,7 @@ You create a step with `createStep` from the Workflows SDK. It accepts two param
|
||||
1. The step's unique name, which is `validate-customer-exists`.
|
||||
2. An async function that receives two parameters:
|
||||
- The step's input, which is in this case an object with the customer's details.
|
||||
- An object that has properties including the [Medusa container](!docs!/learn/fundamentals/medusa-container), which is a registry of framework and commerce tools that you can access in the step.
|
||||
- An object that has properties including the [Medusa container](!docs!/learn/fundamentals/medusa-container), which is a registry of Framework and commerce tools that you can access in the step.
|
||||
|
||||
In the step function, you validate that the customer is defined and that it's registered based on its `has_account` property. Otherwise, you throw an error.
|
||||
|
||||
|
||||
@@ -40,9 +40,9 @@ export const metadata = {
|
||||
|
||||
In this tutorial, you'll learn how to implement product reviews in Medusa.
|
||||
|
||||
When you install a Medusa application, you get a fully-fledged commerce platform with a framework for customization. The Medusa application's commerce features are built around [commerce modules](../../../commerce-modules/page.mdx) which are available out-of-the-box. The features include product-management features.
|
||||
When you install a Medusa application, you get a fully-fledged commerce platform with a Framework for customization. The Medusa application's commerce features are built around [commerce modules](../../../commerce-modules/page.mdx) which are available out-of-the-box. The features include product-management features.
|
||||
|
||||
Medusa doesn't provide product reviews out-of-the-box, but Medusa's framework facilitate implementing customizations like product reviews. In this tutorial, you'll learn how to customize the Medusa server, admin dashboard, and Next.js Starter Storefront to implement product reviews.
|
||||
Medusa doesn't provide product reviews out-of-the-box, but the Medusa Framework facilitates implementing customizations like product reviews. In this tutorial, you'll learn how to customize the Medusa server, Admin dashboard, and Next.js Starter Storefront to implement product reviews.
|
||||
|
||||
You can follow this guide whether you're new to Medusa or an advanced Medusa developer.
|
||||
|
||||
@@ -451,7 +451,7 @@ You create a step with `createStep` from the Workflows SDK. It accepts two param
|
||||
1. The step's unique name, which is `create-review`.
|
||||
2. An async function that receives two parameters:
|
||||
- The step's input, which is in this case an object with the review's properties.
|
||||
- An object that has properties including the [Medusa container](!docs!/learn/fundamentals/medusa-container), which is a registry of framework and commerce tools that you can access in the step.
|
||||
- An object that has properties including the [Medusa container](!docs!/learn/fundamentals/medusa-container), which is a registry of Framework and commerce tools that you can access in the step.
|
||||
|
||||
In the step function, you resolve the Review Module's service from the Medusa container using its `resolve` method, passing it the module's name as a parameter.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user