docs: removed emojis (#2394)

This commit is contained in:
Shahed Nasser
2022-10-10 13:43:36 +03:00
committed by GitHub
parent f72bf5e958
commit a23ecf4724
67 changed files with 68 additions and 68 deletions

View File

@@ -288,7 +288,7 @@ After confirming the batch job, you can check the status while it is processing
- If the status is `failed`, it means an error has occurred during the import. You can check the error in `result.errors`.
- If the status is `completed`, it means the import has finished successfully.
## Whats Next 🚀
## Whats Next
- Learn more about [Batch Jobs and how they work](../backend/batch-jobs/index.md).
- Check out the [Batch Jobs API Reference](https://docs.medusajs.com/api/admin/#tag/Batch-Job).

View File

@@ -457,7 +457,7 @@ When you create or update a price list, you can specify one or more customer gro
---
## Whats Next 🚀
## Whats Next
- Learn more about [Customer Groups](../backend/customer-groups/index.md).
- Learn about [how to use Sales Channels](../backend/sales-channels/manage-admin.mdx).

View File

@@ -376,7 +376,7 @@ The batch job will start processing afterward. Based on the batch job strategy i
You can [retrieve the batch job](#optional-retrieve-batch-job) at any given point to check its status.
## Whats Next 🚀
## Whats Next
- Learn more about [batch jobs](./index.md).
- Learn how to [import products using the Admin API](../../admin/import-products.mdx).

View File

@@ -109,7 +109,7 @@ If you dont want to overwrite Medusas batch job strategy, you can create a
For more details on creating custom batch job strategies, please check out the [Create Batch Job Strategy documentation](create.md).
## Whats Next 🚀
## Whats Next
- Learn more about [batch jobs](./index.md).
- Learn [how to use the Import Product APIs](../../admin/import-products.mdx).

View File

@@ -123,6 +123,6 @@ To test the previous example out instantly, you can change the cron job expressi
:::
## Whats Next 🚀
## Whats Next
- Learn more about [services and how you can use them](../services/overview.md).

View File

@@ -54,7 +54,7 @@ The relation between the `PriceList` and `CustomerGroup` entities is available o
---
## Whats Next 🚀
## Whats Next
- Learn [how to manage customer groups using the Admin APIs](../../admin/use-customergroups-api.mdx).
- Learn more about [Price Lists and how they work](../price-lists/index.md).

View File

@@ -214,7 +214,7 @@ export default (rootDirectory, pluginOptions) => {
}
```
## Whats Next 🚀
## Whats Next
- [Learn how to add an endpoint for the Storefront.](/advanced/backend/endpoints/add-storefront)
- [Check out the API reference for all available endpoints.](https://docs.medusajs.com/api/admin)

View File

@@ -213,7 +213,7 @@ export default (rootDirectory, pluginOptions) => {
}
```
## Whats Next :rocket:
## Whats Next
- [Learn how to add an endpoint for the Admin.](/advanced/backend/endpoints/add-admin)
- [Check out the API reference for all available endpoints.](https://docs.medusajs.com/api/store)

View File

@@ -125,7 +125,7 @@ To delete soft-deletable entities that extend the `SoftDeletableEntity` class, y
await postRepository.softDelete(post.id);
```
## Whats Next 🚀
## Whats Next
- Check out Medusa's entities in the [Entities' reference](../../../references/entities/classes/Address.md).
- Learn about [migrations](../migrations/overview.md).

View File

@@ -16,7 +16,7 @@ All entities must extend either the `BaseEntity` or `SoftDeletableEntity` classe
The `SoftDeletableEntity` class extends the `BaseEntity` class and adds another column `deleted_at`. If an entity can be soft deleted, meaning that a row in it can appear to the user as deleted but still be available in the database, it should extend `SoftDeletableEntity`.
## What's Next :rocket:
## What's Next
- Learn [how to create an entity](./index.md).
- Check out Medusa's entities in the [Entities' reference](../../../references/entities/classes/Address.md).

View File

@@ -85,7 +85,7 @@ If you had the feature flag previously enabled, and you want to disable this fea
You can follow [this documentation to learn how to revert the last migration you ran](https://docs.medusajs.com/cli/reference#migrations).
## Whats Next 🚀
## Whats Next
- Learn more about [Migrations](../migrations/overview.md).
- Learn how to [configure your Medusa server](../../../usage/configurations.md).

View File

@@ -38,6 +38,6 @@ medusa migrations run
If you check your database now you should see that the change defined by the migration has been applied successfully.
## Whats Next 🚀
## Whats Next
- Learn more about [setting up your development server](../../../tutorial/0-set-up-your-development-environment.mdx).

View File

@@ -48,7 +48,7 @@ npm run seed
This will use the underlying `seed` command provided by Medusa's CLI to seed your database with data from the file `data/seed.json` on your Medusa server.
## What's Next :rocket:
## What's Next
- Learn [how to create a migration](index.md)
- Learn more about [setting up your development server](../../../tutorial/set-up-your-development-environment).

View File

@@ -264,7 +264,7 @@ Then, send a request to the [Resend Notification](https://docs.medusajs.com/api/
This request returns the same notification object as the List Notifications endpoint, but it now has a new object in the `resends` array. This is the resent notification. If you supplied a `to` parameter in the request body, you should see its value in the `to` property of the resent notification object.
## Whats Next 🚀
## Whats Next
- Check out the [list of events](../subscribers/events-list.md) you can listen to.
- Check out the [SendGrid](../../../add-plugins/sendgrid.mdx) plugin for easy integration of email notifications.

View File

@@ -78,7 +78,7 @@ An example of a flow that can be implemented using Medusa's Notification API is
- The customer returns the items triggering the `return.recieved` event.
- The Notification Provider listens to the `return.received` event and sends an email to the customer with confirmation that their items have been received and that a refund has been issued.
## Whats Next 🚀
## Whats Next
- Learn how to [create your own Notification Provider](how-to-create-notification-provider.md).
- Check out the [list of events](../subscribers/events-list.md) in Medusa.

View File

@@ -381,7 +381,7 @@ async retrieveSavedMethods(customer) {
}
```
## Whats Next 🚀
## Whats Next
- Check out the Payment Providers for [Stripe](https://github.com/medusajs/medusa/tree/2e6622ec5d0ae19d1782e583e099000f0a93b051/packages/medusa-payment-stripe) and [PayPal](https://github.com/medusajs/medusa/tree/2e6622ec5d0ae19d1782e583e099000f0a93b051/packages/medusa-payment-paypal) for implementation examples.
- Learn more about the [frontend checkout flow](./../../storefront/how-to-implement-checkout-flow.mdx).

View File

@@ -118,7 +118,7 @@ If then the request is interrupted for any reason or the payment fails, the clie
This prevents any payment issues from occurring with the customers and allows for secure retries of failed payments or interrupted connections.
## Whats Next 🚀
## Whats Next
- [Check out how the checkout flow is implemented on the frontend.](./../../storefront/how-to-implement-checkout-flow.mdx)
- Check out payment plugins like [Stripe](../../../add-plugins/stripe.md), [Paypal](/add-plugins/paypal), and [Klarna](../../../add-plugins/klarna.md).

View File

@@ -455,7 +455,7 @@ To install any published plugin, you can run the following command on any Medusa
npm install medusa-plugin-custom
```
## Whats Next 🚀
## Whats Next
- Check out [available Services in Medusa](references/services/../../../../../references/services/classes/AuthService.md) that you can use in your plugin.
- Check out [available events](../subscribers/events-list.md) that you can listen to in Subscribers.

View File

@@ -48,7 +48,7 @@ If youre installing an official plugin from the Medusa repository, you can fi
For community plugins, please refer to the installation instructions of that plugin to learn about any required configurations.
## Whats Next 🚀
## Whats Next
- Learn how to [create your own plugin](create.md).
- Learn how to [create a fulfillment provider](../shipping/add-fulfillment-provider.md) or a [payment provider](../payment/how-to-create-payment-provider.md).

View File

@@ -81,7 +81,7 @@ Since the line item belongs to a cart, theres no need to pass the `region_id`
---
## Whats Next 🚀
## Whats Next
- Learn more about [price selection strategies](../price-selection-strategy/index.md).
- Learn [how to use the PriceList Admin APIs](./use-api.mdx).

View File

@@ -466,7 +466,7 @@ This request returns the ID of the deleted price list.
---
## Whats Next 🚀
## Whats Next
- Learn more about [price lists](./index.md).
- Learn how the [price selection strategy works](../price-selection-strategy/index.md).

View File

@@ -60,7 +60,7 @@ The context that is passed to the `calculateVariantPrice` method is an object th
---
## Whats Next 🚀
## Whats Next
- Learn [how to override the price selection strategy](./override.md).
- Learn more about [price lists](./../price-lists/index.md).

View File

@@ -106,6 +106,6 @@ Then, try out your strategy using any of the [Products](https://docs.medusajs.co
---
## Whats Next 🚀
## Whats Next
- Learn more about [price list selection strategy](./index.md).

View File

@@ -68,7 +68,7 @@ The relation is implemented in the [Order](../../../references/entities/classes/
---
## Whats Next 🚀
## Whats Next
- Learn how to [manage Sales Channels using the Admin APIs](./manage-admin.mdx).
- Check out the [Sales Channels Admin APIs](https://docs.medusajs.com/api/admin/#tag/Sales-Channel).

View File

@@ -517,6 +517,6 @@ The request returns an array of orders that are associated with the specified sa
---
## Whats Next 🚀
## Whats Next
- Learn more about [Sales Channels and how they work](./index.md).

View File

@@ -90,7 +90,7 @@ constructor({ helloService, eventBusService }) {
}
```
## Whats Next 🚀
## Whats Next
- Check out the [Services Reference](/references/services/classes/AuthService) to see a list of all services in Medusa.
- [Learn How to Create an Endpoint.](/advanced/backend/endpoints/add-storefront)

View File

@@ -18,7 +18,7 @@ For example, if the file name is `hello.js`, the service will be registered as `
The registration name of the service is important, as youll be referring to it when you want to get access to the service using dependency injection or in routes.
## What's Next :rocket:
## What's Next
- Learn [how to create a service](./create-service.md)
- Check out the [Services Reference](/references/services/classes/AuthService) to see a list of all services in Medusa.

View File

@@ -266,7 +266,7 @@ cancelFulfillment(fulfillment) {
}
```
## Whats Next 🚀
## Whats Next
- Check out the [Webshipper plugin](https://github.com/medusajs/medusa/tree/cab5821f55cfa448c575a20250c918b7fc6835c9/packages/medusa-fulfillment-webshipper) for an example of a fulfillment provider that interacts with a third-party providers.
- Check out the [manual fulfillment plugin](https://github.com/medusajs/medusa/tree/cab5821f55cfa448c575a20250c918b7fc6835c9/packages/medusa-payment-manual) for a basic implementation of a fulfillment provider.

View File

@@ -135,7 +135,7 @@ The `ShippingMethod` also belongs to the `Order` entity. This association is
The `ShippingMethod` instance holds a `price` attribute, which will either be the flat rate price or the calculated price.
## Whats Next :rocket:
## Whats Next
- [Learn how to Create a Fulfillment Provider.](./add-fulfillment-provider.md)
- Check out [available shipping plugins](https://github.com/medusajs/medusa/tree/master/packages).

View File

@@ -71,7 +71,7 @@ constructor({ productService, eventBusService }) {
You can then use `this.productService` anywhere in your subscribers methods.
## Whats Next 🚀
## Whats Next
- [View the list of all events](events-list.md)
- [Learn how to create a service.](/advanced/backend/services/create-service)

View File

@@ -2153,7 +2153,7 @@ Object of the following format:
</tbody>
</table>
## Whats Next 🚀
## Whats Next
- Learn how you can [use services in subscribers](create-subscriber.md#using-services-in-subscribers).
- Learn how to [create notifications](../notification/overview.md) in Medusa.

View File

@@ -20,7 +20,7 @@ Custom subscribers reside in your project's `src/subscribers` directory. Files h
Whenever an event is emitted, the subscribers registered handler method is executed. The handler method receives as a parameter an object that holds data related to the event. For example, if an order is placed the `order.placed` event will be emitted and all the handlers will receive the order id in the parameter object.
## What's Next :rocket:
## What's Next
- Learn [how to create a Subscriber](create-subscriber.md).
- [View the list of all events](events-list.md).

View File

@@ -187,7 +187,7 @@ The relevant fields are:
During the calculation of the totals of different components of the cart or order, such as shipping or line items, if tax inclusivity is enabled on that component, a process similar to those explained above will be applied to retrieve the total.
## Whats Next 🚀
## Whats Next
- Learn how to [calculate taxes manually](manual-calculation.md).
- [Check out the API reference](https://docs.medusajs.com/api/store/).

View File

@@ -82,7 +82,7 @@ You can learn how to [retrieve and use services](../services/create-service.md#u
:::
## Whats Next 🚀
## Whats Next
- Learn about [tax-inclusive pricing](inclusive-pricing.md).
- Learn about available methods in [CartsService](../../../references/services/classes/CartService.md) and [TotalsService](../../../references/services/classes/TotalsService.md).

View File

@@ -358,7 +358,7 @@ The request returns two properties: `type` and `data`. If the order was placed s
If an error occurred while placing the order, `type` will be `cart` and `data` will be the cart's data.
## Whats Next 🚀
## Whats Next
- Learn more about the [JS Client and how to use it](../../js-client/overview.md).
- Check out available plugins for popular payment providers such as [Stripe](../../add-plugins/stripe.md) and [PayPal](/add-plugins/paypal.md).