diff --git a/.changeset/shaggy-needles-raise.md b/.changeset/shaggy-needles-raise.md
new file mode 100644
index 0000000000..85fb346a85
--- /dev/null
+++ b/.changeset/shaggy-needles-raise.md
@@ -0,0 +1,5 @@
+---
+"medusa-payment-manual": patch
+---
+
+fix(medusa-payment-manual): Add missing update method
diff --git a/.github/workflows/docs-new-announcement.yml b/.github/workflows/docs-new-announcement.yml
new file mode 100644
index 0000000000..5e980cee24
--- /dev/null
+++ b/.github/workflows/docs-new-announcement.yml
@@ -0,0 +1,48 @@
+name: Generate Docs Release Announcement Bar
+on:
+ release:
+ types: [published]
+
+jobs:
+ add-announcement:
+ runs-on: ubuntu-latest
+ env:
+ GH_TOKEN: ${{ secrets.REFERENCE_PAT }}
+ steps:
+ - name: Cancel Previous Runs
+ uses: styfle/cancel-workflow-action@0.9.1
+ with:
+ access_token: ${{ github.token }}
+
+ - name: Checkout
+ uses: actions/checkout@v2.3.5
+ with:
+ fetch-depth: 0
+
+ - name: Setup Node.js environment
+ uses: actions/setup-node@v2.4.1
+ with:
+ node-version: "14"
+ cache: "yarn"
+
+ - name: Install dependencies
+ uses: ./.github/actions/cache-deps
+ with:
+ extension: docs-release
+
+ - name: Build Packages
+ run: yarn build
+
+ - name: Generate Announcement Bar
+ run: yarn generate:announcement
+
+ - name: Create Pull Request
+ uses: peter-evans/create-pull-request@v4
+ with:
+ commit-message: 'chore(docs): Generated Docs Announcement Bar (automated)'
+ base: 'master'
+ title: 'chore(docs): Generated Docs Announcement Bar (automated)'
+ labels: 'type: chore'
+ add-paths: www/docs/**
+ branch: 'chore/generate-announcement'
+ branch-suffix: 'timestamp'
\ No newline at end of file
diff --git a/.github/workflows/docs-remove-announcement.yml b/.github/workflows/docs-remove-announcement.yml
new file mode 100644
index 0000000000..23eb7ce48a
--- /dev/null
+++ b/.github/workflows/docs-remove-announcement.yml
@@ -0,0 +1,46 @@
+# Checks if the announcement bar info was last edited more than 6 days ago, and if so removes it
+name: Remove Docs Release Announcement Bar
+on:
+ schedule:
+ - cron: '0 0 * * *'
+
+jobs:
+ remove-announcement:
+ runs-on: ubuntu-latest
+ env:
+ GH_TOKEN: ${{ secrets.REFERENCE_PAT }}
+ steps:
+ - name: Cancel Previous Runs
+ uses: styfle/cancel-workflow-action@0.9.1
+ with:
+ access_token: ${{ github.token }}
+
+ - name: Checkout
+ uses: actions/checkout@v2.3.5
+ with:
+ fetch-depth: 0
+
+ - name: Setup Node.js environment
+ uses: actions/setup-node@v2.4.1
+ with:
+ node-version: "14"
+ cache: "yarn"
+
+ - name: Install dependencies
+ uses: ./.github/actions/cache-deps
+ with:
+ extension: docs-remove-announcement
+
+ - name: Remove Announcement Bar
+ run: yarn generate:announcement --expire
+
+ - name: Create Pull Request
+ uses: peter-evans/create-pull-request@v4
+ with:
+ commit-message: 'chore(docs): Removed Docs Announcement Bar (automated)'
+ base: 'master'
+ title: 'chore(docs): Removed Docs Announcement Bar (automated)'
+ labels: 'type: chore'
+ add-paths: www/docs/**
+ branch: 'chore/remove-announcement'
+ branch-suffix: 'timestamp'
\ No newline at end of file
diff --git a/.github/workflows/docs-test.yml b/.github/workflows/docs-test.yml
index 0472ae933a..11a1bc4b4a 100644
--- a/.github/workflows/docs-test.yml
+++ b/.github/workflows/docs-test.yml
@@ -1,4 +1,4 @@
-name: Docusaurus Documentation Test
+name: Documentation Tests
on:
pull_request:
paths:
@@ -34,3 +34,29 @@ jobs:
cd www/docs
yarn install
yarn build
+ lint:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Cancel Previous Runs
+ uses: styfle/cancel-workflow-action@0.9.1
+ with:
+ access_token: ${{ github.token }}
+
+ - name: Checkout
+ uses: actions/checkout@v2.3.5
+ with:
+ fetch-depth: 0
+
+ - name: Get Directories to Scan
+ working-directory: docs
+ run: ./get-files.sh
+ id: directories
+
+ - name: Vale Linter
+ uses: errata-ai/vale-action@reviewdog
+ with:
+ files: ${{ steps.directories.outputs.LIST }}
+ fail_on_error: true
+ vale_flags: '--minAlertLevel=error'
+ env:
+ GITHUB_TOKEN: ${{ github.token }}
\ No newline at end of file
diff --git a/.vale.ini b/.vale.ini
new file mode 100644
index 0000000000..db9d16fe76
--- /dev/null
+++ b/.vale.ini
@@ -0,0 +1,17 @@
+StylesPath = docs/styles
+
+MinAlertLevel = suggestion
+Vocab = Base
+
+Packages = write-good
+
+[*.{md,mdx}]
+BasedOnStyles = Vale, write-good, docs
+Vale.Spelling=warning
+write-good.E-Prime=No
+write-good.So=No
+write-good.ThereIs=No
+Vale.Terms=No
+
+[formats]
+mdx = md
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 17d405ccba..8494cca62e 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -56,6 +56,8 @@ All PRs should include tests for the changes that are included. We have two type
- **Unit tests** found under `packages/*/src/services/__tests__` and `packages/*/src/api/routes/*/__tests__`
- **Integration tests** found in `integration-tests/*/__tests__`
+Check out our [local development documentation](https://docs.medusajs.com/usage/local-development) to learn how to test your changes both in the Medusa repository and in a local server.
+
### Documentation
- We generally encourage to document your changes through comments in your code.
@@ -64,4 +66,4 @@ All PRs should include tests for the changes that are included. We have two type
### Release
-The Medusa team will regularly create releases from the develop branch.
+The Medusa team will regularly create releases from the develop branch.
\ No newline at end of file
diff --git a/README.md b/README.md
index c1c85552ce..856bd19d70 100644
--- a/README.md
+++ b/README.md
@@ -37,19 +37,7 @@ An open-source composable commerce engine built for developers.
## Getting Started
-### Deploy in 5 minutes
-
-You can deploy your Medusa server in 5 minutes just by clicking the button below.
-
-
-
-
-
-
-
-### Install Locally
-
-You can install Medusa locally or manually on your server by either following our [Quickstart guide](https://docs.medusajs.com/quickstart/quick-start) or the following steps:
+You can install Medusa by either following our [Quickstart guide](https://docs.medusajs.com/quickstart/quick-start) or the following steps:
1. **Install Medusa CLI**
@@ -66,6 +54,7 @@ You can install Medusa locally or manually on your server by either following ou
3. **Start your Medusa engine**
```bash
+ cd my-medusa-store
medusa develop
```
@@ -144,4 +133,4 @@ Follow our [upgrade guides](https://docs.medusajs.com/advanced/backend/upgrade-
## License
-Licensed under the [MIT License](https://github.com/medusajs/medusa/blob/master/LICENSE)
\ No newline at end of file
+Licensed under the [MIT License](https://github.com/medusajs/medusa/blob/master/LICENSE)
diff --git a/docs/content/add-plugins/algolia.md b/docs/content/add-plugins/algolia.md
index 3f8925341e..63df4d6d6c 100644
--- a/docs/content/add-plugins/algolia.md
+++ b/docs/content/add-plugins/algolia.md
@@ -14,7 +14,7 @@ Through Medusa's flexible plugin system, it is possible to add a search engine t
### Medusa Components
-It is required to have a Medusa server installed before starting with this documentation. If not, please follow along with our [quickstart guide](../quickstart/quick-start.md) to get started in minutes.
+It is required to have a Medusa server installed before starting with this documentation. If not, please follow along with the [quickstart guide](../quickstart/quick-start.md) to get started in minutes.
Furthermore, it’s highly recommended to ensure your Medusa server is configured to work with Redis. As Medusa uses Redis for the event queue internally, configuring Redis ensures that the search indices in Algolia are updated whenever products on the Medusa server are updated. You can follow [this documentation to install Redis](../tutorial/0-set-up-your-development-environment.mdx#redis) and then [configure it on your Medusa server](../usage/configurations.md#redis).
diff --git a/docs/content/add-plugins/contentful/customize-contentful.md b/docs/content/add-plugins/contentful/customize-contentful.md
index 5488c1bf92..9588df16f6 100644
--- a/docs/content/add-plugins/contentful/customize-contentful.md
+++ b/docs/content/add-plugins/contentful/customize-contentful.md
@@ -227,13 +227,13 @@ export const query = graphql`
To test this out, run your Medusa server by running this command in its directory:
```bash
-npm start
+npm run start
```
Then run the Gatsby storefront by running this command in its directory:
```bash
-npm start
+npm run start
```
This runs the Gatsby storefront on `localhost:8000`. Go to the storefront in your browser and open the About page. You should see the Rich Text content you added.
diff --git a/docs/content/add-plugins/contentful/index.md b/docs/content/add-plugins/contentful/index.md
index 9d71ecd6fb..89c13bc9a1 100644
--- a/docs/content/add-plugins/contentful/index.md
+++ b/docs/content/add-plugins/contentful/index.md
@@ -1,6 +1,6 @@
# Contentful
-In this document, you’ll learn how to integrate a Medusa server with Contentful to add rich CMS functionalities
+In this document, you’ll learn how to integrate a Medusa server with Contentful to add rich Content Management System (CMS) functionalities
## Overview
@@ -36,7 +36,7 @@ This installs a new Medusa server in the directory `medusa-contentful`.
### Add Contentful Environment Variables
-Change to the `medusa-contentful` directory. In `.env` you’ll find 3 variables:
+Change to the `medusa-contentful` directory. In `.env` you’ll find three variables:
```bash
CONTENTFUL_SPACE_ID=
@@ -172,7 +172,7 @@ npm run seed
To start the server run the following command:
```bash
-npm start
+npm run start
```
If you seeded the database with demo data, you should see that events related to the products are triggered.
@@ -257,7 +257,7 @@ You should find the field "Content Delivery API - access token”. Copy its valu
Make sure the Medusa server is still running. Then, start the storefront:
```bash
-npm start
+npm run start
```
This starts the storefront at `localhost:8000`. Open it in your browser and you should see on the homepage the Featured Product section with the products you chose on Contentful.
diff --git a/docs/content/add-plugins/mailchimp.md b/docs/content/add-plugins/mailchimp.md
index abaae99f58..fb5bc2491b 100644
--- a/docs/content/add-plugins/mailchimp.md
+++ b/docs/content/add-plugins/mailchimp.md
@@ -10,19 +10,19 @@ By integrating Mailchimp with Medusa, customers will be able to subscribe from M
:::note
-This plugin is only used to allow your customers to subscribe but does not actually do any email sending. If you want to send emails to customers based on specific events, for example, when an order is placed, you should check out our [SendGrid plugin](./sendgrid.mdx) instead.
+This plugin is only used to allow your customers to subscribe but does not actually do any email sending. If you want to send emails to customers based on specific events, for example, when an order is placed, you should check out the [SendGrid plugin](./sendgrid.mdx) instead.
:::
## Prerequisites
-Before going further with this guide make sure you have a Medusa server set up. You can follow our [Quickstart guide](https://docs.medusajs.com/quickstart/quick-start).
+Before going further with this guide make sure you have a Medusa server set up. You can follow the [Quickstart guide](https://docs.medusajs.com/quickstart/quick-start).
You also need a Mailchimp account, so please [create one](https://mailchimp.com/signup) before you start.
## Obtain Mailchimp Keys
-To integrate the plugin into Medusa you need 2 keys: The API Key and the Newsletter list or Audience ID. The API Key acts as a credential for your account, whereas the Newsletter list ID determines which audience should the subscribed customers be added to.
+To integrate the plugin into Medusa you need two keys: The API Key and the Newsletter list or Audience ID. The API Key acts as a credential for your account, whereas the Newsletter list ID determines which audience should the subscribed customers be added to.
You can follow [this guide](https://mailchimp.com/help/about-api-keys/#Find_or_generate_your_API_key) from Mailchimp’s documentation to obtain an API Key.
@@ -179,5 +179,5 @@ If you try entering an email and clicking Subscribe, the email will be subscribe
## What’s Next 🚀
-- Check out SendGrid plugin for more Email functionalities.
-- [Learn more about plugins.](../advanced/backend/plugins/overview.md)
\ No newline at end of file
+- Check out [SendGrid plugin](../add-plugins/sendgrid.mdx) for more Email functionalities.
+- [Learn more about plugins.](../advanced/backend/plugins/overview.md)
diff --git a/docs/content/add-plugins/meilisearch.md b/docs/content/add-plugins/meilisearch.md
index 65f572d4c1..633d3bf61f 100644
--- a/docs/content/add-plugins/meilisearch.md
+++ b/docs/content/add-plugins/meilisearch.md
@@ -14,7 +14,7 @@ Through Medusa's flexible plugin system, it is possible to add a search engine t
### Medusa Components
-It is required to have a Medusa server installed before starting with this documentation. If not, please follow along with our [quickstart guide](../quickstart/quick-start.md) to get started in minutes.
+It is required to have a Medusa server installed before starting with this documentation. If not, please follow along with the [quickstart guide](../quickstart/quick-start.md) to get started in minutes.
Furthermore, it’s highly recommended to ensure your Medusa server is configured to work with Redis. As Medusa uses Redis for the event queue internally, configuring Redis ensures that the search indices in MeiliSearch are updated whenever products on the Medusa server are updated. You can follow [this documentation to install Redis](../tutorial/0-set-up-your-development-environment.mdx#redis) and then [configure it on your Medusa server](../usage/configurations.md#redis).
diff --git a/docs/content/add-plugins/minio.md b/docs/content/add-plugins/minio.md
index 815e412f07..983ff59450 100644
--- a/docs/content/add-plugins/minio.md
+++ b/docs/content/add-plugins/minio.md
@@ -117,27 +117,29 @@ Run your Medusa server alongside the [Medusa Admin](../admin/quickstart.md) to t

-## Additional Configuration for Exports
+## Private Buckets
-Medusa v1.3.3 introduced the Export API. For example, you can now export your products from the Medusa Admin on the Products page.
+### Handle Exports
-
+Medusa provides export functionalities including exporting products and orders. For exports to work, you must [set up a private bucket](#create-private-bucket).
-:::note
+### Handle Imports
-Exports require using Redis to handle the event queue, and using PostgreSQL for the database. If you don’t use Redis or PostgreSQL, you can follow [this documentation to install](../tutorial/0-set-up-your-development-environment.mdx#postgresql) and then [configure them on your Medusa server](../usage/configurations.md#postgresql-configurations).
+Medusa provides import functionalities including importing products. For imports to work, you must [set the private bucket](#add-private-bucket-environment-variable) to be the same as the public bucket.
-:::
+### Create Private Bucket
-When using MinIO, you must create a private bucket that will store these product exports. To do that, follow along the [steps mentioned earlier to create a bucket](#create-a-minio-bucket), but keep Access Policy set to private.
+To create a private bucket, follow along the [steps mentioned earlier](#create-a-minio-bucket), but keep Access Policy set to private.
-Then, add the following environment variable on your Medusa server:
+### Add Private Bucket Environment Variable
+
+Add the following environment variable on your Medusa server:
```bash
MINIO_PRIVATE_BUCKET=exports
```
-Finally, add a new option to the plugin’s options in `medusa-config.js`:
+Then, add a new option to the plugin’s options in `medusa-config.js`:
```jsx
{
@@ -149,16 +151,6 @@ Finally, add a new option to the plugin’s options in `medusa-config.js`:
},
```
-If you start your Medusa server now and click on Export Products on the Medusa admin, the export will run in the background. When ready, it should be available for download.
-
-
-
-:::tip
-
-If you face any errors, make sure you have the latest version of the plugin installed.
-
-:::
-
### Use Different Secret and Access Keys
If you only add the `private_bucket` option, the same secret and access keys that you used for the public bucket will be used to access the private bucket.
diff --git a/docs/content/add-plugins/paypal.md b/docs/content/add-plugins/paypal.md
index 45a56da32d..6f6fa32056 100644
--- a/docs/content/add-plugins/paypal.md
+++ b/docs/content/add-plugins/paypal.md
@@ -18,9 +18,9 @@ In addition, you need to configure a webhook listener on your PayPal Developer D
Webhooks are used in scenarios where the customer might leave the page during the authorization and before the checkout flow is fully complete. It will then create the order or swap after the payment is authorized if they weren’t created
-Additionally, you need a Medusa server installed and set up. If not, you can follow our [quickstart guide](https://docs.medusajs.com/quickstart/quick-start) to get started.
+Additionally, you need a Medusa server installed and set up. If not, you can follow the [quickstart guide](https://docs.medusajs.com/quickstart/quick-start) to get started.
-You also need [Medusa Admin](../admin/quickstart.md) installed to enable PayPal as a payment provider. You can alternatively use our [REST APIs](https://docs.medusajs.com/api/admin).
+You also need [Medusa Admin](../admin/quickstart.md) installed to enable PayPal as a payment provider. You can alternatively use the [REST APIs](https://docs.medusajs.com/api/admin).
## Medusa Server
@@ -80,17 +80,7 @@ If you don’t have a Medusa admin installed, make sure to follow along with [th
### Add PayPal to Regions
-Run your Medusa server and Medusa admin, then open the Medusa admin and login.
-
-Choose Settings from the Sidebar. Then, choose Regions.
-
-
-
-Then, choose the regions you want to add PayPal as a payment provider. In the right-side settings, scroll down to “Payment Providers” and choose “paypal”.
-
-
-
-Once you’re done, click Save. PayPal is now a payment provider in your store in the regions you added it to.
+You can refer to [this documentation in the user guide](../user-guide/regions/providers.mdx#manage-payment-providers) to learn how to add a payment provider like PayPal to a region.
## Storefront Setup
diff --git a/docs/content/add-plugins/s3.md b/docs/content/add-plugins/s3.md
index 35ff63d287..c7f105eee5 100644
--- a/docs/content/add-plugins/s3.md
+++ b/docs/content/add-plugins/s3.md
@@ -32,7 +32,7 @@ The Create Bucket form will open. In the General Configuration section enter a n

-Next, in the Object Ownership section, choose ACLs enabled. Then, 2 radio buttons will show below it. Choose Bucket owner preferred.
+Next, in the Object Ownership section, choose ACLs enabled. Then, two radio buttons will show below it. Choose Bucket owner preferred.

diff --git a/docs/content/add-plugins/segment.md b/docs/content/add-plugins/segment.md
index 91c5b69080..2fe9b25c25 100644
--- a/docs/content/add-plugins/segment.md
+++ b/docs/content/add-plugins/segment.md
@@ -119,7 +119,7 @@ const plugins = [
Run your server with the following command:
```bash npm2yarn
-npm start
+npm run start
```
Then, try triggering one of the [mentioned events earlier in this document](#events-that-the-segment-plugin-tracks). For example, you can place an order either using the [REST APIs](https://docs.medusajs.com/api/store) or using the [Next.js](../starters/nextjs-medusa-starter.md) or [Gatsby](../starters/gatsby-medusa-starter.md) storefronts.
diff --git a/docs/content/add-plugins/sendgrid.mdx b/docs/content/add-plugins/sendgrid.mdx
index 4fcc04f60c..a1b06d78f1 100644
--- a/docs/content/add-plugins/sendgrid.mdx
+++ b/docs/content/add-plugins/sendgrid.mdx
@@ -22,7 +22,7 @@ By integrating SendGrid with Medusa, you’ll be sending email notifications to
## Prerequisites
-Before going further with this guide make sure you have a Medusa server set up. You can follow our [Quickstart guide](../quickstart/quick-start.md).
+Before going further with this guide make sure you have a Medusa server set up. You can follow the [Quickstart guide](../quickstart/quick-start.md).
You also must have [Redis configured on your Medusa server](/tutorial/set-up-your-development-environment#redis). Sending emails is done through Subscribers, which uses Redis as the event queue. If you don’t set up Redis, the plugin will not send emails.
@@ -42,7 +42,7 @@ If you choose to give the API Key restricted access, make sure to at least give
:::
-Once you create the API key, the key will be shown for one time only. So, make sure to copy and save it somewhere for later usage.
+Once you create the API key, the key will be shown for one time only. Make sure to copy and save it somewhere for later usage.
### Email Templates
@@ -3953,7 +3953,7 @@ To test it out, perform an action that would trigger one of the emails being sen
:::tip
-If you don’t have a storefront installed, check out our [Gatsby](../starters/gatsby-medusa-starter.md) or [Next.js](../starters/nextjs-medusa-starter.md) starters to create a storefront in minutes.
+If you don’t have a storefront installed, check out the [Gatsby](../starters/gatsby-medusa-starter.md) or [Next.js](../starters/nextjs-medusa-starter.md) starters to create a storefront in minutes.
:::
diff --git a/docs/content/add-plugins/strapi.md b/docs/content/add-plugins/strapi.md
index 524a29d347..0f9b290a2a 100644
--- a/docs/content/add-plugins/strapi.md
+++ b/docs/content/add-plugins/strapi.md
@@ -1,6 +1,6 @@
# Strapi
-In this document, you’ll learn how to integrate Strapi with Medusa to add rich CMS functionalities.
+In this document, you’ll learn how to integrate Strapi with Medusa to add rich Content Management System (CMS) functionalities.
:::info
@@ -170,7 +170,7 @@ Try updating any products on Strapi by going to Content Manager → Products and
### Update Products on Medusa
-If you try to update products on Medusa either using the [REST APIs](https://docs.medusajs.com/api/admin/#tag/Product/operation/PostProductsProduct) or using [the Medusa Admin](../user-guide/products/manage.md), you’ll see that the product is also updated on Strapi.
+If you try to update products on Medusa either using the [REST APIs](https://docs.medusajs.com/api/admin/#tag/Product/operation/PostProductsProduct) or using [the Medusa Admin](../user-guide/products/manage.mdx), you’ll see that the product is also updated on Strapi.
## What’s Next 🚀
diff --git a/docs/content/add-plugins/stripe.md b/docs/content/add-plugins/stripe.md
index 50054ebbcf..53d6f20f2f 100644
--- a/docs/content/add-plugins/stripe.md
+++ b/docs/content/add-plugins/stripe.md
@@ -4,7 +4,7 @@ This document guides you through setting up Stripe payments in your Medusa serve
## Video Guide
-You can also follow our video guide to learn how the setup works:
+You can also follow this video guide to learn how the setup works:
@@ -26,7 +26,7 @@ Before you proceed with this guide, make sure you create a [Stripe account](http
This section guides you over the steps necessary to add Stripe as a payment provider to your Medusa server.
-If you don’t have a Medusa server installed yet, you must follow our [quickstart guide](../quickstart/quick-start) first.
+If you don’t have a Medusa server installed yet, you must follow the [quickstart guide](../quickstart/quick-start) first.
### Install the Stripe Plugin
@@ -61,7 +61,7 @@ You might find that this code is already available but commented out. You can pr
:::
-The Stripe plugin uses 2 configuration options. The `api_key` is essential to both your development and production environments. As for the `webhook_secret`, it’s essential for your production environment. So, if you’re only using Stripe for development you can skip adding the value for this option at the moment.
+The Stripe plugin uses two configuration options. The `api_key` is essential to both your development and production environments. As for the `webhook_secret`, it’s essential for your production environment. So, if you’re only using Stripe for development you can skip adding the value for this option at the moment.
### Retrieve Stripe's Keys
@@ -107,17 +107,7 @@ If you don’t have a Medusa admin installed, make sure to follow along with [th
### Add Stripe to Regions
-First, make sure that both your Medusa server and Medusa Admin are running.
-
-Then, in your Medusa Admin, log in and choose Settings from the Sidebar. Then, choose Regions.
-
-
-
-Then, choose the regions you want to add Stripe as a payment provider. In the right-side settings, scroll down to “Payment Providers” and choose Stripe.
-
-
-
-Once you’re done, click Save. Stripe is now a payment provider in your store in the regions you selected.
+You can refer to [this documentation in the user guide](../user-guide/regions/providers.mdx#manage-payment-providers) to learn how to add a payment provider like Stripe to a region.
## Storefront Setup
diff --git a/docs/content/add-plugins/twilio-sms.md b/docs/content/add-plugins/twilio-sms.md
index 7d8a00bcc6..68681c50f3 100644
--- a/docs/content/add-plugins/twilio-sms.md
+++ b/docs/content/add-plugins/twilio-sms.md
@@ -16,13 +16,13 @@ This plugin only gives you access to the Twilio SMS API but does not implement s
## Prerequisites
-Before going further with this guide make sure you have a Medusa server set up. You can follow our [Quickstart guide](../quickstart/quick-start.md) if you don’t.
+Before going further with this guide make sure you have a Medusa server set up. You can follow the [Quickstart guide](../quickstart/quick-start.md) if you don’t.
You also must have a [Twilio account created](https://www.twilio.com/sms) so if you don’t already please go ahead and create one.
## Retrieve Credentials
-For the [Twilio SMS plugin](https://github.com/medusajs/medusa/tree/master/packages/medusa-plugin-twilio-sms), you need three credentials from your Twilio account: Account SID, Auth Token, and a Twilio phone number to send from. You can find these 3 from your [Twilio Console’s homepage](https://console.twilio.com).
+For the [Twilio SMS plugin](https://github.com/medusajs/medusa/tree/master/packages/medusa-plugin-twilio-sms), you need three credentials from your Twilio account: Account SID, Auth Token, and a Twilio phone number to send from. You can find these three from your [Twilio Console’s homepage](https://console.twilio.com).
## Install Plugin
@@ -110,7 +110,7 @@ If you create an order now on your storefront, you should receive a message from
:::tip
-If you don’t have a storefront set up yet, you can install one of our [Next.js](../starters/nextjs-medusa-starter.md) or [Gatsby](../starters/gatsby-medusa-starter.md) storefronts.
+If you don’t have a storefront set up yet, you can install one of the [Next.js](../starters/nextjs-medusa-starter.md) or [Gatsby](../starters/gatsby-medusa-starter.md) storefronts.
:::
diff --git a/docs/content/admin/quickstart.md b/docs/content/admin/quickstart.md
index d1ff1dbf95..8f9c6f7cd5 100644
--- a/docs/content/admin/quickstart.md
+++ b/docs/content/admin/quickstart.md
@@ -91,7 +91,7 @@ The default port is set in `package.json` in the `develop` script:
If you wish to change the port you can simply change the `7000` to your desired port.
-However, if you change your Medusa admin port, you need to change it in your Medusa server. The Medusa server has the Medusa admin and store URLs set in the configurations to avoid CORS issues.
+However, if you change your Medusa admin port, you need to change it in your Medusa server. The Medusa server has the Medusa admin and store URLs set in the configurations to avoid Cross-Origin Resource Sharing (CORS) issues.
To change the URL of the Medusa admin in the server, add a new environment variable `ADMIN_CORS` or modify it if you already have it to your Admin URL:
diff --git a/docs/content/advanced/admin/import-products.mdx b/docs/content/advanced/admin/import-products.mdx
index ec0290904f..10be36b145 100644
--- a/docs/content/advanced/admin/import-products.mdx
+++ b/docs/content/advanced/admin/import-products.mdx
@@ -58,7 +58,6 @@ You can do that by sending the following request to the [Upload Files](https://d
```jsx
-// using JS Client
medusa.admin.uploads.create(file) //file is an instance of File
.then(({ uploads }) => {
const key = uploads[0].key;
@@ -69,7 +68,6 @@ medusa.admin.uploads.create(file) //file is an instance of File
```jsx
-// using Fetch API
const formData = new FormData();
formData.append('files', file); //file is an instance of File
@@ -90,7 +88,6 @@ fetch(`/admin/uploads`, {
```bash
-# using cURL
curl --location --request POST '/admin/uploads' \
--header 'Authorization: Bearer {api_token}' \
--header 'Content-Type: text/csv' \
@@ -112,7 +109,6 @@ You can do that by sending the following request to the [Create a Batch Job](htt
```jsx
-// using JS Client
medusa.admin.batchJobs.create({
type: 'product-import',
context: {
@@ -129,7 +125,6 @@ medusa.admin.batchJobs.create({
```jsx
-// using Fetch API
fetch(`/admin/batch-jobs`, {
method: 'POST',
headers: {
@@ -153,7 +148,6 @@ fetch(`/admin/batch-jobs`, {
```bash
-# using cURL
curl --location --request POST '/admin/batch-jobs' \
--header 'Authorization: Bearer {api_token}' \
--header 'Content-Type: application/json' \
@@ -194,7 +188,6 @@ You can retrieve all the details of the batch job, including its status and the
```jsx
-// using JS Client
medusa.admin.batchJobs.retrieve(batchJobId)
.then(( batch_job ) => {
console.log(batch_job.status, batch_job.result);
@@ -205,7 +198,6 @@ medusa.admin.batchJobs.retrieve(batchJobId)
```jsx
-// using Fetch API
fetch(`/admin/batch-jobs/${batchJobId}`)
.then((response) => response.json())
.then(({ batch_job }) => {
@@ -217,7 +209,6 @@ fetch(`/admin/batch-jobs/${batchJobId}`)
```bash
-# using cURL
curl --location --request GET '/admin/batch-jobs/' \
--header 'Authorization: Bearer {api_token}'
# is the ID of the batch job
@@ -256,7 +247,6 @@ To confirm a batch job send the following request:
```jsx
-// using JS Client
medusa.admin.batchJobs.confirm(batchJobId)
.then(( batch_job ) => {
console.log(batch_job.status);
@@ -267,7 +257,6 @@ medusa.admin.batchJobs.confirm(batchJobId)
```jsx
-// using Fetch API
fetch(`/admin/batch-jobs/${batchJobId}/confirm`, {
method: 'POST'
})
@@ -281,7 +270,6 @@ fetch(`/admin/batch-jobs/${batchJobId}/confirm`, {
```bash
-# using cURL
curl --location --request POST '/admin/batch-jobs//confirm' \
--header 'Authorization: Bearer {api_token}'
# is the ID of the batch job
diff --git a/docs/content/advanced/backend/batch-jobs/create.md b/docs/content/advanced/backend/batch-jobs/create.md
new file mode 100644
index 0000000000..2077ddf357
--- /dev/null
+++ b/docs/content/advanced/backend/batch-jobs/create.md
@@ -0,0 +1,382 @@
+# Create a Batch Job Strategy
+
+In this document, you’ll learn how to create a batch job strategy on your Medusa server.
+
+:::info
+
+If you’re interested to learn more about what Batch Jobs are and how they work, check out [this documentation](./index.md).
+
+:::
+
+## Overview
+
+Batch jobs can be used to perform long tasks in the background of your Medusa server. Batch jobs are handled by batch job strategies. An example of a batch job strategy is the Import Products functionality.
+
+This documentation helps you learn how to create a batch job strategy. The batch job strategy used in this example changes the status of all draft products to `published`.
+
+## Prerequisites
+
+### Medusa Components
+
+It is assumed that you already have a Medusa server installed and set up. If not, you can follow our [quickstart guide](../../../quickstart/quick-start.md) to get started.
+
+### Redis
+
+Redis is required for batch jobs to work. Make sure you [install Redis](../../../tutorial/0-set-up-your-development-environment.mdx#redis) and [configure it with your Medusa server](../../../usage/configurations.md#redis).
+
+### PostgreSQL
+
+If you use SQLite during your development, it’s highly recommended that you use PostgreSQL when working with batch jobs. Learn how to [install PostgreSQL](../../../tutorial/0-set-up-your-development-environment.mdx#postgresql) and [configure it with your Medusa server](../../../usage/configurations.md#postgresql-configurations).
+
+## 1. Create a File
+
+A batch job strategy is essentially a class defined in a TypeScript or JavaScript file. You should create this file in `src/strategies`.
+
+Following the example used in this documentation, create the file `src/strategies/publish.ts`.
+
+## 2. Create Class
+
+Batch job strategies must extend the abstract class `AbstractBatchJobStrategy` and implement its abstract methods.
+
+Add the following content to the file you created:
+
+```tsx
+import { AbstractBatchJobStrategy, BatchJobService } from '@medusajs/medusa'
+import { EntityManager } from 'typeorm'
+
+class PublishStrategy extends AbstractBatchJobStrategy {
+ protected batchJobService_: BatchJobService
+ processJob(batchJobId: string): Promise {
+ throw new Error('Method not implemented.')
+ }
+ buildTemplate(): Promise {
+ throw new Error('Method not implemented.')
+ }
+ protected manager_: EntityManager
+ protected transactionManager_: EntityManager
+
+}
+
+export default PublishStrategy
+```
+
+## 3. Define Required Properties
+
+A batch job strategy class must have two static properties: the `identifier` and `batchType` properties. The `identifier` must be a unique string associated with your batch job strategy, and `batchType` must be the batch job's type.
+
+You will use the `batchType` later when you [interact with the Batch Job APIs](#test-your-batch-job-strategy).
+
+Following the same example, add the following properties to the `PublishStrategy` class:
+
+```tsx
+class PublishStrategy extends AbstractBatchJobStrategy {
+ static identifier = 'publish-products-strategy'
+ static batchType = 'publish-products'
+
+ //...
+}
+```
+
+## 4. Define Methods
+
+### (Optional) prepareBatchJobForProcessing
+
+Medusa runs this method before it creates the batch job to prepare the content of the batch job record in the database. It accepts two parameters: the batch job data sent in the body of the [Create Batch Job request](https://docs.medusajs.com/api/admin/#tag/Batch-Job/operation/PostBatchJobs), and the request instance.
+
+Implementing this method is optional. For example:
+
+```tsx
+async prepareBatchJobForProcessing(batchJob: CreateBatchJobInput, req: Express.Request): Promise {
+ //make changes to the batch job's fields...
+ return batchJob
+}
+```
+
+### (Optional) preProcessBatchJob
+
+Medusa runs this method after it creates the batch job, but before it is confirmed and processed. You can use this method to perform any necessary action before the batch job is processed. You can also use this method to add information related to the expected result.
+
+For example, this implementation of the `preProcessBatchJob` method calculates how many draft products it will published and adds it to the `result` attribute of the batch job:
+
+```tsx
+async preProcessBatchJob(batchJobId: string): Promise {
+ return await this.atomicPhase_(async (transactionManager) => {
+ const batchJob = (await this.batchJobService_
+ .withTransaction(transactionManager)
+ .retrieve(batchJobId))
+
+ const count = await this.productService_
+ .withTransaction(transactionManager)
+ .count({
+ status: ProductStatus.DRAFT
+ });
+
+ await this.batchJobService_
+ .withTransaction(transactionManager)
+ .update(batchJob, {
+ result: {
+ advancement_count: 0,
+ count,
+ stat_descriptors: [
+ {
+ key: 'product-publish-count',
+ name: 'Number of products to publish',
+ message: `${count} product(s) will be published.`
+ }
+ ]
+ }
+ })
+ })
+}
+```
+
+The `result` attribute is an object that can hold many properties including:
+
+- `count`: used to indicate how many items (in this case, products) that the task will run on.
+- `advancement_count`: used to indicate the current number of items processed at a given moment. Since the batch job isn't processed yet, you set it to zero.
+- `stat_descriptors`: can be used to show human-readable messages.
+
+### processJob
+
+Medusa runs this method to process the batch job once it is confirmed.
+
+For example, this implementation of the `processJob` method retrieves all draft products and changes their status to published:
+
+```tsx
+async processJob(batchJobId: string): Promise {
+ return await this.atomicPhase_(
+ async (transactionManager) => {
+ const productServiceTx = this.productService_
+ .withTransaction(transactionManager)
+
+ const productList = await productServiceTx
+ .list({
+ status: [ProductStatus.DRAFT]
+ })
+
+ productList.forEach(async (product: Product) => {
+ await productServiceTx
+ .update(product.id, {
+ status: ProductStatus.PUBLISHED
+ })
+ })
+
+ await this.batchJobService_
+ .withTransaction(transactionManager)
+ .update(batchJobId, {
+ result: {
+ advancement_count: productList.length
+ }
+ })
+ }
+ )
+}
+```
+
+:::note
+
+When a batch job is canceled, the processing of the batch job doesn’t automatically stop. You will have to manually check for changes in the status of the batch job. For example, you can retrieve the batch job and use the condition `batchJob.status === BatchJobStatus.CANCELED` to check if the batch job was canceled.
+
+:::
+
+### buildTemplate
+
+This method can be used in cases where you provide a template file to download, such as when implementing an import or export functionality.
+
+If not necessary to your use case, you can simply return an empty string:
+
+```tsx
+async buildTemplate(): Promise {
+ return ''
+}
+```
+
+### (Optional) shouldRetryOnProcessingError
+
+Medusa uses this method to decide whether it should retry the batch job if an error occurs during processing.
+
+By default, the `AbstractBatchJobStrategy` class implements this method and returns `false`, indicating that if a batch job’s process fails it will not be retried.
+
+If you would like to change that behavior, you can override this method to return a different value:
+
+```tsx
+protected async shouldRetryOnProcessingError(batchJob: BatchJob, err: unknown): Promise {
+ return true
+}
+```
+
+### (Optional) handleProcessingError
+
+Medusa uses this method to handle errors that occur during processing. By default, it changes the status of the batch job to `failed` and sets the `errors` property of the batch job’s `result` attribute.
+
+You can use this method as implemented in `AbstractBatchJobStrategy` at any point in your batch job process to set the batch job as failed.
+
+You can also override this method in your batch job strategy and change how it works:
+
+```tsx
+protected async handleProcessingError(batchJobId: string, err: unknown, result: T): Promise {
+ //different implementation...
+}
+```
+
+## 5. Run Build Command
+
+After you create the batch job and before testing it out, you must run the build command in the directory of your Medusa server:
+
+```bash
+npm run build
+```
+
+## Test your Batch Job Strategy
+
+This section covers how to test and use your batch job strategy. Make sure to start your server first:
+
+```bash
+npm run start
+```
+
+:::info
+
+If your `start` script uses the `medusa develop` command, whenever you make changes in the `src` directory the `build` command will automatically run and the server will restart.
+
+:::
+
+You must also use an authenticated user to send batch job requests. You can refer to the [authentication guide in the API reference](https://docs.medusajs.com/api/admin/#section/Authentication) for more details.
+
+If you follow along with the JS Client code snippets, make sure to [install and set it up first](../../../js-client/overview.md).
+
+### Create Batch Job
+
+The first step is to create a batch job using the [Create Batch Job endpoint](https://docs.medusajs.com/api/admin/#tag/Batch-Job/operation/PostBatchJobs). In the body of the request, you must set the `type` to the value of `batchType` in the batch job strategy you created.
+
+For example, this creates a batch job of the type `publish-products`:
+
+```jsx
+// using JS Client
+medusa.admin.batchJobs.create({
+ type: 'publish-products',
+ context: { },
+ dry_run: true
+})
+.then(( batch_job ) => {
+ console.log(batch_job.status);
+});
+```
+
+```jsx
+// using Fetch API
+fetch(`/admin/batch-jobs`, {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify({
+ type: 'publish-products',
+ context: { },
+ dry_run: true
+ })
+})
+.then((response) => response.json())
+.then(({ batch_job }) => {
+ console.log(batch_job.status);
+});
+```
+
+```bash
+# using cURL
+curl --location --request POST '/admin/batch-jobs' \
+--header 'Authorization: Bearer {api_token}' \
+--header 'Content-Type: application/json' \
+--data-raw '{
+ "type": "publish-products",
+ "context": { },
+ "dry_run": true
+}'
+```
+
+You set the `dry_run` to `true` to disable automatic confirmation and running of the batch job. If you want the batch job to run automatically, you can remove this body parameter.
+
+Make sure to replace `` with the server URL where applicable.
+
+### (Optional) Retrieve Batch Job
+
+You can retrieve the batch job afterward to get its status and view details about the process in the `result` property:
+
+```jsx
+// using JS Client
+medusa.admin.batchJobs.retrieve(batchJobId)
+.then(( batch_job ) => {
+ console.log(batch_job.status, batch_job.result);
+});
+```
+
+```jsx
+// using Fetch API
+fetch(`/admin/batch-jobs/${batchJobId}`)
+.then((response) => response.json())
+.then(({ batch_job }) => {
+ console.log(batch_job.status, batch_job.result);
+});
+```
+
+```bash
+# using cURL
+curl --location --request GET '/admin/batch-jobs/' \
+--header 'Authorization: Bearer {api_token}'
+# is the ID of the batch job
+```
+
+Based on the batch job strategy implemented in this documentation, the `result` property could be something like this:
+
+```jsx
+"result": {
+ "count": 1,
+ "stat_descriptors": [
+ {
+ "key": "product-publish-count",
+ "name": "Number of products to publish",
+ "message": "1 product(s) will be published."
+ }
+ ],
+ "advancement_count": 0
+},
+```
+
+### Confirm Batch Job
+
+To process the batch job, send a request to [confirm the batch job](https://docs.medusajs.com/api/admin/#tag/Batch-Job/operation/PostBatchJobsBatchJobConfirmProcessing):
+
+```jsx
+// using JS Client
+medusa.admin.batchJobs.confirm(batchJobId)
+.then(( batch_job ) => {
+ console.log(batch_job.status);
+});
+```
+
+```jsx
+// using Fetch API
+fetch(`/admin/batch-jobs/${batchJobId}/confirm`, {
+ method: 'POST'
+})
+.then((response) => response.json())
+.then(({ batch_job }) => {
+ console.log(batch_job.status);
+});
+```
+
+```bash
+# using cURL
+curl --location --request POST '/admin/batch-jobs//confirm' \
+--header 'Authorization: Bearer {api_token}'
+# is the ID of the batch job
+```
+
+The batch job will start processing afterward. Based on the batch job strategy implemented in this documentation, draft products will be published.
+
+You can [retrieve the batch job](#optional-retrieve-batch-job) at any given point to check its status.
+
+## What’s Next 🚀
+
+- Learn more about [batch jobs](./index.md).
+- Learn how to [import products using the Admin API](../../admin/import-products.mdx).
diff --git a/docs/content/advanced/backend/batch-jobs/customize-import.md b/docs/content/advanced/backend/batch-jobs/customize-import.md
new file mode 100644
index 0000000000..86aad87333
--- /dev/null
+++ b/docs/content/advanced/backend/batch-jobs/customize-import.md
@@ -0,0 +1,115 @@
+# Customize Import Strategy
+
+In this document, you’ll learn how to create a custom product import strategy either by overwriting the default strategy or creating your own.
+
+## Overview
+
+Product Import Strategy is essentially a batch job strategy. Medusa provides the necessary mechanisms to overwrite or create your own strategy.
+
+Although this documentation specifically targets import strategies, you can use the same steps to overwrite any batch job strategy in Medusa, including export strategies.
+
+## Prerequisites
+
+### Medusa Components
+
+It's assumed that you already have a Medusa server installed and set up. If not, you can follow our [quickstart guide](../../../quickstart/quick-start.md) to get started.
+
+### Redis
+
+Redis is required for batch jobs to work. Make sure you [install Redis](../../../tutorial/0-set-up-your-development-environment.mdx#redis) and [configure it with your Medusa server](../../../usage/configurations.md#redis).
+
+### PostgreSQL
+
+If you use SQLite during your development, it’s highly recommended that you use PostgreSQL when working with batch jobs. Learn how to [install PostgreSQL](../../../tutorial/0-set-up-your-development-environment.mdx#postgresql) and [configure it with your Medusa server](../../../usage/configurations.md#postgresql-configurations).
+
+## Overwrite Batch Job Strategy
+
+The steps required for overwriting a batch job strategy are essentially the same steps required to create a batch job strategy with a minor difference. For that reason, this documentation does not cover the basics of a batch job strategy.
+
+If you’re interested to learn more about batch job strategies and how they work, please check out the [Create Batch Job Strategy documentation](./create.md).
+
+### 1. Create a File
+
+You must store batch job strategies in the `src/strategies` directory of your Medusa server. They are either TypeScript or JavaScript files.
+
+So, for example, you can create the file `src/strategies/import.ts`.
+
+### 2. Create a Class
+
+The batch job strategy class must extend the `AbstractBatchJobStrategy` class which you can import from Medusa’s core repository.
+
+For example, you can define the following class in the file you created:
+
+```typescript
+import { AbstractBatchJobStrategy, BatchJobService } from '@medusajs/medusa'
+import { EntityManager } from 'typeorm'
+
+class MyImportStrategy extends AbstractBatchJobStrategy {
+ protected batchJobService_: BatchJobService
+ protected manager_: EntityManager
+ protected transactionManager_: EntityManager
+
+ processJob(batchJobId: string): Promise {
+ throw new Error('Method not implemented.')
+ }
+ buildTemplate(): Promise {
+ throw new Error('Method not implemented.')
+ }
+}
+
+export default MyImportStrategy
+```
+
+:::note
+
+This is the base implementation of a batch job strategy. You can learn about all the different methods and properties in [this documentation](./create.md#3-define-required-properties).
+
+:::
+
+### 3. Set the batchType Property
+
+Every batch job strategy class must have the static property `batchType` defined. It determines the type of batch job this strategy handles.
+
+Since only one batch job strategy can handle a batch job type, you can overwrite Medusa’s default batch job strategies by using the same `batchType` value in your custom strategy.
+
+So, for example, to overwrite the product import strategy set the `batchType` property in your strategy to `product-import`:
+
+```typescript
+class MyImportStrategy extends AbstractBatchJobStrategy {
+ static batchType = 'product-import'
+ //...
+}
+```
+
+### 4. Define your Custom Functionality
+
+You can now define your custom functionality in your batch job strategy. For example, you can create custom import logic to import products.
+
+Refer to the [Create a Batch Job documentation](./create.md#3-define-required-properties) to understand what properties and methods are required in your batch job strategy and how you can use them to implement your custom functionality.
+
+### 5. Run Build Command
+
+Before you can test out your batch job strategy, you must run the `build` command:
+
+```bash npm2yarn
+npm run build
+```
+
+### 6. Test your Functionality
+
+Since you didn’t create a new batch job type and overwrote the functionality of the strategy, you can test out your functionality using the [same steps used with the default strategy](./create.md#test-your-batch-job-strategy).
+
+Specifically, since you create batch jobs using the [Create Batch Job](https://docs.medusajs.com/api/admin/#tag/Batch-Job/operation/PostBatchJobs) endpoint which accepts the batch job type as a body parameter, you just need to send the same type you used for this field. In the example of this documentation, the `type` would be `product-import`.
+
+If you overwrote the import functionality, you can follow [these steps to learn how to import products using the Admin APIs](../../admin/import-products.mdx).
+
+## Create Custom Batch Job Strategy
+
+If you don’t want to overwrite Medusa’s batch job strategy, you can create a custom batch job strategy with a different `batchType` value. Then, use that type when you send a request to [Create a Batch Job](https://docs.medusajs.com/api/admin/#tag/Batch-Job).
+
+For more details on creating custom batch job strategies, please check out the [Create Batch Job Strategy documentation](create.md).
+
+## What’s Next 🚀
+
+- Learn more about [batch jobs](./index.md).
+- Learn [how to use the Import Product APIs](../../admin/import-products.mdx).
diff --git a/docs/content/advanced/backend/batch-jobs/index.md b/docs/content/advanced/backend/batch-jobs/index.md
index 5354b974db..bab3b9fb98 100644
--- a/docs/content/advanced/backend/batch-jobs/index.md
+++ b/docs/content/advanced/backend/batch-jobs/index.md
@@ -2,7 +2,7 @@
In this document, you’ll learn what Batch Jobs are and how they work in Medusa.
-## What are Batch Jobs?
+## What are Batch Jobs
Batch Jobs are tasks that can be performed asynchronously and iteratively. They can be [created using the Admin API](https://docs.medusajs.com/api/admin/#tag/Batch-Job/operation/PostBatchJobs), then, once confirmed, they are processed asynchronously.
@@ -56,6 +56,6 @@ If the batch job fails at any point in this flow, its status is changed to `fail

-## What’s Next?
+## What’s Next
- Learn about the [Batch Job’s events](../subscribers/events-list.md#batch-jobs-events).
diff --git a/docs/content/advanced/backend/cron-jobs/create.md b/docs/content/advanced/backend/cron-jobs/create.md
index 441a895d80..1b37c2e32d 100644
--- a/docs/content/advanced/backend/cron-jobs/create.md
+++ b/docs/content/advanced/backend/cron-jobs/create.md
@@ -4,7 +4,7 @@ In this document, you’ll learn how to create a cron job in Medusa.
## Overview
-Medusa allows you to create cron jobs that run at specific times during your server’s lifetime. For example, you can synchronize your inventory with an ERP system once a day.
+Medusa allows you to create cron jobs that run at specific times during your server’s lifetime. For example, you can synchronize your inventory with an Enterprise Resource Planning (ERP) system once a day.
This guide explains how to create a cron job on your Medusa server. The cron job in this example will simply change the status of draft products to `published`.
@@ -12,7 +12,7 @@ This guide explains how to create a cron job on your Medusa server. The cron job
### Medusa Components
-It is assumed that you already have a Medusa server installed and set up. If not, you can follow our [quickstart guide](../../../quickstart/quick-start.md) to get started.
+It is assumed that you already have a Medusa server installed and set up. If not, you can follow the [quickstart guide](../../../quickstart/quick-start.md) to get started.
### Redis
diff --git a/docs/content/advanced/backend/endpoints/add-admin.md b/docs/content/advanced/backend/endpoints/add-admin.md
index 64d7be803e..494e7403be 100644
--- a/docs/content/advanced/backend/endpoints/add-admin.md
+++ b/docs/content/advanced/backend/endpoints/add-admin.md
@@ -53,7 +53,7 @@ import cors from "cors"
import { projectConfig } from "../../medusa-config"
```
-Then, create an object that will hold the CORS configurations:
+Then, create an object that will hold the Cross-Origin Resource Sharing (CORS) configurations:
```js
const corsOptions = {
@@ -204,7 +204,7 @@ const user = await userService.retrieve(id)
### Route Parameters
-The routes you create receive 2 parameters. The first one is the absolute path to the root directory that your server is running from. The second one is an object that has your plugin's options. If your API route is not implemented in a plugin, then it will be an empty object.
+The routes you create receive two parameters. The first one is the absolute path to the root directory that your server is running from. The second one is an object that has your plugin's options. If your API route is not implemented in a plugin, then it will be an empty object.
```js
export default (rootDirectory, pluginOptions) => {
diff --git a/docs/content/advanced/backend/endpoints/add-storefront.md b/docs/content/advanced/backend/endpoints/add-storefront.md
index 50f4de19dc..de82960485 100644
--- a/docs/content/advanced/backend/endpoints/add-storefront.md
+++ b/docs/content/advanced/backend/endpoints/add-storefront.md
@@ -53,7 +53,7 @@ import cors from "cors"
import { projectConfig } from "../../medusa-config"
```
-Then, create an object that will hold the CORS configurations:
+Then, create an object that will hold the Cross-Origin Resource Sharing (CORS) configurations:
```js
const corsOptions = {
@@ -203,7 +203,7 @@ const customer = await customerService.retrieve(id)
### Route Parameters
-The routes you create receive 2 parameters. The first one is the absolute path to the root directory that your server is running from. The second one is an object that has your plugin's options. If your API route is not implemented in a plugin, then it will be an empty object.
+The routes you create receive two parameters. The first one is the absolute path to the root directory that your server is running from. The second one is an object that has your plugin's options. If your API route is not implemented in a plugin, then it will be an empty object.
```js
export default (rootDirectory, pluginOptions) => {
diff --git a/docs/content/advanced/backend/entities/index.md b/docs/content/advanced/backend/entities/index.md
index 7883a8caa7..82843d7a7c 100644
--- a/docs/content/advanced/backend/entities/index.md
+++ b/docs/content/advanced/backend/entities/index.md
@@ -2,20 +2,6 @@
In this document, you’ll learn how you can create an [Entity](overview.md).
-## Prerequisites
-
-It’s recommended to create a `tsconfig.json` file in the root of your Medusa server with the following content:
-
-```jsx
-{
- "compilerOptions": {
- "experimentalDecorators": true
- }
-}
-```
-
-This will remove any errors that show up in your IDE related to experimental decorators.
-
## Create the Entity
To create an entity, create a TypeScript file in `src/models`. For example, here’s a `Post` entity defined in the file `src/models/post.ts`:
@@ -121,7 +107,7 @@ In the constructor, you can use dependency injection to get access to instances
Then, in the method `list`, you can obtain an instance of the `PostRepository` using `this.manager_.getCustomRepository` passing it `this.postRepository` as a parameter. This lets you use [Custom Repositories with Typeorm](https://typeorm.io/custom-repository) to create custom methods in your repository that work with the data in your database.
-After getting an instance of the repository, you can then use [Typeorm’s Repository methods](https://typeorm.io/repository-api) to perform CRUD (Create, Read, Update, Delete) operations on your entity.
+After getting an instance of the repository, you can then use [Typeorm’s Repository methods](https://typeorm.io/repository-api) to perform Create, Read, Update, and Delete (CRUD) operations on your entity.
If you need access to your entity in endpoints, you can then use the methods you define in the service.
diff --git a/docs/content/advanced/backend/entities/overview.md b/docs/content/advanced/backend/entities/overview.md
index 991cea8325..759724a4f8 100644
--- a/docs/content/advanced/backend/entities/overview.md
+++ b/docs/content/advanced/backend/entities/overview.md
@@ -2,7 +2,7 @@
In this document, you'll learn what Entities are in Medusa.
-## What are Entities?
+## What are Entities
Entities in medusa represent tables in the database as classes. An example of this would be the `Order` entity which represents the `order` table in the database. Entities provide a uniform way of defining and interacting with data retrieved from the database.
diff --git a/docs/content/advanced/backend/feature-flags/toggle.md b/docs/content/advanced/backend/feature-flags/toggle.md
new file mode 100644
index 0000000000..1c3c4c9d63
--- /dev/null
+++ b/docs/content/advanced/backend/feature-flags/toggle.md
@@ -0,0 +1,91 @@
+# Toggle Feature Flags
+
+In this document, you’ll learn about what feature flags are and how to toggle them.
+
+## Overview
+
+Feature flags are used in Medusa to guard beta features that aren’t ready for live and production servers. This allows the Medusa team to keep publishing releases more frequently, while also working on necessary future features behind the scenes.
+
+To use these beta features, you must enable their feature flags.
+
+## Available Feature Flags
+
+You can view a list of available feature flags that you can toggle in [the Medusa GitHub mono-repository](https://github.com/medusajs/medusa/tree/master/packages/medusa/src/loaders/feature-flags). In each feature flag file, you can find the default value of the feature flag, its name, environment variable name, and more.
+
+:::info
+
+If a feature flag is enabled/disabled by default, you don’t need to manually enable/disable it. Only set the feature flag’s value if it’s different than the default.
+
+:::
+
+## Enable Feature Flags
+
+:::caution
+
+Features guarded by feature flags are experimental and beta features. Enable them with caution.
+
+:::
+
+There are two ways to enable a feature flag.
+
+### Method One: Using Environment Variables
+
+You can enable a feature by setting the value of its environment variable to `true`. You can find [the name of a feature flag’s environment variable in the loader file](https://github.com/medusajs/medusa/tree/master/packages/medusa/src/loaders/feature-flags) it’s defined in. It is defined under the property `env_key` in the exported object.
+
+For example, to enable the Tax-Inclusive Pricing beta feature, add the following environment variable:
+
+```jsx
+MEDUSA_FF_TAX_INCLUSIVE_PRICING=true
+```
+
+### Method Two: Using Server Settings
+
+You can enable a feature by using the server settings in `medusa-config.js`. You can find [a feature flag’s key in the loader file](https://github.com/medusajs/medusa/tree/master/packages/medusa/src/loaders/feature-flags) it’s defined in. It is defined under the property `key` in the exported object.
+
+For example, to enable the Tax-Inclusive Pricing beta feature, add the following to the exported object in `medusa-config.js`:
+
+```jsx
+module.exports = {
+ featureFlags: {
+ tax_inclusive_pricing: true
+ },
+ //...
+}
+```
+
+### Note About Precedence
+
+The environment variable’s value has higher precedence over the server settings. So, if you use both these methods on your server, the value of the environment variable will be used.
+
+For example, if the value of the environment variable is set to `false`, but the value of the feature flag in the server settings is set to `true`, the feature flag will take the value of the environment variable and will be disabled.
+
+### Running Migrations
+
+As feature flags generally include adding new entities or making changes to entities in the database, you must run the migrations after enabling the feature flag:
+
+```bash
+medusa migrations run
+```
+
+:::info
+
+You can learn more about migrations in this documentation.
+
+:::
+
+## Disable Feature Flags
+
+Disabling feature flags follows the same process as enabling the feature flags. All you have to do is change the value in the environment variables or the server settings to `false`.
+
+Once you disable a feature flag, all endpoints, entities, services, or other related classes and functionalities are disabled.
+
+### Revert Migrations
+
+If you had the feature flag previously enabled, and you want to disable this feature flag completely, you might need to revert the migrations you ran when you enabled it.
+
+You can follow [this documentation to learn how to revert the last migration you ran](https://docs.medusajs.com/cli/reference#migrations).
+
+## What’s Next 🚀
+
+- Learn more about [Migrations](../migrations/overview.md).
+- Learn how to [configure your Medusa server](../../../usage/configurations.md).
diff --git a/docs/content/advanced/backend/migrations/index.md b/docs/content/advanced/backend/migrations/index.md
index 391ffc0124..aaec6bc0fa 100644
--- a/docs/content/advanced/backend/migrations/index.md
+++ b/docs/content/advanced/backend/migrations/index.md
@@ -1,6 +1,6 @@
# How to Create Migrations
-In this document, you’ll learn how to create a [Migration](overview.md) using [Typeorm](https://typeorm.io).
+In this document, you’ll learn how to create a [Migration](overview.md) using [Typeorm](https://typeorm.io) on your Medusa server.
## Create Migration File
@@ -10,14 +10,10 @@ To create a migration that makes changes to your Medusa schema, run the followin
npx typeorm migration:create -n UserChanged --dir src/migrations
```
-:::tip
-
-The migration file must be inside the `src/migrations` directory. When the build command is run, it will be transpiled into the directory `dist/migrations`. The `migrations run` command can only pick up migrations under the `dist/migrations` directory.
-
-:::
-
This will create the migration file in the path you specify. You can use this without the need to install Typeorm's CLI tool. You can then go ahead and make changes to it as necessary.
+The migration file must be inside the `src/migrations` directory. When you run the build command, it will be transpiled into the directory `dist/migrations`. The `migrations run` command can only pick up migrations under the `dist/migrations` directory on a Medusa server. This applies to migrations created in a Medusa server, and not in a Medusa plugin. For plugins, check out the [Plugin's Structure section](../plugins/create.md).
+
:::tip
You can learn more about writing migrations in [Typeorm’s Documentation](https://typeorm.io/migrations).
diff --git a/docs/content/advanced/backend/migrations/overview.md b/docs/content/advanced/backend/migrations/overview.md
index 581f219f81..b5c82f4397 100644
--- a/docs/content/advanced/backend/migrations/overview.md
+++ b/docs/content/advanced/backend/migrations/overview.md
@@ -8,7 +8,7 @@ Medusa’s Migrations do not work with SQLite databases. They are intended to be
:::
-## What are Migrations?
+## What are Migrations
Migrations are scripts that are used to make additions or changes to your database schema. In Medusa, they are essential for both when you first install your server and for subsequent server upgrades later on.
diff --git a/docs/content/advanced/backend/notification/how-to-create-notification-provider.md b/docs/content/advanced/backend/notification/how-to-create-notification-provider.md
index 7f34b835ca..7970c6b5e7 100644
--- a/docs/content/advanced/backend/notification/how-to-create-notification-provider.md
+++ b/docs/content/advanced/backend/notification/how-to-create-notification-provider.md
@@ -100,7 +100,7 @@ When an event is triggered that your Notification Provider is registered as a ha
In this method, you can perform the necessary operation to send the Notification. Following the example above, you can send an email to the customer when they place an order.
-This method receives 3 parameters:
+This method receives three parameters:
1. `eventName`: This is the name of the event that was triggered. For example, `order.placed`.
2. `eventData`: This is the data payload of the event that was triggered. For example, if the `order.placed` event is triggered, the `eventData` object contains the property `id` which is the ID of the order that was placed.
@@ -156,7 +156,7 @@ The `to` and `data` properties are used in the `NotificationService` in Medusa
Using the [Resend Notification endpoint](https://docs.medusajs.com/api/admin/#tag/Notification/operation/PostNotificationsNotificationResend), an admin user can resend a Notification to the customer. The [`NotificationService`](../../../references/services/classes/NotificationService.md) in Medusa’s core then executes the `resendNotification` method in your Notification Provider.
-This method receives 3 parameters:
+This method receives three parameters:
1. `notification`: This is the original Notification record that was created after you sent the notification with `sendNotification`. You can get an overview of the entity and its attributes in the [architecture overview](overview.md#notification-entity-overview), but most notably it includes the `to` and `data` attributes which are populated originally using the `to` and `data` properties of the object you return in `sendNotification`.
2. `config`: In the Resend Notification endpoint you may specify an alternative receiver of the notification using the `to` request body parameter. For example, you may want to resend the order confirmation email to a different email. If that’s the case, you have access to it in the `config` parameter object. Otherwise, `config` will be an empty object.
@@ -240,7 +240,7 @@ Then, place an order either using the [REST APIs](https://docs.medusajs.com/api/
:::tip
-If you don’t have a storefront installed you can get started with either our [Next.js](../../../starters/nextjs-medusa-starter.md) or [Gatsby](../../../starters/gatsby-medusa-starter.md) starter storefronts in minutes.
+If you don’t have a storefront installed you can get started with either the [Next.js](../../../starters/nextjs-medusa-starter.md) or [Gatsby](../../../starters/gatsby-medusa-starter.md) starter storefronts in minutes.
:::
diff --git a/docs/content/advanced/backend/notification/overview.md b/docs/content/advanced/backend/notification/overview.md
index 3187e89a05..286d8cbfaa 100644
--- a/docs/content/advanced/backend/notification/overview.md
+++ b/docs/content/advanced/backend/notification/overview.md
@@ -6,7 +6,7 @@ This document gives an overview of the notification architecture and how it work
Medusa provides a Notification API to mainly handle sending and resending notifications when an event occurs. For example, sending an email to the customer when they place an order.
-The Notification architecture is made up of 2 main components: the Notification Provider and the Notification. Simply put, the Notification Provider handles the sending and resending of a Notification.
+The Notification architecture is made up of two main components: the Notification Provider and the Notification. Simply put, the Notification Provider handles the sending and resending of a Notification.
## Notification Provider
@@ -24,7 +24,7 @@ When you run your Medusa server, the Notification Provider is registered on your
### NotificationProvider Entity Overview
-The `NotificationProvider` entity only has 2 attributes: `id` and `is_installed`.
+The [`NotificationProvider`](../../../references/js-client/classes/internal-11.NotificationProvider.md) entity only has 2 attributes: `id` and `is_installed`.
`id` is the value of the static property `identifier` defined inside the notification Service class.
@@ -33,7 +33,6 @@ The `NotificationProvider` entity only has 2 attributes: `id` and `is_installed`
If you installed a Notification provider and then removed the Service files or plugin that registered the Notification Provider, the Notification Provider remains in your database, but the value of the `is_installed` field changes to `false`.
## Notification
-
A notification is a form of an alert sent to the customers or users to inform them of an action that has occurred. For example, if an order is placed, the notification, in this case, can be an email that confirms their order and lists the order details.
Notifications can take on other forms such as an SMS or a Slack message.
@@ -48,7 +47,7 @@ A Notification also represents a resent notification. So, when a notification is
### Notification Entity Overview
-The 2 most important properties in the `Notification` entity are the `to` and `data` properties.
+The two most important properties in the [`Notification`](../../../references/js-client/classes/internal-11.Notification.md) entity are the `to` and `data` properties.
The `to` property is a string that represents the receiver of the Notification. For example, if the Notification was sent to an email address, the `to` property holds the email address the Notification was sent to.
diff --git a/docs/content/advanced/backend/payment/overview.md b/docs/content/advanced/backend/payment/overview.md
index 77bcad6b54..22cf5d06a0 100644
--- a/docs/content/advanced/backend/payment/overview.md
+++ b/docs/content/advanced/backend/payment/overview.md
@@ -20,7 +20,7 @@ A Payment Provider in Medusa is a method to handle payments in selected regions.
Payment Providers can be integrated with third-party services that handle payment operations such as capturing a payment. An example of a Payment Provider is Stripe.
-Payment Providers can also be related to a custom way of handling payment operations. An example of that is cash on delivery (COD) payment methods or Medusa’s [manual payment provider plugin](https://github.com/medusajs/medusa/tree/master/packages/medusa-payment-manual) which provides a minimal implementation of a payment provider and allows store operators to manually handle order payments.
+Payment Providers can also be related to a custom way of handling payment operations. An example of that is Cash on Delivery (COD) payment methods or Medusa’s [manual payment provider plugin](https://github.com/medusajs/medusa/tree/master/packages/medusa-payment-manual) which provides a minimal implementation of a payment provider and allows store operators to manually handle order payments.
### How Payment Provider is Created
diff --git a/docs/content/advanced/backend/plugins/create.md b/docs/content/advanced/backend/plugins/create.md
index 3ae18b6579..001244745a 100644
--- a/docs/content/advanced/backend/plugins/create.md
+++ b/docs/content/advanced/backend/plugins/create.md
@@ -22,26 +22,13 @@ Where `medusa-plugin-custom` is the name of the plugin you’re creating. In Med
By convention, all plugin names start with `medusa` followed by a descriptive name of what the plugin does. For example, the Stripe plugin is named `medusa-payment-stripe`.
+## Changes to package.json
+
### Rename Project Name
Update the `name` field in the `package.json` file to the name of your plugin. This should be the same name that you chose when running the `medusa new` command.
-### Project Structure
-
-The command above creates a new directory `medusa-plugin-custom` that holds essentially the same codebase you would have for a Medusa server. This is because a plugin has the same directory structure as a Medusa server.
-
-Under the `src` directory is where the code of your plugin resides. After running the previous command, you should have at least 3 directories inside the `src` directory:
-
-- `api` is where you can add custom endpoints.
-- `services` is where you can add custom services.
-- `subscribers` is where you can add custom subscribers.
-
-You can also add more directories and files to your plugin including:
-
-- `src/models` for adding custom entities or extending existing entities.
-- `src/migrations` for migrations that make changes to the database schema.
-
-## Change Dependencies in package.json
+### Change Dependencies
A basic Medusa server installed with the `medusa new` command has dependencies similar to this:
@@ -93,44 +80,39 @@ Once you’re done making these changes, re-run the install command to update yo
npm install
```
-## Recommended Changes in package.json
-
This section includes recommended changes to your `package.json`. You can skip any of these changes if you don’t find them necessary to your plugin.
-### Change Basic Info
+### Recommended: Change scripts
-`package.json` holds information that further describes the package or the author that created the package. It is recommended to make the following changes:
+:::caution
-- `description`: Change this to a sentence that describes what your plugin does.
-- `author`: Your name and email.
-- `repository`: The repository that holds your plugin’s codebase.
-- `keywords`: This should hold the keywords that are related to your plugin. It’s recommended that all plugins use the keywords `medusa-plugin` or `medusa`.
+If you don't make changes to the `build` and `watch` commands, please be aware of the [expected plugin structure](#plugin-structure).
-### Change scripts
+:::
A basic Medusa installation comes with the following scripts:
```json
"scripts": {
"seed": "medusa seed -f ./data/seed.json",
- "build": "babel src -d dist --extensions \".ts,.js\"",
+ "build": "babel src --out-dir . --ignore **/__tests__ --extensions \".ts,.js\"",
"start": "medusa develop"
}
```
-The `seed` and `start` scripts are not necessary for plugin development so you can remove them.
+The `seed` and `start` scripts aren't necessary for plugin development so you can remove them.
It’s also recommended to add the `watch` script that automatically compiles your files if they are changed:
```json
-"watch": "babel -w src --out-dir . --ignore **/__tests__"
+"watch": "babel -w src --out-dir . --ignore **/__tests__ --extensions \".ts,.js\""
```
This is helpful when testing the plugin.
:::note
-Testing the plugin is covered in a later section.
+Testing the plugin is covered in a [later section](#test-your-plugin).
:::
@@ -148,16 +130,64 @@ This script requires installing the package `cross-env` as a development depende
npm install --save-dev cross-env
```
+### Recommended: Change Basic Info
+
+`package.json` holds information that further describes the package or the author that created the package. It is recommended to make the following changes:
+
+- `description`: Change this to a sentence that describes what your plugin does.
+- `author`: Your name and email.
+- `repository`: The repository that holds your plugin’s codebase.
+- `keywords`: This should hold the keywords that are related to your plugin. It’s recommended that all plugins use the keywords `medusa-plugin` or `medusa`.
+
## Develop your Plugin
-Now, You can start developing your plugin. This can include adding services, endpoints, entities, or anything that is relevant to your plugin.
+Now, You can start developing your plugin. This can include adding services, endpoints, entities, or anything that's relevant to your plugin.
-This guide does not cover how to create each of those files or components. If you’re interested in learning how to do that, you can check out these guides:
+### Plugin Structure
+
+While developing your plugin, you can create your TypeScript or JavaScript files under the `src` directory. This includes creating services, endpoints, migrations, etc...
+
+However, before you test the changes on a Medusa server or publish your plugin, you must transpile your files, which moves them into the root of your plugin directory.
+
+For example, if you have an endpoint in `src/api/index.js`, after running the `build` or `watch` commands [as defined earlier](#change-scripts), the file should be transpiled into `api/index.js` in your plugin's root.
+
+If files and directories aren't placed in the root of your plugin, the Medusa server won't detect or load them.
+
+An example of a plugin's directory before testing or publishing:
+
+```
+medusa-plugin-custom
+|
+|_ _ _ api
+| |
+| |_ _ _ index.js
+|
+|_ _ _ migrations
+| |
+| |_ _ _ _UserChanged.js
+|
+|_ _ _ src
+| |
+| |_ _ _ api
+| | |
+| | |_ _ _ index.ts
+| |
+| |_ _ _ migrations
+| |
+| |_ _ _ _UserChanged.ts
+|
+|_ _ _ package.json
+//... other files
+```
+
+### Development Resources
+
+This guide doesn't cover how to create different files and components. If you’re interested in learning how to do that, you can check out these guides:
- How to create endpoints for [storefront](../endpoints/add-storefront.md) and [admin](../endpoints/add-admin.md)
- How to [create a service](../services/create-service.md)
- How to [create a subscriber](../subscribers/create-subscriber.md)
-- How to create an entity
+- How to [create an entity](./../entities/index.md)
- How to [create a migration](../migrations/index.md)
## Add Plugin Configuration
@@ -301,9 +331,9 @@ rm -rf node_modules
cd /node_modules/
npm install
cd
-npm build
+npm run build
cd
-npm start
+npm run start
```
Where `` is the path to your Medusa server, `` is the path to your plugin and `` is the name of your plugin as it is in your plugin `package.json` file.
@@ -318,7 +348,7 @@ It is safe to ignore any `cross-env: command not found` error you may receive.
Not all files that you use while developing your plugin are necessary to be published.
-For example, the files you add in the `src` directory are compiled to a `dist` directory before publishing. Then, when a developer installs your plugin, they’ll just be using the files under the `dist` directory.
+For example, the files you add in the `src` directory are compiled to the root of the plugin directory before publishing. Then, when a developer installs your plugin, they’ll just be using the files in the root.
So, you can ignore files and directories like `src` from the final published NPM package.
@@ -353,6 +383,14 @@ Once you’re done developing your plugin you can publish the package on NPM’s
Before you publish a plugin, you must [create an account on NPM](https://www.npmjs.com/signup).
+### Prepare Plugin
+
+Before you publish or update your plugin, make sure to run the `prepare` command [defined earlier](#recommended-change-scripts):
+
+```bash npm2yarn
+npm run prepare
+```
+
### Login
In your terminal, log in with your NPM account:
diff --git a/docs/content/advanced/backend/plugins/overview.md b/docs/content/advanced/backend/plugins/overview.md
index d8b51f7de6..e62ba7ac11 100644
--- a/docs/content/advanced/backend/plugins/overview.md
+++ b/docs/content/advanced/backend/plugins/overview.md
@@ -18,7 +18,7 @@ Plugins run within the same process as the core Medusa server eliminating the ne
### Official Plugins
-Medusa has official plugins that cover different aspects and functionalities such as payment, CMS, fulfillment, and notifications. You can check out the available plugins under the [packages directory in the Medusa repository on GitHub](https://github.com/medusajs/medusa/tree/master/packages).
+Medusa has official plugins that cover different aspects and functionalities such as payment, Content Management System (CMS), fulfillment, and notifications. You can check out the available plugins under the [packages directory in the Medusa repository on GitHub](https://github.com/medusajs/medusa/tree/master/packages).
:::tip
diff --git a/docs/content/advanced/backend/price-lists/index.md b/docs/content/advanced/backend/price-lists/index.md
new file mode 100644
index 0000000000..c07b2a496e
--- /dev/null
+++ b/docs/content/advanced/backend/price-lists/index.md
@@ -0,0 +1,87 @@
+# Price Lists
+
+In this document, you’ll learn what price lists are and how they work.
+
+## What are Price Lists
+
+Price lists can be used to override products’ prices based on different conditions. Each price list you create can have its own options and conditions. A price list must override at least one product variant’s prices.
+
+### Example Use Cases
+
+Price lists can be used for a variety of use cases including:
+
+- Setting different prices for VIP customers.
+- Creating sales that run through a specific period of time.
+- Implement Buy X for Price Y sale model. In other words, buy X quantity of a product at the price of Y.
+
+### Price List Entity Overview
+
+A price list is stored in the database as a [PriceList](../../../references/entities/classes/PriceList.md) entity. Some of its important attributes are:
+
+- `type`: The price list's type. Can be either a `sale` or an `override`.
+- `status`: The status of the price list. Can be `active` or `draft`. If a price list is a `draft`, its prices won't be applied even if its conditions are met.
+- `starts_at`: The date to start applying the price list.
+- `ends_at`: The date to stop applying the price list.
+
+---
+
+## Price List Conditions
+
+You can control when a price list is applied using a set of conditions. Only when these conditions are met can the price list be applied.
+
+You can use any of the following conditions:
+
+- **Start and/or expiry date**: You can set a start date, an end date, or both to define when the prices in the list should be applied.
+- **Customer group:** You can choose a customer group to apply the prices for. Customers that belong to this group will see the prices you set in the list, which customers that don’t belong to the group can’t see.
+- **Minimum and/or maximum quantity:** You can specify the minimum quantity, the maximum quantity, or both minimum and maximum quantities of a product variant required to be in the customer’s cart to apply a price in a price list.
+- **Region:** You can specify a specific region where a price in the price list is available in. Only customers accessing your store from that region can see these prices.
+- **Currency Code:** You can specify a currency code where a price in the price list is available in. Only customers accessing your store from regions that use this currency can see these prices.
+
+---
+
+## How are Price Lists Applied
+
+When a product or a line item is retrieved or manipulated on the storefront, Medusa determines its price using a Price Selection Strategy. The price selection strategy determines the best price to apply in a given [context](../price-selection-strategy/index.md#context-object). Part of determining the price depends on the price list.
+
+:::info
+
+This section explains how the price selection strategy uses price lists when it determines the price of a product variant. If you want full details on how the price selection strategy works, check out this documentation instead.
+
+:::
+
+### Product Variants
+
+When the strategy calculates the prices of a product variant, it retrieves both the original and the calculated prices of the variant.
+
+The original price depends on the selected region or currency code in the current context, where the region has higher precedence.
+
+The calculated price is the lowest price among all retrieved prices. Retrieved prices can include the original price and the price lists that can be applied. Prices are retrieved based on the [context](../price-selection-strategy/index.md#context-object).
+
+In the [Get Product](https://docs.medusajs.com/api/store/#tag/Product/operation/GetProductsProduct) and [List Product](https://docs.medusajs.com/api/store/#tag/Product/operation/GetProducts) endpoints, you must pass either the `region_id` or `currency_code` to retrieve the correct prices, as they are part of the price selection strategy context.
+
+Each variant in the response has the following properties:
+
+- `original_price`: The price based on the region or currency selected. You can also retrieve the original price with tax from the `original_price_incl_tax` property.
+- `calculated_price`: The price retrieved from a price list, if there are any. If no price list matches the current context, `calculated_price` will have the same value as `original_price`. You can also retrieve the calculated price with tax from the `calculated_price_incl_tax` property.
+
+If both the `region_id` and `currency_code` aren’t passed to the request, the values of these properties will be `null`.
+
+### Line Items
+
+The total of a line item depends on the price of a product variant. When the line item is created, the price of its underlying product variant is retrieved using the same process detailed in the previous section.
+
+Then, the `unit_price` of the line item is set to the `calculated_price` property of the product variant.
+
+When creating, retrieving, or updating the line item using the API endpoints, the line item’s totals are calculated. The following properties are returned as part of the endpoints’ responses:
+
+- `unit_price`: The product variant’s calculated price.
+- `subtotal`: The `unit_price` multiplied by the quantity of the line item.
+
+Since the line item belongs to a cart, there’s no need to pass the `region_id` or `currency_code` to the requests. The cart’s region and currency are used to determine the context of the price selection.
+
+---
+
+## What’s Next 🚀
+
+- Learn more about [price selection strategies](../price-selection-strategy/index.md).
+- Learn [how to use the PriceList Admin APIs](./use-api.mdx).
diff --git a/docs/content/advanced/backend/price-lists/use-api.mdx b/docs/content/advanced/backend/price-lists/use-api.mdx
new file mode 100644
index 0000000000..5f4fe353a1
--- /dev/null
+++ b/docs/content/advanced/backend/price-lists/use-api.mdx
@@ -0,0 +1,472 @@
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+# Use PriceList API
+
+In this document, you’ll learn how to use the PriceList Admin APIs to create, update, and manage prices in a price list.
+
+:::note
+
+This document doesn't cover what price lists are and their basics. If you’re interested to learn about that, check out [this documentation](./index.md) instead.
+
+:::
+
+## Prerequisites
+
+### Medusa Components
+
+It is assumed that you already have a Medusa server installed and set up. If not, you can follow our [quickstart guide](../../../quickstart/quick-start.md) to get started.
+
+### JS Client
+
+This guide includes code snippets to send requests to your Medusa server using Medusa’s JS Client, JavaScript’s Fetch API, or cURL.
+
+If you follow the JS Client code blocks, it’s assumed you already have [Medusa’s JS Client](../../../js-client/overview.md) installed and [have created an instance of the client](../../../js-client/overview.md#configuration).
+
+### Authenticated Admin User
+
+You must be an authenticated admin user before following along with the steps in the tutorial.
+
+You can learn more about [authenticating as an admin user in the API reference](https://docs.medusajs.com/api/admin/#section/Authentication).
+
+---
+
+## Create Price List
+
+When you create a price list, you can specify different conditions to control when the price list can be applied.
+
+In the body of your request, aside from the required fields, you can send the following fields to apply different conditions:
+
+```js
+{
+ prices: [
+ {
+ region_id,
+ currency_code,
+ min_quantity,
+ max_quantity
+ }
+ ],
+ customer_groups: [
+ {
+ id
+ }
+ ]
+}
+```
+
+:::info
+
+You can learn more about what the conditions you can apply on a price list and its prices in this documentation.
+
+:::
+
+For example, sending the following request creates a price list with two prices: one that is applied when the maximum quantity of the product variant in the cart is 3; another is applied when the minimum quantity of the same variant in the cart is 4:
+
+
+
+
+```jsx
+import { PriceListType } from "@medusajs/medusa"
+
+medusa.admin.priceLists.create({
+ name: 'New Price List',
+ description: 'A new price list',
+ type: PriceListType.SALE,
+ status: 'active',
+ prices: [
+ {
+ amount: 1000,
+ variant_id,
+ currency_code: 'eur',
+ max_quantity: 3
+ },
+ {
+ amount: 1500,
+ variant_id,
+ currency_code: 'eur',
+ min_quantity: 4
+ }
+ ]
+})
+.then(({ price_list }) => {
+ console.log(price_list.id);
+});
+```
+
+
+
+
+```jsx
+fetch(`/admin/price-lists`, {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify({
+ name: 'New Price List',
+ description: 'A new price list',
+ type: 'sale',
+ status: 'active',
+ prices: [
+ {
+ amount: 1000,
+ variant_id,
+ currency_code: 'eur',
+ max_quantity: 3
+ },
+ {
+ amount: 1500,
+ variant_id,
+ currency_code: 'eur',
+ min_quantity: 4
+ }
+ ]
+ })
+})
+.then((response) => response.json())
+.then(({ price_list }) => {
+ console.log(price_list.id)
+})
+```
+
+
+
+
+```bash
+curl --location --request POST '/admin/price-lists' \
+--header 'Authorization: Bearer {api_token}' \
+--header 'Content-Type: application/json' \
+--data-raw '{
+ "name": "New Price List",
+ "description": "A new price list",
+ "type": "sale",
+ "status": "active",
+ "prices": [
+ {
+ "amount": 1500,
+ "variant_id": "",
+ "max_quantity": 3,
+ "currency_code": "eur"
+ },
+ {
+ "amount": 1000,
+ "variant_id": "",
+ "currency_code": "eur",
+ "min_quantity": 4
+ }
+ ]
+}'
+```
+
+
+
+
+This request returns the created price list.
+
+You can check the full list of request body parameters in the [API reference](https://docs.medusajs.com/api/admin/#tag/Price-List/operation/PostPriceListsPriceList).
+
+---
+
+## Get Price List’s Details
+
+You can retrieve all of a price list’s details using the Get a Price List endpoint:
+
+
+
+
+```jsx
+medusa.admin.priceLists.retrieve(priceListId)
+.then(({ price_list }) => {
+ console.log(price_list.id);
+});
+```
+
+
+
+
+```jsx
+fetch(`/admin/price-lists/${priceListId}`)
+.then((response) => response.json())
+.then(({ price_list }) => {
+ console.log(price_list.id)
+})
+```
+
+
+
+
+```jsx
+curl --location --request GET '/admin/price-lists/{id}' \
+--header 'Authorization: Bearer {api_token}'
+```
+
+
+
+
+---
+
+## Update a Price List
+
+After creating a price list, you can update all of its fields including its status, prices, and more using the [Update Price List](https://docs.medusajs.com/api/admin/#tag/Price-List/operation/PostPriceListsPriceListPriceList) endpoint.
+
+For example, by sending the following request the end date of the price list will be updated:
+
+
+
+
+```jsx
+medusa.admin.priceLists.update(priceListId, {
+ ends_at: '2022-10-11'
+})
+.then(({ price_list }) => {
+ console.log(price_list.id);
+});
+```
+
+
+
+
+```jsx
+fetch(`/admin/price-lists/${priceListId}`, {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify({
+ ends_at: '2022-10-11'
+ })
+})
+.then((response) => response.json())
+.then(({ price_list }) => {
+ console.log(price_list.id)
+})
+```
+
+
+
+
+```bash
+curl --location --request POST '/admin/price-lists/' \
+--header 'Authorization: Bearer {api_token}' \
+--header 'Content-Type: application/json' \
+--data-raw '{
+ "ends_at": "2022-10-11"
+}'
+```
+
+
+
+
+This request returns the updated price list.
+
+For a full list of request body parameters, check out the [API reference](https://docs.medusajs.com/api/admin/#tag/Price-List/operation/PostPriceListsPriceListPriceList).
+
+---
+
+## Manage Prices
+
+### Add Prices
+
+You can add prices to your price list after creating it using the [Update Prices](https://docs.medusajs.com/api/admin/#tag/Price-List/operation/PostPriceListsPriceListPricesBatch) endpoint.
+
+You can also set the `override` request body parameter to `true` to replace the existing prices in the price list.
+
+For example, sending the following request adds a new price to the price list:
+
+
+
+
+```jsx
+medusa.admin.priceLists.addPrices(priceListId, {
+ prices: [
+ {
+ amount: 1200,
+ variant_id,
+ currency_code: 'eur'
+ }
+ ]
+})
+.then(({ price_list }) => {
+ console.log(price_list.id);
+});
+```
+
+
+
+
+```jsx
+fetch(`/admin/price-lists/${priceListId}/prices/batch`, {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify({
+ prices: [
+ {
+ amount: 1200,
+ variant_id,
+ currency_code: 'eur'
+ }
+ ]
+ })
+})
+.then((response) => response.json())
+.then(({ price_list }) => {
+ console.log(price_list.id)
+})
+```
+
+
+
+
+```bash
+curl --location --request POST '/admin/price-lists/' \
+--header 'Authorization: Bearer {api_token}' \
+--header 'Content-Type: application/json' \
+--data-raw '{
+ "prices": [
+ {
+ "amount": 1200,
+ "variant_id": "",
+ "currency_code": "eur"
+ }
+ ]
+}'
+```
+
+
+
+
+This request returns the price list with the updated prices.
+
+For a full list of request body parameters, check out the [API reference](https://docs.medusajs.com/api/admin/#tag/Price-List/operation/PostPriceListsPriceListPricesBatch).
+
+### Delete a Product’s Prices
+
+You can delete all the prices of a product’s variants using the [Delete Product Prices](https://docs.medusajs.com/api/admin/#tag/Price-List/operation/DeletePriceListsPriceListProductsProductPrices) endpoint:
+
+
+
+
+```jsx
+medusa.admin.priceLists.deleteProductPrices(priceListId, productId)
+.then(({ ids, object, deleted }) => {
+ console.log(ids.length);
+});
+```
+
+
+
+
+```jsx
+fetch(`/admin/price-lists/${priceListId}/products/${productId}/prices`, {
+ method: 'DELETE'
+})
+.then((response) => response.json())
+.then(({ ids, object, deleted }) => {
+ console.log(ids.length)
+})
+```
+
+
+
+
+```bash
+curl --location --request DELETE '/admin/price-lists//products//prices' \
+--header 'Authorization: Bearer {api_token}'
+```
+
+
+
+
+This request returns the IDs of the deleted prices.
+
+### Delete a Variant’s Prices
+
+You can delete all the prices of a variant using the [Delete Variant Prices](https://docs.medusajs.com/api/admin/#tag/Price-List/operation/DeletePriceListsPriceListVariantsVariantPrices) endpoint:
+
+
+
+
+```jsx
+medusa.admin.priceLists.deleteVariantPrices(priceListId, variantId)
+.then(({ ids, object, deleted }) => {
+ console.log(ids);
+});
+```
+
+
+
+
+```jsx
+fetch(`/admin/price-lists/${priceListId}/variants/${variantId}/prices`, {
+ method: 'DELETE'
+})
+.then((response) => response.json())
+.then(({ ids, object, deleted }) => {
+ console.log(ids.length)
+})
+```
+
+
+
+
+```jsx
+curl --location --request DELETE '/admin/price-lists//variants//prices' \
+--header 'Authorization: Bearer {api_token}'
+```
+
+
+
+
+This request returns the IDs of the deleted prices.
+
+---
+
+## Delete Price List
+
+You can delete a price list, and subsequently all prices defined in it, using the [Delete Price List](https://docs.medusajs.com/api/admin/#tag/Price-List/operation/DeletePriceListsPriceList) endpoint:
+
+
+
+
+```jsx
+medusa.admin.priceLists.delete(priceListId)
+.then(({ id, object, deleted }) => {
+ console.log(id);
+});
+```
+
+
+
+
+```jsx
+fetch(`/admin/price-lists/${priceListId}`, {
+ method: 'DELETE'
+})
+.then((response) => response.json())
+.then(({ id, object, deleted }) => {
+ console.log(id)
+})
+```
+
+
+
+
+```jsx
+curl --location --request DELETE '/admin/price-lists/' \
+--header 'Authorization: Bearer {api_token}'
+```
+
+
+
+
+This request returns the ID of the deleted price list.
+
+---
+
+## What’s Next 🚀
+
+- Learn more about [price lists](./index.md).
+- Learn how the [price selection strategy works](../price-selection-strategy/index.md).
\ No newline at end of file
diff --git a/docs/content/advanced/backend/price-selection-strategy/index.md b/docs/content/advanced/backend/price-selection-strategy/index.md
new file mode 100644
index 0000000000..3b1ef07de4
--- /dev/null
+++ b/docs/content/advanced/backend/price-selection-strategy/index.md
@@ -0,0 +1,66 @@
+# Price Selection Strategy
+
+In this document, you’ll learn what a price selection strategy is.
+
+:::note
+
+If you’re interested to learn how to override the price selection strategy, check out [this documentation](./override.md) instead.
+
+:::
+
+## What's a Price Selection Strategy
+
+Medusa provides many features and different ways to control the price of a product variant. This includes price lists and their different conditions, products’ original prices, and taxes.
+
+Medusa uses the `PriceSelectionStrategy` class to retrieve the best price for a product variant for a specific context. This strategy is used whenever products and line items are retrieved or manipulated on the storefront.
+
+---
+
+## PriceSelectionStrategy Overview
+
+The `PriceSelectionStrategy` class extends the `AbstractPriceSelectionStrategy` class. Its main method is the `calculateVariantPrice` which is used to retrieve a product variant’s price in a given context.
+
+### calculateVariantPrice Method
+
+Medusa uses this method to retrieve a product variant’s price when a product variant or line item is retrieved or manipulated. This includes when other entities that product variants and line items belong to are retrieved, such as products and carts respectively.
+
+This method accepts two parameters:
+
+1. The ID of the variant.
+2. A [context](#context-object) object.
+
+The method retrieves all the available prices of the variant based on the conditions in the context object.
+
+It returns an object with the following properties:
+
+1. `originalPrice`: The original price of the variant which depends on the selected region or currency code in the context object. If both region ID and currency code are available in the context object, the region has higher precedence.
+2. `originalPriceIncludesTax`: A boolean value indicating whether the original price includes taxes or not. This is only available for [Tax-Inclusive Pricing](../taxes/inclusive-pricing.md).
+3. `calculatedPrice`: The lowest price among the prices of the product variant retrieved using the context object.
+4. `calculatedPriceIncludesTax`: A boolean value indicating whether the calculated price includes taxes or not. This is only available for [Tax-Inclusive Pricing](../taxes/inclusive-pricing.md).
+5. `calculatedPriceType`: Either `default` if the `calculatedPrice` is the original price, or the type of the price list applied.
+6. `prices`: an array of all the prices of the variant retrieved using the context object. It can include its original price and its price lists if there are any.
+
+:::info
+
+You can learn more about price lists and how they’re used in [this documentation](../price-lists/index.md).
+
+:::
+
+### Context Object
+
+The context that is passed to the `calculateVariantPrice` method is an object that has the following optional properties:
+
+- `cart_id`: The ID of the customer’s cart. This is used when the prices are being retrieved for the variant of a line item, as it is used to determine the current region and currency code of the context.
+- `customer_id`: The ID of the customer. This is used to filter out price lists for a customer group that this customer doesn’t belong to.
+- `quantity`: The quantity of the item in the cart. This is used to filter out price lists that have `min_quantity` or `max_quantity` conditions set.
+- `region_id`: The ID of the region the customer is using.
+- `currency_code`: The currency code the customer is using.
+- `include_discount_prices`: A boolean value indicating whether price list prices should be retrieved or not.
+- `tax_rates`: The tax rates to be applied. This is only used for [Tax-Inclusive Pricing](../taxes/inclusive-pricing.md).
+
+---
+
+## What’s Next 🚀
+
+- Learn [how to override the price selection strategy](./override.md).
+- Learn more about [price lists](./../price-lists/index.md).
diff --git a/docs/content/advanced/backend/price-selection-strategy/override.md b/docs/content/advanced/backend/price-selection-strategy/override.md
new file mode 100644
index 0000000000..e9f1dbf185
--- /dev/null
+++ b/docs/content/advanced/backend/price-selection-strategy/override.md
@@ -0,0 +1,111 @@
+# Override Price Selection Strategy
+
+In this document, you’ll learn how to override Medusa’s price selection strategy to create a custom pricing strategy.
+
+:::note
+
+If you’re interested in learning what a price selection strategy is and how it works, check out [this documentation](./index.md) instead.
+
+:::
+
+## 1. Create Class
+
+Create a TypeScript or JavaScript file in `src/strategies` of your Medusa server project with a class that extends the `AbstractPriceSelectionStrategy` class:
+
+```typescript
+import { AbstractPriceSelectionStrategy, IPriceSelectionStrategy, PriceSelectionContext, PriceSelectionResult } from "@medusajs/medusa";
+
+import { EntityManager } from "typeorm";
+
+export default class MyPriceListStrategy extends AbstractPriceSelectionStrategy {
+
+ withTransaction(manager: EntityManager): IPriceSelectionStrategy {
+ if (!manager) {
+ return this
+ }
+
+ return new MyPriceListStrategy()
+ }
+
+ async calculateVariantPrice(
+ variant_id: string,
+ context: PriceSelectionContext
+ ): Promise {
+ //TODO
+ }
+}
+```
+
+You can use services or repositories in the strategy by adding them to the constructor and updating the parameters passed to the `MyPriceListStrategy` constructor in `withTransaction`. For example:
+
+```typescript
+export default class MyPriceListStrategy extends AbstractPriceSelectionStrategy {
+ private productsService: ProductService
+
+ constructor({
+ productsService
+ }) {
+ super()
+ this.productsService = productsService
+ }
+
+ withTransaction(manager: EntityManager): IPriceSelectionStrategy {
+ if (!manager) {
+ return this
+ }
+
+ return new MyPriceListStrategy({
+ productsService: this.productsService
+ })
+ }
+ //...
+}
+```
+
+---
+
+## 2. Implement calculateVariantPrice
+
+Implement the price selection strategy you want inside the `calculateVariantPrice` method.
+
+This method accepts the variant ID as a first parameter and the [context](./index.md#context-object) object as a second parameter.
+
+This method must return an object having the following fields:
+
+```typescript
+{
+ originalPrice, //number | null
+ calculatedPrice, //number | null
+ prices // MoneyAmount[]
+}
+```
+
+You can learn more about optional properties and the meaning behind every property [here](./index.md#calculatevariantprice-method).
+
+---
+
+## 3. Run Build Command
+
+In your terminal, run the build command to transpile the files in the `src` directory into the `dist` directory:
+
+```bash npm2yarn
+npm run build
+```
+
+---
+
+## Test it Out
+
+Run your server to test it out:
+
+```bash npm2yarn
+npm run start
+```
+
+Then, try out your strategy using any of the [Products](https://docs.medusajs.com/api/store/#tag/Product) or [Carts](https://docs.medusajs.com/api/store/#tag/Cart) endpoints which include retrieving product variants and line items respectively. You should then see the prices in the response based on your implemented strategy.
+
+---
+
+## What’s Next 🚀
+
+- Learn more about [price list selection strategy](./index.md).
diff --git a/docs/content/advanced/backend/services/overview.md b/docs/content/advanced/backend/services/overview.md
index 9436bede63..d8c58c6ad0 100644
--- a/docs/content/advanced/backend/services/overview.md
+++ b/docs/content/advanced/backend/services/overview.md
@@ -2,7 +2,7 @@
In this document, you'll learn about what Services are in Medusa.
-## What are Services?
+## What are Services
Services in Medusa represent bundled helper methods that you want to use across your server. By convention, they represent a certain entity or functionality in your server.
diff --git a/docs/content/advanced/backend/shipping/add-fulfillment-provider.md b/docs/content/advanced/backend/shipping/add-fulfillment-provider.md
index d1ee828ffd..878181ef34 100644
--- a/docs/content/advanced/backend/shipping/add-fulfillment-provider.md
+++ b/docs/content/advanced/backend/shipping/add-fulfillment-provider.md
@@ -77,7 +77,7 @@ constructor({}, options) {
When the admin is creating shipping options available for customers during checkout, they choose one of the fulfillment options provided by underlying fulfillment providers.
-For example, if you’re integrating UPS as a fulfillment provider, you might support 2 fulfillment options: UPS Express Shipping and UPS Access Point.
+For example, if you’re integrating UPS as a fulfillment provider, you might support two fulfillment options: UPS Express Shipping and UPS Access Point.
These fulfillment options are defined in the `getFulfillmentOptions` method. This method should return an array of options.
@@ -124,7 +124,7 @@ When the customer chooses a shipping option on checkout, the shipping option and
`validateFulfillmentOption` is called when a `POST` request is sent to [`/carts/:id/shipping-methods`](https://docs.medusajs.com/api/store/#tag/Cart/operation/PostCartsCartShippingMethod).
-This method accepts 3 parameters:
+This method accepts three parameters:
1. The shipping option data.
2. The `data` object passed in the body of the request.
@@ -156,7 +156,7 @@ After an order is placed, it can be fulfilled either manually by the admin or us
This method gives you access to the fulfillment being created as well as other details in case you need to perform any additional actions with the third-party provider.
-This method accepts 4 parameters:
+This method accepts four parameters:
1. The data of the shipping method associated with the order.
2. An array of items in the order to be fulfilled. The admin can choose all or some of the items to fulfill.
@@ -210,7 +210,7 @@ canCalculate(data) {
This method is called on checkout when the shipping method is being created if the `price_type` of the selected shipping option is `calculated`.
-This method receives 3 parameters:
+This method receives three parameters:
1. The `data` parameter of the selected shipping option.
2. The `data` parameter sent with [the request](https://docs.medusajs.com/api/store/#tag/Cart/operation/PostCartsCartShippingMethod).
diff --git a/docs/content/advanced/backend/shipping/overview.md b/docs/content/advanced/backend/shipping/overview.md
index b835398686..d7ff7a9981 100644
--- a/docs/content/advanced/backend/shipping/overview.md
+++ b/docs/content/advanced/backend/shipping/overview.md
@@ -1,12 +1,12 @@
# Shipping Architecture Overview
-This document gives an overview of the shipping architecture and its 4 most important components.
+This document gives an overview of the shipping architecture and its four most important components.
## Introduction
In Medusa, the Shipping architecture relies on 4 components: **Fulfillment Provider**, **Shipping Profiles**, **Shipping Options**, and **Shipping Methods**.
-The distinction between the 4 is important. It has been carefully planned and put together to support all the different ecommerce use cases and shipping providers that can be integrated.
+The distinction between the four is important. It has been carefully planned and put together to support all the different ecommerce use cases and shipping providers that can be integrated.
It’s also constructed to support multiple regions, provide different shipment configurations and options for different product types, provide promotional shipments for your customers, and much more.
diff --git a/docs/content/advanced/backend/subscribers/events-list.md b/docs/content/advanced/backend/subscribers/events-list.md
index b5ed1f20c3..9b3825c030 100644
--- a/docs/content/advanced/backend/subscribers/events-list.md
+++ b/docs/content/advanced/backend/subscribers/events-list.md
@@ -8,7 +8,7 @@ It is assumed you’re already familiar with [Subscribers in Medusa and how to l
## Legend
-Events in this document are listed under the entity they’re associated with. They’re listed in a table of 3 columns:
+Events in this document are listed under the entity they’re associated with. They’re listed in a table of three columns:
1. **Event Name:** The name you use to subscribe a handler for the event.
2. **Description:** When this event is triggered.
@@ -1687,13 +1687,12 @@ This section holds all events related to sales channels.
:::note
-As of Medusa v1.3.5, Sales Channels are available but guarded by a feature flag. To use Sales Channels, add the following environment variable:
+As of Medusa v1.3.5, Sales Channels are available but guarded by a feature flag. To use Sales Channels either:
-```bash
-MEDUSA_FF_SALES_CHANNELS=true
-```
+1. Enable the `MEDUSA_FF_SALES_CHANNELS` environment variable;
+2. Or enable the `sales_channels` key in the Medusa server's settings.
-Then, run the [migrations](../migrations/overview.md#how-to-run-migrations).
+You can learn more about enabling it in the [feature flags](../feature-flags/toggle.md) documentation.
:::
diff --git a/docs/content/advanced/backend/subscribers/overview.md b/docs/content/advanced/backend/subscribers/overview.md
index 3fafc1b292..8f3603b4a9 100644
--- a/docs/content/advanced/backend/subscribers/overview.md
+++ b/docs/content/advanced/backend/subscribers/overview.md
@@ -2,7 +2,7 @@
In this document, you'll learn what Subscribers are in Medusa.
-## What are Events?
+## What are Events
In Medusa, there are events that are emitted when a certain action occurs. For example, if a customer places an order, the `order.placed` event is emitted with the order data.
@@ -10,7 +10,7 @@ The purpose of these events is to allow other parts of the platform, or third-pa
Medusa's queuing and events system is handled by Redis. So, you must have [Redis configured](../../../tutorial/0-set-up-your-development-environment.mdx#redis) on your server to use subscribers.
-## What are Subscribers?
+## What are Subscribers
Subscribers register handlers for an events and allows you to perform an action when that event occurs. For example, if you want to send your customer an email when they place an order, then you can listen to the `order.placed` event and send the email when the event is emitted.
diff --git a/docs/content/advanced/backend/taxes/inclusive-pricing.md b/docs/content/advanced/backend/taxes/inclusive-pricing.md
new file mode 100644
index 0000000000..c38d4b97c7
--- /dev/null
+++ b/docs/content/advanced/backend/taxes/inclusive-pricing.md
@@ -0,0 +1,193 @@
+# Tax Inclusive Pricing
+
+In this document, you’ll learn how tax-inclusive pricing works in Medusa.
+
+:::note
+
+Tax Inclusive Pricing is currently in beta mode and guarded by a feature flag. To use Tax-Inclusive Pricing either:
+
+1. Enable the `MEDUSA_FF_TAX_INCLUSIVE_PRICING` environment variable;
+2. Or enable the `tax_inclusive_pricing` key in the Medusa server's settings.
+
+You can learn more about enabling it in the [feature flags](../feature-flags/toggle.md) documentation.
+
+:::
+
+## Introduction
+
+Tax Inclusive pricing allows you to set the final prices for products and shipping options regardless of the customer's applicable tax rates. When tax-inclusive prices are used, Medusa automatically calculates the tax amount for a given price.
+
+This can be useful when some countries have the same currency but have different tax rates. If you want your prices to be the same across these countries, you have to manage two price lists to account for the tax differences. Using tax-inclusive pricing you only have to specify the price once.
+
+Then, Medusa handles calculating the tax amount using the tax rate and the tax-inclusive price. This is managed in the backend and relayed to accounting and analytics tools.
+
+## How is Tax Inclusivity Defined
+
+Tax inclusivity can be toggled for regions, currencies, price lists, and shipping options either during creation or while editing. This is represented by the boolean attribute `includes_tax` available in the entities `Region`, `Currency`, `PriceList`, and `ShippingOption`. By default, this attribute is set to `false`.
+
+If you want to enable or disable this attribute for any of these entities, you can use the create or update endpoints related to these entities as shown in the [Admin API reference](https://docs.medusajs.com/api/admin/).
+
+The value set for these entities can affect whether line items and shipping methods are tax inclusive or not.
+
+### How is Tax Inclusivity Defined for Line Items
+
+:::info
+
+When a product is added to the cart, a line item is created to represent that product in the cart.
+
+:::
+
+The `LineItem` entity also has the `includes_tax` attribute. The value of this flag is set to `true` if:
+
+- The region of the line item has the `includes_tax` attribute set to `true`;
+- Or the currency of the line item has the `includes_tax` attribute set to `true`;
+- Or a price list that includes the product variant associated with the line item has the `includes_tax` attribute set to `true`, and the tax-inclusive amount of one of the variant’s prices in the price list is less than the original price of the variant;
+- Or one of the variant’s prices in the price list uses a currency or region that has the `includes_tax` attribute set to `true`, and the tax-inclusive amount of the price is less than the original price of the variant.
+
+### How is Tax Inclusivity Defined for Shipping Methods
+
+:::info
+
+When a shipping option is selected, a shipping method is created based on that shipping option. You can learn more about this in the [Shipping Architecture documentation](../shipping/overview.md).
+
+:::
+
+The `ShippingMethod` entity also has the `includes_tax` attribute. Its value is the same as the value of `includes_tax` of the shipping option the method is associated with.
+
+## Tax Amount Calculation Formula
+
+When a price is tax-inclusive, the tax amount is calculated using the following formula:
+
+```jsx
+const taxAmount = (taxRate * taxInclusivePrice) / (1 + taxRate)
+```
+
+Where `taxRate` is the tax rate to be applied to the price, and `taxInclusivePrice` is the price entered by the store operator.
+
+For example, if the tax rate is `0.25` and the price of a product is `100`, the resulting tax amount calculated by Medusa will be `0.25 * 100 / 1.25 = 20`.
+
+## Retrieving Tax Amounts
+
+This section covers at which point tax amounts are calculated for different entities, how they are calculated when the price is tax inclusive, and what fields can be returned in the endpoints relative to each of the entities.
+
+:::note
+
+If you have disabled the automatic calculation of taxes in a region, you must [manually calculate the taxes of the line items and the cart](manual-calculation.md). Otherwise, taxes will not be calculated or retrieved during checkout for each entity mentioned here.
+
+:::
+
+### Products
+
+Taxes are calculated for each product variant either when a [single product is retrieved](https://docs.medusajs.com/api/store/#tag/Product/operation/GetProductsProduct) or a [list of products is retrieved](https://docs.medusajs.com/api/store/#tag/Product/operation/GetProducts).
+
+Among the pricing fields retrieved for each variant, the following fields are relevant to taxes:
+
+- `original_price`: The original price of the variant.
+- `calculated_price`: The calculated price, which can be based on prices defined in a price list.
+- `original_tax`: The tax amount applied to the original price.
+- `calculated_tax`: The tax amount applied to the calculated price.
+- `original_price_incl_tax`: The price after applying the tax amount on the original price.
+- `calculated_price_incl_tax`: The price after applying the tax amount on the calculated price
+- `original_price_includes_tax`: a boolean value indicating whether the amount in `original_price` includes the tax amount by default or not.
+- `calculated_price_includes_tax`: a boolean value indicating whether the amount in `calculated_price` includes the tax amount by default or not.
+
+If tax inclusivity is enabled for the current region or currency (based on whether the default price is specified for the region or currency, with region taking a higher precedence):
+
+- `original_price` will include the tax amount by default.
+- `original_price_includes_tax` will be set to `true`.
+- `original_price_incl_tax` will have the same amount as `original_price`.
+- `original_tax` is automatically calculated by Medusa.
+
+Also, for each of the product variant’s prices in a price list, if tax inclusivity is enabled (either if the price list itself has the `includes_tax` attribute set to `true`, or the variant’s price in the price list uses a currency or region that has the `includes_tax` attribute set to `true`), and the amount of the price is less than the original price of the variant:
+
+- `calculated_tax` will include the tax amount by default.
+- `calculated_price_includes_tax` will be set to `true`.
+- `calculated_price_incl_tax` will have the same amount as `calculated_price`.
+
+:::info
+
+Price lists include a list of prices that can be used to override the original price of a product’s variants.
+
+Each variant’s price in the price list is compared to the variant’s original price using the following condition:
+
+```jsx
+amount < (1 + taxRate) * calculatedPrice
+```
+
+Where `amount` is the amount of the variant’s price in the price list, `taxRate` is the applied rate, and `calculatedPrice` is the original price of the variant.
+
+:::
+
+Here is an example of these fields when tax inclusivity is enabled for both the currency and the price list:
+
+```jsx
+{
+ original_price: 110,
+ calculated_price: 100,
+ calculated_price_type: "sale",
+ original_price_includes_tax: true,
+ calculated_price_includes_tax: true,
+ calculated_price_incl_tax: 100,
+ calculated_tax: 20,
+ original_price_incl_tax: 110,
+ original_tax: 22,
+}
+```
+
+### Line Item
+
+The taxes of line items are calculated and retrieved whenever the [cart is retrieved or updated](https://docs.medusajs.com/api/store/#tag/Cart).
+
+Each line item returned in any of the cart’s requests has total fields related to the price of the line item and its taxes. Among those fields, the following are relevant to tax-inclusive pricing:
+
+- `unit_price`: The original price of the variant associated with the line item.
+- `tax_total`: The total tax amount applied on the original price taking into account any applied discounts as well.
+- `original_tax_total`: The total tax amount applied on the original price without taking into account any applied discounts.
+- `subtotal`: The total of the line item’s price subtracting the amount in `original_tax_total`.
+- `origial_total`: The `subtotal` including the `original_tax_total` amount.
+
+If tax inclusivity is enabled for the line item, `unit_price` will include the tax amount. The tax amount, which will also be the value of `tax_total`, is calculated using [Medusa’s formula for tax inclusive pricing](#tax-amount-calculation-formula) based on the line item’s tax rates. The calculation takes into account any discounts applied on the item, which means the discount amount is deducted from the original price.
+
+Then, the `subtotal` is calculated by subtracting the `tax_total` from the total of the line item’s price. `original_total` has the same value as `subtotal`.
+
+:::info
+
+The total of the line item’s price is the variant’s `unit_price` multiplied by its quantity in the cart.
+
+:::
+
+Finally, `original_tax_total` undergoes the same `tax_total` calculation, however, any discounts applied on the line item are not taken into account. This means the discount amount is not deducted from the original price.
+
+### Shipping Options
+
+Taxes for Shipping Options are calculated and retrieved when the [list of shipping options is retrieved](https://docs.medusajs.com/api/store/#tag/Shipping-Option).
+
+Among the returned fields for each shipping option, the following are relevant to each of their pricing and taxes:
+
+- `amount`: The original price of the shipping option.
+- `price_incl_tax`: The price of the shipping option with tax included.
+- `tax_amount`: The tax amount applied to the shipping option.
+
+If tax inclusivity is enabled for the shipping option, `amount` and `price_incl_tax` have the same value. Also, the value of `tax_amount` is calculated using [Medusa’s formula for tax inclusive pricing](#tax-amount-calculation-formula).
+
+### Carts and Orders
+
+Carts and Orders have the same total fields relevant for taxes.
+
+A cart’s totals, including its taxes, are calculated and retrieved whenever the cart is [updated or retrieved](https://docs.medusajs.com/api/store/#tag/Cart).
+
+An order’s totals, including its taxes, are calculated and retrieved whenever the order is retrieved both on the [storefront](https://docs.medusajs.com/api/store/#tag/Order) and on the [admin](https://docs.medusajs.com/api/admin/#tag/Order).
+
+The relevant fields are:
+
+- `shipping_total`: The total tax-exclusive price of the shipping methods used in the cart or order without any applied taxes.
+- `tax_total`: The total of the taxes applied on the cart or order, including taxes applied on line items and shipping methods.
+- `subtotal`: The subtotal of line items including taxes, but without shipping total.
+- `total`: The total of the cart or order, including the subtotal, shipping total, and taxes applied.
+
+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.
+
+## What’s Next 🚀
+
+- Learn how to [calculate taxes manually](manual-calculation.md).
+- [Check out the API reference](https://docs.medusajs.com/api/store/).
diff --git a/docs/content/advanced/backend/taxes/manual-calculation.md b/docs/content/advanced/backend/taxes/manual-calculation.md
new file mode 100644
index 0000000000..1c9c26f1be
--- /dev/null
+++ b/docs/content/advanced/backend/taxes/manual-calculation.md
@@ -0,0 +1,88 @@
+# Calculate Taxes Manually in Checkout
+
+In this document, you’ll learn how to manually calculate taxes during checkout if you have automatic tax calculation disabled in a region.
+
+## Overview
+
+By default, taxes are automatically calculated by Medusa during checkout. This behavior can be disabled for a region using the Admin APIs or the Medusa admin to limit the requests being sent to a tax provider.
+
+If you disable this behavior, you must manually trigger taxes calculation. When taxes are calculated, this means that requests will be sent to the tax provider to retrieve the tax rates.
+
+## How to Manually Calculate Taxes in Checkout
+
+This section explores different ways you can calculate taxes based on your purpose.
+
+### Use Calculate Cart Taxes Endpoint
+
+The [Calculate Cart Taxes](https://docs.medusajs.com/api/store/#tag/Cart/operation/PostCartsCartTaxes) endpoint forces the calculation of taxes for a cart during checkout. This bypasses the option set in admin to not calculate taxes automatically, which results in sending requests to the tax provider.
+
+This calculates and retrieves the taxes on the cart and each of the line items in that cart.
+
+### Use CartService
+
+The `CartService` class has a method `retrieve` that gets a cart by ID. In that method, taxes are calculated only if automatic taxes calculation is enabled for the region the cart belongs to.
+
+You can, however, force calculating the taxes of the cart by passing in the third parameter an option containing the key `force_taxes` with its value set to `true`.
+
+For example:
+
+```jsx
+cartService.retrieve('cart_01G8Z...', { }, { force_taxes: true });
+```
+
+:::tip
+
+You can learn how to [retrieve and use services](../services/create-service.md#using-your-custom-service) in this documentation.
+
+:::
+
+### Use decorateLineItemsWithTotals function in Endpoints
+
+If you want to calculate the taxes of line items on the storefront in an endpoint and return the necessary fields in the result, you can use the `decorateLineItemsWithTotals` method in your endpoint:
+
+```jsx
+//at the beginning of the file
+import { decorateLineItemsWithTotals } from "@medusajs/medusa/dist/api/routes/store/carts/decorate-line-items-with-totals"
+
+export default () => {
+ //...
+
+ router.get("/store/line-taxes", async (req, res) => {
+ //example of retrieving cart
+ const cartService = req.scope.resolve("cartService");
+ const cart = await cartService.retrieve(cart_id)
+
+ //...
+ //retrieve taxes of line items
+ const data = await decorateLineItemsWithTotals(cart, req, {
+ force_taxes: true
+ });
+
+ return res.status(200).json({ cart: data });
+ })
+}
+```
+
+The `decorateLineItemsWithTotals` method accepts an options object as a third parameter. If you set `force_taxes` to `true` in that object, the totals of the line items can be retrieved regardless of whether the automatic calculation is enabled in the line item’s region.
+
+### Use TotalsService
+
+You can calculate and retrieve taxes of line items using the `getLineItemTotals` method available in the `TotalService` class. All you need to do is pass in the third argument to that method an options object with the key `include_tax` set to true:
+
+```jsx
+const itemTotals = await totalsService
+ .getLineItemTotals(item, cart, {
+ include_tax: true
+ })
+```
+
+:::tip
+
+You can learn how to [retrieve and use services](../services/create-service.md#using-your-custom-service) in this documentation.
+
+:::
+
+## What’s 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).
diff --git a/docs/content/advanced/backend/upgrade-guides/1-3-6.md b/docs/content/advanced/backend/upgrade-guides/1-3-6.md
index 240ba4cbc7..308d091fe7 100644
--- a/docs/content/advanced/backend/upgrade-guides/1-3-6.md
+++ b/docs/content/advanced/backend/upgrade-guides/1-3-6.md
@@ -4,7 +4,7 @@ Following the addition of feature flags in version v1.3.3 and the addition of th
:::note
-In version 1.3.6, Sales Channels are available but hidden behind feature flags. If you don’t have Sales Channels enabled, you don’t need to follow the steps detailed in this migration script.
+In version 1.3.6, Sales Channels are available but guraded by [feature flags](../feature-flags/toggle.md). If you don’t have Sales Channels enabled, you don’t need to follow the steps detailed in this migration script.
:::
@@ -24,7 +24,7 @@ These environment variables are used in the data migration scripts in this upgra
## Sales Channels
-Sales Channels were introduced in v1.3.5 behind a feature flag. By enabling Sales Channels, developers and users can associate products and other entities with a specific Sales Channel.
+Sales Channels were introduced in v1.3.5 guarded by a [feature flag](../feature-flags/toggle.md). By enabling Sales Channels, developers and users can associate products and other entities with a specific Sales Channel.
However, if you upgraded Medusa to v1.3.5 and enabled Sales Channels, you must add every product to at least one Sales Channel manually. Otherwise, products can’t be added to carts in different Sales Channels.
diff --git a/docs/content/advanced/backend/upgrade-guides/1-3-8.md b/docs/content/advanced/backend/upgrade-guides/1-3-8.md
index 32b77368c8..d38fab4f0e 100644
--- a/docs/content/advanced/backend/upgrade-guides/1-3-8.md
+++ b/docs/content/advanced/backend/upgrade-guides/1-3-8.md
@@ -4,7 +4,7 @@ Updating your medusa server to version `1.3.8` may cause issues when using NPM.
## Update Using Yarn
-We highly recommend using [yarn](https://yarnpkg.com/) when working with Medusa. Updating with yarn should resolve any issues you might run into during the update.
+It's highly recommended to use [yarn](https://yarnpkg.com/) when working with Medusa. Updating with yarn should resolve any issues you might run into during the update.
## Resolving Update Issues with NPM
diff --git a/docs/content/advanced/storefront/how-to-implement-checkout-flow.mdx b/docs/content/advanced/storefront/how-to-implement-checkout-flow.mdx
index 65fbbbd44b..b4c445ccb4 100644
--- a/docs/content/advanced/storefront/how-to-implement-checkout-flow.mdx
+++ b/docs/content/advanced/storefront/how-to-implement-checkout-flow.mdx
@@ -7,7 +7,7 @@ This document will guide you through the steps needed to implement the checkout
## Overview
-A checkout flow is composed of the necessary steps to allow a customer to perform a successful checkout. It’s generally made up of 2 primary steps: the shipping and payment steps.
+A checkout flow is composed of the necessary steps to allow a customer to perform a successful checkout. It’s generally made up of two primary steps: the shipping and payment steps.
This document will take you through the general process of a checkout flow. You should follow along with this document if you’re creating a custom storefront, if you’re adding a custom payment provider, or if you’re just interested in learning more about how checkout works in Medusa.
diff --git a/docs/content/contribution-guidelines.md b/docs/content/contribution-guidelines.md
index 7c27e2b432..ae473a997c 100644
--- a/docs/content/contribution-guidelines.md
+++ b/docs/content/contribution-guidelines.md
@@ -41,20 +41,28 @@ If you’re fixing errors in an existing documentation page, you can scroll down
If you’re adding a new page or contributing to the codebase, fork the repository, create a new branch, and make all changes necessary in your repository. Then, once you’re done creating a PR in the Medusa repository.
-For more details on how to contribute, check out [the contribution guidelines on our repository](https://github.com/medusajs/medusa/blob/master/CONTRIBUTING.md).
+For more details on how to contribute, check out [the contribution guidelines in the Medusa repository](https://github.com/medusajs/medusa/blob/master/CONTRIBUTING.md).
-### Branch Name
+### Base Branch
When you make edit to an existing documentation page or fork the repository to make changes to the documentation, you have to create a new branch.
+Documentation contributions always use `master` as the base branch.
+
+### Branch Name
+
Make sure that the branch name starts with `docs/`. For example, `docs/fix-services`.
### Pull Request Conventions
When you create a pull request, prefix the title with “docs:”. Make sure to keep “docs” in small letters.
+
+
In the body of the PR, explain clearly what the PR does. If the PR solves an issue, use [closing keywords](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword) with the issue number. For example, “Closes #1333”.
+
+
## Sidebar
When you add a new page to the documentation, you must add the new page in `www/docs/sidebars.js` under the `docsSidebar`. You can learn more about the syntax used [here](https://docusaurus.io/docs/sidebar/items).
@@ -101,14 +109,22 @@ The code snippet must be written using NPM, and the `npm2yarn` plugin will autom
### Expand Commands
+
+
Don't use commands in their abbrivated terms. For example, instead of `npm i` use `npm install`.
+
+
### Run Command
Make sure to always use the `run` command when the command runs a script.
+
+
For example, even though you can run the `start` script using NPM with `npm start`, however, to make sure it’s transformed properly to a Yarn command, you must add the `run` keyword before `start`.
+
+
### Global Option
When a command uses the global option `-g`, add it at the end of the NPM command to ensure that it’s transformed to a Yarn command properly. For example:
@@ -117,6 +133,59 @@ When a command uses the global option `-g`, add it at the end of the NPM command
npm install @medusajs/medusa-cli -g
```
-## Need Additional Help?
+## Linting with Vale
-If you need any additional help while contributing, you can join our [Discord server](https://discord.gg/medusajs) and ask Medusa’s core team as well as the community any questions.
+Medusa uses Vale to lint documentation pages and perform checks on incoming PRs into the repository.
+
+### Result of PR Checks
+
+You can check the result of running the "lint" action on your PR by clicking the Details link next to it. You can find there all errors that you need to fix.
+
+### Run Vale Locally
+
+If you want to check your work locally, you can do that by:
+
+1. [Installing Vale](https://vale.sh/docs/vale-cli/installation/) on your machine.
+2. Change to the `docs` directory:
+
+```bash
+cd docs
+```
+
+3\. Run the `run-vale` script:
+
+```bash
+./run-vale.sh error
+```
+
+### VS Code Extension
+
+To facilitate writing documentation, you can optionally use the [Vale VS Code extension](https://github.com/errata-ai/vale-vscode). This will show you any errors in your documentation while writing it.
+
+### Linter Exceptions
+
+If it's needed to break some style guide rules in a document, you can wrap the parts that the linter shouldn't scan with the following comments in the `md` or `mdx` files:
+
+```md
+
+
+content that shouldn't be scanned for errors here...
+
+
+```
+
+You can also disable specific rules. For example:
+
+```md
+
+
+Medusa supports Node versions 14 and 16.
+
+
+```
+
+If you use this in your PR, you must justify its usage.
+
+## Need Additional Help
+
+If you need any additional help while contributing, you can join Medusa's [Discord server](https://discord.gg/medusajs) and ask Medusa’s core team as well as the community any questions.
diff --git a/docs/content/deployments/admin/deploying-on-netlify.md b/docs/content/deployments/admin/deploying-on-netlify.md
index 3640efad28..c2885ed723 100644
--- a/docs/content/deployments/admin/deploying-on-netlify.md
+++ b/docs/content/deployments/admin/deploying-on-netlify.md
@@ -98,7 +98,7 @@ In the form that shows, keep all fields the same and click on the “Show advanc

-Under the “Advanced build settings” section click on the “New variable” button. This will show 2 inputs for the key and value of the environment variable.
+Under the “Advanced build settings” section click on the “New variable” button. This will show two inputs for the key and value of the environment variable.
For the first field enter the key `GATSBY_MEDUSA_BACKEND_URL` and for the value enter the URL of your Medusa server.
@@ -128,7 +128,7 @@ If you click on it, you’ll be redirected to the deployed admin website.
:::note
-Before you can use Medusa Admin, you must add the URL as an environment variable on your deployed Medusa server. Follow along in the [Configure CORS on the Medusa Server](#configure-cors-variable-on-the-medusa-server) section.
+Before you can use Medusa Admin, you must add the URL as an environment variable on your deployed Medusa server. Follow along in the [Configure Cross-Origin Resource Sharing (CORS) on the Medusa Server](#configure-cors-variable-on-the-medusa-server) section.
:::
@@ -168,7 +168,7 @@ In your terminal, run the following command:
netlify init
```
-You’ll have to follow 5 steps for the initialization:
+You’ll have to follow five steps for the initialization:
##### **Step 1: Create Netlify Website**
diff --git a/docs/content/deployments/server/deploying-on-digital-ocean.md b/docs/content/deployments/server/deploying-on-digital-ocean.md
index 0f4b15f433..f9682e9d99 100644
--- a/docs/content/deployments/server/deploying-on-digital-ocean.md
+++ b/docs/content/deployments/server/deploying-on-digital-ocean.md
@@ -8,7 +8,7 @@ DigitalOcean is a reliable hosting provider that provides different ways to host
### Medusa Server
-It is assumed that you already have a Medusa server installed locally. If you don’t, please follow our [quickstart guide](../../quickstart/quick-start.md).
+It is assumed that you already have a Medusa server installed locally. If you don’t, please follow the [quickstart guide](../../quickstart/quick-start.md).
Furthermore, your Medusa server should be configured to work with PostgreSQL and Redis. You can follow the [Configure your Server documentation](../../usage/configurations.md) to learn how to do that.
@@ -163,7 +163,7 @@ Once you’re done, click Next to move on to the next step.
In this section, you’ll add environment variables that are essential to your Medusa server.
-You should see 2 ways to add environment variables: Global or specific to the Web Service.
+You should see two ways to add environment variables: Global or specific to the Web Service.

@@ -263,7 +263,7 @@ Make sure to replace `` and `` with the credentials you want to
## Add Environment Variables
-You’ll likely need to add environment variables later such as Admin CORS and Store CORS variables.
+You’ll likely need to add environment variables later such as Admin Cross-Origin Resource Sharing (CORS) and Store CORS variables.
To add environment variables, on the App’s page click on Settings and choose the Web Service component.
diff --git a/docs/content/deployments/server/deploying-on-heroku.mdx b/docs/content/deployments/server/deploying-on-heroku.mdx
index 5529bfe12f..fa318bdf55 100644
--- a/docs/content/deployments/server/deploying-on-heroku.mdx
+++ b/docs/content/deployments/server/deploying-on-heroku.mdx
@@ -20,7 +20,7 @@ Alternatively, you can use this button to deploy the Medusa server to Heroku dir
### Medusa Server
-It is assumed that you already have a Medusa server installed locally. If you don’t, please follow our [quickstart guide](../../quickstart/quick-start.md).
+It is assumed that you already have a Medusa server installed locally. If you don’t, please follow the [quickstart guide](../../quickstart/quick-start.md).
Furthermore, your Medusa server should be configured to work with PostgreSQL and Redis. You can follow the [Configure your Server documentation](../../usage/configurations.md) to learn how to do that.
@@ -135,7 +135,7 @@ heroku buildpacks:set heroku/nodejs
Upstash adds the Redis URL under the environment variable `UPSTASH_REDIS_URL`. However, Medusa looks for the `REDIS_URL` environment variable when initializing the connection with Redis.
-So, retrieve the value of `UPSTASH_REDIS_URL` with the following command:
+Retrieve the value of `UPSTASH_REDIS_URL` with the following command:
```bash
heroku config:get UPSTASH_REDIS_URL
@@ -153,7 +153,7 @@ Where `` is the value you received from the previous command.
#### Configure the PostgreSQL Database URL
-If you're using the Heroku PostgreSQL Add-on, it should configure the environment variable `DATABASE_URL`. So, you don't need to perform any additional actions.
+If you're using the Heroku PostgreSQL Add-on, it should configure the environment variable `DATABASE_URL`. In that case, you don't need to perform any additional actions.
However, if you use another add-on, make sure to set the environment variable `DATABASE_URL` to the PostgreSQL Database URL.
@@ -270,7 +270,7 @@ Where `` is the name of your Heroku app, and `` and `
## Add Environment Variables
-You’ll likely need to add environment variables later such as Admin CORS and Store CORS variables.
+You’ll likely need to add environment variables later such as Admin Cross-Origin Resource Sharing (CORS) and Store CORS variables.
To set or change an environment variable's value, you can use the following command:
diff --git a/docs/content/deployments/server/deploying-on-qovery.md b/docs/content/deployments/server/deploying-on-qovery.md
index 8e265f9824..ae371f839d 100644
--- a/docs/content/deployments/server/deploying-on-qovery.md
+++ b/docs/content/deployments/server/deploying-on-qovery.md
@@ -2,7 +2,7 @@
In this document, you'll learn how to deploy your Medusa server on Qovery with the help of Terraform.
-[Qovery](https://www.qovery.com/) is a Continuous Deployment Platform that provides you with the developer experience of Heroku on top of your cloud provider (e.g. AWS, DigitalOcean).
+[Qovery](https://www.qovery.com/) is a Continuous Deployment Platform that provides you with the developer experience of Heroku on top of your cloud provider (For example, AWS, DigitalOcean).
[Terraform](https://www.terraform.io/) is an open source infrastructure as code software (IaC) tool that allows you to easily deploy apps like Medusa and the resources it needs to Qovery using a single script.
@@ -16,7 +16,7 @@ This tutorial explains how to deploy Medusa to a Qovery organization with an AWS
### Medusa Server
-It is assumed that you already have a Medusa server installed locally. If you don’t, please follow our [quickstart guide](../../quickstart/quick-start.md).
+It is assumed that you already have a Medusa server installed locally. If you don’t, please follow the [quickstart guide](../../quickstart/quick-start.md).
Furthermore, your Medusa server should be configured to work with PostgreSQL and Redis. You can follow the [Configure your Server documentation](../../usage/configurations.md) to learn how to do that.
@@ -240,7 +240,7 @@ Here’s an explanation of each of the variables and how to retrieve their varia
- `qovery_create_cluster`: A boolean value indicating whether a new cluster should be created or not. If you already have a cluster that you want to use, you can set the value to `false` and set the value of `qovery_cluster_id`. Otherwise, set the value to `true` and set the values of `aws_access_key_id`, `aws_secret_access_key`, and `aws_region`.
- `qovery_cluster_id`: The ID of the existing cluster to use (if `qovery_create_cluster` is set to `false`). You can use [Qovery’s REST API](https://api-doc.qovery.com/#tag/Clusters/operation/listOrganizationCluster) to retrieve the cluster ID. You can use the token you generated earlier for the Bearer authorization token as explained [here](https://hub.qovery.com/docs/using-qovery/interface/cli/#generate-api-token).
- `aws_access_key_id`, `aws_secret_access_key`, and `aws_region`: The credentials used to create the cluster (if `qovery_create_cluster` is set to `true`). You can refer to [this guide](https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys) to learn how to retrieve the `aws_access_key_id` and `aws_secret_access_key`.
-- `medusa_jwt_secret`: The value of the JWT Secret on your Medusa server. It’s recommended to use a strong randomly generated string.
+- `medusa_jwt_secret`: The value of the JSON Web Token (JWT) Secret on your Medusa server. It’s recommended to use a strong randomly generated string.
- `medusa_cookie_secret`: The value of the Cookie Secret on your Medusa server. It’s recommended to use a strong randomly generated string.
- `git_url`: The URL of the Git repository you created earlier. Make sure it ends with `.git`.
- `git_branch`: The branch to use in the GitHub repo. By default it’s `master`.
@@ -461,7 +461,7 @@ terraform apply
You’ll be asked to confirm creating all the necessary resources in Qovery. Enter `yes` and the deployment will start.
-The deployment can take up to 30 minutes to finish. You’ll be able to track its status both in your terminal and in the [Qovery Console](https://console.qovery.com/).
+The deployment can take up to thirty minutes to finish. You’ll be able to track its status both in your terminal and in the [Qovery Console](https://console.qovery.com/).
:::tip
@@ -496,7 +496,7 @@ medusa user --email --password
## Add Environment Variables
-You’ll likely need to add environment variables later such as Admin CORS and Store CORS variables.
+You’ll likely need to add environment variables later such as Admin Cross-Origin Resource Sharing (CORS) and Store CORS variables.
To add environment variables, in your [Qovery Console](https://console.qovery.com/) go to the Medusa app and choose Environment Variables from the sidebar. You can add environment variables here at any point later on.
diff --git a/docs/content/deployments/storefront/deploying-gatsby-on-netlify.md b/docs/content/deployments/storefront/deploying-gatsby-on-netlify.md
index 37d26cfe75..7cc7fae28d 100644
--- a/docs/content/deployments/storefront/deploying-gatsby-on-netlify.md
+++ b/docs/content/deployments/storefront/deploying-gatsby-on-netlify.md
@@ -98,7 +98,7 @@ In the form that shows, keep all fields the same and click on the “Show advanc

-Under the “Advanced build settings” section click on the “New variable” button. This will show 2 inputs for the key and value of the environment variable.
+Under the “Advanced build settings” section click on the “New variable” button. This will show two inputs for the key and value of the environment variable.
For the first field enter the key `GATSBY_MEDUSA_BACKEND_URL` and for the value enter the URL of your Medusa server.
@@ -146,7 +146,7 @@ If you click on it, you’ll be redirected to the deployed storefront website.
:::caution
-At this point, you will face errors related to CORS while using the storefront. Before you start using the storefront, follow along the [Configure CORS on the Medusa Server section](#configure-cors-variable-on-the-medusa-server).
+At this point, you will face errors related to Cross-Origin Resource Sharing (CORS) while using the storefront. Before you start using the storefront, follow along the [Configure CORS on the Medusa Server section](#configure-cors-variable-on-the-medusa-server).
:::
@@ -186,7 +186,7 @@ In your terminal, run the following command:
netlify init
```
-You’ll have to follow 5 steps for the initialization:
+You’ll have to follow five steps for the initialization:
##### Step 1: Create Netlify Website
diff --git a/docs/content/guides/file-plugin.md b/docs/content/guides/file-plugin.md
deleted file mode 100644
index c7b841240e..0000000000
--- a/docs/content/guides/file-plugin.md
+++ /dev/null
@@ -1,174 +0,0 @@
----
-title: Create a file plugin
----
-
-# File Plugin
-
-This guide will give an introduction about the File Service and steps required to create a custom file uploader plugin for Medusa. It build on article about [creating custom plugins](../advanced/backend/payment/overview.md).
-
-As an example, we will create a File plugin that uploads the product images to Cloudinary.
-
-## The File API
-
-The file api is used to upload and manage product images used in Medusa.
-
-## Implementing the File Service
-
-The File Service is an built in interface in Medusa Core. It has two methods which must be overidden by our custom implementation of the service: `upload` and `delete`.
-
-As the names suggest, upload allows us to specify the logic for uploading the file/image to our service while delete is used for deleting the image.
-
-Both of the methods must return an promise.
-The upload method should return the url of uploaded image.
-In case of any error uploading, both methods should reject the promise and return an appropriate error message.
-
-Here is the implementation of the base file service that we will extend.
-```javascript
-/**
- * Interface for file connectors
- * @interface
- */
-class BaseFileService extends BaseService {
- constructor() {
- super()
- }
-
- upload() {
- throw Error("upload must be overridden by the child class")
- }
-
- delete() {
- throw Error("delete must be overridden by the child class")
- }
-}
-
-export default BaseFileService
-```
-
-See the example below for detailed usage.
-
-## Example
-
-We will create an plugin for uploading product images to [Cloudinary](https://cloudinary.com/)
-
-The first step is to create an account on Cloudinary and copy the credentials like given below.
-
-```
-cloud_name: "xx"
-api_key: "xx"
-api_secret: "xx"
-
-```
-
-The first step in creating a plugin is to initialize the Node.js project:
-
-```bash npm2yarn
-npm init
-```
-
-This command will ask you to fill out your project's metadata, which will eventually be used when publishing the package to NPM. After this command completes, you are ready to start implementing the functionality.
-
-Next up, we need to install cloudinary's Node.js SDK.
-
-```bash npm2yarn
-npm install cloudinary
-```
-
-### Implementation
-
-To quickly get started with the implementation, we advise you to copy `/services/`, `/api/`, `/subscribers/` and the config files from the tutorial and add them in `/src`. As a result, you should have the following folder structure:
-
-```js
-.
-├── src
-│ ├── api
-│ └── services
-│ └── subscribers
-├── .babelrc
-├── .gitignore
-├── medusa-config.js
-├── README.md
-└── package.json
-```
-
-We will create a new file `cloudinary.js` in the `services` directory.
-
-```javascript
-import fs from "fs";
-
-import { v2 as cloudinary } from "cloudinary";
-import { FileService } from "medusa-interfaces";
-
-class CloudinaryService extends FileService {
- constructor({}, options) {
- super();
-
- // Initialize the Cloudinary sdk
- cloudinary.config({
- cloud_name: options.cloud_name,
- api_key: options.api_key,
- api_secret: options.api_secret,
- secure: options.secure,
- });
- }
-
- // File upload
- upload(file) {
- console.log("Starting image upload");
- return new Promise((resolve, reject) => {
- // upload_stream allows to upload a file stream
- var upload_stream = cloudinary.uploader.upload_stream(
- {},
- function (err, image) {
- if (err) {
- // Reject and return an error if the file upload failed
- console.error(err);
- reject(err);
- return;
- }
- // Return the url of image uploaded
- resolve({ url: image.url });
- }
- );
- // Create a file stream from path and forward it to our uploader
- fs.createReadStream(file.path).pipe(upload_stream);
- });
- }
-
- delete(file) {
- return new Promise((resolve, reject) => {
- // Pass the name of file to be deleted
- cloudinary.uploader.destroy(file, function (result) {
- resolve(result);
- });
- });
- }
-}
-
-export default CloudinaryService;
-```
-
-### Publishing
-
-In order for your plugin to become a part of the Medusa plugin ecosystem, you need to publish it to NPM. Make sure that you've included the `package.json` file. NPM uses the details of this file to configure the publishing. Please include `medusa` and `medusa-plugin` and possibly more in the `keywords` field of the `package.json`.
-
-```bash
-{
- "name": "medusa-file-cloudinary",
- ...
- "keywords": [
- "medusa",
- "medusa-file",
- "medusa-plugin"
- ],
- "description": "Cloudinary File Plugin for Medusa Commerce",
- ...
-}
-```
-
-Finally, you should add a README for the plugin, such that the community understands the purpose of the plugin and how to install it.
-
-
-## Summary
-
-As a result of following this guide, you should now be able to both implement a custom file plugin for your Medusa project.
diff --git a/docs/content/guides/fulfillment-api.md b/docs/content/guides/fulfillment-api.md
deleted file mode 100644
index d52fa8b8c0..0000000000
--- a/docs/content/guides/fulfillment-api.md
+++ /dev/null
@@ -1,71 +0,0 @@
----
-title: Fulfillment API
----
-
-## **Introduction**
-
-This guide will give an overview of Medusa's Fulfillment API and how it can be implemented to work with different fulfillment providers. Before digging deeper into the API it should be clarified what is meant by a fulfillment provider; in Medusa a fulfillment provider is typically a 3rd party service that can handle order data for the purpose of shipping the items in the order to a customer. Examples of fulfillment providers are: a carrier like UPS, a logistics platform like ShipBob or a 3PL solution.
-
-Implementations of the Fulfillment API can be distributed as npm packages for easy installation through the plugin system, there are already a couple of examples of fulfillment plugins in the Medusa monorepo, you can identify these by looking for `medusa-fulfillment-*`. For further details on building and publishing plugins [please check this guide](../advanced/backend/payment/overview.md).
-
-## Fulfillment Service Interface
-
-The fulfillment service interface can be found in the [`medusa-interfaces` package](https://github.com/medusajs/medusa/blob/master/packages/medusa-interfaces/src/fulfillment-service.js) where you can see the full list of methods that can be implemented. The methods in the interface allow you to implement plugins that can calculate shipping rates, create fulfillments in other systems, create return labels, retrieve customs documents and more.
-
-In this guide we will focus on the methods involved in a typical fulfillment flow i.e. creating a shipping option, adding a shipping method to a cart, creating a fulfillment of items in a cart and finally marking the fulfillment as shipped. The methods involved in this flow are:
-
-```jsx
-getFulfillmentOptions()
-validateOption(optionData)
-validateFulfillmentData(fulfillmentData, cart)
-createFulfillment(fulfillmentData, fulfillmentItems, order, fulfillment)
-```
-
-The figure below shows at what points in the flow the Fulfillment API is called.
-
-
-
-- **Get fulfillment options for Region**
-
- In Medusa Shipping Options are defined and configured for each region - this allows store operators to granularly control how orders can be fulfilled in different countries. When creating a shipping option on a Region the Fulfillment API calls `getFulfillmentOptions` which will return the ways in which a fulfillment provider can process an order. Let's imagine that you have built a UPS plugin that can be used to fulfill orders with UPS; in this case `getFulfillmentOptions` might respond with UPS Express Shipping and UPS Access Point.
-
-- **Create Shipping Option**
-
- When creating the Shipping Option in Medusa, a store operator selects which underlying fulfillment option will be used when customers create Orders with the Shipping Option. To build from the UPS example a store operator may select the UPS Access Point option from the list of fulfillment options, she will then add an appropriate name for the Shipping Option, set the Shipping Option's price and if needed adjust the requirements that must be met for the Shipping Option to be active (e.g. minimum cart subtotal). Before the Shipping Option is created, `validateOption` will be called to ensure that the selected fulfillment option is in fact valid and correctly formatted. `validateOption` should respond with the validated fulfillment option; this also provides a point at which you may add additional details to the fulfillment data before the Shipping Option is created.
-
-- **Get Shipping Options for Cart**
-
- Moving to the customer perspective it is assumed that a cart has been created, items have been added to the cart and the customer is now looking towards selecting the Shipping Option they wish to have their Order fulfilled with. The first step from the storefront perspective is to retrieve the list of Shipping Options that are available for the Cart; these will be filtered based on the Region the Cart belongs to and the items that are in the cart. There are no calls to the Fulfillment API associated with the retrieval.
-
-- **Add Shipping Method to Cart**
-
- At this point the customer has selected a Shipping Option and may have configured additional details about the fulfillment. For example, building on the UPS example, the customer may have selected a Shipping Option that uses the UPS Access Point fulfillment option; in this case the customer sends an `access_point_id` in the `data` object of the `POST /store/carts/:id/shipping-methods` payload. At this point the Shipping Option becomes a Shipping Method, the distinction between the two is that a Shipping Option is a template for how a cart may be shipped whereas a Shipping Method is the instantiated way that the cart will be shipped (which may include specific details like the `access_point_id`). In order to ensure that the details that the customer selects are valid the Fulfillment API's `validateFulfillmentData` is called, this is where a fulfillment implementation may check that the `access_point_id` is in fact a valid value, etc.
-
-- **Create Fulfillment**
-
- It is now assumed that the customer has completed their purchase with a given Shipping Method and the order has been confirmed. At this point we are ready to create the fulfillment in the 3rd party system. When a store operator (or an automation) attempts to fulfill an order the `createFulfillment` method will be called in the Fulfillment API, in our UPS example this method should then book a shipment via UPS's API.
- Note: in Medusa you can make partial fulfillments of an order it is therefore important that the id sent to the 3rd party is unique by fulfillment and not only order.
-
-- **Mark as shipped**
-
- The final step of the fulfillment process is to mark the fulfillment as shipped. It is also at this stage that you would record a tracking number that can be shared with the customer. This step typically happens asynchronously through a webhook.
-
-## Other useful methods
-
-The flow above describes the Fulfillment API in high level terms; check out the `[medusa-fulfillment-webshipper](https://github.com/medusajs/medusa/blob/master/packages/medusa-fulfillment-webshipper/src/services/webshipper-fulfillment.js)` plugin for a full implementation of the Fulfillment API. In the implementation you will find examples of all the method described above.
-
-### `createReturn`
-
-You will find that the Webshipper plugin has an implementation for `createReturn` which allows fulfillment providers to implement a way for generating return labels. When implemented this can be used to allow customers to create self managed returns or to integrate automatic return label generation in the admin dashboard.
-
-### `canCalculate(fulfillmentOption)`
-
-If implemented this method can be used to dynamically calculate prices based on a cart's contents or details. The method returns a boolean value indicating if a given fulfillment option can have a dynamically calculated price or not.
-
-### `calculatePrice(fulfillmentOption, fulfillmentData, cart)`
-
-If the shipping option is configured to dynamically calculate the price of the this method will be called when Shipping Options are fetched for the Cart and when Shipping Methods are created on a Cart.
-
-## What's next?
-
-Now that you have an overview of the Fulfillment API you can start developing your own fulfillment plugin. For a guide on how to create plugins [check this guide](../advanced/backend/payment/overview.md). If you have questions or issues please feel free to [join our Discord server](https://discord.gg/medusajs) for direct access to the engineering team.
diff --git a/docs/content/homepage.md b/docs/content/homepage.md
index cc8442554b..6e54f29e58 100644
--- a/docs/content/homepage.md
+++ b/docs/content/homepage.md
@@ -12,7 +12,7 @@ Medusa is an open-source headless commerce engine that enables developers to cre
:::tip
-Get started with Medusa in a few minutes with our [Quickstart guide](./quickstart/quick-start.md)!
+Get started with Medusa in a few minutes with the [Quickstart guide](./quickstart/quick-start.md)!
:::
@@ -25,11 +25,11 @@ Medusa comes with a set of building blocks that allow you to create unique digit
- **Orders** come with all the functionality necessary to perform powerful customer service operations with ease.
- **Carts** allow customers to collect products for purchase, add shipping details, and complete payments.
- **Products** come with relevant fields for customs, stock keeping, and sales. Medusa supports multiple options and unlimited variants.
-- **Swaps** allow customers to exchange products after purchase (e.g. for incorrect sizes). Accounting, payment, and fulfillment plugins handle all the tedious work for you for automated customer service.
+- **Swaps** allow customers to exchange products after purchase (for example, for incorrect sizes). Accounting, payment, and fulfillment plugins handle all the tedious work for you for automated customer service.
- **Claims** can be created if customers experience problems with one of their products. Plugins make sure to automate sending out replacements, handling refunds, and collecting valuable data for analysis.
- **Returns** allow customers to send back products and can be configured to function in 100% automated flow-through accounting and payment plugins.
- **Fulfillment API** makes it easy to integrate with any fulfillment provider by creating fulfillment plugins.
-- **Payments API** makes it easy to integrate with any payment provider by creating payment plugins, we already support Stripe, Paypal, and Klarna.
+- **Payments API** makes it easy to integrate with any payment provider by creating payment plugins, Medusa already supports Stripe, Paypal, and Klarna.
- **Notification API** allows integrations with email providers, chatbots, Slack channels, etc.
- **Customer Login** gives customers a way of managing their data, viewing their orders, and saving payment details.
- **Shipping Options & Profiles** enable powerful rules for free shipping limits, multiple fulfillment methods, and more.
@@ -40,7 +40,7 @@ Medusa comes with a set of building blocks that allow you to create unique digit
### The Medusa Server
-You can follow our [quickstart guide](quickstart/quick-start.md) to install and run a Medusa server.
+You can follow the [quickstart guide](quickstart/quick-start.md) to install and run a Medusa server.
It's also recommended to learn how to [set up your development environment](tutorial/set-up-your-development-environment) with the required tools and services to run a Medusa server, then [configure your Medusa server](usage/configurations.md).
@@ -48,13 +48,13 @@ It's also recommended to learn how to [set up your development environment](tuto
The Medusa Admin provides you with a lot of functionalities and configurations such as Product Management, Order Management, Discounts and Promotions, and more.
-You can install the Medusa admin in 2 steps by following our [Medusa Admin quickstart guide](admin/quickstart.md).
+You can install the Medusa admin in two steps by following the [Medusa Admin quickstart guide](admin/quickstart.md).
### The Storefront
The final step is to set up a storefront to sell your products.
-Medusa provides 2 starter storefronts, one built with [Next.js](./starters/nextjs-medusa-starter.md) and one with [Gatsby](./starters/gatsby-medusa-starter.md), that you can use to quickly set up your store and start selling.
+Medusa provides two starter storefronts, one built with [Next.js](./starters/nextjs-medusa-starter.md) and one with [Gatsby](./starters/gatsby-medusa-starter.md), that you can use to quickly set up your store and start selling.
Alternatively, you can build your own storefront with any frontend framework of your choice just by connecting to your server with the [Storefront REST APIs](https://docs.medusajs.com/api/store).
@@ -76,6 +76,6 @@ You can find more details about contributing in [CONTRIBUTING.md](https://github
## Community & Support
-If you need any support during your development with Medusa, you can join our [Discord Server](https://discord.gg/medusajs). You will get help directly from our core team as well as our community.
+If you need any support during your development with Medusa, you can join Medusa's [Discord Server](https://discord.gg/medusajs). You will get help directly from Medusa's core team as well as the community.
-By joining our Discord Server, you’ll also have the chance to participate in many events such as Bug Hunts and showcase your work with Medusa.
+By joining the Discord Server, you’ll also have the chance to participate in many events such as Bug Hunts and showcase your work with Medusa.
diff --git a/docs/content/how-to/uploading-images-to-minio.md b/docs/content/how-to/uploading-images-to-minio.md
deleted file mode 100644
index a1debe2340..0000000000
--- a/docs/content/how-to/uploading-images-to-minio.md
+++ /dev/null
@@ -1,57 +0,0 @@
-# Uploading images to MinIO
-
-In order to work with images in Medusa, you need a file service plugin responsible for hosting. Following this guide will allow you to upload images to MinIO bucket.
-
-### Before you start
-
-At this point, you should have an instance of our store engine running. If not, we have a [full guide](https://docs.medusajs.com/tutorial/set-up-your-development-environment) for setting up your local environment.
-
-### Set up MinIO
-
-#### Create an MinIO bucket
-
-In the MinIO console create a new bucket, then click into that bucket and change the `Access Policy` to `public`.
-
-Be aware, that this will allow for anyone to acces your bucket. Avoid storing sensitive data.
-
-#### Generate access keys
-
-Navigate to users and perform the following steps:
-
-- Enter new `Access Key` and `Secret Key`
-- Select readwrite policy
-- Submit the details
-
-### Installation
-
-First, install the plugin using your preferred package manager:
-
-```bash npm2yarn
-npm install medusa-file-minio
-```
-
-Then configure your `medusa-config.js` to include the plugin alongside the required options:
-
-```=javascript
-{
- resolve: `medusa-file-minio`,
- options: {
- endpoint: "minio.server.com",
- bucket: "test",
- access_key_id: "YOUR-ACCESS-KEY",
- secret_access_key: "YOUR-SECRET-KEY",
- },
-},
-```
-
-The two access keys in the options are the ones created in the previous section.
-
-:::tip
-
-Make sure to use an environment variable for the secret key in a live environment.
-
-:::
-
-### Try it out
-
-Finally, run your Medusa server alongside our admin system to try out your new file service. Upon editing or creating products, you can now upload thumbnails and images, that are stored in an MinIO server.
diff --git a/docs/content/how-to/uploading-images-to-s3.md b/docs/content/how-to/uploading-images-to-s3.md
deleted file mode 100644
index 2688fb54af..0000000000
--- a/docs/content/how-to/uploading-images-to-s3.md
+++ /dev/null
@@ -1,89 +0,0 @@
-# Uploading images to S3
-
-In order to work with images in Medusa, you need a file service plugin responsible for hosting. Following this guide will allow you to upload images to AWS S3.
-
-### Before you start
-
-At this point, you should have an instance of our store engine running. If not, we have a [full guide](https://docs.medusajs.com/tutorial/set-up-your-development-environment) for setting up your local environment.
-
-### Set up AWS
-
-#### Create an S3 bucket
-
-In the AWS console navigate to S3 and create a bucket for your images. Make sure to uncheck "Block _all_ public access".
-
-Additionally, you need to add a policy to your bucket, that will allow public access to objects that are uploaded. Navigate to the permissions tab of your bucket and add the following policy:
-
-```shell=
-{
- "Id": "Policy1397632521960",
- "Statement": [
- {
- "Sid": "Stmt1397633323327",
- "Action": [
- "s3:GetObject"
- ],
- "Effect": "Allow",
- "Resource": "arn:aws:s3:::YOUR-BUCKET-NAME/*",
- "Principal": {
- "AWS": [
- "*"
- ]
- }
- }
- ]
-}
-```
-
-Be aware, that this will allow for anyone to acces your bucket. Avoid storing sensitive data.
-
-#### Generate access keys
-
-Navigate to the IAM section of your AWS console and perform the following steps:
-
-- Add a new user with programmatic access
-- Add the existing **AmazonS3FullAccess** policy to the user
-- Submit the details
-
-Upon successful creation of the user, you are presented with an **Access key ID** and a **Secret access key**. Note both of them down for later use.
-
-### Installation
-
-First, install the plugin using your preferred package manager:
-
-```bash npm2yarn
-npm install medusa-file-s3
-```
-
-Then configure your `medusa-config.js` to include the plugin alongside the required options:
-
-```=javascript
-{
- resolve: `medusa-file-s3`,
- options: {
- s3_url: "https://s3-guide-test.s3.eu-west-1.amazonaws.com",
- bucket: "test",
- region: "eu-west-1"
- access_key_id: "YOUR-ACCESS-KEY",
- secret_access_key: "YOUR-SECRET-KEY",
- },
-},
-```
-
-In the above options, an `s3_url` is included. The url has the following format:
-
-```shell=
-https://[bucket].s3.[region].amazonaws.com
-```
-
-The two access keys in the options are the ones created in the previous section.
-
-:::tip
-
-Make sure to use an environment variable for the secret key in a live environment.
-
-:::
-
-### Try it out
-
-Finally, run your Medusa server alongside our admin system to try out your new file service. Upon editing or creating products, you can now upload thumbnails and images, that are stored in an AWS S3 bucket.
diff --git a/docs/content/how-to/uploading-images-to-spaces.md b/docs/content/how-to/uploading-images-to-spaces.md
deleted file mode 100644
index 46ffcab614..0000000000
--- a/docs/content/how-to/uploading-images-to-spaces.md
+++ /dev/null
@@ -1,52 +0,0 @@
-# Uploading images to Spaces
-
-In order to work with images in Medusa, you need a file service plugin responsible for hosting. Following this guide will allow you to upload images to DigitalOcean Spaces.
-
-### Before you start
-
-At this point, you should have an instance of our store engine running. If not, we have a [full guide](https://docs.medusajs.com/tutorial/set-up-your-development-environment) for setting up your local environment.
-
-### Set up DigitalOcean
-
-#### Create a Space
-
-Create an account on DigitalOcean and navigate to Spaces. Create a new Space with the default settings.
-
-#### Generate access keys
-
-Navigate to API in the left sidebar. Generate a new Spaces access key. This should provide you with an access key id and a secret key. Note them both down.
-
-### Installation
-
-First, install the plugin using your preferred package manager:
-
-```bash npm2yarn
-npm install medusa-file-spaces
-```
-
-Then configure your `medusa-config.js` to include the plugin alongside the required options:
-
-```=javascript
-{
- resolve: `medusa-file-spaces`,
- options: {
- spaces_url: "https://test.fra1.digitaloceanspaces.com",
- bucket: "test",
- endpoint: "fra1.digitaloceanspaces.com",
- access_key_id: "YOUR-ACCESS-KEY",
- secret_access_key: "YOUR-SECRET-KEY",
- },
-},
-```
-
-In the above options, a `spaces_url` is included. This can be found in your Space overview. The `bucket` should point to the name you gave your Space. The `endpoint` identifies the region in which you created the Space. And finally the two keys are the ones created in the previous section.
-
-:::tip
-
-Make sure to use an environment variable for the secret key in a live environment.
-
-:::
-
-### Try it out!
-
-Finally, run your Medusa server alongside our admin system to try out your new file service. Upon editing or creating products, you can now upload thumbnails and images, that are stored in DigitalOcean Spaces.
diff --git a/docs/content/introduction.md b/docs/content/introduction.md
index 672314dd82..33adf7476d 100644
--- a/docs/content/introduction.md
+++ b/docs/content/introduction.md
@@ -1,27 +1,27 @@
---
-title: Introduction
+title: Architecture Overview
---
-## Architecture overview
+# Architecture Overview
-Medusa is composed of 3 components: The headless backend, the admin dashboard, and the storefront.
+Medusa is composed of three components: The headless backend, the admin dashboard, and the storefront.

-### Headless Backend
+## Headless Backend
This is the main component that holds all the logic and data of the store. Your admin dashboard and storefront interact with the backend to retrieve, create, and modify data through REST APIs.
Your Medusa server will include all functionalities related to your store’s checkout workflow. That includes cart management, shipping and payment providers, user management, and more. It also allows you to configure your store including your store’s region, tax rules, discounts, gift cards, and more.
-### Admin Dashboard
+## Admin Dashboard
The admin dashboard is accessible by store operators. Store operators can use the admin dashboard to view, create, and modify data such as orders and products.
-Medusa provides a beautiful [admin dashboard](https://demo.medusajs.com) that you can use right off the bat. Our admin dashboard provides a lot of functionalities to manage your store including Order management, Product management, User management, and more.
+Medusa provides a beautiful [admin dashboard](https://demo.medusajs.com) that you can use right off the bat. Medusa's admin dashboard provides a lot of functionalities to manage your store including Order management, Product management, User management, and more.
You can also create your own admin dashboard by utilizing the [Admin REST APIs](https://docs.medusajs.com/api/admin).
-### Storefront
+## Storefront
-Your customers use the Storefront to view products and make orders. Medusa provides 2 storefronts, one built with [Next.js](https://docs.medusajs.com/starters/nextjs-medusa-starter) and one with [Gatsby](https://docs.medusajs.com/starters/gatsby-medusa-starter). You are also free to create your own storefront using the [Storefront REST APIs](https://docs.medusajs.com/api/store/).
+Your customers use the Storefront to view products and make orders. Medusa provides two storefronts, one built with [Next.js](https://docs.medusajs.com/starters/nextjs-medusa-starter) and one with [Gatsby](https://docs.medusajs.com/starters/gatsby-medusa-starter). You are also free to create your own storefront using the [Storefront REST APIs](https://docs.medusajs.com/api/store/).
diff --git a/docs/content/quickstart/quick-start-docker.md b/docs/content/quickstart/quick-start-docker.md
index e5d29ef40c..7ad6264ef8 100644
--- a/docs/content/quickstart/quick-start-docker.md
+++ b/docs/content/quickstart/quick-start-docker.md
@@ -1,86 +1,106 @@
-# Quickstart w. Docker
+# Quickstart using Docker
-This quick start is intended for developers, that have already configured their local development environment and familiarised them selves with all the technologies and frameworks used throughout the Medusa eco-system.
+In this document you will learn how to make a container of Medusa's app on Docker. Docker is an open source platform for building, deploying, and managing containerized applications.
-If this is not the case, please head over to our Getting Started tutorial for a thorough walkthrough.
+## Prerequisites
-## Introduction
+### Node.js
+Medusa supports Node versions 14 and 16. You can check which version of Node you have by running the following command:
-With all the tools and technologies in place, let's get started by setting up a default project. Our starter is shipped with a very basic configuration, that includes the following plugins:
+```bash
+node -v
+```
-- Stripe as payment provider
-- SendGrid as email notification provider
-- Manual fulfilment as fulfilment provider
+You can install Node from the [official website](https://nodejs.org/en/).
-Additionally, we will spin up a PostgreSQL database and a Redis server, both required for Medusa to run. In this quick start, we will use docker to seamlessly set up these resources.
+### Docker Desktop
-## Get started
+It is assumed that you have Docker installed on your system. You can install it from [Docker's website](https://docs.docker.com/get-docker/).
-1. Clone our starter project from Github
+## Create Medusa Server with Docker
+
+### 1. Clone Medusa's starter project from Github
```bash
git clone https://github.com/medusajs/medusa-starter-default.git my-medusa-starter
```
-2. Once cloned, we will jump into our project directory and get started with our configuration.
-
+### 2. Change to the newly created project directory
```bash
cd my-medusa-starter
```
-3. Get your environment variables ready using our template
+### 3. Rename the environment variables(.env) file
```bash
mv .env.template .env
```
-4. Setup accounts for included plugins. This step is optional but required for placing orders.
+### 4. Start your server
-Create a Stripe account and add your API key and webhook secret to `.env`
-Create a SendGrid account and add your API key to `.env`
-
-```bash
-...
-STRIPE_API_KEY="some_stripe_key"
-STRIPE_WEBHOOK_SECRET="some_webhook_secret"
-SENDGRID_API_KEY="some_sendgrid_key"
-..
-```
-
-5. Start your server
+Make sure the Docker Desktop app is running. Then, run the following command:
```bash
docker-compose up --build
```
-We will use docker-compose and Docker to start up our development environment. Running the above command will do the following:
+:::note
-1. Build images for our Medusa project, a PostgreSQL database and a Redis server
-2. Run migrations for our newly created database
-3. Seed our database with some entities, that will allow us to easily get started.
+If you get the error `ERROR: for postgres Cannot start service postgres: Ports are not available`, change the ports used for PostgreSQL in `docker-compose.yml` to something like this:
- These include:
+```yml
+ postgres:
+ ports:
+ - "5433:5433"
+```
- - A user with email `admin@medusa-test.com` and password `supersecret`
- - A region called Default Region with a small subset of countries
- - A shipping option called Standard Shipping, that costs 10 EUR
- - A product called Cool Test Product
- - A variant of that product that costs 195 EUR
+:::
-Once done, our server will be accessible at `http://localhost:9000`.
+Running the above command does the following:
-## Try it out
+1. Build images for your Medusa project, a PostgreSQL database and a Redis server
+2. Run migrations for your newly created database
-Let's try out our Medusa server by fetching some products.
+
+## Test Your Server
+
+Once done, your server will be accessible at `http://localhost:9000`.
+
+You can test out your server using tools like Postman or by sending a cURL request:
```bash
curl -X GET localhost:9000/store/products | python -m json.tool
```
-## What's next?
+:::note
-Add custom endpoint to your Medusa project
+This command uses Python to format the result of the request better in your command line. If you don't want to use Python you can simply send a request without the formatting:
-Install and configure additional plugins
+```bash
+curl localhost:9000/store/products
+```
-Build a storefront using our [Gatsby Starter](https://github.com/medusajs/gatsby-starter-medusa)
+:::
+
+## Additional steps
+
+### File Service Plugin
+
+To upload product images to your Medusa server, you must install and configure one of the following file service plugins:
+
+- [MinIO](../add-plugins/minio.md) (Recommended for local development)
+- [S3](../add-plugins/s3.md)
+- [DigitalOcean Spaces](../add-plugins/spaces.md)
+
+### Server Configurations
+
+It's important to configure your Medusa server properly and learn how environment variables are loaded.
+
+You can learn more about configuring your server and loading environment variables in the [Configure your Server documentation](../usage/configurations.md).
+
+## What's next :rocket:
+
+- Install the [Next.js](../starters/nextjs-medusa-starter.md) or [Gatsby](../starters/gatsby-medusa-starter.md) storefronts to set up your ecommerce storefront quickly.
+- Install the [Medusa Admin](../admin/quickstart.md) to supercharge your ecommerce experience with easy access to configurations and features.
+- Check out the [API reference](https://docs.medusajs.com/api/store) to learn more about available endpoints available on your Medusa server.
+- Install [plugins](https://github.com/medusajs/medusa/tree/master/packages) for features like Payment, CMS, Notifications, among other features.
diff --git a/docs/content/quickstart/quick-start.md b/docs/content/quickstart/quick-start.md
index fc03f23359..e62c5949b9 100644
--- a/docs/content/quickstart/quick-start.md
+++ b/docs/content/quickstart/quick-start.md
@@ -2,16 +2,6 @@
This document will guide you through setting up your Medusa server in a few minutes.
-:::tip
-
-For a more detailed guide on how to set up your local environment to work with Medusa, check out the documentation on [how to set up your development environment](/tutorial/set-up-your-development-environment).
-
-:::
-
-Alternatively, you can use this button to deploy the Medusa server to Heroku directly:
-
-[](https://heroku.com/deploy?template=https://github.com/medusajs/medusa-starter-default/tree/feat/deploy-heroku)
-
## Prerequisites
Medusa supports Node versions 14 and 16. You can check which version of Node you have by running the following command:
@@ -30,6 +20,12 @@ You can install Node from the [official website](https://nodejs.org/en/).
npm install @medusajs/medusa-cli -g
```
+ :::note
+
+ If you get a permission error when using NPM, check out [NPM's documentation for a solution](https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally).
+
+ :::
+
### 2. Create a new Medusa project
```bash
@@ -45,7 +41,7 @@ You can install Node from the [official website](https://nodejs.org/en/).
### Test Your Server
-After these 3 steps and in only a couple of minutes, you now have a complete commerce engine running locally. You can test it out by sending a request using a tool like Postman or through the command line:
+After these three steps and in only a couple of minutes, you now have a complete commerce engine running locally. You can test it out by sending a request using a tool like Postman or through the command line:
```bash
curl localhost:9000/store/products | python -m json.tool
@@ -63,6 +59,18 @@ curl localhost:9000/store/products
## Additional Steps
+### Set Up Development Environment
+
+For an optimal experience developing with Medusa and to make sure you can use its advanced functionalities, you'll need to install more tools such as Redis or PostgreSQL.
+
+Follow [this documentation to learn how to set up your development environment](../tutorial/0-set-up-your-development-environment.mdx).
+
+### Server Configurations
+
+It's important to configure your Medusa server properly and learn how environment variables are loaded.
+
+You can learn more about configuring your server and loading environment variables in the [Configure your Server documentation](../usage/configurations.md).
+
### File Service Plugin
To upload product images to your Medusa server, you must install and configure one of the following file service plugins:
@@ -71,15 +79,9 @@ To upload product images to your Medusa server, you must install and configure o
- [S3](../add-plugins/s3.md)
- [DigitalOcean Spaces](../add-plugins/spaces.md)
-### Server Configurations
-
-It's important to configure your Medusa server properly and learn how environment variables are loaded.
-
-You can learn more about configuring your server and loading environment variables in the [Configure your Server documentation](../usage/configurations.md).
-
## What's next :rocket:
-- Install our [Next.js](../starters/nextjs-medusa-starter.md) or [Gatsby](../starters/gatsby-medusa-starter.md) storefronts to set up your ecommerce storefront quickly.
+- Install the [Next.js](../starters/nextjs-medusa-starter.md) or [Gatsby](../starters/gatsby-medusa-starter.md) storefronts to set up your ecommerce storefront.
- Install the [Medusa Admin](../admin/quickstart.md) to supercharge your ecommerce experience with easy access to configurations and features.
- Check out the [API reference](https://docs.medusajs.com/api/store) to learn more about available endpoints available on your Medusa server.
- Install [plugins](https://github.com/medusajs/medusa/tree/master/packages) for features like Payment, CMS, Notifications, among other features.
diff --git a/docs/content/references/entities/classes/Address.md b/docs/content/references/entities/classes/Address.md
index 49358dbf03..4de780818e 100644
--- a/docs/content/references/entities/classes/Address.md
+++ b/docs/content/references/entities/classes/Address.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/address.ts:120](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L120)
+[models/address.ts:120](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L120)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/address.ts:123](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L123)
+[models/address.ts:123](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L123)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/address.ts:126](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L126)
+[models/address.ts:126](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L126)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/address.ts:111](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L111)
+[models/address.ts:111](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L111)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/address.ts:133](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L133)
+[models/address.ts:133](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L133)
___
@@ -78,7 +78,7 @@ ___
#### Defined in
-[models/address.ts:129](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L129)
+[models/address.ts:129](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L129)
___
@@ -92,7 +92,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -102,7 +102,7 @@ ___
#### Defined in
-[models/address.ts:108](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L108)
+[models/address.ts:108](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L108)
___
@@ -112,7 +112,7 @@ ___
#### Defined in
-[models/address.ts:104](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L104)
+[models/address.ts:104](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L104)
___
@@ -126,7 +126,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[models/address.ts:114](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L114)
+[models/address.ts:114](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L114)
___
@@ -150,7 +150,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/address.ts:117](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L117)
+[models/address.ts:117](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L117)
___
@@ -170,7 +170,7 @@ ___
#### Defined in
-[models/address.ts:145](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L145)
+[models/address.ts:145](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L145)
___
@@ -180,7 +180,7 @@ ___
#### Defined in
-[models/address.ts:142](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L142)
+[models/address.ts:142](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L142)
___
@@ -190,7 +190,7 @@ ___
#### Defined in
-[models/address.ts:139](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L139)
+[models/address.ts:139](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L139)
___
@@ -200,7 +200,7 @@ ___
#### Defined in
-[models/address.ts:136](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L136)
+[models/address.ts:136](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L136)
___
@@ -214,7 +214,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -228,4 +228,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/address.ts:147](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/address.ts#L147)
+[models/address.ts:147](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/address.ts#L147)
diff --git a/docs/content/references/entities/classes/BatchJob.md b/docs/content/references/entities/classes/BatchJob.md
index 48e57c1064..5b93a368a0 100644
--- a/docs/content/references/entities/classes/BatchJob.md
+++ b/docs/content/references/entities/classes/BatchJob.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/batch-job.ts:62](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L62)
+[models/batch-job.ts:62](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L62)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/batch-job.ts:59](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L59)
+[models/batch-job.ts:59](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L59)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/batch-job.ts:56](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L56)
+[models/batch-job.ts:56](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L56)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/batch-job.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L33)
+[models/batch-job.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L33)
___
@@ -72,7 +72,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[models/batch-job.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L26)
+[models/batch-job.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L26)
___
@@ -92,7 +92,7 @@ ___
#### Defined in
-[models/batch-job.ts:30](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L30)
+[models/batch-job.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L30)
___
@@ -106,7 +106,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/batch-job.ts:47](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L47)
+[models/batch-job.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L47)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[models/batch-job.ts:65](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L65)
+[models/batch-job.ts:65](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L65)
___
@@ -140,7 +140,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/batch-job.ts:50](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L50)
+[models/batch-job.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L50)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/batch-job.ts:53](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L53)
+[models/batch-job.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L53)
___
@@ -170,7 +170,7 @@ ___
#### Defined in
-[models/batch-job.ts:36](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L36)
+[models/batch-job.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L36)
___
@@ -180,7 +180,7 @@ ___
#### Defined in
-[models/batch-job.ts:67](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L67)
+[models/batch-job.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L67)
___
@@ -190,7 +190,7 @@ ___
#### Defined in
-[models/batch-job.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L23)
+[models/batch-job.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L23)
___
@@ -204,7 +204,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -218,7 +218,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/batch-job.ts:94](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L94)
+[models/batch-job.ts:94](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L94)
___
@@ -232,7 +232,7 @@ ___
#### Defined in
-[models/batch-job.ts:69](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L69)
+[models/batch-job.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L69)
___
@@ -246,4 +246,4 @@ ___
#### Defined in
-[models/batch-job.ts:99](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/batch-job.ts#L99)
+[models/batch-job.ts:99](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/batch-job.ts#L99)
diff --git a/docs/content/references/entities/classes/Cart.md b/docs/content/references/entities/classes/Cart.md
index e8b0dcfe75..9bdde7d624 100644
--- a/docs/content/references/entities/classes/Cart.md
+++ b/docs/content/references/entities/classes/Cart.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/cart.ts:226](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L226)
+[models/cart.ts:226](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L226)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/cart.ts:220](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L220)
+[models/cart.ts:220](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L220)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/cart.ts:311](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L311)
+[models/cart.ts:311](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L311)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/cart.ts:320](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L320)
+[models/cart.ts:320](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L320)
___
@@ -72,7 +72,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[models/cart.ts:285](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L285)
+[models/cart.ts:285](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L285)
___
@@ -92,7 +92,7 @@ ___
#### Defined in
-[models/cart.ts:281](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L281)
+[models/cart.ts:281](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L281)
___
@@ -106,7 +106,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/cart.ts:335](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L335)
+[models/cart.ts:335](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L335)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[models/cart.ts:263](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L263)
+[models/cart.ts:263](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L263)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[models/cart.ts:216](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L216)
+[models/cart.ts:216](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L216)
___
@@ -146,7 +146,7 @@ ___
#### Defined in
-[models/cart.ts:342](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L342)
+[models/cart.ts:342](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L342)
___
@@ -156,7 +156,7 @@ ___
#### Defined in
-[models/cart.ts:341](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L341)
+[models/cart.ts:341](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L341)
___
@@ -166,7 +166,7 @@ ___
#### Defined in
-[models/cart.ts:277](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L277)
+[models/cart.ts:277](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L277)
___
@@ -180,7 +180,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -190,7 +190,7 @@ ___
#### Defined in
-[models/cart.ts:317](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L317)
+[models/cart.ts:317](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L317)
___
@@ -200,7 +200,7 @@ ___
#### Defined in
-[models/cart.ts:241](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L241)
+[models/cart.ts:241](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L241)
___
@@ -210,7 +210,7 @@ ___
#### Defined in
-[models/cart.ts:323](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L323)
+[models/cart.ts:323](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L323)
___
@@ -220,7 +220,7 @@ ___
#### Defined in
-[models/cart.ts:213](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L213)
+[models/cart.ts:213](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L213)
___
@@ -230,7 +230,7 @@ ___
#### Defined in
-[models/cart.ts:300](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L300)
+[models/cart.ts:300](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L300)
___
@@ -240,7 +240,7 @@ ___
#### Defined in
-[models/cart.ts:314](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L314)
+[models/cart.ts:314](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L314)
___
@@ -250,7 +250,7 @@ ___
#### Defined in
-[models/cart.ts:296](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L296)
+[models/cart.ts:296](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L296)
___
@@ -260,7 +260,7 @@ ___
#### Defined in
-[models/cart.ts:287](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L287)
+[models/cart.ts:287](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L287)
___
@@ -270,7 +270,7 @@ ___
#### Defined in
-[models/cart.ts:292](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L292)
+[models/cart.ts:292](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L292)
___
@@ -280,7 +280,7 @@ ___
#### Defined in
-[models/cart.ts:340](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L340)
+[models/cart.ts:340](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L340)
___
@@ -290,7 +290,7 @@ ___
#### Defined in
-[models/cart.ts:337](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L337)
+[models/cart.ts:337](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L337)
___
@@ -300,7 +300,7 @@ ___
#### Defined in
-[models/cart.ts:249](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L249)
+[models/cart.ts:249](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L249)
___
@@ -310,7 +310,7 @@ ___
#### Defined in
-[models/cart.ts:245](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L245)
+[models/cart.ts:245](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L245)
___
@@ -320,7 +320,7 @@ ___
#### Defined in
-[models/cart.ts:332](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L332)
+[models/cart.ts:332](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L332)
___
@@ -330,7 +330,7 @@ ___
#### Defined in
-[models/cart.ts:326](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L326)
+[models/cart.ts:326](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L326)
___
@@ -340,7 +340,7 @@ ___
#### Defined in
-[models/cart.ts:236](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L236)
+[models/cart.ts:236](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L236)
___
@@ -350,7 +350,7 @@ ___
#### Defined in
-[models/cart.ts:230](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L230)
+[models/cart.ts:230](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L230)
___
@@ -360,7 +360,7 @@ ___
#### Defined in
-[models/cart.ts:305](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L305)
+[models/cart.ts:305](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L305)
___
@@ -370,7 +370,7 @@ ___
#### Defined in
-[models/cart.ts:334](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L334)
+[models/cart.ts:334](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L334)
___
@@ -380,7 +380,7 @@ ___
#### Defined in
-[models/cart.ts:339](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L339)
+[models/cart.ts:339](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L339)
___
@@ -390,7 +390,7 @@ ___
#### Defined in
-[models/cart.ts:336](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L336)
+[models/cart.ts:336](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L336)
___
@@ -400,7 +400,7 @@ ___
#### Defined in
-[models/cart.ts:338](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L338)
+[models/cart.ts:338](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L338)
___
@@ -410,7 +410,7 @@ ___
#### Defined in
-[models/cart.ts:308](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L308)
+[models/cart.ts:308](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L308)
___
@@ -424,7 +424,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -438,7 +438,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/cart.ts:344](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L344)
+[models/cart.ts:344](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L344)
___
@@ -452,4 +452,4 @@ ___
#### Defined in
-[models/cart.ts:351](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L351)
+[models/cart.ts:351](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L351)
diff --git a/docs/content/references/entities/classes/ClaimImage.md b/docs/content/references/entities/classes/ClaimImage.md
index 5cbf6a2c2b..cf6e69aa20 100644
--- a/docs/content/references/entities/classes/ClaimImage.md
+++ b/docs/content/references/entities/classes/ClaimImage.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/claim-image.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-image.ts#L23)
+[models/claim-image.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-image.ts#L23)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/claim-image.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-image.ts#L19)
+[models/claim-image.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-image.ts#L19)
___
@@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -80,7 +80,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/claim-image.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-image.ts#L29)
+[models/claim-image.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-image.ts#L29)
___
@@ -104,7 +104,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -114,7 +114,7 @@ ___
#### Defined in
-[models/claim-image.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-image.ts#L26)
+[models/claim-image.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-image.ts#L26)
## Methods
@@ -128,4 +128,4 @@ ___
#### Defined in
-[models/claim-image.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-image.ts#L31)
+[models/claim-image.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-image.ts#L31)
diff --git a/docs/content/references/entities/classes/ClaimItem.md b/docs/content/references/entities/classes/ClaimItem.md
index 56ba75fa33..d137edf741 100644
--- a/docs/content/references/entities/classes/ClaimItem.md
+++ b/docs/content/references/entities/classes/ClaimItem.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/claim-item.ts:42](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L42)
+[models/claim-item.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L42)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/claim-item.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L38)
+[models/claim-item.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L38)
___
@@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -80,7 +80,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/claim-item.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L34)
+[models/claim-item.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L34)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/claim-item.ts:50](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L50)
+[models/claim-item.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L50)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/claim-item.ts:46](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L46)
+[models/claim-item.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L46)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/claim-item.ts:84](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L84)
+[models/claim-item.ts:84](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L84)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/claim-item.ts:64](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L64)
+[models/claim-item.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L64)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[models/claim-item.ts:67](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L67)
+[models/claim-item.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L67)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/claim-item.ts:61](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L61)
+[models/claim-item.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L61)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/claim-item.ts:81](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L81)
+[models/claim-item.ts:81](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L81)
___
@@ -174,7 +174,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -184,7 +184,7 @@ ___
#### Defined in
-[models/claim-item.ts:58](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L58)
+[models/claim-item.ts:58](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L58)
___
@@ -194,7 +194,7 @@ ___
#### Defined in
-[models/claim-item.ts:54](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L54)
+[models/claim-item.ts:54](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L54)
## Methods
@@ -208,4 +208,4 @@ ___
#### Defined in
-[models/claim-item.ts:86](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L86)
+[models/claim-item.ts:86](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L86)
diff --git a/docs/content/references/entities/classes/ClaimOrder.md b/docs/content/references/entities/classes/ClaimOrder.md
index 2e646cbd1c..fc0cb37039 100644
--- a/docs/content/references/entities/classes/ClaimOrder.md
+++ b/docs/content/references/entities/classes/ClaimOrder.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/claim-order.ts:69](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L69)
+[models/claim-order.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L69)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/claim-order.ts:107](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L107)
+[models/claim-order.ts:107](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L107)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/claim-order.ts:66](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L66)
+[models/claim-order.ts:66](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L66)
___
@@ -62,7 +62,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[models/claim-order.ts:110](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L110)
+[models/claim-order.ts:110](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L110)
___
@@ -76,7 +76,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[models/claim-order.ts:116](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L116)
+[models/claim-order.ts:116](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L116)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[models/claim-order.ts:63](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L63)
+[models/claim-order.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L63)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[models/claim-order.ts:101](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L101)
+[models/claim-order.ts:101](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L101)
___
@@ -110,7 +110,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/claim-order.ts:125](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L125)
+[models/claim-order.ts:125](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L125)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/claim-order.ts:122](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L122)
+[models/claim-order.ts:122](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L122)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[models/claim-order.ts:119](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L119)
+[models/claim-order.ts:119](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L119)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/claim-order.ts:80](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L80)
+[models/claim-order.ts:80](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L80)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/claim-order.ts:76](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L76)
+[models/claim-order.ts:76](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L76)
___
@@ -170,7 +170,7 @@ ___
#### Defined in
-[models/claim-order.ts:56](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L56)
+[models/claim-order.ts:56](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L56)
___
@@ -180,7 +180,7 @@ ___
#### Defined in
-[models/claim-order.ts:104](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L104)
+[models/claim-order.ts:104](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L104)
___
@@ -190,7 +190,7 @@ ___
#### Defined in
-[models/claim-order.ts:83](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L83)
+[models/claim-order.ts:83](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L83)
___
@@ -200,7 +200,7 @@ ___
#### Defined in
-[models/claim-order.ts:91](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L91)
+[models/claim-order.ts:91](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L91)
___
@@ -210,7 +210,7 @@ ___
#### Defined in
-[models/claim-order.ts:87](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L87)
+[models/claim-order.ts:87](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L87)
___
@@ -220,7 +220,7 @@ ___
#### Defined in
-[models/claim-order.ts:96](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L96)
+[models/claim-order.ts:96](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L96)
___
@@ -230,7 +230,7 @@ ___
#### Defined in
-[models/claim-order.ts:72](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L72)
+[models/claim-order.ts:72](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L72)
___
@@ -244,7 +244,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/claim-order.ts:113](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L113)
+[models/claim-order.ts:113](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L113)
## Methods
@@ -258,4 +258,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/claim-order.ts:127](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L127)
+[models/claim-order.ts:127](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L127)
diff --git a/docs/content/references/entities/classes/ClaimTag.md b/docs/content/references/entities/classes/ClaimTag.md
index 904adae201..d87ea1f152 100644
--- a/docs/content/references/entities/classes/ClaimTag.md
+++ b/docs/content/references/entities/classes/ClaimTag.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -60,7 +60,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -70,7 +70,7 @@ ___
#### Defined in
-[models/claim-tag.ts:14](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-tag.ts#L14)
+[models/claim-tag.ts:14](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-tag.ts#L14)
___
@@ -84,7 +84,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -94,7 +94,7 @@ ___
#### Defined in
-[models/claim-tag.ts:11](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-tag.ts#L11)
+[models/claim-tag.ts:11](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-tag.ts#L11)
## Methods
@@ -108,4 +108,4 @@ ___
#### Defined in
-[models/claim-tag.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-tag.ts#L16)
+[models/claim-tag.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-tag.ts#L16)
diff --git a/docs/content/references/entities/classes/Country.md b/docs/content/references/entities/classes/Country.md
index 13dcc68e12..cf7ad1b243 100644
--- a/docs/content/references/entities/classes/Country.md
+++ b/docs/content/references/entities/classes/Country.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/country.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/country.ts#L31)
+[models/country.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/country.ts#L31)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/country.ts:15](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/country.ts#L15)
+[models/country.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/country.ts#L15)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/country.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/country.ts#L19)
+[models/country.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/country.ts#L19)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/country.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/country.ts#L22)
+[models/country.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/country.ts#L22)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/country.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/country.ts#L28)
+[models/country.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/country.ts#L28)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/country.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/country.ts#L25)
+[models/country.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/country.ts#L25)
___
@@ -78,7 +78,7 @@ ___
#### Defined in
-[models/country.ts:39](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/country.ts#L39)
+[models/country.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/country.ts#L39)
___
@@ -88,4 +88,4 @@ ___
#### Defined in
-[models/country.ts:35](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/country.ts#L35)
+[models/country.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/country.ts#L35)
diff --git a/docs/content/references/entities/classes/Currency.md b/docs/content/references/entities/classes/Currency.md
index 883680962b..d994c8ce9d 100644
--- a/docs/content/references/entities/classes/Currency.md
+++ b/docs/content/references/entities/classes/Currency.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/currency.ts:8](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/currency.ts#L8)
+[models/currency.ts:8](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/currency.ts#L8)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/currency.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/currency.ts#L20)
+[models/currency.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/currency.ts#L20)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/currency.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/currency.ts#L17)
+[models/currency.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/currency.ts#L17)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/currency.ts:11](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/currency.ts#L11)
+[models/currency.ts:11](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/currency.ts#L11)
___
@@ -58,4 +58,4 @@ ___
#### Defined in
-[models/currency.ts:14](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/currency.ts#L14)
+[models/currency.ts:14](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/currency.ts#L14)
diff --git a/docs/content/references/entities/classes/CustomShippingOption.md b/docs/content/references/entities/classes/CustomShippingOption.md
index cb852f47a0..b4d67a9495 100644
--- a/docs/content/references/entities/classes/CustomShippingOption.md
+++ b/docs/content/references/entities/classes/CustomShippingOption.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/custom-shipping-option.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/custom-shipping-option.ts#L37)
+[models/custom-shipping-option.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/custom-shipping-option.ts#L37)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/custom-shipping-option.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/custom-shipping-option.ts#L33)
+[models/custom-shipping-option.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/custom-shipping-option.ts#L33)
___
@@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -80,7 +80,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/custom-shipping-option.ts:40](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/custom-shipping-option.ts#L40)
+[models/custom-shipping-option.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/custom-shipping-option.ts#L40)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/custom-shipping-option.ts:21](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/custom-shipping-option.ts#L21)
+[models/custom-shipping-option.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/custom-shipping-option.ts#L21)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/custom-shipping-option.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/custom-shipping-option.ts#L29)
+[models/custom-shipping-option.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/custom-shipping-option.ts#L29)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/custom-shipping-option.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/custom-shipping-option.ts#L25)
+[models/custom-shipping-option.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/custom-shipping-option.ts#L25)
___
@@ -134,7 +134,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -148,4 +148,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/custom-shipping-option.ts:42](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/custom-shipping-option.ts#L42)
+[models/custom-shipping-option.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/custom-shipping-option.ts#L42)
diff --git a/docs/content/references/entities/classes/Customer.md b/docs/content/references/entities/classes/Customer.md
index fd1337dec4..663b6294a1 100644
--- a/docs/content/references/entities/classes/Customer.md
+++ b/docs/content/references/entities/classes/Customer.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/customer.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L38)
+[models/customer.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L38)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/customer.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L34)
+[models/customer.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L34)
___
@@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[models/customer.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L24)
+[models/customer.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L24)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[models/customer.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L27)
+[models/customer.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L27)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[models/customer.ts:69](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L69)
+[models/customer.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L69)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[models/customer.ts:50](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L50)
+[models/customer.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L50)
___
@@ -120,7 +120,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/customer.ts:30](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L30)
+[models/customer.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L30)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[models/customer.ts:72](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L72)
+[models/customer.ts:72](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L72)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/customer.ts:53](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L53)
+[models/customer.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L53)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/customer.ts:44](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L44)
+[models/customer.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L44)
___
@@ -170,7 +170,7 @@ ___
#### Defined in
-[models/customer.ts:47](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L47)
+[models/customer.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L47)
___
@@ -180,7 +180,7 @@ ___
#### Defined in
-[models/customer.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L41)
+[models/customer.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L41)
___
@@ -194,7 +194,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -208,4 +208,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/customer.ts:74](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer.ts#L74)
+[models/customer.ts:74](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer.ts#L74)
diff --git a/docs/content/references/entities/classes/CustomerGroup.md b/docs/content/references/entities/classes/CustomerGroup.md
index 21a0e94ab1..e29b7c5783 100644
--- a/docs/content/references/entities/classes/CustomerGroup.md
+++ b/docs/content/references/entities/classes/CustomerGroup.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/customer-group.ts:18](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer-group.ts#L18)
+[models/customer-group.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer-group.ts#L18)
___
@@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -70,7 +70,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -80,7 +80,7 @@ ___
#### Defined in
-[models/customer-group.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer-group.ts#L26)
+[models/customer-group.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer-group.ts#L26)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/customer-group.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer-group.ts#L13)
+[models/customer-group.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer-group.ts#L13)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/customer-group.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer-group.ts#L23)
+[models/customer-group.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer-group.ts#L23)
___
@@ -114,7 +114,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -128,4 +128,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/customer-group.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/customer-group.ts#L28)
+[models/customer-group.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/customer-group.ts#L28)
diff --git a/docs/content/references/entities/classes/Discount.md b/docs/content/references/entities/classes/Discount.md
index 51a7d89beb..411c92cb7a 100644
--- a/docs/content/references/entities/classes/Discount.md
+++ b/docs/content/references/entities/classes/Discount.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/discount.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L22)
+[models/discount.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L22)
___
@@ -42,7 +42,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[models/discount.ts:52](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L52)
+[models/discount.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L52)
___
@@ -80,7 +80,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/discount.ts:36](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L36)
+[models/discount.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L36)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/discount.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L25)
+[models/discount.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L25)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/discount.ts:78](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L78)
+[models/discount.ts:78](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L78)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/discount.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L43)
+[models/discount.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L43)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/discount.ts:39](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L39)
+[models/discount.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L39)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[models/discount.ts:69](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L69)
+[models/discount.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L69)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/discount.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L33)
+[models/discount.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L33)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/discount.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L29)
+[models/discount.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L29)
___
@@ -170,7 +170,7 @@ ___
#### Defined in
-[models/discount.ts:49](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L49)
+[models/discount.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L49)
___
@@ -184,7 +184,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -194,7 +194,7 @@ ___
#### Defined in
-[models/discount.ts:75](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L75)
+[models/discount.ts:75](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L75)
___
@@ -204,7 +204,7 @@ ___
#### Defined in
-[models/discount.ts:72](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L72)
+[models/discount.ts:72](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L72)
___
@@ -214,7 +214,7 @@ ___
#### Defined in
-[models/discount.ts:55](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L55)
+[models/discount.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L55)
## Methods
@@ -228,4 +228,4 @@ ___
#### Defined in
-[models/discount.ts:80](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount.ts#L80)
+[models/discount.ts:80](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount.ts#L80)
diff --git a/docs/content/references/entities/classes/DiscountCondition.md b/docs/content/references/entities/classes/DiscountCondition.md
index efdaf00377..dd48cb31fc 100644
--- a/docs/content/references/entities/classes/DiscountCondition.md
+++ b/docs/content/references/entities/classes/DiscountCondition.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/discount-condition.ts:127](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L127)
+[models/discount-condition.ts:127](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L127)
___
@@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[models/discount-condition.ts:57](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L57)
+[models/discount-condition.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L57)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[models/discount-condition.ts:53](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L53)
+[models/discount-condition.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L53)
___
@@ -90,7 +90,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/discount-condition.ts:130](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L130)
+[models/discount-condition.ts:130](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L130)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/discount-condition.ts:49](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L49)
+[models/discount-condition.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L49)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/discount-condition.ts:113](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L113)
+[models/discount-condition.ts:113](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L113)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/discount-condition.ts:99](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L99)
+[models/discount-condition.ts:99](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L99)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[models/discount-condition.ts:85](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L85)
+[models/discount-condition.ts:85](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L85)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/discount-condition.ts:71](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L71)
+[models/discount-condition.ts:71](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L71)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/discount-condition.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L43)
+[models/discount-condition.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L43)
___
@@ -174,7 +174,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -188,4 +188,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/discount-condition.ts:132](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L132)
+[models/discount-condition.ts:132](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L132)
diff --git a/docs/content/references/entities/classes/DiscountConditionCustomerGroup.md b/docs/content/references/entities/classes/DiscountConditionCustomerGroup.md
index 37ebbfadcd..08d50cd93f 100644
--- a/docs/content/references/entities/classes/DiscountConditionCustomerGroup.md
+++ b/docs/content/references/entities/classes/DiscountConditionCustomerGroup.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/discount-condition-customer-group.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-customer-group.ts#L20)
+[models/discount-condition-customer-group.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-customer-group.ts#L20)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/discount-condition-customer-group.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-customer-group.ts#L31)
+[models/discount-condition-customer-group.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-customer-group.ts#L31)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/discount-condition-customer-group.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-customer-group.ts#L24)
+[models/discount-condition-customer-group.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-customer-group.ts#L24)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/discount-condition-customer-group.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-customer-group.ts#L17)
+[models/discount-condition-customer-group.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-customer-group.ts#L17)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/discount-condition-customer-group.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-customer-group.ts#L28)
+[models/discount-condition-customer-group.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-customer-group.ts#L28)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/discount-condition-customer-group.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-customer-group.ts#L37)
+[models/discount-condition-customer-group.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-customer-group.ts#L37)
___
@@ -78,4 +78,4 @@ ___
#### Defined in
-[models/discount-condition-customer-group.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-customer-group.ts#L34)
+[models/discount-condition-customer-group.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-customer-group.ts#L34)
diff --git a/docs/content/references/entities/classes/DiscountConditionProduct.md b/docs/content/references/entities/classes/DiscountConditionProduct.md
index 5446a1ea92..bda9b0c7d9 100644
--- a/docs/content/references/entities/classes/DiscountConditionProduct.md
+++ b/docs/content/references/entities/classes/DiscountConditionProduct.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/discount-condition-product.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product.ts#L20)
+[models/discount-condition-product.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product.ts#L20)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/discount-condition-product.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product.ts#L31)
+[models/discount-condition-product.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product.ts#L31)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/discount-condition-product.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product.ts#L28)
+[models/discount-condition-product.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product.ts#L28)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/discount-condition-product.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product.ts#L37)
+[models/discount-condition-product.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product.ts#L37)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/discount-condition-product.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product.ts#L24)
+[models/discount-condition-product.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product.ts#L24)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/discount-condition-product.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product.ts#L17)
+[models/discount-condition-product.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product.ts#L17)
___
@@ -78,4 +78,4 @@ ___
#### Defined in
-[models/discount-condition-product.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product.ts#L34)
+[models/discount-condition-product.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product.ts#L34)
diff --git a/docs/content/references/entities/classes/DiscountConditionProductCollection.md b/docs/content/references/entities/classes/DiscountConditionProductCollection.md
index 204de20762..b82989a21e 100644
--- a/docs/content/references/entities/classes/DiscountConditionProductCollection.md
+++ b/docs/content/references/entities/classes/DiscountConditionProductCollection.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/discount-condition-product-collection.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-collection.ts#L20)
+[models/discount-condition-product-collection.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-collection.ts#L20)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/discount-condition-product-collection.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-collection.ts#L31)
+[models/discount-condition-product-collection.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-collection.ts#L31)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/discount-condition-product-collection.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-collection.ts#L28)
+[models/discount-condition-product-collection.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-collection.ts#L28)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/discount-condition-product-collection.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-collection.ts#L37)
+[models/discount-condition-product-collection.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-collection.ts#L37)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/discount-condition-product-collection.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-collection.ts#L24)
+[models/discount-condition-product-collection.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-collection.ts#L24)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/discount-condition-product-collection.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-collection.ts#L17)
+[models/discount-condition-product-collection.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-collection.ts#L17)
___
@@ -78,4 +78,4 @@ ___
#### Defined in
-[models/discount-condition-product-collection.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-collection.ts#L34)
+[models/discount-condition-product-collection.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-collection.ts#L34)
diff --git a/docs/content/references/entities/classes/DiscountConditionProductTag.md b/docs/content/references/entities/classes/DiscountConditionProductTag.md
index 098cf11dc5..92374885ca 100644
--- a/docs/content/references/entities/classes/DiscountConditionProductTag.md
+++ b/docs/content/references/entities/classes/DiscountConditionProductTag.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/discount-condition-product-tag.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-tag.ts#L20)
+[models/discount-condition-product-tag.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-tag.ts#L20)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/discount-condition-product-tag.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-tag.ts#L31)
+[models/discount-condition-product-tag.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-tag.ts#L31)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/discount-condition-product-tag.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-tag.ts#L28)
+[models/discount-condition-product-tag.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-tag.ts#L28)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/discount-condition-product-tag.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-tag.ts#L37)
+[models/discount-condition-product-tag.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-tag.ts#L37)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/discount-condition-product-tag.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-tag.ts#L24)
+[models/discount-condition-product-tag.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-tag.ts#L24)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/discount-condition-product-tag.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-tag.ts#L17)
+[models/discount-condition-product-tag.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-tag.ts#L17)
___
@@ -78,4 +78,4 @@ ___
#### Defined in
-[models/discount-condition-product-tag.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-tag.ts#L34)
+[models/discount-condition-product-tag.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-tag.ts#L34)
diff --git a/docs/content/references/entities/classes/DiscountConditionProductType.md b/docs/content/references/entities/classes/DiscountConditionProductType.md
index 74d5e8b726..a02d1c348c 100644
--- a/docs/content/references/entities/classes/DiscountConditionProductType.md
+++ b/docs/content/references/entities/classes/DiscountConditionProductType.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/discount-condition-product-type.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-type.ts#L20)
+[models/discount-condition-product-type.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-type.ts#L20)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/discount-condition-product-type.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-type.ts#L31)
+[models/discount-condition-product-type.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-type.ts#L31)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/discount-condition-product-type.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-type.ts#L28)
+[models/discount-condition-product-type.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-type.ts#L28)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/discount-condition-product-type.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-type.ts#L37)
+[models/discount-condition-product-type.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-type.ts#L37)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/discount-condition-product-type.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-type.ts#L24)
+[models/discount-condition-product-type.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-type.ts#L24)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/discount-condition-product-type.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-type.ts#L17)
+[models/discount-condition-product-type.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-type.ts#L17)
___
@@ -78,4 +78,4 @@ ___
#### Defined in
-[models/discount-condition-product-type.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition-product-type.ts#L34)
+[models/discount-condition-product-type.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition-product-type.ts#L34)
diff --git a/docs/content/references/entities/classes/DiscountRule.md b/docs/content/references/entities/classes/DiscountRule.md
index f3de7be937..c12d96a3c7 100644
--- a/docs/content/references/entities/classes/DiscountRule.md
+++ b/docs/content/references/entities/classes/DiscountRule.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/discount-rule.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L38)
+[models/discount-rule.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L38)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/discount-rule.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L41)
+[models/discount-rule.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L41)
___
@@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[models/discount-rule.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L22)
+[models/discount-rule.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L22)
___
@@ -90,7 +90,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/discount-rule.ts:44](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L44)
+[models/discount-rule.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L44)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/discount-rule.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L28)
+[models/discount-rule.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L28)
___
@@ -124,7 +124,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -134,7 +134,7 @@ ___
#### Defined in
-[models/discount-rule.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L31)
+[models/discount-rule.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L31)
## Methods
@@ -148,4 +148,4 @@ ___
#### Defined in
-[models/discount-rule.ts:46](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L46)
+[models/discount-rule.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L46)
diff --git a/docs/content/references/entities/classes/DraftOrder.md b/docs/content/references/entities/classes/DraftOrder.md
index 9fcb7401ad..72125dbbb9 100644
--- a/docs/content/references/entities/classes/DraftOrder.md
+++ b/docs/content/references/entities/classes/DraftOrder.md
@@ -28,7 +28,7 @@ BaseEntity.constructor
#### Defined in
-[models/draft-order.ts:54](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L54)
+[models/draft-order.ts:54](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L54)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/draft-order.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L43)
+[models/draft-order.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L43)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/draft-order.ts:39](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L39)
+[models/draft-order.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L39)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/draft-order.ts:57](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L57)
+[models/draft-order.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L57)
___
@@ -72,7 +72,7 @@ BaseEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[models/draft-order.ts:35](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L35)
+[models/draft-order.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L35)
___
@@ -96,7 +96,7 @@ BaseEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[models/draft-order.ts:66](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L66)
+[models/draft-order.ts:66](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L66)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/draft-order.ts:63](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L63)
+[models/draft-order.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L63)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[models/draft-order.ts:60](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L60)
+[models/draft-order.ts:60](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L60)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[models/draft-order.ts:51](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L51)
+[models/draft-order.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L51)
___
@@ -146,7 +146,7 @@ ___
#### Defined in
-[models/draft-order.ts:47](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L47)
+[models/draft-order.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L47)
___
@@ -156,7 +156,7 @@ ___
#### Defined in
-[models/draft-order.ts:30](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L30)
+[models/draft-order.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L30)
___
@@ -170,7 +170,7 @@ BaseEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -184,4 +184,4 @@ BaseEntity.updated\_at
#### Defined in
-[models/draft-order.ts:68](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L68)
+[models/draft-order.ts:68](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L68)
diff --git a/docs/content/references/entities/classes/Fulfillment.md b/docs/content/references/entities/classes/Fulfillment.md
index 6761c9a881..d3a60839c4 100644
--- a/docs/content/references/entities/classes/Fulfillment.md
+++ b/docs/content/references/entities/classes/Fulfillment.md
@@ -28,7 +28,7 @@ BaseEntity.constructor
#### Defined in
-[models/fulfillment.ts:79](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L79)
+[models/fulfillment.ts:79](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L79)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/fulfillment.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L29)
+[models/fulfillment.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L29)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/fulfillment.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L25)
+[models/fulfillment.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L25)
___
@@ -62,7 +62,7 @@ BaseEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[models/fulfillment.ts:73](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L73)
+[models/fulfillment.ts:73](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L73)
___
@@ -86,7 +86,7 @@ BaseEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[models/fulfillment.ts:85](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L85)
+[models/fulfillment.ts:85](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L85)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[models/fulfillment.ts:62](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L62)
+[models/fulfillment.ts:62](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L62)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/fulfillment.ts:82](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L82)
+[models/fulfillment.ts:82](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L82)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[models/fulfillment.ts:48](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L48)
+[models/fulfillment.ts:48](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L48)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[models/fulfillment.ts:45](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L45)
+[models/fulfillment.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L45)
___
@@ -146,7 +146,7 @@ ___
#### Defined in
-[models/fulfillment.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L41)
+[models/fulfillment.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L41)
___
@@ -156,7 +156,7 @@ ___
#### Defined in
-[models/fulfillment.ts:56](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L56)
+[models/fulfillment.ts:56](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L56)
___
@@ -166,7 +166,7 @@ ___
#### Defined in
-[models/fulfillment.ts:52](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L52)
+[models/fulfillment.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L52)
___
@@ -176,7 +176,7 @@ ___
#### Defined in
-[models/fulfillment.ts:76](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L76)
+[models/fulfillment.ts:76](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L76)
___
@@ -186,7 +186,7 @@ ___
#### Defined in
-[models/fulfillment.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L37)
+[models/fulfillment.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L37)
___
@@ -196,7 +196,7 @@ ___
#### Defined in
-[models/fulfillment.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L33)
+[models/fulfillment.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L33)
___
@@ -206,7 +206,7 @@ ___
#### Defined in
-[models/fulfillment.ts:67](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L67)
+[models/fulfillment.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L67)
___
@@ -216,7 +216,7 @@ ___
#### Defined in
-[models/fulfillment.ts:70](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L70)
+[models/fulfillment.ts:70](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L70)
___
@@ -230,7 +230,7 @@ BaseEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -244,4 +244,4 @@ BaseEntity.updated\_at
#### Defined in
-[models/fulfillment.ts:87](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment.ts#L87)
+[models/fulfillment.ts:87](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment.ts#L87)
diff --git a/docs/content/references/entities/classes/FulfillmentItem.md b/docs/content/references/entities/classes/FulfillmentItem.md
index 476864dc79..1b15a50d7c 100644
--- a/docs/content/references/entities/classes/FulfillmentItem.md
+++ b/docs/content/references/entities/classes/FulfillmentItem.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/fulfillment-item.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment-item.ts#L16)
+[models/fulfillment-item.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment-item.ts#L16)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/fulfillment-item.ts:9](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment-item.ts#L9)
+[models/fulfillment-item.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment-item.ts#L9)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/fulfillment-item.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment-item.ts#L20)
+[models/fulfillment-item.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment-item.ts#L20)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/fulfillment-item.ts:12](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment-item.ts#L12)
+[models/fulfillment-item.ts:12](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment-item.ts#L12)
___
@@ -58,4 +58,4 @@ ___
#### Defined in
-[models/fulfillment-item.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment-item.ts#L23)
+[models/fulfillment-item.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment-item.ts#L23)
diff --git a/docs/content/references/entities/classes/FulfillmentProvider.md b/docs/content/references/entities/classes/FulfillmentProvider.md
index f480687da2..769a40a651 100644
--- a/docs/content/references/entities/classes/FulfillmentProvider.md
+++ b/docs/content/references/entities/classes/FulfillmentProvider.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/fulfillment-provider.ts:6](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment-provider.ts#L6)
+[models/fulfillment-provider.ts:6](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment-provider.ts#L6)
___
@@ -28,4 +28,4 @@ ___
#### Defined in
-[models/fulfillment-provider.ts:9](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/fulfillment-provider.ts#L9)
+[models/fulfillment-provider.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/fulfillment-provider.ts#L9)
diff --git a/docs/content/references/entities/classes/GiftCard.md b/docs/content/references/entities/classes/GiftCard.md
index c850eaab65..70da74c3f9 100644
--- a/docs/content/references/entities/classes/GiftCard.md
+++ b/docs/content/references/entities/classes/GiftCard.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/gift-card.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card.ts#L26)
+[models/gift-card.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card.ts#L26)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/gift-card.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card.ts#L20)
+[models/gift-card.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card.ts#L20)
___
@@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[models/gift-card.ts:51](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card.ts#L51)
+[models/gift-card.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card.ts#L51)
___
@@ -90,7 +90,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/gift-card.ts:45](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card.ts#L45)
+[models/gift-card.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card.ts#L45)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/gift-card.ts:54](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card.ts#L54)
+[models/gift-card.ts:54](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card.ts#L54)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/gift-card.ts:42](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card.ts#L42)
+[models/gift-card.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card.ts#L42)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/gift-card.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card.ts#L38)
+[models/gift-card.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card.ts#L38)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[models/gift-card.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card.ts#L34)
+[models/gift-card.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card.ts#L34)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/gift-card.ts:30](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card.ts#L30)
+[models/gift-card.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card.ts#L30)
___
@@ -164,7 +164,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -174,7 +174,7 @@ ___
#### Defined in
-[models/gift-card.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card.ts#L23)
+[models/gift-card.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card.ts#L23)
## Methods
@@ -188,4 +188,4 @@ ___
#### Defined in
-[models/gift-card.ts:56](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card.ts#L56)
+[models/gift-card.ts:56](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card.ts#L56)
diff --git a/docs/content/references/entities/classes/GiftCardTransaction.md b/docs/content/references/entities/classes/GiftCardTransaction.md
index 336aeb2042..735b354391 100644
--- a/docs/content/references/entities/classes/GiftCardTransaction.md
+++ b/docs/content/references/entities/classes/GiftCardTransaction.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/gift-card-transaction.ts:40](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card-transaction.ts#L40)
+[models/gift-card-transaction.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card-transaction.ts#L40)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/gift-card-transaction.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card-transaction.ts#L43)
+[models/gift-card-transaction.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card-transaction.ts#L43)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/gift-card-transaction.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card-transaction.ts#L29)
+[models/gift-card-transaction.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card-transaction.ts#L29)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/gift-card-transaction.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card-transaction.ts#L25)
+[models/gift-card-transaction.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card-transaction.ts#L25)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/gift-card-transaction.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card-transaction.ts#L22)
+[models/gift-card-transaction.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card-transaction.ts#L22)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/gift-card-transaction.ts:46](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card-transaction.ts#L46)
+[models/gift-card-transaction.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card-transaction.ts#L46)
___
@@ -78,7 +78,7 @@ ___
#### Defined in
-[models/gift-card-transaction.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card-transaction.ts#L37)
+[models/gift-card-transaction.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card-transaction.ts#L37)
___
@@ -88,7 +88,7 @@ ___
#### Defined in
-[models/gift-card-transaction.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card-transaction.ts#L33)
+[models/gift-card-transaction.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card-transaction.ts#L33)
___
@@ -98,7 +98,7 @@ ___
#### Defined in
-[models/gift-card-transaction.ts:49](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card-transaction.ts#L49)
+[models/gift-card-transaction.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card-transaction.ts#L49)
## Methods
@@ -112,4 +112,4 @@ ___
#### Defined in
-[models/gift-card-transaction.ts:51](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/gift-card-transaction.ts#L51)
+[models/gift-card-transaction.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/gift-card-transaction.ts#L51)
diff --git a/docs/content/references/entities/classes/IdempotencyKey.md b/docs/content/references/entities/classes/IdempotencyKey.md
index 01e5442f74..b7104a486e 100644
--- a/docs/content/references/entities/classes/IdempotencyKey.md
+++ b/docs/content/references/entities/classes/IdempotencyKey.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/idempotency-key.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/idempotency-key.ts#L23)
+[models/idempotency-key.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/idempotency-key.ts#L23)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/idempotency-key.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/idempotency-key.ts#L16)
+[models/idempotency-key.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/idempotency-key.ts#L16)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/idempotency-key.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/idempotency-key.ts#L20)
+[models/idempotency-key.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/idempotency-key.ts#L20)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/idempotency-key.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/idempotency-key.ts#L26)
+[models/idempotency-key.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/idempotency-key.ts#L26)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/idempotency-key.ts:44](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/idempotency-key.ts#L44)
+[models/idempotency-key.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/idempotency-key.ts#L44)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/idempotency-key.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/idempotency-key.ts#L29)
+[models/idempotency-key.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/idempotency-key.ts#L29)
___
@@ -78,7 +78,7 @@ ___
#### Defined in
-[models/idempotency-key.ts:32](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/idempotency-key.ts#L32)
+[models/idempotency-key.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/idempotency-key.ts#L32)
___
@@ -88,7 +88,7 @@ ___
#### Defined in
-[models/idempotency-key.ts:35](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/idempotency-key.ts#L35)
+[models/idempotency-key.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/idempotency-key.ts#L35)
___
@@ -98,7 +98,7 @@ ___
#### Defined in
-[models/idempotency-key.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/idempotency-key.ts#L41)
+[models/idempotency-key.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/idempotency-key.ts#L41)
___
@@ -108,7 +108,7 @@ ___
#### Defined in
-[models/idempotency-key.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/idempotency-key.ts#L38)
+[models/idempotency-key.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/idempotency-key.ts#L38)
## Methods
@@ -122,4 +122,4 @@ ___
#### Defined in
-[models/idempotency-key.ts:46](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/idempotency-key.ts#L46)
+[models/idempotency-key.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/idempotency-key.ts#L46)
diff --git a/docs/content/references/entities/classes/Image.md b/docs/content/references/entities/classes/Image.md
index e8ec11e17e..aa1966f870 100644
--- a/docs/content/references/entities/classes/Image.md
+++ b/docs/content/references/entities/classes/Image.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -60,7 +60,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -70,7 +70,7 @@ ___
#### Defined in
-[models/image.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/image.ts#L13)
+[models/image.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/image.ts#L13)
___
@@ -84,7 +84,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -94,7 +94,7 @@ ___
#### Defined in
-[models/image.ts:10](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/image.ts#L10)
+[models/image.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/image.ts#L10)
## Methods
@@ -108,4 +108,4 @@ ___
#### Defined in
-[models/image.ts:15](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/image.ts#L15)
+[models/image.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/image.ts#L15)
diff --git a/docs/content/references/entities/classes/Invite.md b/docs/content/references/entities/classes/Invite.md
index 661e759b62..9b5dcd2e34 100644
--- a/docs/content/references/entities/classes/Invite.md
+++ b/docs/content/references/entities/classes/Invite.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/invite.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/invite.ts#L23)
+[models/invite.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/invite.ts#L23)
___
@@ -42,7 +42,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[models/invite.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/invite.ts#L29)
+[models/invite.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/invite.ts#L29)
___
@@ -80,7 +80,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/invite.ts:32](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/invite.ts#L32)
+[models/invite.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/invite.ts#L32)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/invite.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/invite.ts#L20)
+[models/invite.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/invite.ts#L20)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/invite.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/invite.ts#L26)
+[models/invite.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/invite.ts#L26)
___
@@ -124,7 +124,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -134,7 +134,7 @@ ___
#### Defined in
-[models/invite.ts:12](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/invite.ts#L12)
+[models/invite.ts:12](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/invite.ts#L12)
## Methods
@@ -148,4 +148,4 @@ ___
#### Defined in
-[models/invite.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/invite.ts#L34)
+[models/invite.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/invite.ts#L34)
diff --git a/docs/content/references/entities/classes/LineItem.md b/docs/content/references/entities/classes/LineItem.md
index a2a8e9bf71..8850955f21 100644
--- a/docs/content/references/entities/classes/LineItem.md
+++ b/docs/content/references/entities/classes/LineItem.md
@@ -28,7 +28,7 @@ BaseEntity.constructor
#### Defined in
-[models/line-item.ts:69](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L69)
+[models/line-item.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L69)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/line-item.ts:90](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L90)
+[models/line-item.ts:90](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L90)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/line-item.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L37)
+[models/line-item.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L37)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/line-item.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L33)
+[models/line-item.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L33)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/line-item.ts:61](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L61)
+[models/line-item.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L61)
___
@@ -78,7 +78,7 @@ ___
#### Defined in
-[models/line-item.ts:57](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L57)
+[models/line-item.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L57)
___
@@ -92,7 +92,7 @@ BaseEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -102,7 +102,7 @@ ___
#### Defined in
-[models/line-item.ts:75](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L75)
+[models/line-item.ts:75](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L75)
___
@@ -112,7 +112,7 @@ ___
#### Defined in
-[models/line-item.ts:130](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L130)
+[models/line-item.ts:130](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L130)
___
@@ -122,7 +122,7 @@ ___
#### Defined in
-[models/line-item.ts:110](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L110)
+[models/line-item.ts:110](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L110)
___
@@ -132,7 +132,7 @@ ___
#### Defined in
-[models/line-item.ts:131](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L131)
+[models/line-item.ts:131](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L131)
___
@@ -142,7 +142,7 @@ ___
#### Defined in
-[models/line-item.ts:93](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L93)
+[models/line-item.ts:93](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L93)
___
@@ -156,7 +156,7 @@ BaseEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -166,7 +166,7 @@ ___
#### Defined in
-[models/line-item.ts:122](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L122)
+[models/line-item.ts:122](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L122)
___
@@ -176,7 +176,7 @@ ___
#### Defined in
-[models/line-item.ts:84](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L84)
+[models/line-item.ts:84](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L84)
___
@@ -186,7 +186,7 @@ ___
#### Defined in
-[models/line-item.ts:81](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L81)
+[models/line-item.ts:81](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L81)
___
@@ -196,7 +196,7 @@ ___
#### Defined in
-[models/line-item.ts:119](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L119)
+[models/line-item.ts:119](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L119)
___
@@ -206,7 +206,7 @@ ___
#### Defined in
-[models/line-item.ts:45](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L45)
+[models/line-item.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L45)
___
@@ -216,7 +216,7 @@ ___
#### Defined in
-[models/line-item.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L41)
+[models/line-item.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L41)
___
@@ -226,7 +226,7 @@ ___
#### Defined in
-[models/line-item.ts:129](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L129)
+[models/line-item.ts:129](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L129)
___
@@ -236,7 +236,7 @@ ___
#### Defined in
-[models/line-item.ts:128](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L128)
+[models/line-item.ts:128](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L128)
___
@@ -246,7 +246,7 @@ ___
#### Defined in
-[models/line-item.ts:107](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L107)
+[models/line-item.ts:107](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L107)
___
@@ -256,7 +256,7 @@ ___
#### Defined in
-[models/line-item.ts:124](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L124)
+[models/line-item.ts:124](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L124)
___
@@ -266,7 +266,7 @@ ___
#### Defined in
-[models/line-item.ts:113](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L113)
+[models/line-item.ts:113](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L113)
___
@@ -276,7 +276,7 @@ ___
#### Defined in
-[models/line-item.ts:116](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L116)
+[models/line-item.ts:116](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L116)
___
@@ -286,7 +286,7 @@ ___
#### Defined in
-[models/line-item.ts:87](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L87)
+[models/line-item.ts:87](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L87)
___
@@ -296,7 +296,7 @@ ___
#### Defined in
-[models/line-item.ts:125](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L125)
+[models/line-item.ts:125](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L125)
___
@@ -306,7 +306,7 @@ ___
#### Defined in
-[models/line-item.ts:53](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L53)
+[models/line-item.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L53)
___
@@ -316,7 +316,7 @@ ___
#### Defined in
-[models/line-item.ts:49](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L49)
+[models/line-item.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L49)
___
@@ -326,7 +326,7 @@ ___
#### Defined in
-[models/line-item.ts:64](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L64)
+[models/line-item.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L64)
___
@@ -336,7 +336,7 @@ ___
#### Defined in
-[models/line-item.ts:126](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L126)
+[models/line-item.ts:126](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L126)
___
@@ -346,7 +346,7 @@ ___
#### Defined in
-[models/line-item.ts:78](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L78)
+[models/line-item.ts:78](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L78)
___
@@ -356,7 +356,7 @@ ___
#### Defined in
-[models/line-item.ts:72](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L72)
+[models/line-item.ts:72](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L72)
___
@@ -366,7 +366,7 @@ ___
#### Defined in
-[models/line-item.ts:127](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L127)
+[models/line-item.ts:127](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L127)
___
@@ -376,7 +376,7 @@ ___
#### Defined in
-[models/line-item.ts:96](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L96)
+[models/line-item.ts:96](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L96)
___
@@ -390,7 +390,7 @@ BaseEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -400,7 +400,7 @@ ___
#### Defined in
-[models/line-item.ts:104](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L104)
+[models/line-item.ts:104](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L104)
___
@@ -410,7 +410,7 @@ ___
#### Defined in
-[models/line-item.ts:100](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L100)
+[models/line-item.ts:100](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L100)
## Methods
@@ -424,4 +424,4 @@ ___
#### Defined in
-[models/line-item.ts:133](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item.ts#L133)
+[models/line-item.ts:133](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item.ts#L133)
diff --git a/docs/content/references/entities/classes/LineItemAdjustment.md b/docs/content/references/entities/classes/LineItemAdjustment.md
index 32e9edd127..daeed6f534 100644
--- a/docs/content/references/entities/classes/LineItemAdjustment.md
+++ b/docs/content/references/entities/classes/LineItemAdjustment.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/line-item-adjustment.ts:45](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-adjustment.ts#L45)
+[models/line-item-adjustment.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-adjustment.ts#L45)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/line-item-adjustment.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-adjustment.ts#L34)
+[models/line-item-adjustment.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-adjustment.ts#L34)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/line-item-adjustment.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-adjustment.ts#L38)
+[models/line-item-adjustment.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-adjustment.ts#L38)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/line-item-adjustment.ts:42](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-adjustment.ts#L42)
+[models/line-item-adjustment.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-adjustment.ts#L42)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/line-item-adjustment.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-adjustment.ts#L23)
+[models/line-item-adjustment.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-adjustment.ts#L23)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/line-item-adjustment.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-adjustment.ts#L31)
+[models/line-item-adjustment.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-adjustment.ts#L31)
___
@@ -78,7 +78,7 @@ ___
#### Defined in
-[models/line-item-adjustment.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-adjustment.ts#L27)
+[models/line-item-adjustment.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-adjustment.ts#L27)
___
@@ -88,7 +88,7 @@ ___
#### Defined in
-[models/line-item-adjustment.ts:48](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-adjustment.ts#L48)
+[models/line-item-adjustment.ts:48](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-adjustment.ts#L48)
## Methods
@@ -102,4 +102,4 @@ ___
#### Defined in
-[models/line-item-adjustment.ts:50](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-adjustment.ts#L50)
+[models/line-item-adjustment.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-adjustment.ts#L50)
diff --git a/docs/content/references/entities/classes/LineItemTaxLine.md b/docs/content/references/entities/classes/LineItemTaxLine.md
index 883798aef2..9ee1f66a29 100644
--- a/docs/content/references/entities/classes/LineItemTaxLine.md
+++ b/docs/content/references/entities/classes/LineItemTaxLine.md
@@ -32,7 +32,7 @@ TaxLine.code
#### Defined in
-[models/tax-line.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-line.ts#L13)
+[models/tax-line.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-line.ts#L13)
___
@@ -46,7 +46,7 @@ TaxLine.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -60,7 +60,7 @@ TaxLine.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -70,7 +70,7 @@ ___
#### Defined in
-[models/line-item-tax-line.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-tax-line.ts#L24)
+[models/line-item-tax-line.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-tax-line.ts#L24)
___
@@ -80,7 +80,7 @@ ___
#### Defined in
-[models/line-item-tax-line.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-tax-line.ts#L20)
+[models/line-item-tax-line.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-tax-line.ts#L20)
___
@@ -94,7 +94,7 @@ TaxLine.metadata
#### Defined in
-[models/tax-line.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-line.ts#L16)
+[models/tax-line.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-line.ts#L16)
___
@@ -108,7 +108,7 @@ TaxLine.name
#### Defined in
-[models/tax-line.ts:10](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-line.ts#L10)
+[models/tax-line.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-line.ts#L10)
___
@@ -122,7 +122,7 @@ TaxLine.rate
#### Defined in
-[models/tax-line.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-line.ts#L7)
+[models/tax-line.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-line.ts#L7)
___
@@ -136,7 +136,7 @@ TaxLine.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -150,4 +150,4 @@ TaxLine.updated\_at
#### Defined in
-[models/line-item-tax-line.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/line-item-tax-line.ts#L26)
+[models/line-item-tax-line.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/line-item-tax-line.ts#L26)
diff --git a/docs/content/references/entities/classes/MoneyAmount.md b/docs/content/references/entities/classes/MoneyAmount.md
index 5804f216ac..6d7c014b8f 100644
--- a/docs/content/references/entities/classes/MoneyAmount.md
+++ b/docs/content/references/entities/classes/MoneyAmount.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/money-amount.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L27)
+[models/money-amount.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L27)
___
@@ -42,7 +42,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -52,7 +52,7 @@ ___
#### Defined in
-[models/money-amount.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L24)
+[models/money-amount.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L24)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[models/money-amount.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L20)
+[models/money-amount.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L20)
___
@@ -76,7 +76,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -90,7 +90,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/money-amount.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L33)
+[models/money-amount.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L33)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/money-amount.ts:30](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L30)
+[models/money-amount.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L30)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/money-amount.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L43)
+[models/money-amount.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L43)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/money-amount.ts:36](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L36)
+[models/money-amount.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L36)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[models/money-amount.ts:61](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L61)
+[models/money-amount.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L61)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/money-amount.ts:57](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L57)
+[models/money-amount.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L57)
___
@@ -164,7 +164,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -174,7 +174,7 @@ ___
#### Defined in
-[models/money-amount.ts:53](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L53)
+[models/money-amount.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L53)
___
@@ -184,7 +184,7 @@ ___
#### Defined in
-[models/money-amount.ts:47](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L47)
+[models/money-amount.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L47)
## Methods
@@ -198,4 +198,4 @@ ___
#### Defined in
-[models/money-amount.ts:63](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/money-amount.ts#L63)
+[models/money-amount.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/money-amount.ts#L63)
diff --git a/docs/content/references/entities/classes/Note.md b/docs/content/references/entities/classes/Note.md
index c7de6d5e5d..ca6d04df0c 100644
--- a/docs/content/references/entities/classes/Note.md
+++ b/docs/content/references/entities/classes/Note.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/note.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/note.ts#L33)
+[models/note.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/note.ts#L33)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/note.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/note.ts#L29)
+[models/note.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/note.ts#L29)
___
@@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -80,7 +80,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/note.ts:36](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/note.ts#L36)
+[models/note.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/note.ts#L36)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/note.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/note.ts#L26)
+[models/note.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/note.ts#L26)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/note.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/note.ts#L22)
+[models/note.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/note.ts#L22)
___
@@ -124,7 +124,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -134,7 +134,7 @@ ___
#### Defined in
-[models/note.ts:18](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/note.ts#L18)
+[models/note.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/note.ts#L18)
## Methods
@@ -148,4 +148,4 @@ ___
#### Defined in
-[models/note.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/note.ts#L38)
+[models/note.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/note.ts#L38)
diff --git a/docs/content/references/entities/classes/Notification.md b/docs/content/references/entities/classes/Notification.md
index ed700ccc28..b3b6cce496 100644
--- a/docs/content/references/entities/classes/Notification.md
+++ b/docs/content/references/entities/classes/Notification.md
@@ -32,7 +32,7 @@ BaseEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/notification.ts:36](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L36)
+[models/notification.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L36)
___
@@ -52,7 +52,7 @@ ___
#### Defined in
-[models/notification.ts:32](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L32)
+[models/notification.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L32)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[models/notification.ts:42](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L42)
+[models/notification.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L42)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[models/notification.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L20)
+[models/notification.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L20)
___
@@ -86,7 +86,7 @@ BaseEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[models/notification.ts:45](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L45)
+[models/notification.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L45)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[models/notification.ts:49](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L49)
+[models/notification.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L49)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/notification.ts:59](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L59)
+[models/notification.ts:59](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L59)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[models/notification.ts:55](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L55)
+[models/notification.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L55)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[models/notification.ts:52](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L52)
+[models/notification.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L52)
___
@@ -146,7 +146,7 @@ ___
#### Defined in
-[models/notification.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L28)
+[models/notification.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L28)
___
@@ -156,7 +156,7 @@ ___
#### Defined in
-[models/notification.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L24)
+[models/notification.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L24)
___
@@ -166,7 +166,7 @@ ___
#### Defined in
-[models/notification.ts:39](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L39)
+[models/notification.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L39)
___
@@ -180,7 +180,7 @@ BaseEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -194,4 +194,4 @@ BaseEntity.updated\_at
#### Defined in
-[models/notification.ts:61](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/notification.ts#L61)
+[models/notification.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/notification.ts#L61)
diff --git a/docs/content/references/entities/classes/Oauth.md b/docs/content/references/entities/classes/Oauth.md
index 195cf326c4..2c6493c1e9 100644
--- a/docs/content/references/entities/classes/Oauth.md
+++ b/docs/content/references/entities/classes/Oauth.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/oauth.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/oauth.ts#L16)
+[models/oauth.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/oauth.ts#L16)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/oauth.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/oauth.ts#L25)
+[models/oauth.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/oauth.ts#L25)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/oauth.ts:12](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/oauth.ts#L12)
+[models/oauth.ts:12](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/oauth.ts#L12)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/oauth.ts:9](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/oauth.ts#L9)
+[models/oauth.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/oauth.ts#L9)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/oauth.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/oauth.ts#L19)
+[models/oauth.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/oauth.ts#L19)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/oauth.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/oauth.ts#L22)
+[models/oauth.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/oauth.ts#L22)
## Methods
@@ -82,4 +82,4 @@ ___
#### Defined in
-[models/oauth.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/oauth.ts#L27)
+[models/oauth.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/oauth.ts#L27)
diff --git a/docs/content/references/entities/classes/Order.md b/docs/content/references/entities/classes/Order.md
index be772ae318..a96538b582 100644
--- a/docs/content/references/entities/classes/Order.md
+++ b/docs/content/references/entities/classes/Order.md
@@ -28,7 +28,7 @@ BaseEntity.constructor
#### Defined in
-[models/order.ts:125](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L125)
+[models/order.ts:125](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L125)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/order.ts:121](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L121)
+[models/order.ts:121](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L121)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/order.ts:230](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L230)
+[models/order.ts:230](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L230)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/order.ts:106](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L106)
+[models/order.ts:106](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L106)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/order.ts:102](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L102)
+[models/order.ts:102](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L102)
___
@@ -78,7 +78,7 @@ ___
#### Defined in
-[models/order.ts:198](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L198)
+[models/order.ts:198](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L198)
___
@@ -92,7 +92,7 @@ BaseEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -102,7 +102,7 @@ ___
#### Defined in
-[models/order.ts:148](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L148)
+[models/order.ts:148](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L148)
___
@@ -112,7 +112,7 @@ ___
#### Defined in
-[models/order.ts:144](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L144)
+[models/order.ts:144](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L144)
___
@@ -122,7 +122,7 @@ ___
#### Defined in
-[models/order.ts:114](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L114)
+[models/order.ts:114](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L114)
___
@@ -132,7 +132,7 @@ ___
#### Defined in
-[models/order.ts:110](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L110)
+[models/order.ts:110](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L110)
___
@@ -142,7 +142,7 @@ ___
#### Defined in
-[models/order.ts:255](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L255)
+[models/order.ts:255](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L255)
___
@@ -152,7 +152,7 @@ ___
#### Defined in
-[models/order.ts:165](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L165)
+[models/order.ts:165](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L165)
___
@@ -162,7 +162,7 @@ ___
#### Defined in
-[models/order.ts:98](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L98)
+[models/order.ts:98](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L98)
___
@@ -172,7 +172,7 @@ ___
#### Defined in
-[models/order.ts:211](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L211)
+[models/order.ts:211](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L211)
___
@@ -182,17 +182,17 @@ ___
#### Defined in
-[models/order.ts:207](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L207)
+[models/order.ts:207](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L207)
___
### edits
-• **edits**: `OrderEdit`[]
+• **edits**: [`OrderEdit`](OrderEdit.md)[]
#### Defined in
-[models/order.ts:219](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L219)
+[models/order.ts:219](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L219)
___
@@ -202,7 +202,7 @@ ___
#### Defined in
-[models/order.ts:117](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L117)
+[models/order.ts:117](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L117)
___
@@ -212,7 +212,7 @@ ___
#### Defined in
-[models/order.ts:242](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L242)
+[models/order.ts:242](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L242)
___
@@ -222,7 +222,7 @@ ___
#### Defined in
-[models/order.ts:90](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L90)
+[models/order.ts:90](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L90)
___
@@ -232,7 +232,7 @@ ___
#### Defined in
-[models/order.ts:192](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L192)
+[models/order.ts:192](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L192)
___
@@ -242,7 +242,7 @@ ___
#### Defined in
-[models/order.ts:263](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L263)
+[models/order.ts:263](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L263)
___
@@ -252,7 +252,7 @@ ___
#### Defined in
-[models/order.ts:262](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L262)
+[models/order.ts:262](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L262)
___
@@ -262,7 +262,7 @@ ___
#### Defined in
-[models/order.ts:227](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L227)
+[models/order.ts:227](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L227)
___
@@ -272,7 +272,7 @@ ___
#### Defined in
-[models/order.ts:179](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L179)
+[models/order.ts:179](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L179)
___
@@ -286,7 +286,7 @@ BaseEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -296,7 +296,7 @@ ___
#### Defined in
-[models/order.ts:239](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L239)
+[models/order.ts:239](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L239)
___
@@ -306,7 +306,7 @@ ___
#### Defined in
-[models/order.ts:224](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L224)
+[models/order.ts:224](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L224)
___
@@ -316,7 +316,7 @@ ___
#### Defined in
-[models/order.ts:233](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L233)
+[models/order.ts:233](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L233)
___
@@ -326,7 +326,7 @@ ___
#### Defined in
-[models/order.ts:236](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L236)
+[models/order.ts:236](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L236)
___
@@ -336,7 +336,7 @@ ___
#### Defined in
-[models/order.ts:80](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L80)
+[models/order.ts:80](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L80)
___
@@ -346,7 +346,7 @@ ___
#### Defined in
-[models/order.ts:260](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L260)
+[models/order.ts:260](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L260)
___
@@ -356,7 +356,7 @@ ___
#### Defined in
-[models/order.ts:93](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L93)
+[models/order.ts:93](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L93)
___
@@ -366,7 +366,7 @@ ___
#### Defined in
-[models/order.ts:187](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L187)
+[models/order.ts:187](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L187)
___
@@ -376,7 +376,7 @@ ___
#### Defined in
-[models/order.ts:261](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L261)
+[models/order.ts:261](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L261)
___
@@ -386,7 +386,7 @@ ___
#### Defined in
-[models/order.ts:257](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L257)
+[models/order.ts:257](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L257)
___
@@ -396,7 +396,7 @@ ___
#### Defined in
-[models/order.ts:201](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L201)
+[models/order.ts:201](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L201)
___
@@ -406,7 +406,7 @@ ___
#### Defined in
-[models/order.ts:141](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L141)
+[models/order.ts:141](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L141)
___
@@ -416,7 +416,7 @@ ___
#### Defined in
-[models/order.ts:137](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L137)
+[models/order.ts:137](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L137)
___
@@ -426,7 +426,7 @@ ___
#### Defined in
-[models/order.ts:195](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L195)
+[models/order.ts:195](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L195)
___
@@ -436,7 +436,7 @@ ___
#### Defined in
-[models/order.ts:251](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L251)
+[models/order.ts:251](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L251)
___
@@ -446,7 +446,7 @@ ___
#### Defined in
-[models/order.ts:245](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L245)
+[models/order.ts:245](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L245)
___
@@ -456,7 +456,7 @@ ___
#### Defined in
-[models/order.ts:133](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L133)
+[models/order.ts:133](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L133)
___
@@ -466,7 +466,7 @@ ___
#### Defined in
-[models/order.ts:129](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L129)
+[models/order.ts:129](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L129)
___
@@ -476,7 +476,7 @@ ___
#### Defined in
-[models/order.ts:184](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L184)
+[models/order.ts:184](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L184)
___
@@ -486,7 +486,7 @@ ___
#### Defined in
-[models/order.ts:254](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L254)
+[models/order.ts:254](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L254)
___
@@ -496,7 +496,7 @@ ___
#### Defined in
-[models/order.ts:83](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L83)
+[models/order.ts:83](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L83)
___
@@ -506,7 +506,7 @@ ___
#### Defined in
-[models/order.ts:259](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L259)
+[models/order.ts:259](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L259)
___
@@ -516,7 +516,7 @@ ___
#### Defined in
-[models/order.ts:204](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L204)
+[models/order.ts:204](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L204)
___
@@ -526,7 +526,7 @@ ___
#### Defined in
-[models/order.ts:151](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L151)
+[models/order.ts:151](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L151)
___
@@ -536,7 +536,7 @@ ___
#### Defined in
-[models/order.ts:256](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L256)
+[models/order.ts:256](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L256)
___
@@ -546,7 +546,7 @@ ___
#### Defined in
-[models/order.ts:258](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L258)
+[models/order.ts:258](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L258)
___
@@ -560,7 +560,7 @@ BaseEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -574,4 +574,4 @@ BaseEntity.updated\_at
#### Defined in
-[models/order.ts:265](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L265)
+[models/order.ts:265](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L265)
diff --git a/docs/content/references/entities/classes/OrderEdit.md b/docs/content/references/entities/classes/OrderEdit.md
new file mode 100644
index 0000000000..03b1b8fd7d
--- /dev/null
+++ b/docs/content/references/entities/classes/OrderEdit.md
@@ -0,0 +1,301 @@
+---
+displayed_sidebar: entitiesSidebar
+---
+
+# Class: OrderEdit
+
+## Hierarchy
+
+- `SoftDeletableEntity`
+
+ ↳ **`OrderEdit`**
+
+## Constructors
+
+### constructor
+
+• **new OrderEdit**()
+
+#### Inherited from
+
+SoftDeletableEntity.constructor
+
+## Properties
+
+### canceled\_at
+
+• `Optional` **canceled\_at**: `Date`
+
+#### Defined in
+
+[models/order-edit.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L57)
+
+___
+
+### canceled\_by
+
+• `Optional` **canceled\_by**: `string`
+
+#### Defined in
+
+[models/order-edit.ts:54](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L54)
+
+___
+
+### changes
+
+• **changes**: [`OrderItemChange`](OrderItemChange.md)[]
+
+#### Defined in
+
+[models/order-edit.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L24)
+
+___
+
+### confirmed\_at
+
+• `Optional` **confirmed\_at**: `Date`
+
+#### Defined in
+
+[models/order-edit.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L42)
+
+___
+
+### confirmed\_by
+
+• `Optional` **confirmed\_by**: `string`
+
+#### Defined in
+
+[models/order-edit.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L39)
+
+___
+
+### created\_at
+
+• **created\_at**: `Date`
+
+#### Inherited from
+
+SoftDeletableEntity.created\_at
+
+#### Defined in
+
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+
+___
+
+### created\_by
+
+• **created\_by**: `string`
+
+#### Defined in
+
+[models/order-edit.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L30)
+
+___
+
+### declined\_at
+
+• `Optional` **declined\_at**: `Date`
+
+#### Defined in
+
+[models/order-edit.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L51)
+
+___
+
+### declined\_by
+
+• `Optional` **declined\_by**: `string`
+
+#### Defined in
+
+[models/order-edit.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L45)
+
+___
+
+### declined\_reason
+
+• `Optional` **declined\_reason**: `string`
+
+#### Defined in
+
+[models/order-edit.ts:48](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L48)
+
+___
+
+### deleted\_at
+
+• **deleted\_at**: ``null`` \| `Date`
+
+#### Inherited from
+
+SoftDeletableEntity.deleted\_at
+
+#### Defined in
+
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+
+___
+
+### difference\_due
+
+• **difference\_due**: `number`
+
+#### Defined in
+
+[models/order-edit.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L64)
+
+___
+
+### discount\_total
+
+• `Optional` **discount\_total**: `number`
+
+#### Defined in
+
+[models/order-edit.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L61)
+
+___
+
+### id
+
+• **id**: `string`
+
+#### Inherited from
+
+SoftDeletableEntity.id
+
+#### Defined in
+
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+
+___
+
+### internal\_note
+
+• `Optional` **internal\_note**: `string`
+
+#### Defined in
+
+[models/order-edit.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L27)
+
+___
+
+### items
+
+• **items**: [`LineItem`](LineItem.md)[]
+
+#### Defined in
+
+[models/order-edit.ts:66](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L66)
+
+___
+
+### order
+
+• **order**: [`Order`](Order.md)
+
+#### Defined in
+
+[models/order-edit.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L19)
+
+___
+
+### order\_id
+
+• **order\_id**: `string`
+
+#### Defined in
+
+[models/order-edit.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L15)
+
+___
+
+### removed\_items
+
+• **removed\_items**: [`LineItem`](LineItem.md)[]
+
+#### Defined in
+
+[models/order-edit.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L67)
+
+___
+
+### requested\_at
+
+• `Optional` **requested\_at**: `Date`
+
+#### Defined in
+
+[models/order-edit.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L36)
+
+___
+
+### requested\_by
+
+• `Optional` **requested\_by**: `string`
+
+#### Defined in
+
+[models/order-edit.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L33)
+
+___
+
+### subtotal
+
+• **subtotal**: `number`
+
+#### Defined in
+
+[models/order-edit.ts:60](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L60)
+
+___
+
+### tax\_total
+
+• **tax\_total**: `number`
+
+#### Defined in
+
+[models/order-edit.ts:62](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L62)
+
+___
+
+### total
+
+• **total**: `number`
+
+#### Defined in
+
+[models/order-edit.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L63)
+
+___
+
+### updated\_at
+
+• **updated\_at**: `Date`
+
+#### Inherited from
+
+SoftDeletableEntity.updated\_at
+
+#### Defined in
+
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+
+## Methods
+
+### beforeInsert
+
+▸ `Private` **beforeInsert**(): `void`
+
+#### Returns
+
+`void`
+
+#### Defined in
+
+[models/order-edit.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-edit.ts#L69)
diff --git a/docs/content/references/entities/classes/OrderItemChange.md b/docs/content/references/entities/classes/OrderItemChange.md
new file mode 100644
index 0000000000..165fd5b848
--- /dev/null
+++ b/docs/content/references/entities/classes/OrderItemChange.md
@@ -0,0 +1,161 @@
+---
+displayed_sidebar: entitiesSidebar
+---
+
+# Class: OrderItemChange
+
+## Hierarchy
+
+- `SoftDeletableEntity`
+
+ ↳ **`OrderItemChange`**
+
+## Constructors
+
+### constructor
+
+• **new OrderItemChange**()
+
+#### Inherited from
+
+SoftDeletableEntity.constructor
+
+## Properties
+
+### created\_at
+
+• **created\_at**: `Date`
+
+#### Inherited from
+
+SoftDeletableEntity.created\_at
+
+#### Defined in
+
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+
+___
+
+### deleted\_at
+
+• **deleted\_at**: ``null`` \| `Date`
+
+#### Inherited from
+
+SoftDeletableEntity.deleted\_at
+
+#### Defined in
+
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+
+___
+
+### id
+
+• **id**: `string`
+
+#### Inherited from
+
+SoftDeletableEntity.id
+
+#### Defined in
+
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+
+___
+
+### line\_item
+
+• `Optional` **line\_item**: [`LineItem`](LineItem.md)
+
+#### Defined in
+
+[models/order-item-change.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-item-change.ts#L53)
+
+___
+
+### line\_item\_id
+
+• `Optional` **line\_item\_id**: `string`
+
+#### Defined in
+
+[models/order-item-change.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-item-change.ts#L49)
+
+___
+
+### order\_edit
+
+• **order\_edit**: [`OrderEdit`](OrderEdit.md)
+
+#### Defined in
+
+[models/order-item-change.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-item-change.ts#L39)
+
+___
+
+### order\_edit\_id
+
+• **order\_edit\_id**: `string`
+
+#### Defined in
+
+[models/order-item-change.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-item-change.ts#L35)
+
+___
+
+### original\_line\_item
+
+• `Optional` **original\_line\_item**: [`LineItem`](LineItem.md)
+
+#### Defined in
+
+[models/order-item-change.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-item-change.ts#L46)
+
+___
+
+### original\_line\_item\_id
+
+• `Optional` **original\_line\_item\_id**: `string`
+
+#### Defined in
+
+[models/order-item-change.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-item-change.ts#L42)
+
+___
+
+### type
+
+• **type**: [`OrderEditItemChangeType`](../enums/OrderEditItemChangeType.md)
+
+#### Defined in
+
+[models/order-item-change.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-item-change.ts#L32)
+
+___
+
+### updated\_at
+
+• **updated\_at**: `Date`
+
+#### Inherited from
+
+SoftDeletableEntity.updated\_at
+
+#### Defined in
+
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+
+## Methods
+
+### beforeInsert
+
+▸ `Private` **beforeInsert**(): `void`
+
+#### Returns
+
+`void`
+
+#### Defined in
+
+[models/order-item-change.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-item-change.ts#L55)
diff --git a/docs/content/references/entities/classes/Payment.md b/docs/content/references/entities/classes/Payment.md
index 928d2565b6..ef98972866 100644
--- a/docs/content/references/entities/classes/Payment.md
+++ b/docs/content/references/entities/classes/Payment.md
@@ -28,7 +28,7 @@ BaseEntity.constructor
#### Defined in
-[models/payment.ts:51](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L51)
+[models/payment.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L51)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/payment.ts:61](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L61)
+[models/payment.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L61)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/payment.ts:74](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L74)
+[models/payment.ts:74](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L74)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/payment.ts:71](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L71)
+[models/payment.ts:71](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L71)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/payment.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L37)
+[models/payment.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L37)
___
@@ -78,7 +78,7 @@ ___
#### Defined in
-[models/payment.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L33)
+[models/payment.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L33)
___
@@ -92,7 +92,7 @@ BaseEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -102,7 +102,7 @@ ___
#### Defined in
-[models/payment.ts:58](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L58)
+[models/payment.ts:58](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L58)
___
@@ -112,7 +112,7 @@ ___
#### Defined in
-[models/payment.ts:54](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L54)
+[models/payment.ts:54](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L54)
___
@@ -122,7 +122,7 @@ ___
#### Defined in
-[models/payment.ts:68](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L68)
+[models/payment.ts:68](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L68)
___
@@ -136,7 +136,7 @@ BaseEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -146,7 +146,7 @@ ___
#### Defined in
-[models/payment.ts:80](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L80)
+[models/payment.ts:80](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L80)
___
@@ -156,7 +156,7 @@ ___
#### Defined in
-[models/payment.ts:77](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L77)
+[models/payment.ts:77](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L77)
___
@@ -166,7 +166,7 @@ ___
#### Defined in
-[models/payment.ts:48](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L48)
+[models/payment.ts:48](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L48)
___
@@ -176,7 +176,7 @@ ___
#### Defined in
-[models/payment.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L41)
+[models/payment.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L41)
___
@@ -186,7 +186,7 @@ ___
#### Defined in
-[models/payment.ts:65](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L65)
+[models/payment.ts:65](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L65)
___
@@ -196,7 +196,7 @@ ___
#### Defined in
-[models/payment.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L29)
+[models/payment.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L29)
___
@@ -206,7 +206,7 @@ ___
#### Defined in
-[models/payment.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L25)
+[models/payment.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L25)
___
@@ -220,7 +220,7 @@ BaseEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -234,4 +234,4 @@ BaseEntity.updated\_at
#### Defined in
-[models/payment.ts:82](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment.ts#L82)
+[models/payment.ts:82](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment.ts#L82)
diff --git a/docs/content/references/entities/classes/PaymentProvider.md b/docs/content/references/entities/classes/PaymentProvider.md
index 2912ddce33..63f398066d 100644
--- a/docs/content/references/entities/classes/PaymentProvider.md
+++ b/docs/content/references/entities/classes/PaymentProvider.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/payment-provider.ts:6](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-provider.ts#L6)
+[models/payment-provider.ts:6](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-provider.ts#L6)
___
@@ -28,4 +28,4 @@ ___
#### Defined in
-[models/payment-provider.ts:9](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-provider.ts#L9)
+[models/payment-provider.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-provider.ts#L9)
diff --git a/docs/content/references/entities/classes/PaymentSession.md b/docs/content/references/entities/classes/PaymentSession.md
index 0b9c7dc3fa..44c3434488 100644
--- a/docs/content/references/entities/classes/PaymentSession.md
+++ b/docs/content/references/entities/classes/PaymentSession.md
@@ -28,7 +28,7 @@ BaseEntity.constructor
#### Defined in
-[models/payment-session.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L34)
+[models/payment-session.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L34)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/payment-session.ts:30](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L30)
+[models/payment-session.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L30)
___
@@ -52,7 +52,7 @@ BaseEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[models/payment-session.ts:47](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L47)
+[models/payment-session.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L47)
___
@@ -76,7 +76,7 @@ BaseEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[models/payment-session.ts:50](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L50)
+[models/payment-session.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L50)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[models/payment-session.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L41)
+[models/payment-session.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L41)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[models/payment-session.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L38)
+[models/payment-session.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L38)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/payment-session.ts:44](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L44)
+[models/payment-session.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L44)
___
@@ -130,7 +130,7 @@ BaseEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -144,4 +144,4 @@ BaseEntity.updated\_at
#### Defined in
-[models/payment-session.ts:52](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L52)
+[models/payment-session.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L52)
diff --git a/docs/content/references/entities/classes/PriceList.md b/docs/content/references/entities/classes/PriceList.md
index fc8375feff..56810bfaa4 100644
--- a/docs/content/references/entities/classes/PriceList.md
+++ b/docs/content/references/entities/classes/PriceList.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/price-list.ts:56](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/price-list.ts#L56)
+[models/price-list.ts:56](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/price-list.ts#L56)
___
@@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[models/price-list.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/price-list.ts#L25)
+[models/price-list.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/price-list.ts#L25)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[models/price-list.ts:40](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/price-list.ts#L40)
+[models/price-list.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/price-list.ts#L40)
___
@@ -90,7 +90,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/price-list.ts:64](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/price-list.ts#L64)
+[models/price-list.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/price-list.ts#L64)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/price-list.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/price-list.ts#L22)
+[models/price-list.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/price-list.ts#L22)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/price-list.ts:61](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/price-list.ts#L61)
+[models/price-list.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/price-list.ts#L61)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/price-list.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/price-list.ts#L37)
+[models/price-list.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/price-list.ts#L37)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[models/price-list.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/price-list.ts#L31)
+[models/price-list.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/price-list.ts#L31)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/price-list.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/price-list.ts#L28)
+[models/price-list.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/price-list.ts#L28)
___
@@ -164,7 +164,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -178,4 +178,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/price-list.ts:66](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/price-list.ts#L66)
+[models/price-list.ts:66](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/price-list.ts#L66)
diff --git a/docs/content/references/entities/classes/Product.md b/docs/content/references/entities/classes/Product.md
index 65b0aa1765..edf2d8efac 100644
--- a/docs/content/references/entities/classes/Product.md
+++ b/docs/content/references/entities/classes/Product.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/product.ts:117](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L117)
+[models/product.ts:117](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L117)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/product.ts:113](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L113)
+[models/product.ts:113](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L113)
___
@@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[models/product.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L43)
+[models/product.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L43)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[models/product.ts:141](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L141)
+[models/product.ts:141](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L141)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[models/product.ts:144](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L144)
+[models/product.ts:144](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L144)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[models/product.ts:47](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L47)
+[models/product.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L47)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/product.ts:95](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L95)
+[models/product.ts:95](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L95)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[models/product.ts:101](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L101)
+[models/product.ts:101](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L101)
___
@@ -140,7 +140,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/product.ts:67](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L67)
+[models/product.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L67)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/product.ts:50](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L50)
+[models/product.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L50)
___
@@ -170,7 +170,7 @@ ___
#### Defined in
-[models/product.ts:92](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L92)
+[models/product.ts:92](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L92)
___
@@ -180,7 +180,7 @@ ___
#### Defined in
-[models/product.ts:110](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L110)
+[models/product.ts:110](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L110)
___
@@ -190,7 +190,7 @@ ___
#### Defined in
-[models/product.ts:147](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L147)
+[models/product.ts:147](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L147)
___
@@ -200,7 +200,7 @@ ___
#### Defined in
-[models/product.ts:107](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L107)
+[models/product.ts:107](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L107)
___
@@ -210,7 +210,7 @@ ___
#### Defined in
-[models/product.ts:73](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L73)
+[models/product.ts:73](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L73)
___
@@ -220,7 +220,7 @@ ___
#### Defined in
-[models/product.ts:104](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L104)
+[models/product.ts:104](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L104)
___
@@ -230,7 +230,7 @@ ___
#### Defined in
-[models/product.ts:86](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L86)
+[models/product.ts:86](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L86)
___
@@ -240,7 +240,7 @@ ___
#### Defined in
-[models/product.ts:82](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L82)
+[models/product.ts:82](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L82)
___
@@ -250,7 +250,7 @@ ___
#### Defined in
-[models/product.ts:163](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L163)
+[models/product.ts:163](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L163)
___
@@ -260,7 +260,7 @@ ___
#### Defined in
-[models/product.ts:53](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L53)
+[models/product.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L53)
___
@@ -270,7 +270,7 @@ ___
#### Defined in
-[models/product.ts:40](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L40)
+[models/product.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L40)
___
@@ -280,7 +280,7 @@ ___
#### Defined in
-[models/product.ts:138](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L138)
+[models/product.ts:138](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L138)
___
@@ -290,7 +290,7 @@ ___
#### Defined in
-[models/product.ts:70](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L70)
+[models/product.ts:70](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L70)
___
@@ -300,7 +300,7 @@ ___
#### Defined in
-[models/product.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L37)
+[models/product.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L37)
___
@@ -310,7 +310,7 @@ ___
#### Defined in
-[models/product.ts:124](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L124)
+[models/product.ts:124](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L124)
___
@@ -320,7 +320,7 @@ ___
#### Defined in
-[models/product.ts:120](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L120)
+[models/product.ts:120](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L120)
___
@@ -334,7 +334,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -344,7 +344,7 @@ ___
#### Defined in
-[models/product.ts:78](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L78)
+[models/product.ts:78](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L78)
___
@@ -354,7 +354,7 @@ ___
#### Defined in
-[models/product.ts:89](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L89)
+[models/product.ts:89](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L89)
___
@@ -364,7 +364,7 @@ ___
#### Defined in
-[models/product.ts:98](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L98)
+[models/product.ts:98](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L98)
## Methods
@@ -378,4 +378,4 @@ ___
#### Defined in
-[models/product.ts:165](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L165)
+[models/product.ts:165](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L165)
diff --git a/docs/content/references/entities/classes/ProductCollection.md b/docs/content/references/entities/classes/ProductCollection.md
index 2e7a2de63b..ce0aa83746 100644
--- a/docs/content/references/entities/classes/ProductCollection.md
+++ b/docs/content/references/entities/classes/ProductCollection.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -56,7 +56,7 @@ ___
#### Defined in
-[models/product-collection.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-collection.ts#L16)
+[models/product-collection.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-collection.ts#L16)
___
@@ -70,7 +70,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -80,7 +80,7 @@ ___
#### Defined in
-[models/product-collection.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-collection.ts#L22)
+[models/product-collection.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-collection.ts#L22)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/product-collection.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-collection.ts#L19)
+[models/product-collection.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-collection.ts#L19)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/product-collection.ts:12](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-collection.ts#L12)
+[models/product-collection.ts:12](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-collection.ts#L12)
___
@@ -114,7 +114,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -128,4 +128,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/product-collection.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-collection.ts#L24)
+[models/product-collection.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-collection.ts#L24)
diff --git a/docs/content/references/entities/classes/ProductOption.md b/docs/content/references/entities/classes/ProductOption.md
index 119d30268f..66d0130667 100644
--- a/docs/content/references/entities/classes/ProductOption.md
+++ b/docs/content/references/entities/classes/ProductOption.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -60,7 +60,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -70,7 +70,7 @@ ___
#### Defined in
-[models/product-option.ts:32](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option.ts#L32)
+[models/product-option.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option.ts#L32)
___
@@ -80,7 +80,7 @@ ___
#### Defined in
-[models/product-option.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option.ts#L29)
+[models/product-option.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option.ts#L29)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/product-option.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option.ts#L25)
+[models/product-option.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option.ts#L25)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/product-option.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option.ts#L19)
+[models/product-option.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option.ts#L19)
___
@@ -114,7 +114,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -124,7 +124,7 @@ ___
#### Defined in
-[models/product-option.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option.ts#L22)
+[models/product-option.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option.ts#L22)
## Methods
@@ -138,4 +138,4 @@ ___
#### Defined in
-[models/product-option.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option.ts#L34)
+[models/product-option.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option.ts#L34)
diff --git a/docs/content/references/entities/classes/ProductOptionValue.md b/docs/content/references/entities/classes/ProductOptionValue.md
index c1213284f3..ad0a9934b2 100644
--- a/docs/content/references/entities/classes/ProductOptionValue.md
+++ b/docs/content/references/entities/classes/ProductOptionValue.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -60,7 +60,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -70,7 +70,7 @@ ___
#### Defined in
-[models/product-option-value.ts:40](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option-value.ts#L40)
+[models/product-option-value.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option-value.ts#L40)
___
@@ -80,7 +80,7 @@ ___
#### Defined in
-[models/product-option-value.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option-value.ts#L27)
+[models/product-option-value.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option-value.ts#L27)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/product-option-value.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option-value.ts#L23)
+[models/product-option-value.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option-value.ts#L23)
___
@@ -104,7 +104,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -114,7 +114,7 @@ ___
#### Defined in
-[models/product-option-value.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option-value.ts#L19)
+[models/product-option-value.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option-value.ts#L19)
___
@@ -124,7 +124,7 @@ ___
#### Defined in
-[models/product-option-value.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option-value.ts#L37)
+[models/product-option-value.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option-value.ts#L37)
___
@@ -134,7 +134,7 @@ ___
#### Defined in
-[models/product-option-value.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option-value.ts#L31)
+[models/product-option-value.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option-value.ts#L31)
## Methods
@@ -148,4 +148,4 @@ ___
#### Defined in
-[models/product-option-value.ts:42](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-option-value.ts#L42)
+[models/product-option-value.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-option-value.ts#L42)
diff --git a/docs/content/references/entities/classes/ProductTag.md b/docs/content/references/entities/classes/ProductTag.md
index c8c956db3e..7eebbb0760 100644
--- a/docs/content/references/entities/classes/ProductTag.md
+++ b/docs/content/references/entities/classes/ProductTag.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -60,7 +60,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -70,7 +70,7 @@ ___
#### Defined in
-[models/product-tag.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-tag.ts#L13)
+[models/product-tag.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-tag.ts#L13)
___
@@ -84,7 +84,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -94,7 +94,7 @@ ___
#### Defined in
-[models/product-tag.ts:10](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-tag.ts#L10)
+[models/product-tag.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-tag.ts#L10)
## Methods
@@ -108,4 +108,4 @@ ___
#### Defined in
-[models/product-tag.ts:15](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-tag.ts#L15)
+[models/product-tag.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-tag.ts#L15)
diff --git a/docs/content/references/entities/classes/ProductTaxRate.md b/docs/content/references/entities/classes/ProductTaxRate.md
index f26af76540..100c8751bc 100644
--- a/docs/content/references/entities/classes/ProductTaxRate.md
+++ b/docs/content/references/entities/classes/ProductTaxRate.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/product-tax-rate.ts:32](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-tax-rate.ts#L32)
+[models/product-tax-rate.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-tax-rate.ts#L32)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/product-tax-rate.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-tax-rate.ts#L38)
+[models/product-tax-rate.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-tax-rate.ts#L38)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/product-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-tax-rate.ts#L24)
+[models/product-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-tax-rate.ts#L24)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/product-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-tax-rate.ts#L17)
+[models/product-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-tax-rate.ts#L17)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/product-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-tax-rate.ts#L20)
+[models/product-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-tax-rate.ts#L20)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/product-tax-rate.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-tax-rate.ts#L29)
+[models/product-tax-rate.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-tax-rate.ts#L29)
___
@@ -78,4 +78,4 @@ ___
#### Defined in
-[models/product-tax-rate.ts:35](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-tax-rate.ts#L35)
+[models/product-tax-rate.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-tax-rate.ts#L35)
diff --git a/docs/content/references/entities/classes/ProductType.md b/docs/content/references/entities/classes/ProductType.md
index bdfa006ff8..6703e33185 100644
--- a/docs/content/references/entities/classes/ProductType.md
+++ b/docs/content/references/entities/classes/ProductType.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -60,7 +60,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -70,7 +70,7 @@ ___
#### Defined in
-[models/product-type.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-type.ts#L13)
+[models/product-type.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-type.ts#L13)
___
@@ -84,7 +84,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -94,7 +94,7 @@ ___
#### Defined in
-[models/product-type.ts:10](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-type.ts#L10)
+[models/product-type.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-type.ts#L10)
## Methods
@@ -108,4 +108,4 @@ ___
#### Defined in
-[models/product-type.ts:15](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-type.ts#L15)
+[models/product-type.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-type.ts#L15)
diff --git a/docs/content/references/entities/classes/ProductTypeTaxRate.md b/docs/content/references/entities/classes/ProductTypeTaxRate.md
index a13b5b2a9e..00bc1a713a 100644
--- a/docs/content/references/entities/classes/ProductTypeTaxRate.md
+++ b/docs/content/references/entities/classes/ProductTypeTaxRate.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/product-type-tax-rate.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-type-tax-rate.ts#L31)
+[models/product-type-tax-rate.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-type-tax-rate.ts#L31)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/product-type-tax-rate.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-type-tax-rate.ts#L37)
+[models/product-type-tax-rate.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-type-tax-rate.ts#L37)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/product-type-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-type-tax-rate.ts#L24)
+[models/product-type-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-type-tax-rate.ts#L24)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/product-type-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-type-tax-rate.ts#L17)
+[models/product-type-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-type-tax-rate.ts#L17)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/product-type-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-type-tax-rate.ts#L20)
+[models/product-type-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-type-tax-rate.ts#L20)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/product-type-tax-rate.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-type-tax-rate.ts#L28)
+[models/product-type-tax-rate.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-type-tax-rate.ts#L28)
___
@@ -78,4 +78,4 @@ ___
#### Defined in
-[models/product-type-tax-rate.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-type-tax-rate.ts#L34)
+[models/product-type-tax-rate.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-type-tax-rate.ts#L34)
diff --git a/docs/content/references/entities/classes/ProductVariant.md b/docs/content/references/entities/classes/ProductVariant.md
index 98cb996fe3..725aad353c 100644
--- a/docs/content/references/entities/classes/ProductVariant.md
+++ b/docs/content/references/entities/classes/ProductVariant.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/product-variant.ts:60](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L60)
+[models/product-variant.ts:60](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L60)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/product-variant.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L43)
+[models/product-variant.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L43)
___
@@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[models/product-variant.ts:47](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L47)
+[models/product-variant.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L47)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[models/product-variant.ts:84](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L84)
+[models/product-variant.ts:84](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L84)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[models/product-variant.ts:66](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L66)
+[models/product-variant.ts:66](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L66)
___
@@ -110,7 +110,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/product-variant.ts:57](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L57)
+[models/product-variant.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L57)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/product-variant.ts:81](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L81)
+[models/product-variant.ts:81](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L81)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[models/product-variant.ts:63](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L63)
+[models/product-variant.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L63)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/product-variant.ts:75](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L75)
+[models/product-variant.ts:75](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L75)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/product-variant.ts:95](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L95)
+[models/product-variant.ts:95](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L95)
___
@@ -170,7 +170,7 @@ ___
#### Defined in
-[models/product-variant.ts:72](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L72)
+[models/product-variant.ts:72](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L72)
___
@@ -180,7 +180,7 @@ ___
#### Defined in
-[models/product-variant.ts:92](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L92)
+[models/product-variant.ts:92](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L92)
___
@@ -190,7 +190,7 @@ ___
#### Defined in
-[models/product-variant.ts:69](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L69)
+[models/product-variant.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L69)
___
@@ -200,7 +200,7 @@ ___
#### Defined in
-[models/product-variant.ts:35](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L35)
+[models/product-variant.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L35)
___
@@ -210,7 +210,7 @@ ___
#### Defined in
-[models/product-variant.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L29)
+[models/product-variant.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L29)
___
@@ -220,7 +220,7 @@ ___
#### Defined in
-[models/product-variant.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L25)
+[models/product-variant.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L25)
___
@@ -230,7 +230,7 @@ ___
#### Defined in
-[models/product-variant.ts:39](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L39)
+[models/product-variant.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L39)
___
@@ -240,7 +240,7 @@ ___
#### Defined in
-[models/product-variant.ts:21](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L21)
+[models/product-variant.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L21)
___
@@ -250,7 +250,7 @@ ___
#### Defined in
-[models/product-variant.ts:51](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L51)
+[models/product-variant.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L51)
___
@@ -264,7 +264,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -274,7 +274,7 @@ ___
#### Defined in
-[models/product-variant.ts:54](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L54)
+[models/product-variant.ts:54](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L54)
___
@@ -284,7 +284,7 @@ ___
#### Defined in
-[models/product-variant.ts:78](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L78)
+[models/product-variant.ts:78](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L78)
___
@@ -294,7 +294,7 @@ ___
#### Defined in
-[models/product-variant.ts:87](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L87)
+[models/product-variant.ts:87](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L87)
## Methods
@@ -308,4 +308,4 @@ ___
#### Defined in
-[models/product-variant.ts:97](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product-variant.ts#L97)
+[models/product-variant.ts:97](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product-variant.ts#L97)
diff --git a/docs/content/references/entities/classes/Refund.md b/docs/content/references/entities/classes/Refund.md
index 5467da5410..1c16a461fd 100644
--- a/docs/content/references/entities/classes/Refund.md
+++ b/docs/content/references/entities/classes/Refund.md
@@ -28,7 +28,7 @@ BaseEntity.constructor
#### Defined in
-[models/refund.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L34)
+[models/refund.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L34)
___
@@ -42,7 +42,7 @@ BaseEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -56,7 +56,7 @@ BaseEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[models/refund.ts:46](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L46)
+[models/refund.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L46)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[models/refund.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L43)
+[models/refund.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L43)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[models/refund.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L37)
+[models/refund.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L37)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[models/refund.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L31)
+[models/refund.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L31)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[models/refund.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L27)
+[models/refund.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L27)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/refund.ts:40](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L40)
+[models/refund.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L40)
___
@@ -130,7 +130,7 @@ BaseEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -144,4 +144,4 @@ BaseEntity.updated\_at
#### Defined in
-[models/refund.ts:48](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L48)
+[models/refund.ts:48](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L48)
diff --git a/docs/content/references/entities/classes/Region.md b/docs/content/references/entities/classes/Region.md
index d2d61438e5..100b939273 100644
--- a/docs/content/references/entities/classes/Region.md
+++ b/docs/content/references/entities/classes/Region.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/region.ts:49](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L49)
+[models/region.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L49)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/region.ts:52](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L52)
+[models/region.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L52)
___
@@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[models/region.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L34)
+[models/region.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L34)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[models/region.ts:30](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L30)
+[models/region.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L30)
___
@@ -86,7 +86,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[models/region.ts:93](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L93)
+[models/region.ts:93](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L93)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[models/region.ts:46](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L46)
+[models/region.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L46)
___
@@ -120,7 +120,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/region.ts:99](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L99)
+[models/region.ts:99](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L99)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[models/region.ts:96](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L96)
+[models/region.ts:96](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L96)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/region.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L27)
+[models/region.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L27)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/region.ts:76](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L76)
+[models/region.ts:76](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L76)
___
@@ -170,7 +170,7 @@ ___
#### Defined in
-[models/region.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L43)
+[models/region.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L43)
___
@@ -180,7 +180,7 @@ ___
#### Defined in
-[models/region.ts:59](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L59)
+[models/region.ts:59](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L59)
___
@@ -190,7 +190,7 @@ ___
#### Defined in
-[models/region.ts:55](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L55)
+[models/region.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L55)
___
@@ -200,7 +200,7 @@ ___
#### Defined in
-[models/region.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L37)
+[models/region.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L37)
___
@@ -210,7 +210,7 @@ ___
#### Defined in
-[models/region.ts:40](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L40)
+[models/region.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L40)
___
@@ -224,7 +224,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -238,4 +238,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/region.ts:101](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/region.ts#L101)
+[models/region.ts:101](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/region.ts#L101)
diff --git a/docs/content/references/entities/classes/Return.md b/docs/content/references/entities/classes/Return.md
index d753f01305..5d685fe42b 100644
--- a/docs/content/references/entities/classes/Return.md
+++ b/docs/content/references/entities/classes/Return.md
@@ -28,7 +28,7 @@ BaseEntity.constructor
#### Defined in
-[models/return.ts:57](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L57)
+[models/return.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L57)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/return.ts:53](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L53)
+[models/return.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L53)
___
@@ -52,7 +52,7 @@ BaseEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -66,7 +66,7 @@ BaseEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[models/return.ts:88](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L88)
+[models/return.ts:88](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L88)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[models/return.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L41)
+[models/return.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L41)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[models/return.ts:85](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L85)
+[models/return.ts:85](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L85)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[models/return.ts:82](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L82)
+[models/return.ts:82](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L82)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/return.ts:65](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L65)
+[models/return.ts:65](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L65)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[models/return.ts:61](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L61)
+[models/return.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L61)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[models/return.ts:79](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L79)
+[models/return.ts:79](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L79)
___
@@ -146,7 +146,7 @@ ___
#### Defined in
-[models/return.ts:76](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L76)
+[models/return.ts:76](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L76)
___
@@ -156,7 +156,7 @@ ___
#### Defined in
-[models/return.ts:73](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L73)
+[models/return.ts:73](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L73)
___
@@ -166,7 +166,7 @@ ___
#### Defined in
-[models/return.ts:70](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L70)
+[models/return.ts:70](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L70)
___
@@ -176,7 +176,7 @@ ___
#### Defined in
-[models/return.ts:35](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L35)
+[models/return.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L35)
___
@@ -186,7 +186,7 @@ ___
#### Defined in
-[models/return.ts:49](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L49)
+[models/return.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L49)
___
@@ -196,7 +196,7 @@ ___
#### Defined in
-[models/return.ts:45](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L45)
+[models/return.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L45)
___
@@ -210,7 +210,7 @@ BaseEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -224,4 +224,4 @@ BaseEntity.updated\_at
#### Defined in
-[models/return.ts:90](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L90)
+[models/return.ts:90](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L90)
diff --git a/docs/content/references/entities/classes/ReturnItem.md b/docs/content/references/entities/classes/ReturnItem.md
index 029aa8e338..022ccb1128 100644
--- a/docs/content/references/entities/classes/ReturnItem.md
+++ b/docs/content/references/entities/classes/ReturnItem.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/return-item.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L28)
+[models/return-item.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L28)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/return-item.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L22)
+[models/return-item.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L22)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/return-item.ts:14](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L14)
+[models/return-item.ts:14](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L14)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/return-item.ts:47](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L47)
+[models/return-item.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L47)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/return-item.ts:44](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L44)
+[models/return-item.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L44)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/return-item.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L25)
+[models/return-item.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L25)
___
@@ -78,7 +78,7 @@ ___
#### Defined in
-[models/return-item.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L41)
+[models/return-item.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L41)
___
@@ -88,7 +88,7 @@ ___
#### Defined in
-[models/return-item.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L37)
+[models/return-item.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L37)
___
@@ -98,7 +98,7 @@ ___
#### Defined in
-[models/return-item.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L34)
+[models/return-item.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L34)
___
@@ -108,7 +108,7 @@ ___
#### Defined in
-[models/return-item.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L31)
+[models/return-item.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L31)
___
@@ -118,7 +118,7 @@ ___
#### Defined in
-[models/return-item.ts:11](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L11)
+[models/return-item.ts:11](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L11)
___
@@ -128,4 +128,4 @@ ___
#### Defined in
-[models/return-item.ts:18](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-item.ts#L18)
+[models/return-item.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-item.ts#L18)
diff --git a/docs/content/references/entities/classes/ReturnReason.md b/docs/content/references/entities/classes/ReturnReason.md
index c4d5aff764..2950248520 100644
--- a/docs/content/references/entities/classes/ReturnReason.md
+++ b/docs/content/references/entities/classes/ReturnReason.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -56,7 +56,7 @@ ___
#### Defined in
-[models/return-reason.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-reason.ts#L25)
+[models/return-reason.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-reason.ts#L25)
___
@@ -70,7 +70,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -80,7 +80,7 @@ ___
#### Defined in
-[models/return-reason.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-reason.ts#L22)
+[models/return-reason.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-reason.ts#L22)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/return-reason.ts:42](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-reason.ts#L42)
+[models/return-reason.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-reason.ts#L42)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/return-reason.ts:32](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-reason.ts#L32)
+[models/return-reason.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-reason.ts#L32)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/return-reason.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-reason.ts#L28)
+[models/return-reason.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-reason.ts#L28)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/return-reason.ts:39](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-reason.ts#L39)
+[models/return-reason.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-reason.ts#L39)
___
@@ -134,7 +134,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -144,7 +144,7 @@ ___
#### Defined in
-[models/return-reason.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-reason.ts#L19)
+[models/return-reason.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-reason.ts#L19)
## Methods
@@ -158,4 +158,4 @@ ___
#### Defined in
-[models/return-reason.ts:44](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return-reason.ts#L44)
+[models/return-reason.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return-reason.ts#L44)
diff --git a/docs/content/references/entities/classes/SalesChannel.md b/docs/content/references/entities/classes/SalesChannel.md
index 6638d8064b..d87c3a92eb 100644
--- a/docs/content/references/entities/classes/SalesChannel.md
+++ b/docs/content/references/entities/classes/SalesChannel.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -56,7 +56,7 @@ ___
#### Defined in
-[models/sales-channel.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/sales-channel.ts#L13)
+[models/sales-channel.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/sales-channel.ts#L13)
___
@@ -70,7 +70,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -80,7 +80,7 @@ ___
#### Defined in
-[models/sales-channel.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/sales-channel.ts#L16)
+[models/sales-channel.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/sales-channel.ts#L16)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/sales-channel.ts:10](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/sales-channel.ts#L10)
+[models/sales-channel.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/sales-channel.ts#L10)
___
@@ -104,7 +104,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -118,4 +118,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/sales-channel.ts:18](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/sales-channel.ts#L18)
+[models/sales-channel.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/sales-channel.ts#L18)
diff --git a/docs/content/references/entities/classes/ShippingMethod.md b/docs/content/references/entities/classes/ShippingMethod.md
index b63942ad20..1ff037bd2a 100644
--- a/docs/content/references/entities/classes/ShippingMethod.md
+++ b/docs/content/references/entities/classes/ShippingMethod.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/shipping-method.ts:61](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L61)
+[models/shipping-method.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L61)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/shipping-method.ts:57](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L57)
+[models/shipping-method.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L57)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/shipping-method.ts:53](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L53)
+[models/shipping-method.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L53)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/shipping-method.ts:49](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L49)
+[models/shipping-method.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L49)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/shipping-method.ts:92](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L92)
+[models/shipping-method.ts:92](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L92)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/shipping-method.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L33)
+[models/shipping-method.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L33)
___
@@ -78,7 +78,7 @@ ___
#### Defined in
-[models/shipping-method.ts:95](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L95)
+[models/shipping-method.ts:95](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L95)
___
@@ -88,7 +88,7 @@ ___
#### Defined in
-[models/shipping-method.ts:45](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L45)
+[models/shipping-method.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L45)
___
@@ -98,7 +98,7 @@ ___
#### Defined in
-[models/shipping-method.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L41)
+[models/shipping-method.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L41)
___
@@ -108,7 +108,7 @@ ___
#### Defined in
-[models/shipping-method.ts:89](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L89)
+[models/shipping-method.ts:89](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L89)
___
@@ -118,7 +118,7 @@ ___
#### Defined in
-[models/shipping-method.ts:73](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L73)
+[models/shipping-method.ts:73](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L73)
___
@@ -128,7 +128,7 @@ ___
#### Defined in
-[models/shipping-method.ts:77](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L77)
+[models/shipping-method.ts:77](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L77)
___
@@ -138,7 +138,7 @@ ___
#### Defined in
-[models/shipping-method.ts:81](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L81)
+[models/shipping-method.ts:81](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L81)
___
@@ -148,7 +148,7 @@ ___
#### Defined in
-[models/shipping-method.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L37)
+[models/shipping-method.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L37)
___
@@ -158,7 +158,7 @@ ___
#### Defined in
-[models/shipping-method.ts:69](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L69)
+[models/shipping-method.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L69)
___
@@ -168,7 +168,7 @@ ___
#### Defined in
-[models/shipping-method.ts:65](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L65)
+[models/shipping-method.ts:65](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L65)
___
@@ -178,7 +178,7 @@ ___
#### Defined in
-[models/shipping-method.ts:86](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L86)
+[models/shipping-method.ts:86](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L86)
## Methods
@@ -192,4 +192,4 @@ ___
#### Defined in
-[models/shipping-method.ts:97](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method.ts#L97)
+[models/shipping-method.ts:97](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method.ts#L97)
diff --git a/docs/content/references/entities/classes/ShippingMethodTaxLine.md b/docs/content/references/entities/classes/ShippingMethodTaxLine.md
index bc50e0232a..026d7dffc4 100644
--- a/docs/content/references/entities/classes/ShippingMethodTaxLine.md
+++ b/docs/content/references/entities/classes/ShippingMethodTaxLine.md
@@ -32,7 +32,7 @@ TaxLine.code
#### Defined in
-[models/tax-line.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-line.ts#L13)
+[models/tax-line.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-line.ts#L13)
___
@@ -46,7 +46,7 @@ TaxLine.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -60,7 +60,7 @@ TaxLine.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -74,7 +74,7 @@ TaxLine.metadata
#### Defined in
-[models/tax-line.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-line.ts#L16)
+[models/tax-line.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-line.ts#L16)
___
@@ -88,7 +88,7 @@ TaxLine.name
#### Defined in
-[models/tax-line.ts:10](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-line.ts#L10)
+[models/tax-line.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-line.ts#L10)
___
@@ -102,7 +102,7 @@ TaxLine.rate
#### Defined in
-[models/tax-line.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-line.ts#L7)
+[models/tax-line.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-line.ts#L7)
___
@@ -112,7 +112,7 @@ ___
#### Defined in
-[models/shipping-method-tax-line.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method-tax-line.ts#L24)
+[models/shipping-method-tax-line.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method-tax-line.ts#L24)
___
@@ -122,7 +122,7 @@ ___
#### Defined in
-[models/shipping-method-tax-line.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method-tax-line.ts#L20)
+[models/shipping-method-tax-line.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method-tax-line.ts#L20)
___
@@ -136,7 +136,7 @@ TaxLine.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -150,4 +150,4 @@ TaxLine.updated\_at
#### Defined in
-[models/shipping-method-tax-line.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-method-tax-line.ts#L26)
+[models/shipping-method-tax-line.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-method-tax-line.ts#L26)
diff --git a/docs/content/references/entities/classes/ShippingOption.md b/docs/content/references/entities/classes/ShippingOption.md
index 846067adc0..6482ad7a22 100644
--- a/docs/content/references/entities/classes/ShippingOption.md
+++ b/docs/content/references/entities/classes/ShippingOption.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/shipping-option.ts:67](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L67)
+[models/shipping-option.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L67)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/shipping-option.ts:61](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L61)
+[models/shipping-option.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L61)
___
@@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[models/shipping-option.ts:75](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L75)
+[models/shipping-option.ts:75](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L75)
___
@@ -76,7 +76,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -90,7 +90,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/shipping-option.ts:81](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L81)
+[models/shipping-option.ts:81](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L81)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/shipping-option.ts:64](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L64)
+[models/shipping-option.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L64)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/shipping-option.ts:78](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L78)
+[models/shipping-option.ts:78](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L78)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/shipping-option.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L31)
+[models/shipping-option.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L31)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[models/shipping-option.ts:58](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L58)
+[models/shipping-option.ts:58](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L58)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[models/shipping-option.ts:47](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L47)
+[models/shipping-option.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L47)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/shipping-option.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L43)
+[models/shipping-option.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L43)
___
@@ -170,7 +170,7 @@ ___
#### Defined in
-[models/shipping-option.ts:55](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L55)
+[models/shipping-option.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L55)
___
@@ -180,7 +180,7 @@ ___
#### Defined in
-[models/shipping-option.ts:51](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L51)
+[models/shipping-option.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L51)
___
@@ -190,7 +190,7 @@ ___
#### Defined in
-[models/shipping-option.ts:39](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L39)
+[models/shipping-option.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L39)
___
@@ -200,7 +200,7 @@ ___
#### Defined in
-[models/shipping-option.ts:35](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L35)
+[models/shipping-option.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L35)
___
@@ -210,7 +210,7 @@ ___
#### Defined in
-[models/shipping-option.ts:72](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L72)
+[models/shipping-option.ts:72](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L72)
___
@@ -224,7 +224,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -238,4 +238,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/shipping-option.ts:83](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L83)
+[models/shipping-option.ts:83](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L83)
diff --git a/docs/content/references/entities/classes/ShippingOptionRequirement.md b/docs/content/references/entities/classes/ShippingOptionRequirement.md
index f79efab470..ed77d69b28 100644
--- a/docs/content/references/entities/classes/ShippingOptionRequirement.md
+++ b/docs/content/references/entities/classes/ShippingOptionRequirement.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/shipping-option-requirement.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option-requirement.ts#L38)
+[models/shipping-option-requirement.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option-requirement.ts#L38)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/shipping-option-requirement.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option-requirement.ts#L41)
+[models/shipping-option-requirement.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option-requirement.ts#L41)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/shipping-option-requirement.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option-requirement.ts#L24)
+[models/shipping-option-requirement.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option-requirement.ts#L24)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/shipping-option-requirement.ts:32](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option-requirement.ts#L32)
+[models/shipping-option-requirement.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option-requirement.ts#L32)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/shipping-option-requirement.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option-requirement.ts#L28)
+[models/shipping-option-requirement.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option-requirement.ts#L28)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/shipping-option-requirement.ts:35](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option-requirement.ts#L35)
+[models/shipping-option-requirement.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option-requirement.ts#L35)
## Methods
@@ -82,4 +82,4 @@ ___
#### Defined in
-[models/shipping-option-requirement.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option-requirement.ts#L43)
+[models/shipping-option-requirement.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option-requirement.ts#L43)
diff --git a/docs/content/references/entities/classes/ShippingProfile.md b/docs/content/references/entities/classes/ShippingProfile.md
index 732e62fb8b..ba954ce701 100644
--- a/docs/content/references/entities/classes/ShippingProfile.md
+++ b/docs/content/references/entities/classes/ShippingProfile.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -60,7 +60,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -70,7 +70,7 @@ ___
#### Defined in
-[models/shipping-profile.ts:30](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-profile.ts#L30)
+[models/shipping-profile.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-profile.ts#L30)
___
@@ -80,7 +80,7 @@ ___
#### Defined in
-[models/shipping-profile.ts:18](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-profile.ts#L18)
+[models/shipping-profile.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-profile.ts#L18)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/shipping-profile.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-profile.ts#L24)
+[models/shipping-profile.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-profile.ts#L24)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/shipping-profile.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-profile.ts#L27)
+[models/shipping-profile.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-profile.ts#L27)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/shipping-profile.ts:21](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-profile.ts#L21)
+[models/shipping-profile.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-profile.ts#L21)
___
@@ -124,7 +124,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -138,4 +138,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/shipping-profile.ts:32](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-profile.ts#L32)
+[models/shipping-profile.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-profile.ts#L32)
diff --git a/docs/content/references/entities/classes/ShippingTaxRate.md b/docs/content/references/entities/classes/ShippingTaxRate.md
index 60e8661771..31504bcc6e 100644
--- a/docs/content/references/entities/classes/ShippingTaxRate.md
+++ b/docs/content/references/entities/classes/ShippingTaxRate.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/shipping-tax-rate.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-tax-rate.ts#L31)
+[models/shipping-tax-rate.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-tax-rate.ts#L31)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/shipping-tax-rate.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-tax-rate.ts#L37)
+[models/shipping-tax-rate.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-tax-rate.ts#L37)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/shipping-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-tax-rate.ts#L20)
+[models/shipping-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-tax-rate.ts#L20)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/shipping-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-tax-rate.ts#L24)
+[models/shipping-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-tax-rate.ts#L24)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/shipping-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-tax-rate.ts#L17)
+[models/shipping-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-tax-rate.ts#L17)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/shipping-tax-rate.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-tax-rate.ts#L28)
+[models/shipping-tax-rate.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-tax-rate.ts#L28)
___
@@ -78,4 +78,4 @@ ___
#### Defined in
-[models/shipping-tax-rate.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-tax-rate.ts#L34)
+[models/shipping-tax-rate.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-tax-rate.ts#L34)
diff --git a/docs/content/references/entities/classes/StagedJob.md b/docs/content/references/entities/classes/StagedJob.md
index bb43b9e489..8c06dca0c1 100644
--- a/docs/content/references/entities/classes/StagedJob.md
+++ b/docs/content/references/entities/classes/StagedJob.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/staged-job.ts:15](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/staged-job.ts#L15)
+[models/staged-job.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/staged-job.ts#L15)
___
@@ -28,7 +28,7 @@ ___
#### Defined in
-[models/staged-job.ts:12](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/staged-job.ts#L12)
+[models/staged-job.ts:12](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/staged-job.ts#L12)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/staged-job.ts:9](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/staged-job.ts#L9)
+[models/staged-job.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/staged-job.ts#L9)
## Methods
@@ -52,4 +52,4 @@ ___
#### Defined in
-[models/staged-job.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/staged-job.ts#L17)
+[models/staged-job.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/staged-job.ts#L17)
diff --git a/docs/content/references/entities/classes/Store.md b/docs/content/references/entities/classes/Store.md
index a28dd03c92..b3c27e2926 100644
--- a/docs/content/references/entities/classes/Store.md
+++ b/docs/content/references/entities/classes/Store.md
@@ -32,7 +32,7 @@ BaseEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/store.ts:46](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/store.ts#L46)
+[models/store.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/store.ts#L46)
___
@@ -52,7 +52,7 @@ ___
#### Defined in
-[models/store.ts:32](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/store.ts#L32)
+[models/store.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/store.ts#L32)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[models/store.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/store.ts#L28)
+[models/store.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/store.ts#L28)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[models/store.ts:67](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/store.ts#L67)
+[models/store.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/store.ts#L67)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[models/store.ts:61](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/store.ts#L61)
+[models/store.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/store.ts#L61)
___
@@ -96,7 +96,7 @@ BaseEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[models/store.ts:55](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/store.ts#L55)
+[models/store.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/store.ts#L55)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/store.ts:58](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/store.ts#L58)
+[models/store.ts:58](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/store.ts#L58)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[models/store.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/store.ts#L25)
+[models/store.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/store.ts#L25)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[models/store.ts:52](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/store.ts#L52)
+[models/store.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/store.ts#L52)
___
@@ -146,7 +146,7 @@ ___
#### Defined in
-[models/store.ts:49](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/store.ts#L49)
+[models/store.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/store.ts#L49)
___
@@ -160,7 +160,7 @@ BaseEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -174,4 +174,4 @@ BaseEntity.updated\_at
#### Defined in
-[models/store.ts:69](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/store.ts#L69)
+[models/store.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/store.ts#L69)
diff --git a/docs/content/references/entities/classes/Swap.md b/docs/content/references/entities/classes/Swap.md
index 142f4c926f..fd5c90690f 100644
--- a/docs/content/references/entities/classes/Swap.md
+++ b/docs/content/references/entities/classes/Swap.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/swap.ts:62](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L62)
+[models/swap.ts:62](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L62)
___
@@ -38,7 +38,7 @@ ___
#### Defined in
-[models/swap.ts:107](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L107)
+[models/swap.ts:107](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L107)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[models/swap.ts:101](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L101)
+[models/swap.ts:101](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L101)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[models/swap.ts:95](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L95)
+[models/swap.ts:95](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L95)
___
@@ -68,7 +68,7 @@ ___
#### Defined in
-[models/swap.ts:91](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L91)
+[models/swap.ts:91](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L91)
___
@@ -78,7 +78,7 @@ ___
#### Defined in
-[models/swap.ts:98](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L98)
+[models/swap.ts:98](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L98)
___
@@ -92,7 +92,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -106,7 +106,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/swap.ts:76](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L76)
+[models/swap.ts:76](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L76)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[models/swap.ts:48](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L48)
+[models/swap.ts:48](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L48)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[models/swap.ts:70](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L70)
+[models/swap.ts:70](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L70)
___
@@ -150,7 +150,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[models/swap.ts:110](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L110)
+[models/swap.ts:110](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L110)
___
@@ -170,7 +170,7 @@ ___
#### Defined in
-[models/swap.ts:113](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L113)
+[models/swap.ts:113](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L113)
___
@@ -180,7 +180,7 @@ ___
#### Defined in
-[models/swap.ts:104](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L104)
+[models/swap.ts:104](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L104)
___
@@ -190,7 +190,7 @@ ___
#### Defined in
-[models/swap.ts:59](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L59)
+[models/swap.ts:59](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L59)
___
@@ -200,7 +200,7 @@ ___
#### Defined in
-[models/swap.ts:55](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L55)
+[models/swap.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L55)
___
@@ -210,7 +210,7 @@ ___
#### Defined in
-[models/swap.ts:73](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L73)
+[models/swap.ts:73](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L73)
___
@@ -220,7 +220,7 @@ ___
#### Defined in
-[models/swap.ts:51](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L51)
+[models/swap.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L51)
___
@@ -230,7 +230,7 @@ ___
#### Defined in
-[models/swap.ts:65](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L65)
+[models/swap.ts:65](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L65)
___
@@ -240,7 +240,7 @@ ___
#### Defined in
-[models/swap.ts:83](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L83)
+[models/swap.ts:83](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L83)
___
@@ -250,7 +250,7 @@ ___
#### Defined in
-[models/swap.ts:79](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L79)
+[models/swap.ts:79](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L79)
___
@@ -260,7 +260,7 @@ ___
#### Defined in
-[models/swap.ts:88](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L88)
+[models/swap.ts:88](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L88)
___
@@ -274,7 +274,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -288,4 +288,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/swap.ts:115](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L115)
+[models/swap.ts:115](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L115)
diff --git a/docs/content/references/entities/classes/TaxProvider.md b/docs/content/references/entities/classes/TaxProvider.md
index bb377384da..129560bb05 100644
--- a/docs/content/references/entities/classes/TaxProvider.md
+++ b/docs/content/references/entities/classes/TaxProvider.md
@@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/tax-provider.ts:6](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-provider.ts#L6)
+[models/tax-provider.ts:6](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-provider.ts#L6)
___
@@ -28,4 +28,4 @@ ___
#### Defined in
-[models/tax-provider.ts:9](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-provider.ts#L9)
+[models/tax-provider.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-provider.ts#L9)
diff --git a/docs/content/references/entities/classes/TaxRate.md b/docs/content/references/entities/classes/TaxRate.md
index cc84a6dfb8..55b94f511d 100644
--- a/docs/content/references/entities/classes/TaxRate.md
+++ b/docs/content/references/entities/classes/TaxRate.md
@@ -28,7 +28,7 @@ BaseEntity.constructor
#### Defined in
-[models/tax-rate.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L25)
+[models/tax-rate.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L25)
___
@@ -42,7 +42,7 @@ BaseEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -56,7 +56,7 @@ BaseEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[models/tax-rate.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L38)
+[models/tax-rate.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L38)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[models/tax-rate.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L28)
+[models/tax-rate.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L28)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[models/tax-rate.ts:83](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L83)
+[models/tax-rate.ts:83](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L83)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[models/tax-rate.ts:84](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L84)
+[models/tax-rate.ts:84](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L84)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[models/tax-rate.ts:66](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L66)
+[models/tax-rate.ts:66](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L66)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[models/tax-rate.ts:52](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L52)
+[models/tax-rate.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L52)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[models/tax-rate.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L22)
+[models/tax-rate.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L22)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[models/tax-rate.ts:35](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L35)
+[models/tax-rate.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L35)
___
@@ -146,7 +146,7 @@ ___
#### Defined in
-[models/tax-rate.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L31)
+[models/tax-rate.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L31)
___
@@ -156,7 +156,7 @@ ___
#### Defined in
-[models/tax-rate.ts:85](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L85)
+[models/tax-rate.ts:85](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L85)
___
@@ -166,7 +166,7 @@ ___
#### Defined in
-[models/tax-rate.ts:80](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L80)
+[models/tax-rate.ts:80](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L80)
___
@@ -180,7 +180,7 @@ BaseEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -194,4 +194,4 @@ BaseEntity.updated\_at
#### Defined in
-[models/tax-rate.ts:87](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tax-rate.ts#L87)
+[models/tax-rate.ts:87](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tax-rate.ts#L87)
diff --git a/docs/content/references/entities/classes/TrackingLink.md b/docs/content/references/entities/classes/TrackingLink.md
index b03f21ee4e..00723c00fc 100644
--- a/docs/content/references/entities/classes/TrackingLink.md
+++ b/docs/content/references/entities/classes/TrackingLink.md
@@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -56,7 +56,7 @@ ___
#### Defined in
-[models/tracking-link.ts:21](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tracking-link.ts#L21)
+[models/tracking-link.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tracking-link.ts#L21)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[models/tracking-link.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tracking-link.ts#L17)
+[models/tracking-link.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tracking-link.ts#L17)
___
@@ -80,7 +80,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[models/tracking-link.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tracking-link.ts#L24)
+[models/tracking-link.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tracking-link.ts#L24)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/tracking-link.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tracking-link.ts#L27)
+[models/tracking-link.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tracking-link.ts#L27)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/tracking-link.ts:14](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tracking-link.ts#L14)
+[models/tracking-link.ts:14](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tracking-link.ts#L14)
___
@@ -124,7 +124,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
___
@@ -134,7 +134,7 @@ ___
#### Defined in
-[models/tracking-link.ts:11](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tracking-link.ts#L11)
+[models/tracking-link.ts:11](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tracking-link.ts#L11)
## Methods
@@ -148,4 +148,4 @@ ___
#### Defined in
-[models/tracking-link.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/tracking-link.ts#L29)
+[models/tracking-link.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/tracking-link.ts#L29)
diff --git a/docs/content/references/entities/classes/User.md b/docs/content/references/entities/classes/User.md
index 42c82d09c1..5d46545f08 100644
--- a/docs/content/references/entities/classes/User.md
+++ b/docs/content/references/entities/classes/User.md
@@ -28,7 +28,7 @@ SoftDeletableEntity.constructor
#### Defined in
-[models/user.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/user.ts#L37)
+[models/user.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/user.ts#L37)
___
@@ -42,7 +42,7 @@ SoftDeletableEntity.created\_at
#### Defined in
-[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L16)
+[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L16)
___
@@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at
#### Defined in
-[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
+[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[models/user.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/user.ts#L25)
+[models/user.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/user.ts#L25)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[models/user.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/user.ts#L28)
+[models/user.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/user.ts#L28)
___
@@ -90,7 +90,7 @@ SoftDeletableEntity.id
#### Defined in
-[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L13)
+[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L13)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[models/user.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/user.ts#L31)
+[models/user.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/user.ts#L31)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[models/user.ts:40](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/user.ts#L40)
+[models/user.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/user.ts#L40)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[models/user.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/user.ts#L34)
+[models/user.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/user.ts#L34)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[models/user.ts:21](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/user.ts#L21)
+[models/user.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/user.ts#L21)
___
@@ -144,7 +144,7 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/interfaces/models/base-entity.ts#L19)
+[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/models/base-entity.ts#L19)
## Methods
@@ -158,4 +158,4 @@ SoftDeletableEntity.updated\_at
#### Defined in
-[models/user.ts:42](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/user.ts#L42)
+[models/user.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/user.ts#L42)
diff --git a/docs/content/references/entities/enums/AllocationType.md b/docs/content/references/entities/enums/AllocationType.md
index 17f7f772d8..410b56d7f1 100644
--- a/docs/content/references/entities/enums/AllocationType.md
+++ b/docs/content/references/entities/enums/AllocationType.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/discount-rule.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L16)
+[models/discount-rule.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L16)
___
@@ -22,4 +22,4 @@ ___
#### Defined in
-[models/discount-rule.ts:15](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L15)
+[models/discount-rule.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L15)
diff --git a/docs/content/references/entities/enums/CartType.md b/docs/content/references/entities/enums/CartType.md
index 9002278243..2db3217674 100644
--- a/docs/content/references/entities/enums/CartType.md
+++ b/docs/content/references/entities/enums/CartType.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/cart.ts:208](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L208)
+[models/cart.ts:208](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L208)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/cart.ts:204](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L204)
+[models/cart.ts:204](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L204)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/cart.ts:206](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L206)
+[models/cart.ts:206](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L206)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/cart.ts:207](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L207)
+[models/cart.ts:207](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L207)
___
@@ -52,4 +52,4 @@ ___
#### Defined in
-[models/cart.ts:205](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/cart.ts#L205)
+[models/cart.ts:205](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/cart.ts#L205)
diff --git a/docs/content/references/entities/enums/ClaimFulfillmentStatus.md b/docs/content/references/entities/enums/ClaimFulfillmentStatus.md
index 9552767605..3c4d2afbfd 100644
--- a/docs/content/references/entities/enums/ClaimFulfillmentStatus.md
+++ b/docs/content/references/entities/enums/ClaimFulfillmentStatus.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/claim-order.ts:45](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L45)
+[models/claim-order.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L45)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/claim-order.ts:40](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L40)
+[models/claim-order.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L40)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/claim-order.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L38)
+[models/claim-order.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L38)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/claim-order.ts:39](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L39)
+[models/claim-order.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L39)
___
@@ -52,7 +52,7 @@ ___
#### Defined in
-[models/claim-order.ts:43](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L43)
+[models/claim-order.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L43)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[models/claim-order.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L41)
+[models/claim-order.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L41)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[models/claim-order.ts:46](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L46)
+[models/claim-order.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L46)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[models/claim-order.ts:44](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L44)
+[models/claim-order.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L44)
___
@@ -92,4 +92,4 @@ ___
#### Defined in
-[models/claim-order.ts:42](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L42)
+[models/claim-order.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L42)
diff --git a/docs/content/references/entities/enums/ClaimPaymentStatus.md b/docs/content/references/entities/enums/ClaimPaymentStatus.md
index a6db343a1c..c197724d4f 100644
--- a/docs/content/references/entities/enums/ClaimPaymentStatus.md
+++ b/docs/content/references/entities/enums/ClaimPaymentStatus.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/claim-order.ts:32](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L32)
+[models/claim-order.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L32)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/claim-order.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L33)
+[models/claim-order.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L33)
___
@@ -32,4 +32,4 @@ ___
#### Defined in
-[models/claim-order.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L34)
+[models/claim-order.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L34)
diff --git a/docs/content/references/entities/enums/ClaimReason.md b/docs/content/references/entities/enums/ClaimReason.md
index ffb109d12a..25af6fad3b 100644
--- a/docs/content/references/entities/enums/ClaimReason.md
+++ b/docs/content/references/entities/enums/ClaimReason.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/claim-item.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L23)
+[models/claim-item.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L23)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/claim-item.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L26)
+[models/claim-item.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L26)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/claim-item.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L25)
+[models/claim-item.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L25)
___
@@ -42,4 +42,4 @@ ___
#### Defined in
-[models/claim-item.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-item.ts#L24)
+[models/claim-item.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-item.ts#L24)
diff --git a/docs/content/references/entities/enums/ClaimType.md b/docs/content/references/entities/enums/ClaimType.md
index 2a7d00cb72..f58205e8c3 100644
--- a/docs/content/references/entities/enums/ClaimType.md
+++ b/docs/content/references/entities/enums/ClaimType.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/claim-order.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L27)
+[models/claim-order.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L27)
___
@@ -22,4 +22,4 @@ ___
#### Defined in
-[models/claim-order.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/claim-order.ts#L28)
+[models/claim-order.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/claim-order.ts#L28)
diff --git a/docs/content/references/entities/enums/DiscountConditionOperator.md b/docs/content/references/entities/enums/DiscountConditionOperator.md
index 4bd485eeed..719c345ab6 100644
--- a/docs/content/references/entities/enums/DiscountConditionOperator.md
+++ b/docs/content/references/entities/enums/DiscountConditionOperator.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/discount-condition.ts:32](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L32)
+[models/discount-condition.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L32)
___
@@ -22,4 +22,4 @@ ___
#### Defined in
-[models/discount-condition.ts:33](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L33)
+[models/discount-condition.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L33)
diff --git a/docs/content/references/entities/enums/DiscountConditionType.md b/docs/content/references/entities/enums/DiscountConditionType.md
index ebbeb26f8e..e5cdf886b3 100644
--- a/docs/content/references/entities/enums/DiscountConditionType.md
+++ b/docs/content/references/entities/enums/DiscountConditionType.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/discount-condition.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L28)
+[models/discount-condition.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L28)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/discount-condition.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L24)
+[models/discount-condition.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L24)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/discount-condition.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L26)
+[models/discount-condition.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L26)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/discount-condition.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L27)
+[models/discount-condition.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L27)
___
@@ -52,4 +52,4 @@ ___
#### Defined in
-[models/discount-condition.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-condition.ts#L25)
+[models/discount-condition.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-condition.ts#L25)
diff --git a/docs/content/references/entities/enums/DiscountRuleType.md b/docs/content/references/entities/enums/DiscountRuleType.md
index 300a9439c4..3401a0eef7 100644
--- a/docs/content/references/entities/enums/DiscountRuleType.md
+++ b/docs/content/references/entities/enums/DiscountRuleType.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/discount-rule.ts:9](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L9)
+[models/discount-rule.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L9)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/discount-rule.ts:11](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L11)
+[models/discount-rule.ts:11](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L11)
___
@@ -32,4 +32,4 @@ ___
#### Defined in
-[models/discount-rule.ts:10](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/discount-rule.ts#L10)
+[models/discount-rule.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/discount-rule.ts#L10)
diff --git a/docs/content/references/entities/enums/DraftOrderStatus.md b/docs/content/references/entities/enums/DraftOrderStatus.md
index ba1bbba79e..a12ab36568 100644
--- a/docs/content/references/entities/enums/DraftOrderStatus.md
+++ b/docs/content/references/entities/enums/DraftOrderStatus.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/draft-order.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L24)
+[models/draft-order.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L24)
___
@@ -22,4 +22,4 @@ ___
#### Defined in
-[models/draft-order.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/draft-order.ts#L23)
+[models/draft-order.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/draft-order.ts#L23)
diff --git a/docs/content/references/entities/enums/FulfillmentStatus.md b/docs/content/references/entities/enums/FulfillmentStatus.md
index 4f3d5b3c89..1045dc5862 100644
--- a/docs/content/references/entities/enums/FulfillmentStatus.md
+++ b/docs/content/references/entities/enums/FulfillmentStatus.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/order.ts:64](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L64)
+[models/order.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L64)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/order.ts:59](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L59)
+[models/order.ts:59](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L59)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/order.ts:57](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L57)
+[models/order.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L57)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/order.ts:58](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L58)
+[models/order.ts:58](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L58)
___
@@ -52,7 +52,7 @@ ___
#### Defined in
-[models/order.ts:62](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L62)
+[models/order.ts:62](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L62)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[models/order.ts:60](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L60)
+[models/order.ts:60](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L60)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[models/order.ts:65](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L65)
+[models/order.ts:65](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L65)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[models/order.ts:63](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L63)
+[models/order.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L63)
___
@@ -92,4 +92,4 @@ ___
#### Defined in
-[models/order.ts:61](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L61)
+[models/order.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L61)
diff --git a/docs/content/references/entities/enums/OrderEditItemChangeType.md b/docs/content/references/entities/enums/OrderEditItemChangeType.md
new file mode 100644
index 0000000000..46fdb93adb
--- /dev/null
+++ b/docs/content/references/entities/enums/OrderEditItemChangeType.md
@@ -0,0 +1,35 @@
+---
+displayed_sidebar: entitiesSidebar
+---
+
+# Enumeration: OrderEditItemChangeType
+
+## Enumeration Members
+
+### ITEM\_ADD
+
+• **ITEM\_ADD** = ``"item_add"``
+
+#### Defined in
+
+[models/order-item-change.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-item-change.ts#L19)
+
+___
+
+### ITEM\_REMOVE
+
+• **ITEM\_REMOVE** = ``"item_remove"``
+
+#### Defined in
+
+[models/order-item-change.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-item-change.ts#L20)
+
+___
+
+### ITEM\_UPDATE
+
+• **ITEM\_UPDATE** = ``"item_update"``
+
+#### Defined in
+
+[models/order-item-change.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order-item-change.ts#L21)
diff --git a/docs/content/references/entities/enums/OrderStatus.md b/docs/content/references/entities/enums/OrderStatus.md
index 20b003d431..2c387527d2 100644
--- a/docs/content/references/entities/enums/OrderStatus.md
+++ b/docs/content/references/entities/enums/OrderStatus.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/order.ts:51](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L51)
+[models/order.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L51)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/order.ts:52](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L52)
+[models/order.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L52)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/order.ts:50](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L50)
+[models/order.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L50)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/order.ts:49](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L49)
+[models/order.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L49)
___
@@ -52,4 +52,4 @@ ___
#### Defined in
-[models/order.ts:53](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L53)
+[models/order.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L53)
diff --git a/docs/content/references/entities/enums/PaymentSessionStatus.md b/docs/content/references/entities/enums/PaymentSessionStatus.md
index 7be2584661..249240e2e8 100644
--- a/docs/content/references/entities/enums/PaymentSessionStatus.md
+++ b/docs/content/references/entities/enums/PaymentSessionStatus.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/payment-session.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L17)
+[models/payment-session.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L17)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/payment-session.ts:21](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L21)
+[models/payment-session.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L21)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/payment-session.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L20)
+[models/payment-session.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L20)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/payment-session.ts:18](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L18)
+[models/payment-session.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L18)
___
@@ -52,4 +52,4 @@ ___
#### Defined in
-[models/payment-session.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/payment-session.ts#L19)
+[models/payment-session.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/payment-session.ts#L19)
diff --git a/docs/content/references/entities/enums/PaymentStatus.md b/docs/content/references/entities/enums/PaymentStatus.md
index 2c2b978a82..18fa5f93ca 100644
--- a/docs/content/references/entities/enums/PaymentStatus.md
+++ b/docs/content/references/entities/enums/PaymentStatus.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/order.ts:70](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L70)
+[models/order.ts:70](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L70)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/order.ts:74](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L74)
+[models/order.ts:74](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L74)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/order.ts:71](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L71)
+[models/order.ts:71](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L71)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/order.ts:69](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L69)
+[models/order.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L69)
___
@@ -52,7 +52,7 @@ ___
#### Defined in
-[models/order.ts:72](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L72)
+[models/order.ts:72](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L72)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[models/order.ts:73](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L73)
+[models/order.ts:73](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L73)
___
@@ -72,4 +72,4 @@ ___
#### Defined in
-[models/order.ts:75](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/order.ts#L75)
+[models/order.ts:75](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/order.ts#L75)
diff --git a/docs/content/references/entities/enums/ProductStatus.md b/docs/content/references/entities/enums/ProductStatus.md
index 2c128801bb..5266caaa5f 100644
--- a/docs/content/references/entities/enums/ProductStatus.md
+++ b/docs/content/references/entities/enums/ProductStatus.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/product.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L28)
+[models/product.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L28)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/product.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L29)
+[models/product.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L29)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/product.ts:30](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L30)
+[models/product.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L30)
___
@@ -42,4 +42,4 @@ ___
#### Defined in
-[models/product.ts:31](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/product.ts#L31)
+[models/product.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/product.ts#L31)
diff --git a/docs/content/references/entities/enums/RefundReason.md b/docs/content/references/entities/enums/RefundReason.md
index 3db4a6dd3b..525212dc1c 100644
--- a/docs/content/references/entities/enums/RefundReason.md
+++ b/docs/content/references/entities/enums/RefundReason.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/refund.ts:19](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L19)
+[models/refund.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L19)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/refund.ts:16](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L16)
+[models/refund.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L16)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/refund.ts:20](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L20)
+[models/refund.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L20)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/refund.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L17)
+[models/refund.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L17)
___
@@ -52,4 +52,4 @@ ___
#### Defined in
-[models/refund.ts:18](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/refund.ts#L18)
+[models/refund.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/refund.ts#L18)
diff --git a/docs/content/references/entities/enums/RequirementType.md b/docs/content/references/entities/enums/RequirementType.md
index 834989b4e5..c5d4863af4 100644
--- a/docs/content/references/entities/enums/RequirementType.md
+++ b/docs/content/references/entities/enums/RequirementType.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/shipping-option-requirement.ts:18](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option-requirement.ts#L18)
+[models/shipping-option-requirement.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option-requirement.ts#L18)
___
@@ -22,4 +22,4 @@ ___
#### Defined in
-[models/shipping-option-requirement.ts:17](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option-requirement.ts#L17)
+[models/shipping-option-requirement.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option-requirement.ts#L17)
diff --git a/docs/content/references/entities/enums/ReturnStatus.md b/docs/content/references/entities/enums/ReturnStatus.md
index 9a4f2d9244..ee765b5f75 100644
--- a/docs/content/references/entities/enums/ReturnStatus.md
+++ b/docs/content/references/entities/enums/ReturnStatus.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/return.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L25)
+[models/return.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L25)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/return.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L23)
+[models/return.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L23)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/return.ts:22](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L22)
+[models/return.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L22)
___
@@ -42,4 +42,4 @@ ___
#### Defined in
-[models/return.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/return.ts#L24)
+[models/return.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/return.ts#L24)
diff --git a/docs/content/references/entities/enums/ShippingOptionPriceType.md b/docs/content/references/entities/enums/ShippingOptionPriceType.md
index d218a544f0..2b2268c4c9 100644
--- a/docs/content/references/entities/enums/ShippingOptionPriceType.md
+++ b/docs/content/references/entities/enums/ShippingOptionPriceType.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/shipping-option.ts:24](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L24)
+[models/shipping-option.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L24)
___
@@ -22,4 +22,4 @@ ___
#### Defined in
-[models/shipping-option.ts:23](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-option.ts#L23)
+[models/shipping-option.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-option.ts#L23)
diff --git a/docs/content/references/entities/enums/ShippingProfileType.md b/docs/content/references/entities/enums/ShippingProfileType.md
index 1739332ca0..a595a0f24f 100644
--- a/docs/content/references/entities/enums/ShippingProfileType.md
+++ b/docs/content/references/entities/enums/ShippingProfileType.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/shipping-profile.ts:12](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-profile.ts#L12)
+[models/shipping-profile.ts:12](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-profile.ts#L12)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/shipping-profile.ts:10](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-profile.ts#L10)
+[models/shipping-profile.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-profile.ts#L10)
___
@@ -32,4 +32,4 @@ ___
#### Defined in
-[models/shipping-profile.ts:11](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/shipping-profile.ts#L11)
+[models/shipping-profile.ts:11](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/shipping-profile.ts#L11)
diff --git a/docs/content/references/entities/enums/SwapFulfillmentStatus.md b/docs/content/references/entities/enums/SwapFulfillmentStatus.md
index 860bbbd945..4938b311ff 100644
--- a/docs/content/references/entities/enums/SwapFulfillmentStatus.md
+++ b/docs/content/references/entities/enums/SwapFulfillmentStatus.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/swap.ts:29](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L29)
+[models/swap.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L29)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/swap.ts:26](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L26)
+[models/swap.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L26)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/swap.ts:25](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L25)
+[models/swap.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L25)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/swap.ts:28](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L28)
+[models/swap.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L28)
___
@@ -52,7 +52,7 @@ ___
#### Defined in
-[models/swap.ts:30](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L30)
+[models/swap.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L30)
___
@@ -62,4 +62,4 @@ ___
#### Defined in
-[models/swap.ts:27](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L27)
+[models/swap.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L27)
diff --git a/docs/content/references/entities/enums/SwapPaymentStatus.md b/docs/content/references/entities/enums/SwapPaymentStatus.md
index d4ca71bef1..1952202178 100644
--- a/docs/content/references/entities/enums/SwapPaymentStatus.md
+++ b/docs/content/references/entities/enums/SwapPaymentStatus.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/swap.ts:35](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L35)
+[models/swap.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L35)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/swap.ts:38](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L38)
+[models/swap.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L38)
___
@@ -32,7 +32,7 @@ ___
#### Defined in
-[models/swap.ts:36](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L36)
+[models/swap.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L36)
___
@@ -42,7 +42,7 @@ ___
#### Defined in
-[models/swap.ts:37](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L37)
+[models/swap.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L37)
___
@@ -52,7 +52,7 @@ ___
#### Defined in
-[models/swap.ts:39](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L39)
+[models/swap.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L39)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[models/swap.ts:34](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L34)
+[models/swap.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L34)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[models/swap.ts:40](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L40)
+[models/swap.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L40)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[models/swap.ts:41](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L41)
+[models/swap.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L41)
___
@@ -92,4 +92,4 @@ ___
#### Defined in
-[models/swap.ts:42](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/swap.ts#L42)
+[models/swap.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/swap.ts#L42)
diff --git a/docs/content/references/entities/enums/UserRoles.md b/docs/content/references/entities/enums/UserRoles.md
index 21ac07d3fa..3ea3bb2aab 100644
--- a/docs/content/references/entities/enums/UserRoles.md
+++ b/docs/content/references/entities/enums/UserRoles.md
@@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar
#### Defined in
-[models/user.ts:8](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/user.ts#L8)
+[models/user.ts:8](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/user.ts#L8)
___
@@ -22,7 +22,7 @@ ___
#### Defined in
-[models/user.ts:10](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/user.ts#L10)
+[models/user.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/user.ts#L10)
___
@@ -32,4 +32,4 @@ ___
#### Defined in
-[models/user.ts:9](https://github.com/medusajs/medusa/blob/7c6521101/packages/medusa/src/models/user.ts#L9)
+[models/user.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/models/user.ts#L9)
diff --git a/docs/content/references/entities/index.md b/docs/content/references/entities/index.md
index 20e64ea0d1..91a44b3d5f 100644
--- a/docs/content/references/entities/index.md
+++ b/docs/content/references/entities/index.md
@@ -17,6 +17,7 @@ displayed_sidebar: entitiesSidebar
- [DiscountRuleType](enums/DiscountRuleType.md)
- [DraftOrderStatus](enums/DraftOrderStatus.md)
- [FulfillmentStatus](enums/FulfillmentStatus.md)
+- [OrderEditItemChangeType](enums/OrderEditItemChangeType.md)
- [OrderStatus](enums/OrderStatus.md)
- [PaymentSessionStatus](enums/PaymentSessionStatus.md)
- [PaymentStatus](enums/PaymentStatus.md)
@@ -69,6 +70,8 @@ displayed_sidebar: entitiesSidebar
- [Notification](classes/Notification.md)
- [Oauth](classes/Oauth.md)
- [Order](classes/Order.md)
+- [OrderEdit](classes/OrderEdit.md)
+- [OrderItemChange](classes/OrderItemChange.md)
- [Payment](classes/Payment.md)
- [PaymentProvider](classes/PaymentProvider.md)
- [PaymentSession](classes/PaymentSession.md)
diff --git a/docs/content/references/services/classes/AuthService.md b/docs/content/references/services/classes/AuthService.md
index 1bd4796e7d..3690f566b2 100644
--- a/docs/content/references/services/classes/AuthService.md
+++ b/docs/content/references/services/classes/AuthService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/auth.ts:25](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/auth.ts#L25)
+[packages/medusa/src/services/auth.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/auth.ts#L25)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/auth.ts:23](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/auth.ts#L23)
+[packages/medusa/src/services/auth.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/auth.ts#L23)
___
@@ -78,7 +78,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/auth.ts:20](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/auth.ts#L20)
+[packages/medusa/src/services/auth.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/auth.ts#L20)
___
@@ -92,7 +92,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/auth.ts:21](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/auth.ts#L21)
+[packages/medusa/src/services/auth.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/auth.ts#L21)
___
@@ -102,7 +102,7 @@ ___
#### Defined in
-[packages/medusa/src/services/auth.ts:22](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/auth.ts#L22)
+[packages/medusa/src/services/auth.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/auth.ts#L22)
## Methods
@@ -141,7 +141,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -169,7 +169,7 @@ success: whether authentication succeeded
#### Defined in
-[packages/medusa/src/services/auth.ts:98](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/auth.ts#L98)
+[packages/medusa/src/services/auth.ts:98](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/auth.ts#L98)
___
@@ -195,7 +195,7 @@ success: whether authentication succeeded
#### Defined in
-[packages/medusa/src/services/auth.ts:55](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/auth.ts#L55)
+[packages/medusa/src/services/auth.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/auth.ts#L55)
___
@@ -223,7 +223,7 @@ success: whether authentication succeeded
#### Defined in
-[packages/medusa/src/services/auth.ts:147](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/auth.ts#L147)
+[packages/medusa/src/services/auth.ts:147](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/auth.ts#L147)
___
@@ -248,7 +248,7 @@ the result of the comparison
#### Defined in
-[packages/medusa/src/services/auth.ts:39](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/auth.ts#L39)
+[packages/medusa/src/services/auth.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/auth.ts#L39)
___
@@ -272,7 +272,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -296,4 +296,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/BatchJobService.md b/docs/content/references/services/classes/BatchJobService.md
index edc2aa4cd3..6581abff11 100644
--- a/docs/content/references/services/classes/BatchJobService.md
+++ b/docs/content/references/services/classes/BatchJobService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/batch-job.ts:93](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L93)
+[packages/medusa/src/services/batch-job.ts:93](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L93)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:41](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L41)
+[packages/medusa/src/services/batch-job.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L41)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:45](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L45)
+[packages/medusa/src/services/batch-job.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L45)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:42](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L42)
+[packages/medusa/src/services/batch-job.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L42)
___
@@ -96,7 +96,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/batch-job.ts:38](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L38)
+[packages/medusa/src/services/batch-job.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L38)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L43)
+[packages/medusa/src/services/batch-job.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L43)
___
@@ -120,7 +120,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/batch-job.ts:39](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L39)
+[packages/medusa/src/services/batch-job.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L39)
___
@@ -143,7 +143,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:27](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L27)
+[packages/medusa/src/services/batch-job.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L27)
## Methods
@@ -182,7 +182,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -202,7 +202,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:274](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L274)
+[packages/medusa/src/services/batch-job.ts:274](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L274)
___
@@ -222,7 +222,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:256](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L256)
+[packages/medusa/src/services/batch-job.ts:256](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L256)
___
@@ -242,7 +242,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:238](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L238)
+[packages/medusa/src/services/batch-job.ts:238](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L238)
___
@@ -262,7 +262,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:143](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L143)
+[packages/medusa/src/services/batch-job.ts:143](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L143)
___
@@ -283,7 +283,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:132](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L132)
+[packages/medusa/src/services/batch-job.ts:132](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L132)
___
@@ -304,7 +304,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:371](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L371)
+[packages/medusa/src/services/batch-job.ts:371](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L371)
___
@@ -325,7 +325,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:112](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L112)
+[packages/medusa/src/services/batch-job.ts:112](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L112)
___
@@ -346,7 +346,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:345](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L345)
+[packages/medusa/src/services/batch-job.ts:345](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L345)
___
@@ -366,7 +366,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:292](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L292)
+[packages/medusa/src/services/batch-job.ts:292](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L292)
___
@@ -386,7 +386,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:325](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L325)
+[packages/medusa/src/services/batch-job.ts:325](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L325)
___
@@ -410,7 +410,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -431,7 +431,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:162](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L162)
+[packages/medusa/src/services/batch-job.ts:162](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L162)
___
@@ -452,7 +452,7 @@ ___
#### Defined in
-[packages/medusa/src/services/batch-job.ts:203](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/batch-job.ts#L203)
+[packages/medusa/src/services/batch-job.ts:203](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/batch-job.ts#L203)
___
@@ -476,4 +476,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/CartService.md b/docs/content/references/services/classes/CartService.md
index 0e6395b4d7..dae9ff249a 100644
--- a/docs/content/references/services/classes/CartService.md
+++ b/docs/content/references/services/classes/CartService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/cart.ts:122](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L122)
+[packages/medusa/src/services/cart.ts:122](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L122)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:99](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L99)
+[packages/medusa/src/services/cart.ts:99](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L99)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:98](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L98)
+[packages/medusa/src/services/cart.ts:98](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L98)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:117](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L117)
+[packages/medusa/src/services/cart.ts:117](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L117)
___
@@ -92,7 +92,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:110](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L110)
+[packages/medusa/src/services/cart.ts:110](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L110)
___
@@ -102,7 +102,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:112](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L112)
+[packages/medusa/src/services/cart.ts:112](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L112)
___
@@ -112,7 +112,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:102](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L102)
+[packages/medusa/src/services/cart.ts:102](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L102)
___
@@ -122,7 +122,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:120](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L120)
+[packages/medusa/src/services/cart.ts:120](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L120)
___
@@ -132,7 +132,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:113](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L113)
+[packages/medusa/src/services/cart.ts:113](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L113)
___
@@ -142,7 +142,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:116](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L116)
+[packages/medusa/src/services/cart.ts:116](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L116)
___
@@ -152,7 +152,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:119](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L119)
+[packages/medusa/src/services/cart.ts:119](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L119)
___
@@ -162,7 +162,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:101](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L101)
+[packages/medusa/src/services/cart.ts:101](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L101)
___
@@ -172,7 +172,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:108](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L108)
+[packages/medusa/src/services/cart.ts:108](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L108)
___
@@ -186,7 +186,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/cart.ts:94](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L94)
+[packages/medusa/src/services/cart.ts:94](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L94)
___
@@ -196,7 +196,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:109](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L109)
+[packages/medusa/src/services/cart.ts:109](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L109)
___
@@ -206,7 +206,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:100](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L100)
+[packages/medusa/src/services/cart.ts:100](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L100)
___
@@ -216,7 +216,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:118](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L118)
+[packages/medusa/src/services/cart.ts:118](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L118)
___
@@ -226,7 +226,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:104](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L104)
+[packages/medusa/src/services/cart.ts:104](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L104)
___
@@ -236,7 +236,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:103](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L103)
+[packages/medusa/src/services/cart.ts:103](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L103)
___
@@ -246,7 +246,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:107](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L107)
+[packages/medusa/src/services/cart.ts:107](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L107)
___
@@ -256,7 +256,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:106](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L106)
+[packages/medusa/src/services/cart.ts:106](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L106)
___
@@ -266,7 +266,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:97](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L97)
+[packages/medusa/src/services/cart.ts:97](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L97)
___
@@ -276,7 +276,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:111](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L111)
+[packages/medusa/src/services/cart.ts:111](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L111)
___
@@ -286,7 +286,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:105](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L105)
+[packages/medusa/src/services/cart.ts:105](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L105)
___
@@ -296,7 +296,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:114](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L114)
+[packages/medusa/src/services/cart.ts:114](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L114)
___
@@ -306,7 +306,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:115](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L115)
+[packages/medusa/src/services/cart.ts:115](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L115)
___
@@ -320,7 +320,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/cart.ts:95](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L95)
+[packages/medusa/src/services/cart.ts:95](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L95)
___
@@ -338,7 +338,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:88](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L88)
+[packages/medusa/src/services/cart.ts:88](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L88)
## Methods
@@ -365,7 +365,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/cart.ts:614](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L614)
+[packages/medusa/src/services/cart.ts:614](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L614)
___
@@ -395,7 +395,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/cart.ts:1697](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1697)
+[packages/medusa/src/services/cart.ts:1697](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1697)
___
@@ -423,7 +423,7 @@ void
#### Defined in
-[packages/medusa/src/services/cart.ts:781](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L781)
+[packages/medusa/src/services/cart.ts:781](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L781)
___
@@ -451,7 +451,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/cart.ts:1207](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1207)
+[packages/medusa/src/services/cart.ts:1207](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1207)
___
@@ -472,7 +472,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:1171](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1171)
+[packages/medusa/src/services/cart.ts:1171](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1171)
___
@@ -511,7 +511,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -540,7 +540,7 @@ the resulting cart
#### Defined in
-[packages/medusa/src/services/cart.ts:1353](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1353)
+[packages/medusa/src/services/cart.ts:1353](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1353)
___
@@ -564,7 +564,7 @@ the result of the create operation
#### Defined in
-[packages/medusa/src/services/cart.ts:351](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L351)
+[packages/medusa/src/services/cart.ts:351](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L351)
___
@@ -588,7 +588,7 @@ the resultign customer object
#### Defined in
-[packages/medusa/src/services/cart.ts:1056](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1056)
+[packages/medusa/src/services/cart.ts:1056](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1056)
___
@@ -608,7 +608,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:2103](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L2103)
+[packages/medusa/src/services/cart.ts:2105](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L2105)
___
@@ -630,7 +630,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:230](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L230)
+[packages/medusa/src/services/cart.ts:230](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L230)
___
@@ -654,7 +654,7 @@ the deleted cart or undefined if the cart was not found.
#### Defined in
-[packages/medusa/src/services/cart.ts:2018](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L2018)
+[packages/medusa/src/services/cart.ts:2018](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L2018)
___
@@ -679,7 +679,27 @@ the resulting cart.
#### Defined in
-[packages/medusa/src/services/cart.ts:1605](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1605)
+[packages/medusa/src/services/cart.ts:1605](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1605)
+
+___
+
+### deleteTaxLines
+
+▸ **deleteTaxLines**(`id`): `Promise`<`void`\>
+
+#### Parameters
+
+| Name | Type |
+| :------ | :------ |
+| `id` | `string` |
+
+#### Returns
+
+`Promise`<`void`\>
+
+#### Defined in
+
+[packages/medusa/src/services/cart.ts:2136](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L2136)
___
@@ -705,7 +725,7 @@ custom shipping option
#### Defined in
-[packages/medusa/src/services/cart.ts:1805](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1805)
+[packages/medusa/src/services/cart.ts:1805](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1805)
___
@@ -725,7 +745,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:454](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L454)
+[packages/medusa/src/services/cart.ts:454](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L454)
___
@@ -748,7 +768,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/cart.ts:286](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L286)
+[packages/medusa/src/services/cart.ts:286](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L286)
___
@@ -773,7 +793,7 @@ void
#### Defined in
-[packages/medusa/src/services/cart.ts:1002](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1002)
+[packages/medusa/src/services/cart.ts:1002](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1002)
___
@@ -793,7 +813,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:2134](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L2134)
+[packages/medusa/src/services/cart.ts:2155](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L2155)
___
@@ -818,7 +838,7 @@ the resulting cart.
#### Defined in
-[packages/medusa/src/services/cart.ts:1653](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1653)
+[packages/medusa/src/services/cart.ts:1653](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1653)
___
@@ -843,7 +863,7 @@ the resulting cart
#### Defined in
-[packages/medusa/src/services/cart.ts:1267](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1267)
+[packages/medusa/src/services/cart.ts:1267](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1267)
___
@@ -868,7 +888,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/cart.ts:486](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L486)
+[packages/medusa/src/services/cart.ts:486](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L486)
___
@@ -894,7 +914,7 @@ the cart document.
#### Defined in
-[packages/medusa/src/services/cart.ts:304](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L304)
+[packages/medusa/src/services/cart.ts:304](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L304)
___
@@ -922,7 +942,7 @@ resolves to the updated result.
#### Defined in
-[packages/medusa/src/services/cart.ts:2061](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L2061)
+[packages/medusa/src/services/cart.ts:2061](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L2061)
___
@@ -947,7 +967,7 @@ result of update operation
#### Defined in
-[packages/medusa/src/services/cart.ts:1424](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1424)
+[packages/medusa/src/services/cart.ts:1424](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1424)
___
@@ -975,7 +995,7 @@ the result of the update operation.
#### Defined in
-[packages/medusa/src/services/cart.ts:1497](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1497)
+[packages/medusa/src/services/cart.ts:1497](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1497)
___
@@ -1001,7 +1021,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/cart.ts:1884](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1884)
+[packages/medusa/src/services/cart.ts:1884](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1884)
___
@@ -1025,7 +1045,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -1045,7 +1065,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:179](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L179)
+[packages/medusa/src/services/cart.ts:179](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L179)
___
@@ -1066,7 +1086,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:824](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L824)
+[packages/medusa/src/services/cart.ts:824](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L824)
___
@@ -1092,7 +1112,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/cart.ts:1082](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1082)
+[packages/medusa/src/services/cart.ts:1082](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1082)
___
@@ -1117,7 +1137,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/cart.ts:1038](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1038)
+[packages/medusa/src/services/cart.ts:1038](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1038)
___
@@ -1143,7 +1163,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/cart.ts:716](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L716)
+[packages/medusa/src/services/cart.ts:716](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L716)
___
@@ -1168,7 +1188,7 @@ the resulting cart
#### Defined in
-[packages/medusa/src/services/cart.ts:1315](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1315)
+[packages/medusa/src/services/cart.ts:1315](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1315)
___
@@ -1194,7 +1214,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/cart.ts:1122](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1122)
+[packages/medusa/src/services/cart.ts:1122](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1122)
___
@@ -1216,7 +1236,7 @@ ___
#### Defined in
-[packages/medusa/src/services/cart.ts:1824](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L1824)
+[packages/medusa/src/services/cart.ts:1824](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L1824)
___
@@ -1241,7 +1261,7 @@ a boolean indicating validation result
#### Defined in
-[packages/medusa/src/services/cart.ts:583](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L583)
+[packages/medusa/src/services/cart.ts:583](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L583)
___
@@ -1268,7 +1288,7 @@ boolean representing whether shipping method is validated
#### Defined in
-[packages/medusa/src/services/cart.ts:552](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/cart.ts#L552)
+[packages/medusa/src/services/cart.ts:552](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/cart.ts#L552)
___
@@ -1292,4 +1312,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/ClaimItemService.md b/docs/content/references/services/classes/ClaimItemService.md
index cdd9fb6ce5..09072a7b4b 100644
--- a/docs/content/references/services/classes/ClaimItemService.md
+++ b/docs/content/references/services/classes/ClaimItemService.md
@@ -24,7 +24,7 @@ BaseService.constructor
#### Defined in
-[packages/medusa/src/services/claim-item.ts:30](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L30)
+[packages/medusa/src/services/claim-item.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L30)
## Properties
@@ -38,7 +38,7 @@ BaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ BaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim-item.ts:25](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L25)
+[packages/medusa/src/services/claim-item.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L25)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim-item.ts:23](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L23)
+[packages/medusa/src/services/claim-item.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L23)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim-item.ts:24](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L24)
+[packages/medusa/src/services/claim-item.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L24)
___
@@ -92,7 +92,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim-item.ts:22](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L22)
+[packages/medusa/src/services/claim-item.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L22)
___
@@ -102,7 +102,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim-item.ts:21](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L21)
+[packages/medusa/src/services/claim-item.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L21)
___
@@ -116,7 +116,7 @@ BaseService.manager\_
#### Defined in
-[packages/medusa/src/services/claim-item.ts:27](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L27)
+[packages/medusa/src/services/claim-item.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L27)
___
@@ -130,7 +130,7 @@ BaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/claim-item.ts:28](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L28)
+[packages/medusa/src/services/claim-item.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L28)
___
@@ -148,7 +148,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim-item.ts:15](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L15)
+[packages/medusa/src/services/claim-item.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L15)
## Methods
@@ -187,7 +187,7 @@ BaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -207,7 +207,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim-item.ts:49](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L49)
+[packages/medusa/src/services/claim-item.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L49)
___
@@ -230,7 +230,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/claim-item.ts:214](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L214)
+[packages/medusa/src/services/claim-item.ts:214](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L214)
___
@@ -255,7 +255,7 @@ the ClaimItem
#### Defined in
-[packages/medusa/src/services/claim-item.ts:233](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L233)
+[packages/medusa/src/services/claim-item.ts:233](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L233)
___
@@ -279,7 +279,7 @@ BaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -300,7 +300,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim-item.ts:132](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim-item.ts#L132)
+[packages/medusa/src/services/claim-item.ts:132](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim-item.ts#L132)
___
@@ -324,4 +324,4 @@ BaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/ClaimService.md b/docs/content/references/services/classes/ClaimService.md
index a7a083e637..43531a29fb 100644
--- a/docs/content/references/services/classes/ClaimService.md
+++ b/docs/content/references/services/classes/ClaimService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/claim.ts:83](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L83)
+[packages/medusa/src/services/claim.ts:83](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L83)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:66](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L66)
+[packages/medusa/src/services/claim.ts:66](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L66)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:70](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L70)
+[packages/medusa/src/services/claim.ts:70](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L70)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:67](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L67)
+[packages/medusa/src/services/claim.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L67)
___
@@ -92,7 +92,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:71](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L71)
+[packages/medusa/src/services/claim.ts:71](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L71)
___
@@ -102,7 +102,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:72](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L72)
+[packages/medusa/src/services/claim.ts:72](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L72)
___
@@ -112,7 +112,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:73](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L73)
+[packages/medusa/src/services/claim.ts:73](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L73)
___
@@ -122,7 +122,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:74](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L74)
+[packages/medusa/src/services/claim.ts:74](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L74)
___
@@ -132,7 +132,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:69](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L69)
+[packages/medusa/src/services/claim.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L69)
___
@@ -142,7 +142,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:75](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L75)
+[packages/medusa/src/services/claim.ts:75](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L75)
___
@@ -156,7 +156,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/claim.ts:63](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L63)
+[packages/medusa/src/services/claim.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L63)
___
@@ -166,7 +166,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:76](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L76)
+[packages/medusa/src/services/claim.ts:76](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L76)
___
@@ -176,7 +176,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:77](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L77)
+[packages/medusa/src/services/claim.ts:77](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L77)
___
@@ -186,7 +186,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:78](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L78)
+[packages/medusa/src/services/claim.ts:78](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L78)
___
@@ -196,7 +196,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:68](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L68)
+[packages/medusa/src/services/claim.ts:68](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L68)
___
@@ -206,7 +206,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:79](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L79)
+[packages/medusa/src/services/claim.ts:79](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L79)
___
@@ -216,7 +216,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:80](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L80)
+[packages/medusa/src/services/claim.ts:80](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L80)
___
@@ -226,7 +226,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:81](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L81)
+[packages/medusa/src/services/claim.ts:81](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L81)
___
@@ -240,7 +240,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/claim.ts:64](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L64)
+[packages/medusa/src/services/claim.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L64)
___
@@ -261,7 +261,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:54](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L54)
+[packages/medusa/src/services/claim.ts:54](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L54)
## Methods
@@ -300,7 +300,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -320,7 +320,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:761](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L761)
+[packages/medusa/src/services/claim.ts:761](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L761)
___
@@ -340,7 +340,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:609](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L609)
+[packages/medusa/src/services/claim.ts:609](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L609)
___
@@ -366,7 +366,7 @@ created claim
#### Defined in
-[packages/medusa/src/services/claim.ts:213](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L213)
+[packages/medusa/src/services/claim.ts:213](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L213)
___
@@ -391,7 +391,7 @@ created claim
#### Defined in
-[packages/medusa/src/services/claim.ts:463](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L463)
+[packages/medusa/src/services/claim.ts:463](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L463)
___
@@ -416,7 +416,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:681](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L681)
+[packages/medusa/src/services/claim.ts:681](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L681)
___
@@ -439,7 +439,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/claim.ts:817](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L817)
+[packages/medusa/src/services/claim.ts:817](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L817)
___
@@ -459,7 +459,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:635](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L635)
+[packages/medusa/src/services/claim.ts:635](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L635)
___
@@ -484,7 +484,7 @@ the order document
#### Defined in
-[packages/medusa/src/services/claim.ts:837](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L837)
+[packages/medusa/src/services/claim.ts:837](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L837)
___
@@ -508,7 +508,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -529,7 +529,7 @@ ___
#### Defined in
-[packages/medusa/src/services/claim.ts:125](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/claim.ts#L125)
+[packages/medusa/src/services/claim.ts:125](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/claim.ts#L125)
___
@@ -553,4 +553,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/CurrencyService.md b/docs/content/references/services/classes/CurrencyService.md
index a11aae470f..1f3157020b 100644
--- a/docs/content/references/services/classes/CurrencyService.md
+++ b/docs/content/references/services/classes/CurrencyService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/currency.ts:32](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/currency.ts#L32)
+[packages/medusa/src/services/currency.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/currency.ts#L32)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/currency.ts:28](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/currency.ts#L28)
+[packages/medusa/src/services/currency.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/currency.ts#L28)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[packages/medusa/src/services/currency.ts:29](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/currency.ts#L29)
+[packages/medusa/src/services/currency.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/currency.ts#L29)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[packages/medusa/src/services/currency.ts:30](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/currency.ts#L30)
+[packages/medusa/src/services/currency.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/currency.ts#L30)
___
@@ -96,7 +96,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/currency.ts:25](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/currency.ts#L25)
+[packages/medusa/src/services/currency.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/currency.ts#L25)
___
@@ -110,7 +110,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/currency.ts:26](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/currency.ts#L26)
+[packages/medusa/src/services/currency.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/currency.ts#L26)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[packages/medusa/src/services/currency.ts:21](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/currency.ts#L21)
+[packages/medusa/src/services/currency.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/currency.ts#L21)
## Methods
@@ -165,7 +165,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -193,7 +193,7 @@ an array containing the currencies as
#### Defined in
-[packages/medusa/src/services/currency.ts:81](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/currency.ts#L81)
+[packages/medusa/src/services/currency.ts:81](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/currency.ts#L81)
___
@@ -217,7 +217,7 @@ The currency
#### Defined in
-[packages/medusa/src/services/currency.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/currency.ts#L50)
+[packages/medusa/src/services/currency.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/currency.ts#L50)
___
@@ -241,7 +241,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -266,7 +266,7 @@ The updated currency
#### Defined in
-[packages/medusa/src/services/currency.ts:103](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/currency.ts#L103)
+[packages/medusa/src/services/currency.ts:103](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/currency.ts#L103)
___
@@ -290,4 +290,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/CustomShippingOptionService.md b/docs/content/references/services/classes/CustomShippingOptionService.md
index b51cda34f2..c5c684f443 100644
--- a/docs/content/references/services/classes/CustomShippingOptionService.md
+++ b/docs/content/references/services/classes/CustomShippingOptionService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/custom-shipping-option.ts:19](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/custom-shipping-option.ts#L19)
+[packages/medusa/src/services/custom-shipping-option.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/custom-shipping-option.ts#L19)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/custom-shipping-option.ts:17](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/custom-shipping-option.ts#L17)
+[packages/medusa/src/services/custom-shipping-option.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/custom-shipping-option.ts#L17)
___
@@ -76,7 +76,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/custom-shipping-option.ts:15](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/custom-shipping-option.ts#L15)
+[packages/medusa/src/services/custom-shipping-option.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/custom-shipping-option.ts#L15)
___
@@ -90,7 +90,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/custom-shipping-option.ts:16](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/custom-shipping-option.ts#L16)
+[packages/medusa/src/services/custom-shipping-option.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/custom-shipping-option.ts#L16)
## Methods
@@ -129,7 +129,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -153,7 +153,7 @@ resolves to the creation result
#### Defined in
-[packages/medusa/src/services/custom-shipping-option.ts:88](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/custom-shipping-option.ts#L88)
+[packages/medusa/src/services/custom-shipping-option.ts:88](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/custom-shipping-option.ts#L88)
___
@@ -178,7 +178,7 @@ custom shipping options matching the query
#### Defined in
-[packages/medusa/src/services/custom-shipping-option.ts:64](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/custom-shipping-option.ts#L64)
+[packages/medusa/src/services/custom-shipping-option.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/custom-shipping-option.ts#L64)
___
@@ -203,7 +203,7 @@ the requested custom shipping option.
#### Defined in
-[packages/medusa/src/services/custom-shipping-option.ts:36](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/custom-shipping-option.ts#L36)
+[packages/medusa/src/services/custom-shipping-option.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/custom-shipping-option.ts#L36)
___
@@ -227,7 +227,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -251,4 +251,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/CustomerGroupService.md b/docs/content/references/services/classes/CustomerGroupService.md
index 91706e6ee2..f31db71019 100644
--- a/docs/content/references/services/classes/CustomerGroupService.md
+++ b/docs/content/references/services/classes/CustomerGroupService.md
@@ -28,7 +28,7 @@ BaseService.constructor
#### Defined in
-[packages/medusa/src/services/customer-group.ts:32](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L32)
+[packages/medusa/src/services/customer-group.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L32)
## Properties
@@ -38,7 +38,7 @@ BaseService.constructor
#### Defined in
-[packages/medusa/src/services/customer-group.ts:28](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L28)
+[packages/medusa/src/services/customer-group.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L28)
___
@@ -48,7 +48,7 @@ ___
#### Defined in
-[packages/medusa/src/services/customer-group.ts:30](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L30)
+[packages/medusa/src/services/customer-group.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L30)
___
@@ -58,7 +58,7 @@ ___
#### Defined in
-[packages/medusa/src/services/customer-group.ts:26](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L26)
+[packages/medusa/src/services/customer-group.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L26)
## Methods
@@ -83,7 +83,7 @@ the customer group after insertion
#### Defined in
-[packages/medusa/src/services/customer-group.ts:114](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L114)
+[packages/medusa/src/services/customer-group.ts:114](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L114)
___
@@ -115,7 +115,7 @@ the result of the create operation
#### Defined in
-[packages/medusa/src/services/customer-group.ts:87](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L87)
+[packages/medusa/src/services/customer-group.ts:87](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L87)
___
@@ -139,7 +139,7 @@ a promise
#### Defined in
-[packages/medusa/src/services/customer-group.ts:195](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L195)
+[packages/medusa/src/services/customer-group.ts:195](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L195)
___
@@ -164,7 +164,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/customer-group.ts:218](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L218)
+[packages/medusa/src/services/customer-group.ts:218](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L218)
___
@@ -189,7 +189,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/customer-group.ts:237](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L237)
+[packages/medusa/src/services/customer-group.ts:237](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L237)
___
@@ -214,7 +214,7 @@ the customergroup with the provided id
#### Defined in
-[packages/medusa/src/services/customer-group.ts:272](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L272)
+[packages/medusa/src/services/customer-group.ts:272](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L272)
___
@@ -235,7 +235,7 @@ ___
#### Defined in
-[packages/medusa/src/services/customer-group.ts:63](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L63)
+[packages/medusa/src/services/customer-group.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L63)
___
@@ -260,7 +260,7 @@ resulting customer group
#### Defined in
-[packages/medusa/src/services/customer-group.ts:163](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L163)
+[packages/medusa/src/services/customer-group.ts:163](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L163)
___
@@ -280,4 +280,4 @@ ___
#### Defined in
-[packages/medusa/src/services/customer-group.ts:47](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer-group.ts#L47)
+[packages/medusa/src/services/customer-group.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer-group.ts#L47)
diff --git a/docs/content/references/services/classes/CustomerService.md b/docs/content/references/services/classes/CustomerService.md
index f14a97da1f..b57692b795 100644
--- a/docs/content/references/services/classes/CustomerService.md
+++ b/docs/content/references/services/classes/CustomerService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/customer.ts:39](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L39)
+[packages/medusa/src/services/customer.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L39)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/customer.ts:27](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L27)
+[packages/medusa/src/services/customer.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L27)
___
@@ -74,7 +74,7 @@ ___
#### Defined in
-[packages/medusa/src/services/customer.ts:26](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L26)
+[packages/medusa/src/services/customer.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L26)
___
@@ -84,7 +84,7 @@ ___
#### Defined in
-[packages/medusa/src/services/customer.ts:28](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L28)
+[packages/medusa/src/services/customer.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L28)
___
@@ -98,7 +98,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/customer.ts:30](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L30)
+[packages/medusa/src/services/customer.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L30)
___
@@ -112,7 +112,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/customer.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L31)
+[packages/medusa/src/services/customer.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L31)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[packages/medusa/src/services/customer.ts:33](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L33)
+[packages/medusa/src/services/customer.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L33)
## Methods
@@ -151,7 +151,7 @@ ___
#### Defined in
-[packages/medusa/src/services/customer.ts:461](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L461)
+[packages/medusa/src/services/customer.ts:461](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L461)
___
@@ -190,7 +190,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -208,7 +208,7 @@ the result of the count operation
#### Defined in
-[packages/medusa/src/services/customer.ts:158](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L158)
+[packages/medusa/src/services/customer.ts:158](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L158)
___
@@ -235,7 +235,7 @@ the result of create
#### Defined in
-[packages/medusa/src/services/customer.ts:245](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L245)
+[packages/medusa/src/services/customer.ts:245](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L245)
___
@@ -259,7 +259,7 @@ the result of the delete operation.
#### Defined in
-[packages/medusa/src/services/customer.ts:509](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L509)
+[packages/medusa/src/services/customer.ts:509](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L509)
___
@@ -287,7 +287,7 @@ the generated JSON web token
#### Defined in
-[packages/medusa/src/services/customer.ts:64](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L64)
+[packages/medusa/src/services/customer.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L64)
___
@@ -311,7 +311,7 @@ hashed password
#### Defined in
-[packages/medusa/src/services/customer.ts:232](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L232)
+[packages/medusa/src/services/customer.ts:232](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L232)
___
@@ -334,7 +334,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/customer.ts:107](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L107)
+[packages/medusa/src/services/customer.ts:107](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L107)
___
@@ -357,7 +357,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/customer.ts:131](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L131)
+[packages/medusa/src/services/customer.ts:131](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L131)
___
@@ -378,7 +378,7 @@ ___
#### Defined in
-[packages/medusa/src/services/customer.ts:444](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L444)
+[packages/medusa/src/services/customer.ts:444](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L444)
___
@@ -403,7 +403,7 @@ the customer document.
#### Defined in
-[packages/medusa/src/services/customer.ts:220](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L220)
+[packages/medusa/src/services/customer.ts:220](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L220)
___
@@ -428,7 +428,7 @@ the customer document.
#### Defined in
-[packages/medusa/src/services/customer.ts:194](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L194)
+[packages/medusa/src/services/customer.ts:194](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L194)
___
@@ -453,7 +453,7 @@ the customer document.
#### Defined in
-[packages/medusa/src/services/customer.ts:207](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L207)
+[packages/medusa/src/services/customer.ts:207](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L207)
___
@@ -474,7 +474,7 @@ ___
#### Defined in
-[packages/medusa/src/services/customer.ts:164](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L164)
+[packages/medusa/src/services/customer.ts:164](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L164)
___
@@ -498,7 +498,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -523,7 +523,7 @@ resolves to the update result.
#### Defined in
-[packages/medusa/src/services/customer.ts:300](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L300)
+[packages/medusa/src/services/customer.ts:300](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L300)
___
@@ -545,7 +545,7 @@ ___
#### Defined in
-[packages/medusa/src/services/customer.ts:416](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L416)
+[packages/medusa/src/services/customer.ts:416](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L416)
___
@@ -570,7 +570,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/customer.ts:364](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/customer.ts#L364)
+[packages/medusa/src/services/customer.ts:364](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/customer.ts#L364)
___
@@ -594,4 +594,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/DiscountService.md b/docs/content/references/services/classes/DiscountService.md
index 42ca470cf3..3f06532060 100644
--- a/docs/content/references/services/classes/DiscountService.md
+++ b/docs/content/references/services/classes/DiscountService.md
@@ -28,7 +28,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/discount.ts:65](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L65)
+[packages/medusa/src/services/discount.ts:65](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L65)
## Properties
@@ -42,7 +42,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -56,7 +56,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:54](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L54)
+[packages/medusa/src/services/discount.ts:54](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L54)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:57](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L57)
+[packages/medusa/src/services/discount.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L57)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:58](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L58)
+[packages/medusa/src/services/discount.ts:58](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L58)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:53](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L53)
+[packages/medusa/src/services/discount.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L53)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:55](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L55)
+[packages/medusa/src/services/discount.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L55)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:62](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L62)
+[packages/medusa/src/services/discount.ts:62](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L62)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:63](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L63)
+[packages/medusa/src/services/discount.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L63)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:56](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L56)
+[packages/medusa/src/services/discount.ts:56](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L56)
___
@@ -150,7 +150,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/discount.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L50)
+[packages/medusa/src/services/discount.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L50)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:60](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L60)
+[packages/medusa/src/services/discount.ts:60](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L60)
___
@@ -170,7 +170,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:61](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L61)
+[packages/medusa/src/services/discount.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L61)
___
@@ -180,7 +180,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:59](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L59)
+[packages/medusa/src/services/discount.ts:59](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L59)
___
@@ -194,7 +194,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/discount.ts:51](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L51)
+[packages/medusa/src/services/discount.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L51)
## Methods
@@ -219,7 +219,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/discount.ts:470](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L470)
+[packages/medusa/src/services/discount.ts:470](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L470)
___
@@ -258,7 +258,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -280,7 +280,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:571](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L571)
+[packages/medusa/src/services/discount.ts:571](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L571)
___
@@ -301,7 +301,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:730](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L730)
+[packages/medusa/src/services/discount.ts:730](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L730)
___
@@ -326,7 +326,7 @@ the result of the create operation
#### Defined in
-[packages/medusa/src/services/discount.ts:181](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L181)
+[packages/medusa/src/services/discount.ts:181](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L181)
___
@@ -351,7 +351,7 @@ the newly created dynamic code
#### Defined in
-[packages/medusa/src/services/discount.ts:398](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L398)
+[packages/medusa/src/services/discount.ts:398](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L398)
___
@@ -375,7 +375,7 @@ the result of the delete operation
#### Defined in
-[packages/medusa/src/services/discount.ts:530](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L530)
+[packages/medusa/src/services/discount.ts:530](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L530)
___
@@ -400,7 +400,7 @@ the newly created dynamic code
#### Defined in
-[packages/medusa/src/services/discount.ts:449](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L449)
+[packages/medusa/src/services/discount.ts:449](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L449)
___
@@ -420,7 +420,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:699](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L699)
+[packages/medusa/src/services/discount.ts:699](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L699)
___
@@ -440,7 +440,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:695](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L695)
+[packages/medusa/src/services/discount.ts:695](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L695)
___
@@ -460,7 +460,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:689](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L689)
+[packages/medusa/src/services/discount.ts:689](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L689)
___
@@ -480,7 +480,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:707](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L707)
+[packages/medusa/src/services/discount.ts:707](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L707)
___
@@ -501,7 +501,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:711](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L711)
+[packages/medusa/src/services/discount.ts:711](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L711)
___
@@ -524,7 +524,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/discount.ts:119](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L119)
+[packages/medusa/src/services/discount.ts:119](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L119)
___
@@ -547,7 +547,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/discount.ts:135](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L135)
+[packages/medusa/src/services/discount.ts:135](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L135)
___
@@ -572,7 +572,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/discount.ts:505](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L505)
+[packages/medusa/src/services/discount.ts:505](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L505)
___
@@ -597,7 +597,7 @@ the discount
#### Defined in
-[packages/medusa/src/services/discount.ts:246](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L246)
+[packages/medusa/src/services/discount.ts:246](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L246)
___
@@ -622,7 +622,7 @@ the discount document
#### Defined in
-[packages/medusa/src/services/discount.ts:272](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L272)
+[packages/medusa/src/services/discount.ts:272](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L272)
___
@@ -646,7 +646,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -671,7 +671,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/discount.ts:303](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L303)
+[packages/medusa/src/services/discount.ts:303](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L303)
___
@@ -692,7 +692,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:629](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L629)
+[packages/medusa/src/services/discount.ts:629](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L629)
___
@@ -713,7 +713,7 @@ ___
#### Defined in
-[packages/medusa/src/services/discount.ts:544](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L544)
+[packages/medusa/src/services/discount.ts:544](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L544)
___
@@ -743,7 +743,7 @@ the result of the create operation
#### Defined in
-[packages/medusa/src/services/discount.ts:101](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/discount.ts#L101)
+[packages/medusa/src/services/discount.ts:101](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/discount.ts#L101)
___
@@ -767,4 +767,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/DraftOrderService.md b/docs/content/references/services/classes/DraftOrderService.md
index 52f7062be3..5726c88076 100644
--- a/docs/content/references/services/classes/DraftOrderService.md
+++ b/docs/content/references/services/classes/DraftOrderService.md
@@ -28,7 +28,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/draft-order.ts:51](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L51)
+[packages/medusa/src/services/draft-order.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L51)
## Properties
@@ -42,7 +42,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -56,7 +56,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[packages/medusa/src/services/draft-order.ts:46](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L46)
+[packages/medusa/src/services/draft-order.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L46)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[packages/medusa/src/services/draft-order.ts:42](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L42)
+[packages/medusa/src/services/draft-order.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L42)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[packages/medusa/src/services/draft-order.ts:45](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L45)
+[packages/medusa/src/services/draft-order.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L45)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[packages/medusa/src/services/draft-order.ts:47](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L47)
+[packages/medusa/src/services/draft-order.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L47)
___
@@ -110,7 +110,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/draft-order.ts:39](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L39)
+[packages/medusa/src/services/draft-order.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L39)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[packages/medusa/src/services/draft-order.ts:44](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L44)
+[packages/medusa/src/services/draft-order.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L44)
___
@@ -130,7 +130,7 @@ ___
#### Defined in
-[packages/medusa/src/services/draft-order.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L43)
+[packages/medusa/src/services/draft-order.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L43)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[packages/medusa/src/services/draft-order.ts:48](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L48)
+[packages/medusa/src/services/draft-order.ts:48](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L48)
___
@@ -150,7 +150,7 @@ ___
#### Defined in
-[packages/medusa/src/services/draft-order.ts:49](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L49)
+[packages/medusa/src/services/draft-order.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L49)
___
@@ -164,7 +164,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/draft-order.ts:40](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L40)
+[packages/medusa/src/services/draft-order.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L40)
___
@@ -181,7 +181,7 @@ ___
#### Defined in
-[packages/medusa/src/services/draft-order.ts:34](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L34)
+[packages/medusa/src/services/draft-order.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L34)
## Methods
@@ -220,7 +220,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -244,7 +244,7 @@ the created draft order
#### Defined in
-[packages/medusa/src/services/draft-order.ts:245](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L245)
+[packages/medusa/src/services/draft-order.ts:245](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L245)
___
@@ -268,7 +268,7 @@ empty promise
#### Defined in
-[packages/medusa/src/services/draft-order.ts:144](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L144)
+[packages/medusa/src/services/draft-order.ts:144](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L144)
___
@@ -293,7 +293,7 @@ list of draft orders
#### Defined in
-[packages/medusa/src/services/draft-order.ts:222](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L222)
+[packages/medusa/src/services/draft-order.ts:222](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L222)
___
@@ -318,7 +318,7 @@ draft orders
#### Defined in
-[packages/medusa/src/services/draft-order.ts:168](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L168)
+[packages/medusa/src/services/draft-order.ts:168](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L168)
___
@@ -343,7 +343,7 @@ the created order
#### Defined in
-[packages/medusa/src/services/draft-order.ts:357](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L357)
+[packages/medusa/src/services/draft-order.ts:357](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L357)
___
@@ -368,7 +368,7 @@ the draft order
#### Defined in
-[packages/medusa/src/services/draft-order.ts:91](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L91)
+[packages/medusa/src/services/draft-order.ts:91](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L91)
___
@@ -393,7 +393,7 @@ the draft order
#### Defined in
-[packages/medusa/src/services/draft-order.ts:118](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L118)
+[packages/medusa/src/services/draft-order.ts:118](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L118)
___
@@ -417,7 +417,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -443,7 +443,7 @@ the updated draft order
#### Defined in
-[packages/medusa/src/services/draft-order.ts:386](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/draft-order.ts#L386)
+[packages/medusa/src/services/draft-order.ts:386](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/draft-order.ts#L386)
___
@@ -467,4 +467,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/EventBusService.md b/docs/content/references/services/classes/EventBusService.md
index 59c91905a0..4e12b856da 100644
--- a/docs/content/references/services/classes/EventBusService.md
+++ b/docs/content/references/services/classes/EventBusService.md
@@ -19,7 +19,7 @@ subscribers when events happen. Events will run asynchronously.
#### Defined in
-[packages/medusa/src/services/event-bus.ts:38](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L38)
+[packages/medusa/src/services/event-bus.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L38)
## Properties
@@ -29,7 +29,7 @@ subscribers when events happen. Events will run asynchronously.
#### Defined in
-[packages/medusa/src/services/event-bus.ts:24](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L24)
+[packages/medusa/src/services/event-bus.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L24)
___
@@ -39,7 +39,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:29](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L29)
+[packages/medusa/src/services/event-bus.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L29)
___
@@ -49,7 +49,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:32](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L32)
+[packages/medusa/src/services/event-bus.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L32)
___
@@ -59,7 +59,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:36](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L36)
+[packages/medusa/src/services/event-bus.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L36)
___
@@ -69,7 +69,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:26](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L26)
+[packages/medusa/src/services/event-bus.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L26)
___
@@ -79,7 +79,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:25](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L25)
+[packages/medusa/src/services/event-bus.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L25)
___
@@ -89,7 +89,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:28](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L28)
+[packages/medusa/src/services/event-bus.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L28)
___
@@ -99,7 +99,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:33](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L33)
+[packages/medusa/src/services/event-bus.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L33)
___
@@ -109,7 +109,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:30](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L30)
+[packages/medusa/src/services/event-bus.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L30)
___
@@ -119,7 +119,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L31)
+[packages/medusa/src/services/event-bus.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L31)
___
@@ -129,7 +129,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:34](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L34)
+[packages/medusa/src/services/event-bus.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L34)
___
@@ -139,7 +139,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:27](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L27)
+[packages/medusa/src/services/event-bus.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L27)
___
@@ -149,7 +149,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:35](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L35)
+[packages/medusa/src/services/event-bus.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L35)
## Methods
@@ -182,7 +182,7 @@ void
#### Defined in
-[packages/medusa/src/services/event-bus.ts:308](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L308)
+[packages/medusa/src/services/event-bus.ts:308](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L308)
___
@@ -215,7 +215,7 @@ resolves to the results of the subscriber calls.
#### Defined in
-[packages/medusa/src/services/event-bus.ts:281](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L281)
+[packages/medusa/src/services/event-bus.ts:281](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L281)
___
@@ -248,7 +248,7 @@ the job from our queue
#### Defined in
-[packages/medusa/src/services/event-bus.ts:179](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L179)
+[packages/medusa/src/services/event-bus.ts:179](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L179)
___
@@ -262,7 +262,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:215](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L215)
+[packages/medusa/src/services/event-bus.ts:215](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L215)
___
@@ -287,7 +287,7 @@ this
#### Defined in
-[packages/medusa/src/services/event-bus.ts:158](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L158)
+[packages/medusa/src/services/event-bus.ts:158](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L158)
___
@@ -301,7 +301,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:205](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L205)
+[packages/medusa/src/services/event-bus.ts:205](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L205)
___
@@ -315,7 +315,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:210](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L210)
+[packages/medusa/src/services/event-bus.ts:210](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L210)
___
@@ -340,7 +340,7 @@ this
#### Defined in
-[packages/medusa/src/services/event-bus.ts:118](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L118)
+[packages/medusa/src/services/event-bus.ts:118](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L118)
___
@@ -365,7 +365,7 @@ this
#### Defined in
-[packages/medusa/src/services/event-bus.ts:136](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L136)
+[packages/medusa/src/services/event-bus.ts:136](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L136)
___
@@ -385,7 +385,7 @@ ___
#### Defined in
-[packages/medusa/src/services/event-bus.ts:88](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L88)
+[packages/medusa/src/services/event-bus.ts:88](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L88)
___
@@ -418,4 +418,4 @@ resolves to the results of the subscriber calls.
#### Defined in
-[packages/medusa/src/services/event-bus.ts:250](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/event-bus.ts#L250)
+[packages/medusa/src/services/event-bus.ts:250](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/event-bus.ts#L250)
diff --git a/docs/content/references/services/classes/FulfillmentProviderService.md b/docs/content/references/services/classes/FulfillmentProviderService.md
index 54e280b13c..4d08a114ec 100644
--- a/docs/content/references/services/classes/FulfillmentProviderService.md
+++ b/docs/content/references/services/classes/FulfillmentProviderService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L43)
+[packages/medusa/src/services/fulfillment-provider.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L43)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:39](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L39)
+[packages/medusa/src/services/fulfillment-provider.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L39)
___
@@ -74,7 +74,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:41](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L41)
+[packages/medusa/src/services/fulfillment-provider.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L41)
___
@@ -88,7 +88,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:36](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L36)
+[packages/medusa/src/services/fulfillment-provider.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L36)
___
@@ -102,7 +102,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:37](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L37)
+[packages/medusa/src/services/fulfillment-provider.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L37)
## Methods
@@ -141,7 +141,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -163,7 +163,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:148](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L148)
+[packages/medusa/src/services/fulfillment-provider.ts:148](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L148)
___
@@ -183,7 +183,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:123](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L123)
+[packages/medusa/src/services/fulfillment-provider.ts:123](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L123)
___
@@ -203,7 +203,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:141](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L141)
+[packages/medusa/src/services/fulfillment-provider.ts:141](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L141)
___
@@ -226,7 +226,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:108](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L108)
+[packages/medusa/src/services/fulfillment-provider.ts:108](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L108)
___
@@ -246,7 +246,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:162](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L162)
+[packages/medusa/src/services/fulfillment-provider.ts:162](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L162)
___
@@ -260,7 +260,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:67](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L67)
+[packages/medusa/src/services/fulfillment-provider.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L67)
___
@@ -280,7 +280,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:75](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L75)
+[packages/medusa/src/services/fulfillment-provider.ts:75](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L75)
___
@@ -300,7 +300,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:53](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L53)
+[packages/medusa/src/services/fulfillment-provider.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L53)
___
@@ -326,7 +326,7 @@ document to fetch
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:181](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L181)
+[packages/medusa/src/services/fulfillment-provider.ts:181](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L181)
___
@@ -348,7 +348,7 @@ the payment fulfillment provider
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:97](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L97)
+[packages/medusa/src/services/fulfillment-provider.ts:97](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L97)
___
@@ -372,7 +372,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -394,7 +394,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:128](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L128)
+[packages/medusa/src/services/fulfillment-provider.ts:128](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L128)
___
@@ -414,7 +414,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment-provider.ts:157](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment-provider.ts#L157)
+[packages/medusa/src/services/fulfillment-provider.ts:157](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment-provider.ts#L157)
___
@@ -438,4 +438,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/FulfillmentService.md b/docs/content/references/services/classes/FulfillmentService.md
index 53e6c15487..3e1a79a383 100644
--- a/docs/content/references/services/classes/FulfillmentService.md
+++ b/docs/content/references/services/classes/FulfillmentService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:47](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L47)
+[packages/medusa/src/services/fulfillment.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L47)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:42](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L42)
+[packages/medusa/src/services/fulfillment.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L42)
___
@@ -74,7 +74,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L43)
+[packages/medusa/src/services/fulfillment.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L43)
___
@@ -84,7 +84,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:45](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L45)
+[packages/medusa/src/services/fulfillment.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L45)
___
@@ -94,7 +94,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:40](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L40)
+[packages/medusa/src/services/fulfillment.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L40)
___
@@ -108,7 +108,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:36](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L36)
+[packages/medusa/src/services/fulfillment.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L36)
___
@@ -118,7 +118,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:41](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L41)
+[packages/medusa/src/services/fulfillment.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L41)
___
@@ -128,7 +128,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:39](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L39)
+[packages/medusa/src/services/fulfillment.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L39)
___
@@ -138,7 +138,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:44](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L44)
+[packages/medusa/src/services/fulfillment.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L44)
___
@@ -152,7 +152,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:37](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L37)
+[packages/medusa/src/services/fulfillment.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L37)
## Methods
@@ -191,7 +191,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -217,7 +217,7 @@ the result of the save operation
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:253](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L253)
+[packages/medusa/src/services/fulfillment.ts:253](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L253)
___
@@ -246,7 +246,7 @@ the created fulfillments
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:198](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L198)
+[packages/medusa/src/services/fulfillment.ts:198](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L198)
___
@@ -273,7 +273,7 @@ the shipped fulfillment
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:303](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L303)
+[packages/medusa/src/services/fulfillment.ts:303](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L303)
___
@@ -298,7 +298,7 @@ the line items generated by the transformer.
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:109](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L109)
+[packages/medusa/src/services/fulfillment.ts:109](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L109)
___
@@ -319,7 +319,7 @@ ___
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:71](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L71)
+[packages/medusa/src/services/fulfillment.ts:71](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L71)
___
@@ -344,7 +344,7 @@ the fulfillment
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:166](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L166)
+[packages/medusa/src/services/fulfillment.ts:166](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L166)
___
@@ -368,7 +368,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -397,7 +397,7 @@ a line item that has the requested fulfillment quantity
#### Defined in
-[packages/medusa/src/services/fulfillment.ts:134](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/fulfillment.ts#L134)
+[packages/medusa/src/services/fulfillment.ts:134](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/fulfillment.ts#L134)
___
@@ -421,4 +421,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/GiftCardService.md b/docs/content/references/services/classes/GiftCardService.md
index 5cfb2d2404..83ffd6a526 100644
--- a/docs/content/references/services/classes/GiftCardService.md
+++ b/docs/content/references/services/classes/GiftCardService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/gift-card.ts:46](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L46)
+[packages/medusa/src/services/gift-card.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L46)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/gift-card.ts:37](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L37)
+[packages/medusa/src/services/gift-card.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L37)
___
@@ -74,7 +74,7 @@ ___
#### Defined in
-[packages/medusa/src/services/gift-card.ts:34](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L34)
+[packages/medusa/src/services/gift-card.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L34)
___
@@ -84,7 +84,7 @@ ___
#### Defined in
-[packages/medusa/src/services/gift-card.ts:35](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L35)
+[packages/medusa/src/services/gift-card.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L35)
___
@@ -98,7 +98,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/gift-card.ts:39](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L39)
+[packages/medusa/src/services/gift-card.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L39)
___
@@ -108,7 +108,7 @@ ___
#### Defined in
-[packages/medusa/src/services/gift-card.ts:36](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L36)
+[packages/medusa/src/services/gift-card.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L36)
___
@@ -122,7 +122,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/gift-card.ts:40](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L40)
+[packages/medusa/src/services/gift-card.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L40)
___
@@ -138,7 +138,7 @@ ___
#### Defined in
-[packages/medusa/src/services/gift-card.ts:42](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L42)
+[packages/medusa/src/services/gift-card.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L42)
## Methods
@@ -177,7 +177,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -201,7 +201,7 @@ the result of the create operation
#### Defined in
-[packages/medusa/src/services/gift-card.ts:152](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L152)
+[packages/medusa/src/services/gift-card.ts:152](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L152)
___
@@ -221,7 +221,7 @@ ___
#### Defined in
-[packages/medusa/src/services/gift-card.ts:137](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L137)
+[packages/medusa/src/services/gift-card.ts:137](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L137)
___
@@ -245,7 +245,7 @@ the result of the delete operation
#### Defined in
-[packages/medusa/src/services/gift-card.ts:282](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L282)
+[packages/medusa/src/services/gift-card.ts:282](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L282)
___
@@ -268,7 +268,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/gift-card.ts:113](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L113)
+[packages/medusa/src/services/gift-card.ts:113](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L113)
___
@@ -291,7 +291,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/gift-card.ts:84](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L84)
+[packages/medusa/src/services/gift-card.ts:84](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L84)
___
@@ -316,7 +316,7 @@ the gift card
#### Defined in
-[packages/medusa/src/services/gift-card.ts:216](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L216)
+[packages/medusa/src/services/gift-card.ts:216](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L216)
___
@@ -337,7 +337,7 @@ ___
#### Defined in
-[packages/medusa/src/services/gift-card.ts:223](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L223)
+[packages/medusa/src/services/gift-card.ts:223](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L223)
___
@@ -358,7 +358,7 @@ ___
#### Defined in
-[packages/medusa/src/services/gift-card.ts:182](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L182)
+[packages/medusa/src/services/gift-card.ts:182](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L182)
___
@@ -382,7 +382,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -407,7 +407,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/gift-card.ts:236](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L236)
+[packages/medusa/src/services/gift-card.ts:236](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L236)
___
@@ -431,7 +431,7 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
___
@@ -449,4 +449,4 @@ the generated gift card code
#### Defined in
-[packages/medusa/src/services/gift-card.ts:68](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/gift-card.ts#L68)
+[packages/medusa/src/services/gift-card.ts:68](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/gift-card.ts#L68)
diff --git a/docs/content/references/services/classes/IdempotencyKeyService.md b/docs/content/references/services/classes/IdempotencyKeyService.md
index 9eaac31be4..8c3d2f9b47 100644
--- a/docs/content/references/services/classes/IdempotencyKeyService.md
+++ b/docs/content/references/services/classes/IdempotencyKeyService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/idempotency-key.ts:22](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/idempotency-key.ts#L22)
+[packages/medusa/src/services/idempotency-key.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/idempotency-key.ts#L22)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/idempotency-key.ts:20](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/idempotency-key.ts#L20)
+[packages/medusa/src/services/idempotency-key.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/idempotency-key.ts#L20)
___
@@ -76,7 +76,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/idempotency-key.ts:17](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/idempotency-key.ts#L17)
+[packages/medusa/src/services/idempotency-key.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/idempotency-key.ts#L17)
___
@@ -90,7 +90,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/idempotency-key.ts:18](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/idempotency-key.ts#L18)
+[packages/medusa/src/services/idempotency-key.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/idempotency-key.ts#L18)
## Methods
@@ -129,7 +129,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -155,7 +155,7 @@ the created idempotency key
#### Defined in
-[packages/medusa/src/services/idempotency-key.ts:63](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/idempotency-key.ts#L63)
+[packages/medusa/src/services/idempotency-key.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/idempotency-key.ts#L64)
___
@@ -182,7 +182,7 @@ the existing or created idempotency key
#### Defined in
-[packages/medusa/src/services/idempotency-key.ts:37](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/idempotency-key.ts#L37)
+[packages/medusa/src/services/idempotency-key.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/idempotency-key.ts#L38)
___
@@ -206,7 +206,7 @@ result of the update operation
#### Defined in
-[packages/medusa/src/services/idempotency-key.ts:105](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/idempotency-key.ts#L105)
+[packages/medusa/src/services/idempotency-key.ts:106](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/idempotency-key.ts#L106)
___
@@ -230,7 +230,7 @@ idempotency key
#### Defined in
-[packages/medusa/src/services/idempotency-key.ts:81](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/idempotency-key.ts#L81)
+[packages/medusa/src/services/idempotency-key.ts:82](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/idempotency-key.ts#L82)
___
@@ -254,7 +254,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -289,7 +289,7 @@ result of the update operation
#### Defined in
-[packages/medusa/src/services/idempotency-key.ts:134](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/idempotency-key.ts#L134)
+[packages/medusa/src/services/idempotency-key.ts:135](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/idempotency-key.ts#L135)
___
@@ -313,7 +313,7 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
___
@@ -342,4 +342,4 @@ new updated idempotency key
#### Defined in
-[packages/medusa/src/services/idempotency-key.ts:163](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/idempotency-key.ts#L163)
+[packages/medusa/src/services/idempotency-key.ts:164](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/idempotency-key.ts#L164)
diff --git a/docs/content/references/services/classes/InventoryService.md b/docs/content/references/services/classes/InventoryService.md
index 02c4a41739..e890c07d48 100644
--- a/docs/content/references/services/classes/InventoryService.md
+++ b/docs/content/references/services/classes/InventoryService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/inventory.ts:18](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/inventory.ts#L18)
+[packages/medusa/src/services/inventory.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/inventory.ts#L18)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -66,7 +66,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/inventory.ts:15](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/inventory.ts#L15)
+[packages/medusa/src/services/inventory.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/inventory.ts#L15)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[packages/medusa/src/services/inventory.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/inventory.ts#L13)
+[packages/medusa/src/services/inventory.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/inventory.ts#L13)
___
@@ -90,7 +90,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/inventory.ts:16](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/inventory.ts#L16)
+[packages/medusa/src/services/inventory.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/inventory.ts#L16)
## Methods
@@ -115,7 +115,7 @@ resolves to the update result.
#### Defined in
-[packages/medusa/src/services/inventory.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/inventory.ts#L31)
+[packages/medusa/src/services/inventory.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/inventory.ts#L31)
___
@@ -154,7 +154,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -181,7 +181,7 @@ true if the inventory covers the quantity
#### Defined in
-[packages/medusa/src/services/inventory.ts:63](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/inventory.ts#L63)
+[packages/medusa/src/services/inventory.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/inventory.ts#L63)
___
@@ -205,7 +205,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -229,4 +229,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/LineItemService.md b/docs/content/references/services/classes/LineItemService.md
index 5bed1099ac..54cc0e1d0b 100644
--- a/docs/content/references/services/classes/LineItemService.md
+++ b/docs/content/references/services/classes/LineItemService.md
@@ -26,7 +26,7 @@ BaseService.constructor
#### Defined in
-[packages/medusa/src/services/line-item.ts:52](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L52)
+[packages/medusa/src/services/line-item.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L52)
## Properties
@@ -36,7 +36,7 @@ BaseService.constructor
#### Defined in
-[packages/medusa/src/services/line-item.ts:44](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L44)
+[packages/medusa/src/services/line-item.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L44)
___
@@ -46,7 +46,7 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:49](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L49)
+[packages/medusa/src/services/line-item.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L49)
___
@@ -56,7 +56,7 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L43)
+[packages/medusa/src/services/line-item.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L43)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L50)
+[packages/medusa/src/services/line-item.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L50)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:42](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L42)
+[packages/medusa/src/services/line-item.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L42)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:41](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L41)
+[packages/medusa/src/services/line-item.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L41)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:47](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L47)
+[packages/medusa/src/services/line-item.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L47)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:46](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L46)
+[packages/medusa/src/services/line-item.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L46)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:45](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L45)
+[packages/medusa/src/services/line-item.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L45)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:48](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L48)
+[packages/medusa/src/services/line-item.ts:48](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L48)
## Methods
@@ -150,7 +150,7 @@ the created line item
#### Defined in
-[packages/medusa/src/services/line-item.ts:292](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L292)
+[packages/medusa/src/services/line-item.ts:292](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L292)
___
@@ -176,7 +176,7 @@ the created line items
#### Defined in
-[packages/medusa/src/services/line-item.ts:149](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L149)
+[packages/medusa/src/services/line-item.ts:149](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L149)
___
@@ -209,7 +209,7 @@ a new line item tax line
#### Defined in
-[packages/medusa/src/services/line-item.ts:359](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L359)
+[packages/medusa/src/services/line-item.ts:359](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L359)
___
@@ -233,7 +233,7 @@ the result of the delete operation
#### Defined in
-[packages/medusa/src/services/line-item.ts:340](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L340)
+[packages/medusa/src/services/line-item.ts:340](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L340)
___
@@ -261,7 +261,7 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:202](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L202)
+[packages/medusa/src/services/line-item.ts:202](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L202)
___
@@ -282,7 +282,7 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:101](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L101)
+[packages/medusa/src/services/line-item.ts:101](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L101)
___
@@ -307,7 +307,7 @@ the line item
#### Defined in
-[packages/medusa/src/services/line-item.ts:121](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L121)
+[packages/medusa/src/services/line-item.ts:121](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L121)
___
@@ -332,7 +332,7 @@ the update line item
#### Defined in
-[packages/medusa/src/services/line-item.ts:311](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L311)
+[packages/medusa/src/services/line-item.ts:311](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L311)
___
@@ -352,4 +352,4 @@ ___
#### Defined in
-[packages/medusa/src/services/line-item.ts:78](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/line-item.ts#L78)
+[packages/medusa/src/services/line-item.ts:78](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/line-item.ts#L78)
diff --git a/docs/content/references/services/classes/MiddlewareService.md b/docs/content/references/services/classes/MiddlewareService.md
index 92a730bd39..48edb125fa 100644
--- a/docs/content/references/services/classes/MiddlewareService.md
+++ b/docs/content/references/services/classes/MiddlewareService.md
@@ -10,7 +10,7 @@ Orchestrates dynamic middleware registered through the Medusa Middleware API
#### Defined in
-[packages/medusa/src/services/middleware.ts:22](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L22)
+[packages/medusa/src/services/middleware.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L22)
## Properties
@@ -20,7 +20,7 @@ Orchestrates dynamic middleware registered through the Medusa Middleware API
#### Defined in
-[packages/medusa/src/services/middleware.ts:17](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L17)
+[packages/medusa/src/services/middleware.ts:17](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L17)
___
@@ -30,7 +30,7 @@ ___
#### Defined in
-[packages/medusa/src/services/middleware.ts:18](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L18)
+[packages/medusa/src/services/middleware.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L18)
___
@@ -40,7 +40,7 @@ ___
#### Defined in
-[packages/medusa/src/services/middleware.ts:19](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L19)
+[packages/medusa/src/services/middleware.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L19)
___
@@ -50,7 +50,7 @@ ___
#### Defined in
-[packages/medusa/src/services/middleware.ts:20](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L20)
+[packages/medusa/src/services/middleware.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L20)
## Methods
@@ -75,7 +75,7 @@ void
#### Defined in
-[packages/medusa/src/services/middleware.ts:60](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L60)
+[packages/medusa/src/services/middleware.ts:60](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L60)
___
@@ -100,7 +100,7 @@ void
#### Defined in
-[packages/medusa/src/services/middleware.ts:79](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L79)
+[packages/medusa/src/services/middleware.ts:79](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L79)
___
@@ -122,7 +122,7 @@ Adds a middleware function to be called before cart creation
#### Defined in
-[packages/medusa/src/services/middleware.ts:96](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L96)
+[packages/medusa/src/services/middleware.ts:96](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L96)
___
@@ -143,7 +143,7 @@ ___
#### Defined in
-[packages/medusa/src/services/middleware.ts:29](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L29)
+[packages/medusa/src/services/middleware.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L29)
___
@@ -163,7 +163,7 @@ ___
#### Defined in
-[packages/medusa/src/services/middleware.ts:34](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L34)
+[packages/medusa/src/services/middleware.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L34)
___
@@ -185,7 +185,7 @@ Adds post authentication middleware to an express app.
#### Defined in
-[packages/medusa/src/services/middleware.ts:106](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L106)
+[packages/medusa/src/services/middleware.ts:106](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L106)
___
@@ -207,7 +207,7 @@ Adds pre authentication middleware to an express app.
#### Defined in
-[packages/medusa/src/services/middleware.ts:117](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L117)
+[packages/medusa/src/services/middleware.ts:117](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L117)
___
@@ -221,7 +221,7 @@ ___
#### Defined in
-[packages/medusa/src/services/middleware.ts:123](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L123)
+[packages/medusa/src/services/middleware.ts:123](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L123)
___
@@ -245,4 +245,4 @@ nothing if the middleware is a function
#### Defined in
-[packages/medusa/src/services/middleware.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/middleware.ts#L43)
+[packages/medusa/src/services/middleware.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/middleware.ts#L43)
diff --git a/docs/content/references/services/classes/NoteService.md b/docs/content/references/services/classes/NoteService.md
index 71f8391978..b7b491eb9f 100644
--- a/docs/content/references/services/classes/NoteService.md
+++ b/docs/content/references/services/classes/NoteService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/note.ts:29](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/note.ts#L29)
+[packages/medusa/src/services/note.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/note.ts#L29)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/note.ts:27](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/note.ts#L27)
+[packages/medusa/src/services/note.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/note.ts#L27)
___
@@ -76,7 +76,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/note.ts:24](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/note.ts#L24)
+[packages/medusa/src/services/note.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/note.ts#L24)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[packages/medusa/src/services/note.ts:26](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/note.ts#L26)
+[packages/medusa/src/services/note.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/note.ts#L26)
___
@@ -100,7 +100,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/note.ts:25](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/note.ts#L25)
+[packages/medusa/src/services/note.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/note.ts#L25)
___
@@ -118,7 +118,7 @@ ___
#### Defined in
-[packages/medusa/src/services/note.ts:18](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/note.ts#L18)
+[packages/medusa/src/services/note.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/note.ts#L18)
## Methods
@@ -157,7 +157,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -183,7 +183,7 @@ resolves to the creation result
#### Defined in
-[packages/medusa/src/services/note.ts:96](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/note.ts#L96)
+[packages/medusa/src/services/note.ts:96](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/note.ts#L96)
___
@@ -205,7 +205,7 @@ Deletes a given note
#### Defined in
-[packages/medusa/src/services/note.ts:154](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/note.ts#L154)
+[packages/medusa/src/services/note.ts:154](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/note.ts#L154)
___
@@ -230,7 +230,7 @@ notes related to the given search.
#### Defined in
-[packages/medusa/src/services/note.ts:75](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/note.ts#L75)
+[packages/medusa/src/services/note.ts:75](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/note.ts#L75)
___
@@ -255,7 +255,7 @@ which resolves to the requested note.
#### Defined in
-[packages/medusa/src/services/note.ts:47](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/note.ts#L47)
+[packages/medusa/src/services/note.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/note.ts#L47)
___
@@ -279,7 +279,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -304,7 +304,7 @@ resolves to the updated element
#### Defined in
-[packages/medusa/src/services/note.ts:132](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/note.ts#L132)
+[packages/medusa/src/services/note.ts:132](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/note.ts#L132)
___
@@ -328,4 +328,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/NotificationService.md b/docs/content/references/services/classes/NotificationService.md
index 681021af4f..1ab99ba7dd 100644
--- a/docs/content/references/services/classes/NotificationService.md
+++ b/docs/content/references/services/classes/NotificationService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/notification.ts:35](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L35)
+[packages/medusa/src/services/notification.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L35)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/notification.ts:27](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L27)
+[packages/medusa/src/services/notification.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L27)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[packages/medusa/src/services/notification.ts:28](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L28)
+[packages/medusa/src/services/notification.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L28)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[packages/medusa/src/services/notification.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L31)
+[packages/medusa/src/services/notification.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L31)
___
@@ -96,7 +96,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/notification.ts:23](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L23)
+[packages/medusa/src/services/notification.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L23)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[packages/medusa/src/services/notification.ts:33](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L33)
+[packages/medusa/src/services/notification.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L33)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[packages/medusa/src/services/notification.ts:32](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L32)
+[packages/medusa/src/services/notification.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L32)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[packages/medusa/src/services/notification.ts:26](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L26)
+[packages/medusa/src/services/notification.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L26)
___
@@ -140,7 +140,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/notification.ts:24](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L24)
+[packages/medusa/src/services/notification.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L24)
## Methods
@@ -179,7 +179,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -206,7 +206,7 @@ the result of notification subscribed
#### Defined in
-[packages/medusa/src/services/notification.ts:173](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L173)
+[packages/medusa/src/services/notification.ts:173](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L173)
___
@@ -231,7 +231,7 @@ the notifications that satisfy the query.
#### Defined in
-[packages/medusa/src/services/notification.ts:85](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L85)
+[packages/medusa/src/services/notification.ts:85](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L85)
___
@@ -254,7 +254,7 @@ used to generate on demand invoices or other documents.
#### Defined in
-[packages/medusa/src/services/notification.ts:61](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L61)
+[packages/medusa/src/services/notification.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L61)
___
@@ -276,7 +276,7 @@ Takes a list of notification provider ids and persists them in the database.
#### Defined in
-[packages/medusa/src/services/notification.ts:69](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L69)
+[packages/medusa/src/services/notification.ts:69](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L69)
___
@@ -302,7 +302,7 @@ the newly created notification
#### Defined in
-[packages/medusa/src/services/notification.ts:253](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L253)
+[packages/medusa/src/services/notification.ts:253](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L253)
___
@@ -327,7 +327,7 @@ the notification
#### Defined in
-[packages/medusa/src/services/notification.ts:106](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L106)
+[packages/medusa/src/services/notification.ts:106](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L106)
___
@@ -352,7 +352,7 @@ the notification provider
#### Defined in
-[packages/medusa/src/services/notification.ts:154](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L154)
+[packages/medusa/src/services/notification.ts:154](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L154)
___
@@ -379,7 +379,7 @@ the created notification
#### Defined in
-[packages/medusa/src/services/notification.ts:205](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L205)
+[packages/medusa/src/services/notification.ts:205](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L205)
___
@@ -403,7 +403,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -426,7 +426,7 @@ Subscribes a given provider to an event.
#### Defined in
-[packages/medusa/src/services/notification.ts:133](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/notification.ts#L133)
+[packages/medusa/src/services/notification.ts:133](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/notification.ts#L133)
___
@@ -450,4 +450,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/OauthService.md b/docs/content/references/services/classes/OauthService.md
index 28603c222b..c96df22297 100644
--- a/docs/content/references/services/classes/OauthService.md
+++ b/docs/content/references/services/classes/OauthService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/oauth.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L31)
+[packages/medusa/src/services/oauth.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L31)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:27](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L27)
+[packages/medusa/src/services/oauth.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L27)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:29](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L29)
+[packages/medusa/src/services/oauth.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L29)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:26](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L26)
+[packages/medusa/src/services/oauth.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L26)
___
@@ -96,7 +96,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/oauth.ts:19](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L19)
+[packages/medusa/src/services/oauth.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L19)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:28](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L28)
+[packages/medusa/src/services/oauth.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L28)
___
@@ -120,7 +120,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/oauth.ts:20](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L20)
+[packages/medusa/src/services/oauth.ts:20](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L20)
___
@@ -137,7 +137,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:21](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L21)
+[packages/medusa/src/services/oauth.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L21)
## Methods
@@ -176,7 +176,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -196,7 +196,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:81](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L81)
+[packages/medusa/src/services/oauth.ts:81](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L81)
___
@@ -218,7 +218,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:119](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L119)
+[packages/medusa/src/services/oauth.ts:119](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L119)
___
@@ -238,7 +238,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:73](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L73)
+[packages/medusa/src/services/oauth.ts:73](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L73)
___
@@ -258,7 +258,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:153](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L153)
+[packages/medusa/src/services/oauth.ts:153](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L153)
___
@@ -278,7 +278,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:109](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L109)
+[packages/medusa/src/services/oauth.ts:109](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L109)
___
@@ -298,7 +298,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:57](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L57)
+[packages/medusa/src/services/oauth.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L57)
___
@@ -318,7 +318,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:41](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L41)
+[packages/medusa/src/services/oauth.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L41)
___
@@ -342,7 +342,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -363,7 +363,7 @@ ___
#### Defined in
-[packages/medusa/src/services/oauth.ts:96](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/oauth.ts#L96)
+[packages/medusa/src/services/oauth.ts:96](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/oauth.ts#L96)
___
@@ -387,4 +387,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/OrderEditService.md b/docs/content/references/services/classes/OrderEditService.md
new file mode 100644
index 0000000000..b6fc48aab7
--- /dev/null
+++ b/docs/content/references/services/classes/OrderEditService.md
@@ -0,0 +1,231 @@
+# Class: OrderEditService
+
+## Hierarchy
+
+- `TransactionBaseService`
+
+ ↳ **`OrderEditService`**
+
+## Constructors
+
+### constructor
+
+• **new OrderEditService**(`__namedParameters`)
+
+#### Parameters
+
+| Name | Type |
+| :------ | :------ |
+| `__namedParameters` | `InjectedDependencies` |
+
+#### Overrides
+
+TransactionBaseService.constructor
+
+#### Defined in
+
+[packages/medusa/src/services/order-edit.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order-edit.ts#L27)
+
+## Properties
+
+### \_\_configModule\_\_
+
+• `Protected` `Optional` `Readonly` **\_\_configModule\_\_**: `Record`<`string`, `unknown`\>
+
+#### Inherited from
+
+TransactionBaseService.\_\_configModule\_\_
+
+#### Defined in
+
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+
+___
+
+### \_\_container\_\_
+
+• `Protected` `Readonly` **\_\_container\_\_**: `any`
+
+#### Inherited from
+
+TransactionBaseService.\_\_container\_\_
+
+#### Defined in
+
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+
+___
+
+### manager\_
+
+• `Protected` `Readonly` **manager\_**: `EntityManager`
+
+#### Overrides
+
+TransactionBaseService.manager\_
+
+#### Defined in
+
+[packages/medusa/src/services/order-edit.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order-edit.ts#L23)
+
+___
+
+### orderEditRepository\_
+
+• `Protected` `Readonly` **orderEditRepository\_**: typeof `OrderEditRepository`
+
+#### Defined in
+
+[packages/medusa/src/services/order-edit.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order-edit.ts#L24)
+
+___
+
+### orderService\_
+
+• `Protected` `Readonly` **orderService\_**: [`OrderService`](OrderService.md)
+
+#### Defined in
+
+[packages/medusa/src/services/order-edit.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order-edit.ts#L25)
+
+___
+
+### transactionManager\_
+
+• `Protected` **transactionManager\_**: `undefined` \| `EntityManager`
+
+#### Overrides
+
+TransactionBaseService.transactionManager\_
+
+#### Defined in
+
+[packages/medusa/src/services/order-edit.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order-edit.ts#L22)
+
+## Methods
+
+### atomicPhase\_
+
+▸ `Protected` **atomicPhase_**<`TResult`, `TError`\>(`work`, `isolationOrErrorHandler?`, `maybeErrorHandlerOrDontFail?`): `Promise`<`TResult`\>
+
+Wraps some work within a transactional block. If the service already has
+a transaction manager attached this will be reused, otherwise a new
+transaction manager is created.
+
+#### Type parameters
+
+| Name |
+| :------ |
+| `TResult` |
+| `TError` |
+
+#### Parameters
+
+| Name | Type | Description |
+| :------ | :------ | :------ |
+| `work` | (`transactionManager`: `EntityManager`) => `Promise`<`TResult`\> | the transactional work to be done |
+| `isolationOrErrorHandler?` | `IsolationLevel` \| (`error`: `TError`) => `Promise`<`void` \| `TResult`\> | the isolation level to be used for the work. |
+| `maybeErrorHandlerOrDontFail?` | (`error`: `TError`) => `Promise`<`void` \| `TResult`\> | Potential error handler |
+
+#### Returns
+
+`Promise`<`TResult`\>
+
+the result of the transactional work
+
+#### Inherited from
+
+TransactionBaseService.atomicPhase\_
+
+#### Defined in
+
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+
+___
+
+### computeLineItems
+
+▸ **computeLineItems**(`orderEditId`): `Promise`<{ `items`: `LineItem`[] ; `removedItems`: `LineItem`[] }\>
+
+#### Parameters
+
+| Name | Type |
+| :------ | :------ |
+| `orderEditId` | `string` |
+
+#### Returns
+
+`Promise`<{ `items`: `LineItem`[] ; `removedItems`: `LineItem`[] }\>
+
+#### Defined in
+
+[packages/medusa/src/services/order-edit.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order-edit.ts#L64)
+
+___
+
+### retrieve
+
+▸ **retrieve**(`orderEditId`, `config?`): `Promise`<`OrderEdit`\>
+
+#### Parameters
+
+| Name | Type |
+| :------ | :------ |
+| `orderEditId` | `string` |
+| `config` | `FindConfig`<`OrderEdit`\> |
+
+#### Returns
+
+`Promise`<`OrderEdit`\>
+
+#### Defined in
+
+[packages/medusa/src/services/order-edit.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order-edit.ts#L40)
+
+___
+
+### shouldRetryTransaction\_
+
+▸ `Protected` **shouldRetryTransaction_**(`err`): `boolean`
+
+#### Parameters
+
+| Name | Type |
+| :------ | :------ |
+| `err` | `Record`<`string`, `unknown`\> \| { `code`: `string` } |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+TransactionBaseService.shouldRetryTransaction\_
+
+#### Defined in
+
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+
+___
+
+### withTransaction
+
+▸ **withTransaction**(`transactionManager?`): [`OrderEditService`](OrderEditService.md)
+
+#### Parameters
+
+| Name | Type |
+| :------ | :------ |
+| `transactionManager?` | `EntityManager` |
+
+#### Returns
+
+[`OrderEditService`](OrderEditService.md)
+
+#### Inherited from
+
+TransactionBaseService.withTransaction
+
+#### Defined in
+
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/OrderService.md b/docs/content/references/services/classes/OrderService.md
index 9d8519fb11..e821d0c764 100644
--- a/docs/content/references/services/classes/OrderService.md
+++ b/docs/content/references/services/classes/OrderService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/order.ts:108](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L108)
+[packages/medusa/src/services/order.ts:108](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L108)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:102](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L102)
+[packages/medusa/src/services/order.ts:102](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L102)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:101](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L101)
+[packages/medusa/src/services/order.ts:101](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L101)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:91](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L91)
+[packages/medusa/src/services/order.ts:91](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L91)
___
@@ -92,7 +92,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:95](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L95)
+[packages/medusa/src/services/order.ts:95](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L95)
___
@@ -102,7 +102,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:104](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L104)
+[packages/medusa/src/services/order.ts:104](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L104)
___
@@ -112,7 +112,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:106](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L106)
+[packages/medusa/src/services/order.ts:106](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L106)
___
@@ -122,7 +122,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:96](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L96)
+[packages/medusa/src/services/order.ts:96](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L96)
___
@@ -132,7 +132,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:97](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L97)
+[packages/medusa/src/services/order.ts:97](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L97)
___
@@ -142,7 +142,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:103](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L103)
+[packages/medusa/src/services/order.ts:103](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L103)
___
@@ -152,7 +152,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:105](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L105)
+[packages/medusa/src/services/order.ts:105](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L105)
___
@@ -162,7 +162,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:98](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L98)
+[packages/medusa/src/services/order.ts:98](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L98)
___
@@ -176,7 +176,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/order.ts:87](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L87)
+[packages/medusa/src/services/order.ts:87](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L87)
___
@@ -186,7 +186,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:90](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L90)
+[packages/medusa/src/services/order.ts:90](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L90)
___
@@ -196,7 +196,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:92](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L92)
+[packages/medusa/src/services/order.ts:92](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L92)
___
@@ -206,7 +206,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:100](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L100)
+[packages/medusa/src/services/order.ts:100](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L100)
___
@@ -216,7 +216,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:93](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L93)
+[packages/medusa/src/services/order.ts:93](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L93)
___
@@ -226,7 +226,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:94](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L94)
+[packages/medusa/src/services/order.ts:94](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L94)
___
@@ -236,7 +236,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:99](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L99)
+[packages/medusa/src/services/order.ts:99](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L99)
___
@@ -250,7 +250,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/order.ts:88](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L88)
+[packages/medusa/src/services/order.ts:88](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L88)
___
@@ -281,7 +281,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:68](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L68)
+[packages/medusa/src/services/order.ts:68](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L68)
## Methods
@@ -304,7 +304,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:831](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L831)
+[packages/medusa/src/services/order.ts:831](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L831)
___
@@ -329,7 +329,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/order.ts:1360](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L1360)
+[packages/medusa/src/services/order.ts:1360](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L1360)
___
@@ -368,7 +368,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -394,7 +394,7 @@ result of the update operation.
#### Defined in
-[packages/medusa/src/services/order.ts:985](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L985)
+[packages/medusa/src/services/order.ts:985](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L985)
___
@@ -418,7 +418,7 @@ updated order
#### Defined in
-[packages/medusa/src/services/order.ts:1297](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L1297)
+[packages/medusa/src/services/order.ts:1297](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L1297)
___
@@ -442,7 +442,7 @@ result of the update operation.
#### Defined in
-[packages/medusa/src/services/order.ts:1064](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L1064)
+[packages/medusa/src/services/order.ts:1064](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L1064)
___
@@ -464,7 +464,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/order.ts:464](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L464)
+[packages/medusa/src/services/order.ts:464](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L464)
___
@@ -488,7 +488,7 @@ resolves to the creation result.
#### Defined in
-[packages/medusa/src/services/order.ts:492](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L492)
+[packages/medusa/src/services/order.ts:492](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L492)
___
@@ -519,7 +519,7 @@ result of the update operation.
#### Defined in
-[packages/medusa/src/services/order.ts:1170](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L1170)
+[packages/medusa/src/services/order.ts:1170](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L1170)
___
@@ -548,7 +548,7 @@ the result of the refund operation.
#### Defined in
-[packages/medusa/src/services/order.ts:1386](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L1386)
+[packages/medusa/src/services/order.ts:1386](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L1386)
___
@@ -579,7 +579,7 @@ the resulting order following the update.
#### Defined in
-[packages/medusa/src/services/order.ts:671](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L671)
+[packages/medusa/src/services/order.ts:671](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L671)
___
@@ -600,7 +600,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:1435](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L1435)
+[packages/medusa/src/services/order.ts:1435](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L1435)
___
@@ -624,7 +624,7 @@ the order document
#### Defined in
-[packages/medusa/src/services/order.ts:455](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L455)
+[packages/medusa/src/services/order.ts:455](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L455)
___
@@ -650,7 +650,7 @@ the line items generated by the transformer.
#### Defined in
-[packages/medusa/src/services/order.ts:1339](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L1339)
+[packages/medusa/src/services/order.ts:1339](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L1339)
___
@@ -673,7 +673,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/order.ts:156](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L156)
+[packages/medusa/src/services/order.ts:156](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L156)
___
@@ -696,7 +696,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/order.ts:191](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L191)
+[packages/medusa/src/services/order.ts:191](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L191)
___
@@ -728,7 +728,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/order.ts:1556](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L1556)
+[packages/medusa/src/services/order.ts:1556](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L1556)
___
@@ -753,7 +753,7 @@ the order document
#### Defined in
-[packages/medusa/src/services/order.ts:334](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L334)
+[packages/medusa/src/services/order.ts:334](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L334)
___
@@ -778,7 +778,7 @@ the order document
#### Defined in
-[packages/medusa/src/services/order.ts:375](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L375)
+[packages/medusa/src/services/order.ts:375](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L375)
___
@@ -803,7 +803,7 @@ the order document
#### Defined in
-[packages/medusa/src/services/order.ts:415](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L415)
+[packages/medusa/src/services/order.ts:415](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L415)
___
@@ -827,7 +827,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -853,7 +853,7 @@ ___
#### Defined in
-[packages/medusa/src/services/order.ts:257](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L257)
+[packages/medusa/src/services/order.ts:257](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L257)
___
@@ -880,7 +880,7 @@ resolves to the update result.
#### Defined in
-[packages/medusa/src/services/order.ts:896](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L896)
+[packages/medusa/src/services/order.ts:896](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L896)
___
@@ -905,7 +905,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/order.ts:759](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L759)
+[packages/medusa/src/services/order.ts:759](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L759)
___
@@ -930,7 +930,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/order.ts:799](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L799)
+[packages/medusa/src/services/order.ts:799](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L799)
___
@@ -959,7 +959,7 @@ a line item that has the requested fulfillment quantity
#### Defined in
-[packages/medusa/src/services/order.ts:1137](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/order.ts#L1137)
+[packages/medusa/src/services/order.ts:1137](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/order.ts#L1137)
___
@@ -983,4 +983,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/PaymentProviderService.md b/docs/content/references/services/classes/PaymentProviderService.md
index 7b7a2498dd..34e8e23f52 100644
--- a/docs/content/references/services/classes/PaymentProviderService.md
+++ b/docs/content/references/services/classes/PaymentProviderService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:45](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L45)
+[packages/medusa/src/services/payment-provider.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L45)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:39](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L39)
+[packages/medusa/src/services/payment-provider.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L39)
___
@@ -78,7 +78,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:37](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L37)
+[packages/medusa/src/services/payment-provider.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L37)
___
@@ -88,7 +88,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:41](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L41)
+[packages/medusa/src/services/payment-provider.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L41)
___
@@ -98,7 +98,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:42](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L42)
+[packages/medusa/src/services/payment-provider.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L42)
___
@@ -108,7 +108,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:40](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L40)
+[packages/medusa/src/services/payment-provider.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L40)
___
@@ -118,7 +118,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L43)
+[packages/medusa/src/services/payment-provider.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L43)
___
@@ -132,7 +132,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:38](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L38)
+[packages/medusa/src/services/payment-provider.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L38)
## Methods
@@ -171,7 +171,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -192,7 +192,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:349](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L349)
+[packages/medusa/src/services/payment-provider.ts:349](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L349)
___
@@ -212,7 +212,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:398](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L398)
+[packages/medusa/src/services/payment-provider.ts:398](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L398)
___
@@ -232,7 +232,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:423](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L423)
+[packages/medusa/src/services/payment-provider.ts:423](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L423)
___
@@ -252,7 +252,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:300](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L300)
+[packages/medusa/src/services/payment-provider.ts:300](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L300)
___
@@ -277,7 +277,7 @@ the payment session
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:158](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L158)
+[packages/medusa/src/services/payment-provider.ts:158](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L158)
___
@@ -297,7 +297,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:246](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L246)
+[packages/medusa/src/services/payment-provider.ts:246](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L246)
___
@@ -317,7 +317,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:418](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L418)
+[packages/medusa/src/services/payment-provider.ts:418](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L418)
___
@@ -331,7 +331,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:75](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L75)
+[packages/medusa/src/services/payment-provider.ts:75](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L75)
___
@@ -352,7 +352,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:110](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L110)
+[packages/medusa/src/services/payment-provider.ts:110](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L110)
___
@@ -378,7 +378,7 @@ the payment session
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:189](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L189)
+[packages/medusa/src/services/payment-provider.ts:189](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L189)
___
@@ -401,7 +401,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:443](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L443)
+[packages/medusa/src/services/payment-provider.ts:443](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L443)
___
@@ -421,7 +421,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:56](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L56)
+[packages/medusa/src/services/payment-provider.ts:56](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L56)
___
@@ -442,7 +442,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:82](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L82)
+[packages/medusa/src/services/payment-provider.ts:82](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L82)
___
@@ -472,7 +472,7 @@ the payment provider
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:276](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L276)
+[packages/medusa/src/services/payment-provider.ts:276](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L276)
___
@@ -493,7 +493,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:527](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L527)
+[packages/medusa/src/services/payment-provider.ts:527](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L527)
___
@@ -514,7 +514,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:123](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L123)
+[packages/medusa/src/services/payment-provider.ts:123](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L123)
___
@@ -538,7 +538,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -561,7 +561,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:327](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L327)
+[packages/medusa/src/services/payment-provider.ts:327](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L327)
___
@@ -586,7 +586,7 @@ the updated payment session
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:228](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L228)
+[packages/medusa/src/services/payment-provider.ts:228](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L228)
___
@@ -607,7 +607,7 @@ ___
#### Defined in
-[packages/medusa/src/services/payment-provider.ts:377](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/payment-provider.ts#L377)
+[packages/medusa/src/services/payment-provider.ts:377](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/payment-provider.ts#L377)
___
@@ -631,4 +631,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/PricingService.md b/docs/content/references/services/classes/PricingService.md
index ef7a447a58..119919bf84 100644
--- a/docs/content/references/services/classes/PricingService.md
+++ b/docs/content/references/services/classes/PricingService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/pricing.ts:45](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L45)
+[packages/medusa/src/services/pricing.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L45)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/pricing.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L43)
+[packages/medusa/src/services/pricing.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L43)
___
@@ -78,7 +78,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/pricing.ts:37](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L37)
+[packages/medusa/src/services/pricing.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L37)
___
@@ -88,7 +88,7 @@ ___
#### Defined in
-[packages/medusa/src/services/pricing.ts:41](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L41)
+[packages/medusa/src/services/pricing.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L41)
___
@@ -98,7 +98,7 @@ ___
#### Defined in
-[packages/medusa/src/services/pricing.ts:42](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L42)
+[packages/medusa/src/services/pricing.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L42)
___
@@ -108,7 +108,7 @@ ___
#### Defined in
-[packages/medusa/src/services/pricing.ts:39](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L39)
+[packages/medusa/src/services/pricing.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L39)
___
@@ -118,7 +118,7 @@ ___
#### Defined in
-[packages/medusa/src/services/pricing.ts:40](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L40)
+[packages/medusa/src/services/pricing.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L40)
___
@@ -132,7 +132,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/pricing.ts:38](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L38)
+[packages/medusa/src/services/pricing.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L38)
## Methods
@@ -171,7 +171,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -196,7 +196,7 @@ The tax related variant prices.
#### Defined in
-[packages/medusa/src/services/pricing.ts:105](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L105)
+[packages/medusa/src/services/pricing.ts:105](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L105)
___
@@ -221,7 +221,7 @@ The pricing context
#### Defined in
-[packages/medusa/src/services/pricing.ts:70](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L70)
+[packages/medusa/src/services/pricing.ts:70](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L70)
___
@@ -247,7 +247,7 @@ A map of variant ids to their corresponding prices
#### Defined in
-[packages/medusa/src/services/pricing.ts:324](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L324)
+[packages/medusa/src/services/pricing.ts:324](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L324)
___
@@ -272,7 +272,7 @@ A map of variant ids to their corresponding prices
#### Defined in
-[packages/medusa/src/services/pricing.ts:342](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L342)
+[packages/medusa/src/services/pricing.ts:342](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L342)
___
@@ -294,7 +294,7 @@ ___
#### Defined in
-[packages/medusa/src/services/pricing.ts:286](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L286)
+[packages/medusa/src/services/pricing.ts:286](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L286)
___
@@ -319,7 +319,7 @@ The product variant prices
#### Defined in
-[packages/medusa/src/services/pricing.ts:214](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L214)
+[packages/medusa/src/services/pricing.ts:214](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L214)
___
@@ -344,7 +344,7 @@ The product variant prices
#### Defined in
-[packages/medusa/src/services/pricing.ts:252](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L252)
+[packages/medusa/src/services/pricing.ts:252](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L252)
___
@@ -366,7 +366,7 @@ ___
#### Defined in
-[packages/medusa/src/services/pricing.ts:167](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L167)
+[packages/medusa/src/services/pricing.ts:167](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L167)
___
@@ -391,7 +391,7 @@ The shipping option prices
#### Defined in
-[packages/medusa/src/services/pricing.ts:428](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L428)
+[packages/medusa/src/services/pricing.ts:428](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L428)
___
@@ -416,7 +416,7 @@ A list of products with variants decorated with prices
#### Defined in
-[packages/medusa/src/services/pricing.ts:385](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L385)
+[packages/medusa/src/services/pricing.ts:385](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L385)
___
@@ -441,7 +441,7 @@ A list of shipping options with prices
#### Defined in
-[packages/medusa/src/services/pricing.ts:490](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L490)
+[packages/medusa/src/services/pricing.ts:490](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L490)
___
@@ -466,7 +466,7 @@ A list of products with variants decorated with prices
#### Defined in
-[packages/medusa/src/services/pricing.ts:360](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/pricing.ts#L360)
+[packages/medusa/src/services/pricing.ts:360](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/pricing.ts#L360)
___
@@ -490,7 +490,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -514,4 +514,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/ProductCollectionService.md b/docs/content/references/services/classes/ProductCollectionService.md
index ca55282fb4..45a0be4fd3 100644
--- a/docs/content/references/services/classes/ProductCollectionService.md
+++ b/docs/content/references/services/classes/ProductCollectionService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/product-collection.ts:35](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L35)
+[packages/medusa/src/services/product-collection.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L35)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-collection.ts:30](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L30)
+[packages/medusa/src/services/product-collection.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L30)
___
@@ -78,7 +78,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/product-collection.ts:27](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L27)
+[packages/medusa/src/services/product-collection.ts:27](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L27)
___
@@ -88,7 +88,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-collection.ts:32](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L32)
+[packages/medusa/src/services/product-collection.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L32)
___
@@ -98,7 +98,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-collection.ts:33](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L33)
+[packages/medusa/src/services/product-collection.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L33)
___
@@ -112,7 +112,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/product-collection.ts:28](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L28)
+[packages/medusa/src/services/product-collection.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L28)
## Methods
@@ -133,7 +133,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/product-collection.ts:184](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L184)
+[packages/medusa/src/services/product-collection.ts:184](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L184)
___
@@ -172,7 +172,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -196,7 +196,7 @@ created collection
#### Defined in
-[packages/medusa/src/services/product-collection.ts:113](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L113)
+[packages/medusa/src/services/product-collection.ts:113](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L113)
___
@@ -220,7 +220,7 @@ empty promise
#### Defined in
-[packages/medusa/src/services/product-collection.ts:166](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L166)
+[packages/medusa/src/services/product-collection.ts:166](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L166)
___
@@ -247,7 +247,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/product-collection.ts:226](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L226)
+[packages/medusa/src/services/product-collection.ts:226](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L226)
___
@@ -272,7 +272,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/product-collection.ts:244](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L244)
+[packages/medusa/src/services/product-collection.ts:244](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L244)
___
@@ -293,7 +293,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-collection.ts:205](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L205)
+[packages/medusa/src/services/product-collection.ts:205](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L205)
___
@@ -318,7 +318,7 @@ the collection.
#### Defined in
-[packages/medusa/src/services/product-collection.ts:60](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L60)
+[packages/medusa/src/services/product-collection.ts:60](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L60)
___
@@ -343,7 +343,7 @@ the collection.
#### Defined in
-[packages/medusa/src/services/product-collection.ts:87](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L87)
+[packages/medusa/src/services/product-collection.ts:87](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L87)
___
@@ -367,7 +367,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -392,7 +392,7 @@ update collection
#### Defined in
-[packages/medusa/src/services/product-collection.ts:136](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-collection.ts#L136)
+[packages/medusa/src/services/product-collection.ts:136](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-collection.ts#L136)
___
@@ -416,4 +416,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/ProductService.md b/docs/content/references/services/classes/ProductService.md
index b592ad5da7..15c9dee9b5 100644
--- a/docs/content/references/services/classes/ProductService.md
+++ b/docs/content/references/services/classes/ProductService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/product.ts:73](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L73)
+[packages/medusa/src/services/product.ts:73](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L73)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:63](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L63)
+[packages/medusa/src/services/product.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L63)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:64](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L64)
+[packages/medusa/src/services/product.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L64)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:60](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L60)
+[packages/medusa/src/services/product.ts:60](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L60)
___
@@ -96,7 +96,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/product.ts:52](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L52)
+[packages/medusa/src/services/product.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L52)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:55](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L55)
+[packages/medusa/src/services/product.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L55)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:56](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L56)
+[packages/medusa/src/services/product.ts:56](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L56)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:59](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L59)
+[packages/medusa/src/services/product.ts:59](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L59)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:58](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L58)
+[packages/medusa/src/services/product.ts:58](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L58)
___
@@ -146,7 +146,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:57](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L57)
+[packages/medusa/src/services/product.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L57)
___
@@ -156,7 +156,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:61](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L61)
+[packages/medusa/src/services/product.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L61)
___
@@ -166,7 +166,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:62](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L62)
+[packages/medusa/src/services/product.ts:62](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L62)
___
@@ -180,7 +180,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/product.ts:53](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L53)
+[packages/medusa/src/services/product.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L53)
___
@@ -198,7 +198,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:67](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L67)
+[packages/medusa/src/services/product.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L67)
___
@@ -208,7 +208,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:66](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L66)
+[packages/medusa/src/services/product.ts:66](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L66)
## Methods
@@ -235,7 +235,7 @@ the result of the model update operation
#### Defined in
-[packages/medusa/src/services/product.ts:635](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L635)
+[packages/medusa/src/services/product.ts:635](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L635)
___
@@ -274,7 +274,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -298,7 +298,7 @@ the result of the count operation
#### Defined in
-[packages/medusa/src/services/product.ts:176](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L176)
+[packages/medusa/src/services/product.ts:176](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L176)
___
@@ -322,7 +322,7 @@ resolves to the creation result.
#### Defined in
-[packages/medusa/src/services/product.ts:344](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L344)
+[packages/medusa/src/services/product.ts:344](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L344)
___
@@ -347,7 +347,7 @@ empty promise
#### Defined in
-[packages/medusa/src/services/product.ts:601](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L601)
+[packages/medusa/src/services/product.ts:601](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L601)
___
@@ -372,7 +372,7 @@ the updated product
#### Defined in
-[packages/medusa/src/services/product.ts:800](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L800)
+[packages/medusa/src/services/product.ts:800](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L800)
___
@@ -394,7 +394,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:290](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L290)
+[packages/medusa/src/services/product.ts:290](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L290)
___
@@ -419,7 +419,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/product.ts:110](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L110)
+[packages/medusa/src/services/product.ts:110](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L110)
___
@@ -447,7 +447,7 @@ an array containing the products as
#### Defined in
-[packages/medusa/src/services/product.ts:146](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L146)
+[packages/medusa/src/services/product.ts:146](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L146)
___
@@ -467,7 +467,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:330](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L330)
+[packages/medusa/src/services/product.ts:330](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L330)
___
@@ -481,7 +481,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:321](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L321)
+[packages/medusa/src/services/product.ts:321](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L321)
___
@@ -513,7 +513,7 @@ an object containing the query, relations and free-text
#### Defined in
-[packages/medusa/src/services/product.ts:871](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L871)
+[packages/medusa/src/services/product.ts:871](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L871)
___
@@ -534,7 +534,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product.ts:678](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L678)
+[packages/medusa/src/services/product.ts:678](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L678)
___
@@ -560,7 +560,7 @@ the result of the find one operation.
#### Defined in
-[packages/medusa/src/services/product.ts:191](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L191)
+[packages/medusa/src/services/product.ts:191](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L191)
___
@@ -586,7 +586,7 @@ the result of the find one operation.
#### Defined in
-[packages/medusa/src/services/product.ts:221](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L221)
+[packages/medusa/src/services/product.ts:221](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L221)
___
@@ -612,7 +612,7 @@ the result of the find one operation.
#### Defined in
-[packages/medusa/src/services/product.ts:207](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L207)
+[packages/medusa/src/services/product.ts:207](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L207)
___
@@ -637,7 +637,7 @@ product option
#### Defined in
-[packages/medusa/src/services/product.ts:781](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L781)
+[packages/medusa/src/services/product.ts:781](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L781)
___
@@ -662,7 +662,7 @@ an array of variants
#### Defined in
-[packages/medusa/src/services/product.ts:272](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L272)
+[packages/medusa/src/services/product.ts:272](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L272)
___
@@ -688,7 +688,7 @@ the result of the find one operation.
#### Defined in
-[packages/medusa/src/services/product.ts:236](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L236)
+[packages/medusa/src/services/product.ts:236](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L236)
___
@@ -712,7 +712,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -739,7 +739,7 @@ resolves to the update result.
#### Defined in
-[packages/medusa/src/services/product.ts:443](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L443)
+[packages/medusa/src/services/product.ts:443](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L443)
___
@@ -766,7 +766,7 @@ the updated product
#### Defined in
-[packages/medusa/src/services/product.ts:724](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product.ts#L724)
+[packages/medusa/src/services/product.ts:724](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product.ts#L724)
___
@@ -790,4 +790,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/ProductTypeService.md b/docs/content/references/services/classes/ProductTypeService.md
index f98317927e..53f517ed59 100644
--- a/docs/content/references/services/classes/ProductTypeService.md
+++ b/docs/content/references/services/classes/ProductTypeService.md
@@ -26,7 +26,7 @@ BaseService.constructor
#### Defined in
-[packages/medusa/src/services/product-type.ts:16](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-type.ts#L16)
+[packages/medusa/src/services/product-type.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-type.ts#L16)
## Properties
@@ -36,7 +36,7 @@ BaseService.constructor
#### Defined in
-[packages/medusa/src/services/product-type.ts:14](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-type.ts#L14)
+[packages/medusa/src/services/product-type.ts:14](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-type.ts#L14)
___
@@ -46,7 +46,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-type.ts:15](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-type.ts#L15)
+[packages/medusa/src/services/product-type.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-type.ts#L15)
## Methods
@@ -71,7 +71,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/product-type.ts:72](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-type.ts#L72)
+[packages/medusa/src/services/product-type.ts:72](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-type.ts#L72)
___
@@ -96,7 +96,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/product-type.ts:88](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-type.ts#L88)
+[packages/medusa/src/services/product-type.ts:88](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-type.ts#L88)
___
@@ -122,7 +122,7 @@ the result of the find one operation.
#### Defined in
-[packages/medusa/src/services/product-type.ts:47](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-type.ts#L47)
+[packages/medusa/src/services/product-type.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-type.ts#L47)
___
@@ -142,4 +142,4 @@ ___
#### Defined in
-[packages/medusa/src/services/product-type.ts:23](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-type.ts#L23)
+[packages/medusa/src/services/product-type.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-type.ts#L23)
diff --git a/docs/content/references/services/classes/ProductVariantService.md b/docs/content/references/services/classes/ProductVariantService.md
index 3141f0aa5a..4f4447e733 100644
--- a/docs/content/references/services/classes/ProductVariantService.md
+++ b/docs/content/references/services/classes/ProductVariantService.md
@@ -26,7 +26,7 @@ BaseService.constructor
#### Defined in
-[packages/medusa/src/services/product-variant.ts:53](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L53)
+[packages/medusa/src/services/product-variant.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L53)
## Properties
@@ -36,7 +36,7 @@ BaseService.constructor
#### Defined in
-[packages/medusa/src/services/product-variant.ts:51](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L51)
+[packages/medusa/src/services/product-variant.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L51)
___
@@ -46,7 +46,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-variant.ts:46](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L46)
+[packages/medusa/src/services/product-variant.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L46)
___
@@ -56,7 +56,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-variant.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L43)
+[packages/medusa/src/services/product-variant.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L43)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-variant.ts:49](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L49)
+[packages/medusa/src/services/product-variant.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L49)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-variant.ts:48](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L48)
+[packages/medusa/src/services/product-variant.ts:48](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L48)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-variant.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L50)
+[packages/medusa/src/services/product-variant.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L50)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-variant.ts:45](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L45)
+[packages/medusa/src/services/product-variant.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L45)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-variant.ts:44](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L44)
+[packages/medusa/src/services/product-variant.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L44)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-variant.ts:47](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L47)
+[packages/medusa/src/services/product-variant.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L47)
___
@@ -134,7 +134,7 @@ ___
#### Defined in
-[packages/medusa/src/services/product-variant.ts:37](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L37)
+[packages/medusa/src/services/product-variant.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L37)
## Methods
@@ -164,7 +164,7 @@ the result of the update operation.
#### Defined in
-[packages/medusa/src/services/product-variant.ts:536](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L536)
+[packages/medusa/src/services/product-variant.ts:536](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L536)
___
@@ -190,7 +190,7 @@ resolves to the creation result.
#### Defined in
-[packages/medusa/src/services/product-variant.ts:184](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L184)
+[packages/medusa/src/services/product-variant.ts:184](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L184)
___
@@ -215,7 +215,7 @@ empty promise
#### Defined in
-[packages/medusa/src/services/product-variant.ts:689](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L689)
+[packages/medusa/src/services/product-variant.ts:689](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L689)
___
@@ -241,7 +241,7 @@ empty promise
#### Defined in
-[packages/medusa/src/services/product-variant.ts:563](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L563)
+[packages/medusa/src/services/product-variant.ts:563](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L563)
___
@@ -269,7 +269,7 @@ an array containing the products as the first element and the total
#### Defined in
-[packages/medusa/src/services/product-variant.ts:795](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L795)
+[packages/medusa/src/services/product-variant.ts:795](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L795)
___
@@ -296,7 +296,7 @@ the price specific to the region
#### Defined in
-[packages/medusa/src/services/product-variant.ts:411](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L411)
+[packages/medusa/src/services/product-variant.ts:411](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L411)
___
@@ -319,7 +319,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/product-variant.ts:631](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L631)
+[packages/medusa/src/services/product-variant.ts:631](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L631)
___
@@ -342,7 +342,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/product-variant.ts:590](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L590)
+[packages/medusa/src/services/product-variant.ts:590](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L590)
___
@@ -374,7 +374,7 @@ an object containing the query, relations and free-text
#### Defined in
-[packages/medusa/src/services/product-variant.ts:756](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L756)
+[packages/medusa/src/services/product-variant.ts:756](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L756)
___
@@ -399,7 +399,7 @@ the product document.
#### Defined in
-[packages/medusa/src/services/product-variant.ts:118](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L118)
+[packages/medusa/src/services/product-variant.ts:118](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L118)
___
@@ -424,7 +424,7 @@ the product document.
#### Defined in
-[packages/medusa/src/services/product-variant.ts:148](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L148)
+[packages/medusa/src/services/product-variant.ts:148](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L148)
___
@@ -449,7 +449,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/product-variant.ts:477](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L477)
+[packages/medusa/src/services/product-variant.ts:477](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L477)
___
@@ -474,7 +474,7 @@ updated metadata object
#### Defined in
-[packages/medusa/src/services/product-variant.ts:724](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L724)
+[packages/medusa/src/services/product-variant.ts:724](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L724)
___
@@ -499,7 +499,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/product-variant.ts:440](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L440)
+[packages/medusa/src/services/product-variant.ts:440](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L440)
___
@@ -526,7 +526,7 @@ resolves to the update result.
#### Defined in
-[packages/medusa/src/services/product-variant.ts:292](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L292)
+[packages/medusa/src/services/product-variant.ts:292](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L292)
___
@@ -553,7 +553,7 @@ the result of the update operation.
#### Defined in
-[packages/medusa/src/services/product-variant.ts:498](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L498)
+[packages/medusa/src/services/product-variant.ts:498](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L498)
___
@@ -579,7 +579,7 @@ empty promise
#### Defined in
-[packages/medusa/src/services/product-variant.ts:370](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L370)
+[packages/medusa/src/services/product-variant.ts:370](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L370)
___
@@ -599,4 +599,4 @@ ___
#### Defined in
-[packages/medusa/src/services/product-variant.ts:90](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/product-variant.ts#L90)
+[packages/medusa/src/services/product-variant.ts:90](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/product-variant.ts#L90)
diff --git a/docs/content/references/services/classes/RegionService.md b/docs/content/references/services/classes/RegionService.md
index 419cb9ee3b..dbcbe537f6 100644
--- a/docs/content/references/services/classes/RegionService.md
+++ b/docs/content/references/services/classes/RegionService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/region.ts:66](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L66)
+[packages/medusa/src/services/region.ts:66](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L66)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:60](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L60)
+[packages/medusa/src/services/region.ts:60](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L60)
___
@@ -74,7 +74,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:61](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L61)
+[packages/medusa/src/services/region.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L61)
___
@@ -84,7 +84,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:55](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L55)
+[packages/medusa/src/services/region.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L55)
___
@@ -94,7 +94,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:53](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L53)
+[packages/medusa/src/services/region.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L53)
___
@@ -104,7 +104,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:63](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L63)
+[packages/medusa/src/services/region.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L63)
___
@@ -114,7 +114,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:58](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L58)
+[packages/medusa/src/services/region.ts:58](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L58)
___
@@ -128,7 +128,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/region.ts:51](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L51)
+[packages/medusa/src/services/region.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L51)
___
@@ -138,7 +138,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:62](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L62)
+[packages/medusa/src/services/region.ts:62](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L62)
___
@@ -148,7 +148,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:57](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L57)
+[packages/medusa/src/services/region.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L57)
___
@@ -158,7 +158,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:59](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L59)
+[packages/medusa/src/services/region.ts:59](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L59)
___
@@ -168,7 +168,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:56](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L56)
+[packages/medusa/src/services/region.ts:56](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L56)
___
@@ -178,7 +178,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:64](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L64)
+[packages/medusa/src/services/region.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L64)
___
@@ -192,7 +192,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/region.ts:52](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L52)
+[packages/medusa/src/services/region.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L52)
___
@@ -210,7 +210,7 @@ ___
#### Defined in
-[packages/medusa/src/services/region.ts:45](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L45)
+[packages/medusa/src/services/region.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L45)
## Methods
@@ -235,7 +235,7 @@ the updated Region
#### Defined in
-[packages/medusa/src/services/region.ts:572](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L572)
+[packages/medusa/src/services/region.ts:572](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L572)
___
@@ -261,7 +261,7 @@ the updated Region
#### Defined in
-[packages/medusa/src/services/region.ts:702](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L702)
+[packages/medusa/src/services/region.ts:702](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L702)
___
@@ -287,7 +287,7 @@ the updated Region
#### Defined in
-[packages/medusa/src/services/region.ts:651](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L651)
+[packages/medusa/src/services/region.ts:651](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L651)
___
@@ -326,7 +326,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -350,7 +350,7 @@ the newly created region
#### Defined in
-[packages/medusa/src/services/region.ts:116](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L116)
+[packages/medusa/src/services/region.ts:116](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L116)
___
@@ -374,7 +374,7 @@ the result of the delete operation
#### Defined in
-[packages/medusa/src/services/region.ts:541](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L541)
+[packages/medusa/src/services/region.ts:541](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L541)
___
@@ -399,7 +399,7 @@ result of the find operation
#### Defined in
-[packages/medusa/src/services/region.ts:521](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L521)
+[packages/medusa/src/services/region.ts:521](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L521)
___
@@ -424,7 +424,7 @@ the updated Region
#### Defined in
-[packages/medusa/src/services/region.ts:610](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L610)
+[packages/medusa/src/services/region.ts:610](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L610)
___
@@ -449,7 +449,7 @@ the updated Region
#### Defined in
-[packages/medusa/src/services/region.ts:790](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L790)
+[packages/medusa/src/services/region.ts:790](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L790)
___
@@ -474,7 +474,7 @@ the updated Region
#### Defined in
-[packages/medusa/src/services/region.ts:751](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L751)
+[packages/medusa/src/services/region.ts:751](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L751)
___
@@ -499,7 +499,7 @@ the region
#### Defined in
-[packages/medusa/src/services/region.ts:493](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L493)
+[packages/medusa/src/services/region.ts:493](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L493)
___
@@ -524,7 +524,7 @@ a Region with country code
#### Defined in
-[packages/medusa/src/services/region.ts:436](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L436)
+[packages/medusa/src/services/region.ts:436](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L436)
___
@@ -548,7 +548,7 @@ region with the matching name
#### Defined in
-[packages/medusa/src/services/region.ts:473](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L473)
+[packages/medusa/src/services/region.ts:473](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L473)
___
@@ -572,7 +572,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -597,7 +597,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/region.ts:189](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L189)
+[packages/medusa/src/services/region.ts:189](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L189)
___
@@ -623,7 +623,7 @@ the validated Country
#### Defined in
-[packages/medusa/src/services/region.ts:387](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L387)
+[packages/medusa/src/services/region.ts:387](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L387)
___
@@ -651,7 +651,7 @@ void
#### Defined in
-[packages/medusa/src/services/region.ts:362](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L362)
+[packages/medusa/src/services/region.ts:362](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L362)
___
@@ -683,7 +683,7 @@ the validated region data
#### Defined in
-[packages/medusa/src/services/region.ts:260](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L260)
+[packages/medusa/src/services/region.ts:260](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L260)
___
@@ -711,7 +711,7 @@ void
#### Defined in
-[packages/medusa/src/services/region.ts:346](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/region.ts#L346)
+[packages/medusa/src/services/region.ts:346](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/region.ts#L346)
___
@@ -735,4 +735,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/ReturnReasonService.md b/docs/content/references/services/classes/ReturnReasonService.md
index 4a476156ae..c522e6bf0e 100644
--- a/docs/content/references/services/classes/ReturnReasonService.md
+++ b/docs/content/references/services/classes/ReturnReasonService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/return-reason.ts:21](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return-reason.ts#L21)
+[packages/medusa/src/services/return-reason.ts:21](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return-reason.ts#L21)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -66,7 +66,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/return-reason.ts:18](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return-reason.ts#L18)
+[packages/medusa/src/services/return-reason.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return-reason.ts#L18)
___
@@ -76,7 +76,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return-reason.ts:16](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return-reason.ts#L16)
+[packages/medusa/src/services/return-reason.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return-reason.ts#L16)
___
@@ -90,7 +90,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/return-reason.ts:19](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return-reason.ts#L19)
+[packages/medusa/src/services/return-reason.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return-reason.ts#L19)
## Methods
@@ -129,7 +129,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -149,7 +149,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return-reason.ts:29](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return-reason.ts#L29)
+[packages/medusa/src/services/return-reason.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return-reason.ts#L29)
___
@@ -169,7 +169,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return-reason.ts:110](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return-reason.ts#L110)
+[packages/medusa/src/services/return-reason.ts:110](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return-reason.ts#L110)
___
@@ -192,7 +192,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/return-reason.ts:72](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return-reason.ts#L72)
+[packages/medusa/src/services/return-reason.ts:72](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return-reason.ts#L72)
___
@@ -217,7 +217,7 @@ the order document
#### Defined in
-[packages/medusa/src/services/return-reason.ts:91](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return-reason.ts#L91)
+[packages/medusa/src/services/return-reason.ts:91](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return-reason.ts#L91)
___
@@ -241,7 +241,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -262,7 +262,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return-reason.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return-reason.ts#L50)
+[packages/medusa/src/services/return-reason.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return-reason.ts#L50)
___
@@ -286,4 +286,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/ReturnService.md b/docs/content/references/services/classes/ReturnService.md
index f569e222c9..96157881aa 100644
--- a/docs/content/references/services/classes/ReturnService.md
+++ b/docs/content/references/services/classes/ReturnService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/return.ts:64](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L64)
+[packages/medusa/src/services/return.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L64)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:59](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L59)
+[packages/medusa/src/services/return.ts:59](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L59)
___
@@ -72,7 +72,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:61](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L61)
+[packages/medusa/src/services/return.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L61)
___
@@ -82,7 +82,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:56](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L56)
+[packages/medusa/src/services/return.ts:56](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L56)
___
@@ -96,7 +96,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/return.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L50)
+[packages/medusa/src/services/return.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L50)
___
@@ -106,7 +106,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:62](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L62)
+[packages/medusa/src/services/return.ts:62](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L62)
___
@@ -116,7 +116,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:55](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L55)
+[packages/medusa/src/services/return.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L55)
___
@@ -126,7 +126,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:60](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L60)
+[packages/medusa/src/services/return.ts:60](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L60)
___
@@ -136,7 +136,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:54](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L54)
+[packages/medusa/src/services/return.ts:54](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L54)
___
@@ -146,7 +146,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:58](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L58)
+[packages/medusa/src/services/return.ts:58](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L58)
___
@@ -156,7 +156,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:57](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L57)
+[packages/medusa/src/services/return.ts:57](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L57)
___
@@ -166,7 +166,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:53](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L53)
+[packages/medusa/src/services/return.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L53)
___
@@ -180,7 +180,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/return.ts:51](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L51)
+[packages/medusa/src/services/return.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L51)
## Methods
@@ -219,7 +219,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -243,7 +243,7 @@ the updated Return
#### Defined in
-[packages/medusa/src/services/return.ts:172](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L172)
+[packages/medusa/src/services/return.ts:172](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L172)
___
@@ -269,7 +269,7 @@ the created return
#### Defined in
-[packages/medusa/src/services/return.ts:350](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L350)
+[packages/medusa/src/services/return.ts:350](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L350)
___
@@ -289,7 +289,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:496](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L496)
+[packages/medusa/src/services/return.ts:496](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L496)
___
@@ -315,7 +315,7 @@ the line items generated by the transformer.
#### Defined in
-[packages/medusa/src/services/return.ts:114](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L114)
+[packages/medusa/src/services/return.ts:114](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L114)
___
@@ -338,7 +338,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/return.ts:154](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L154)
+[packages/medusa/src/services/return.ts:154](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L154)
___
@@ -371,7 +371,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/return.ts:567](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L567)
+[packages/medusa/src/services/return.ts:567](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L567)
___
@@ -396,7 +396,7 @@ the return
#### Defined in
-[packages/medusa/src/services/return.ts:270](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L270)
+[packages/medusa/src/services/return.ts:270](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L270)
___
@@ -417,7 +417,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:291](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L291)
+[packages/medusa/src/services/return.ts:291](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L291)
___
@@ -441,7 +441,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -462,7 +462,7 @@ ___
#### Defined in
-[packages/medusa/src/services/return.ts:316](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L316)
+[packages/medusa/src/services/return.ts:316](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L316)
___
@@ -534,7 +534,7 @@ a line item where the quantity is set to the requested
#### Defined in
-[packages/medusa/src/services/return.ts:228](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L228)
+[packages/medusa/src/services/return.ts:228](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L228)
___
@@ -562,7 +562,7 @@ when statuses are not sufficient for returns.
#### Defined in
-[packages/medusa/src/services/return.ts:198](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/return.ts#L198)
+[packages/medusa/src/services/return.ts:198](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/return.ts#L198)
___
@@ -586,4 +586,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/SalesChannelService.md b/docs/content/references/services/classes/SalesChannelService.md
index 154824b5b0..dd8f3598cb 100644
--- a/docs/content/references/services/classes/SalesChannelService.md
+++ b/docs/content/references/services/classes/SalesChannelService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:37](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L37)
+[packages/medusa/src/services/sales-channel.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L37)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:34](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L34)
+[packages/medusa/src/services/sales-channel.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L34)
___
@@ -76,7 +76,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:30](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L30)
+[packages/medusa/src/services/sales-channel.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L30)
___
@@ -86,7 +86,7 @@ ___
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:33](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L33)
+[packages/medusa/src/services/sales-channel.ts:33](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L33)
___
@@ -96,7 +96,7 @@ ___
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:35](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L35)
+[packages/medusa/src/services/sales-channel.ts:35](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L35)
___
@@ -110,7 +110,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L31)
+[packages/medusa/src/services/sales-channel.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L31)
___
@@ -128,7 +128,7 @@ ___
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:24](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L24)
+[packages/medusa/src/services/sales-channel.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L24)
## Methods
@@ -153,7 +153,7 @@ the sales channel on which the products have been added
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:310](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L310)
+[packages/medusa/src/services/sales-channel.ts:310](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L310)
___
@@ -192,7 +192,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -219,7 +219,7 @@ the created channel
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:167](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L167)
+[packages/medusa/src/services/sales-channel.ts:167](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L167)
___
@@ -237,7 +237,7 @@ the sales channel
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:257](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L257)
+[packages/medusa/src/services/sales-channel.ts:257](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L257)
___
@@ -261,7 +261,7 @@ To use this feature please enable the corresponding feature flag in your medusa
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:218](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L218)
+[packages/medusa/src/services/sales-channel.ts:218](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L218)
___
@@ -289,7 +289,7 @@ an array containing the sales channels as
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:132](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L132)
+[packages/medusa/src/services/sales-channel.ts:132](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L132)
___
@@ -314,7 +314,7 @@ the sales channel on which the products have been removed
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:289](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L289)
+[packages/medusa/src/services/sales-channel.ts:289](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L289)
___
@@ -339,7 +339,7 @@ a sales channel
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:104](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L104)
+[packages/medusa/src/services/sales-channel.ts:104](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L104)
___
@@ -364,7 +364,7 @@ a sales channel with matching name
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:118](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L118)
+[packages/medusa/src/services/sales-channel.ts:118](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L118)
___
@@ -389,7 +389,7 @@ a single SC matching the query or throws
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:64](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L64)
+[packages/medusa/src/services/sales-channel.ts:64](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L64)
___
@@ -413,7 +413,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -434,7 +434,7 @@ ___
#### Defined in
-[packages/medusa/src/services/sales-channel.ts:184](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/sales-channel.ts#L184)
+[packages/medusa/src/services/sales-channel.ts:184](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/sales-channel.ts#L184)
___
@@ -458,4 +458,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/SearchService.md b/docs/content/references/services/classes/SearchService.md
index 16ac401fb6..984d86da8e 100644
--- a/docs/content/references/services/classes/SearchService.md
+++ b/docs/content/references/services/classes/SearchService.md
@@ -25,7 +25,7 @@ AbstractSearchService.constructor
#### Defined in
-[packages/medusa/src/services/search.ts:18](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L18)
+[packages/medusa/src/services/search.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L18)
## Properties
@@ -39,7 +39,7 @@ AbstractSearchService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -53,7 +53,7 @@ AbstractSearchService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -67,7 +67,7 @@ AbstractSearchService.isDefault
#### Defined in
-[packages/medusa/src/services/search.ts:11](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L11)
+[packages/medusa/src/services/search.ts:11](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L11)
___
@@ -77,7 +77,7 @@ ___
#### Defined in
-[packages/medusa/src/services/search.ts:15](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L15)
+[packages/medusa/src/services/search.ts:15](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L15)
___
@@ -91,7 +91,7 @@ AbstractSearchService.manager\_
#### Defined in
-[packages/medusa/src/services/search.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L13)
+[packages/medusa/src/services/search.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L13)
___
@@ -105,7 +105,7 @@ AbstractSearchService.options\_
#### Defined in
-[packages/medusa/src/services/search.ts:16](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L16)
+[packages/medusa/src/services/search.ts:16](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L16)
___
@@ -119,7 +119,7 @@ AbstractSearchService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/search.ts:14](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L14)
+[packages/medusa/src/services/search.ts:14](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L14)
## Accessors
@@ -137,7 +137,7 @@ AbstractSearchService.options
#### Defined in
-[packages/medusa/src/interfaces/search-service.ts:82](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/search-service.ts#L82)
+[packages/medusa/src/interfaces/search-service.ts:82](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/search-service.ts#L82)
## Methods
@@ -163,7 +163,7 @@ AbstractSearchService.addDocuments
#### Defined in
-[packages/medusa/src/services/search.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L43)
+[packages/medusa/src/services/search.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L43)
___
@@ -202,7 +202,7 @@ AbstractSearchService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -227,7 +227,7 @@ AbstractSearchService.createIndex
#### Defined in
-[packages/medusa/src/services/search.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L31)
+[packages/medusa/src/services/search.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L31)
___
@@ -251,7 +251,7 @@ AbstractSearchService.deleteAllDocuments
#### Defined in
-[packages/medusa/src/services/search.ts:61](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L61)
+[packages/medusa/src/services/search.ts:61](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L61)
___
@@ -276,7 +276,7 @@ AbstractSearchService.deleteDocument
#### Defined in
-[packages/medusa/src/services/search.ts:55](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L55)
+[packages/medusa/src/services/search.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L55)
___
@@ -300,7 +300,7 @@ AbstractSearchService.getIndex
#### Defined in
-[packages/medusa/src/services/search.ts:37](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L37)
+[packages/medusa/src/services/search.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L37)
___
@@ -326,7 +326,7 @@ AbstractSearchService.replaceDocuments
#### Defined in
-[packages/medusa/src/services/search.ts:49](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L49)
+[packages/medusa/src/services/search.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L49)
___
@@ -356,7 +356,7 @@ AbstractSearchService.search
#### Defined in
-[packages/medusa/src/services/search.ts:67](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L67)
+[packages/medusa/src/services/search.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L67)
___
@@ -380,7 +380,7 @@ AbstractSearchService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -405,7 +405,7 @@ AbstractSearchService.updateSettings
#### Defined in
-[packages/medusa/src/services/search.ts:78](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/search.ts#L78)
+[packages/medusa/src/services/search.ts:78](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/search.ts#L78)
___
@@ -429,4 +429,4 @@ AbstractSearchService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/ShippingOptionService.md b/docs/content/references/services/classes/ShippingOptionService.md
index 4f023ef07e..81bd2f4adf 100644
--- a/docs/content/references/services/classes/ShippingOptionService.md
+++ b/docs/content/references/services/classes/ShippingOptionService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:52](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L52)
+[packages/medusa/src/services/shipping-option.ts:52](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L52)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:47](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L47)
+[packages/medusa/src/services/shipping-option.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L47)
___
@@ -78,7 +78,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:49](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L49)
+[packages/medusa/src/services/shipping-option.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L49)
___
@@ -88,7 +88,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:46](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L46)
+[packages/medusa/src/services/shipping-option.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L46)
___
@@ -98,7 +98,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:45](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L45)
+[packages/medusa/src/services/shipping-option.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L45)
___
@@ -108,7 +108,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:42](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L42)
+[packages/medusa/src/services/shipping-option.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L42)
___
@@ -118,7 +118,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L43)
+[packages/medusa/src/services/shipping-option.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L43)
___
@@ -128,7 +128,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:44](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L44)
+[packages/medusa/src/services/shipping-option.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L44)
___
@@ -142,7 +142,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L50)
+[packages/medusa/src/services/shipping-option.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L50)
## Methods
@@ -168,7 +168,7 @@ the result of update
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:665](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L665)
+[packages/medusa/src/services/shipping-option.ts:665](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L665)
___
@@ -207,7 +207,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -233,7 +233,7 @@ the result of the create operation
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:405](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L405)
+[packages/medusa/src/services/shipping-option.ts:405](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L405)
___
@@ -259,7 +259,7 @@ the resulting shipping method.
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:268](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L268)
+[packages/medusa/src/services/shipping-option.ts:268](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L268)
___
@@ -283,7 +283,7 @@ the result of the delete operation.
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:643](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L643)
+[packages/medusa/src/services/shipping-option.ts:643](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L643)
___
@@ -307,7 +307,7 @@ removed shipping methods
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:248](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L248)
+[packages/medusa/src/services/shipping-option.ts:248](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L248)
___
@@ -335,7 +335,7 @@ the price of the shipping option.
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:724](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L724)
+[packages/medusa/src/services/shipping-option.ts:724](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L724)
___
@@ -358,7 +358,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:145](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L145)
+[packages/medusa/src/services/shipping-option.ts:145](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L145)
___
@@ -381,7 +381,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:161](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L161)
+[packages/medusa/src/services/shipping-option.ts:161](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L161)
___
@@ -405,7 +405,7 @@ the result of update
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:694](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L694)
+[packages/medusa/src/services/shipping-option.ts:694](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L694)
___
@@ -433,7 +433,7 @@ the profile document.
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:179](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L179)
+[packages/medusa/src/services/shipping-option.ts:179](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L179)
___
@@ -457,7 +457,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -484,7 +484,7 @@ resolves to the update result.
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:529](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L529)
+[packages/medusa/src/services/shipping-option.ts:529](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L529)
___
@@ -510,7 +510,7 @@ the resulting shipping method
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:219](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L219)
+[packages/medusa/src/services/shipping-option.ts:219](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L219)
___
@@ -537,7 +537,7 @@ the validated shipping option
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:356](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L356)
+[packages/medusa/src/services/shipping-option.ts:356](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L356)
___
@@ -562,7 +562,7 @@ the validated price
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:493](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L493)
+[packages/medusa/src/services/shipping-option.ts:493](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L493)
___
@@ -587,7 +587,7 @@ a validated shipping requirement
#### Defined in
-[packages/medusa/src/services/shipping-option.ts:79](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-option.ts#L79)
+[packages/medusa/src/services/shipping-option.ts:79](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-option.ts#L79)
___
@@ -611,4 +611,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/ShippingProfileService.md b/docs/content/references/services/classes/ShippingProfileService.md
index 46e2a906fe..cd25f943cb 100644
--- a/docs/content/references/services/classes/ShippingProfileService.md
+++ b/docs/content/references/services/classes/ShippingProfileService.md
@@ -28,7 +28,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:45](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L45)
+[packages/medusa/src/services/shipping-profile.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L45)
## Properties
@@ -42,7 +42,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -56,7 +56,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:38](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L38)
+[packages/medusa/src/services/shipping-profile.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L38)
___
@@ -80,7 +80,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:42](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L42)
+[packages/medusa/src/services/shipping-profile.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L42)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:40](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L40)
+[packages/medusa/src/services/shipping-profile.ts:40](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L40)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:36](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L36)
+[packages/medusa/src/services/shipping-profile.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L36)
___
@@ -110,7 +110,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:37](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L37)
+[packages/medusa/src/services/shipping-profile.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L37)
___
@@ -120,7 +120,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:39](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L39)
+[packages/medusa/src/services/shipping-profile.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L39)
___
@@ -134,7 +134,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L43)
+[packages/medusa/src/services/shipping-profile.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L43)
## Methods
@@ -160,7 +160,7 @@ the result of update
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:358](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L358)
+[packages/medusa/src/services/shipping-profile.ts:358](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L358)
___
@@ -186,7 +186,7 @@ the result of the model update operation
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:378](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L378)
+[packages/medusa/src/services/shipping-profile.ts:378](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L378)
___
@@ -225,7 +225,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -249,7 +249,7 @@ the result of the create operation
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:247](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L247)
+[packages/medusa/src/services/shipping-profile.ts:247](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L247)
___
@@ -267,7 +267,7 @@ the shipping profile
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:177](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L177)
+[packages/medusa/src/services/shipping-profile.ts:177](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L177)
___
@@ -286,7 +286,7 @@ the shipping profile
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:221](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L221)
+[packages/medusa/src/services/shipping-profile.ts:221](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L221)
___
@@ -310,7 +310,7 @@ the result of the delete operation.
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:332](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L332)
+[packages/medusa/src/services/shipping-profile.ts:332](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L332)
___
@@ -335,7 +335,7 @@ a list of the available shipping options
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:398](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L398)
+[packages/medusa/src/services/shipping-profile.ts:398](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L398)
___
@@ -356,7 +356,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:87](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L87)
+[packages/medusa/src/services/shipping-profile.ts:87](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L87)
___
@@ -380,7 +380,7 @@ a list of product ids
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:468](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L468)
+[packages/medusa/src/services/shipping-profile.ts:468](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L468)
___
@@ -403,7 +403,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:75](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L75)
+[packages/medusa/src/services/shipping-profile.ts:75](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L75)
___
@@ -429,7 +429,7 @@ the profile document.
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:139](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L139)
+[packages/medusa/src/services/shipping-profile.ts:139](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L139)
___
@@ -443,7 +443,7 @@ ___
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:161](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L161)
+[packages/medusa/src/services/shipping-profile.ts:161](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L161)
___
@@ -461,7 +461,7 @@ the shipping profile for gift cards
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:204](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L204)
+[packages/medusa/src/services/shipping-profile.ts:204](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L204)
___
@@ -485,7 +485,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -512,7 +512,7 @@ resolves to the update result.
#### Defined in
-[packages/medusa/src/services/shipping-profile.ts:275](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/shipping-profile.ts#L275)
+[packages/medusa/src/services/shipping-profile.ts:275](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/shipping-profile.ts#L275)
___
@@ -536,4 +536,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/StoreService.md b/docs/content/references/services/classes/StoreService.md
index 9676af016d..c5673779ff 100644
--- a/docs/content/references/services/classes/StoreService.md
+++ b/docs/content/references/services/classes/StoreService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/store.ts:32](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L32)
+[packages/medusa/src/services/store.ts:32](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L32)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/store.ts:29](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L29)
+[packages/medusa/src/services/store.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L29)
___
@@ -74,7 +74,7 @@ ___
#### Defined in
-[packages/medusa/src/services/store.ts:30](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L30)
+[packages/medusa/src/services/store.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L30)
___
@@ -88,7 +88,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/store.ts:25](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L25)
+[packages/medusa/src/services/store.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L25)
___
@@ -98,7 +98,7 @@ ___
#### Defined in
-[packages/medusa/src/services/store.ts:28](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L28)
+[packages/medusa/src/services/store.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L28)
___
@@ -112,7 +112,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/store.ts:26](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L26)
+[packages/medusa/src/services/store.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L26)
## Methods
@@ -136,7 +136,7 @@ result after update
#### Defined in
-[packages/medusa/src/services/store.ts:210](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L210)
+[packages/medusa/src/services/store.ts:210](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L210)
___
@@ -175,7 +175,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -193,7 +193,7 @@ The store.
#### Defined in
-[packages/medusa/src/services/store.ts:55](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L55)
+[packages/medusa/src/services/store.ts:55](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L55)
___
@@ -213,7 +213,7 @@ ___
#### Defined in
-[packages/medusa/src/services/store.ts:104](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L104)
+[packages/medusa/src/services/store.ts:104](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L104)
___
@@ -237,7 +237,7 @@ result after update
#### Defined in
-[packages/medusa/src/services/store.ts:254](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L254)
+[packages/medusa/src/services/store.ts:254](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L254)
___
@@ -261,7 +261,7 @@ the store
#### Defined in
-[packages/medusa/src/services/store.ts:91](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L91)
+[packages/medusa/src/services/store.ts:91](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L91)
___
@@ -285,7 +285,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -309,7 +309,7 @@ resolves to the update result.
#### Defined in
-[packages/medusa/src/services/store.ts:120](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/store.ts#L120)
+[packages/medusa/src/services/store.ts:120](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/store.ts#L120)
___
@@ -333,4 +333,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/StrategyResolverService.md b/docs/content/references/services/classes/StrategyResolverService.md
index 8fe68480cb..d77df192c7 100644
--- a/docs/content/references/services/classes/StrategyResolverService.md
+++ b/docs/content/references/services/classes/StrategyResolverService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/strategy-resolver.ts:14](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/strategy-resolver.ts#L14)
+[packages/medusa/src/services/strategy-resolver.ts:14](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/strategy-resolver.ts#L14)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -62,7 +62,7 @@ ___
#### Defined in
-[packages/medusa/src/services/strategy-resolver.ts:14](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/strategy-resolver.ts#L14)
+[packages/medusa/src/services/strategy-resolver.ts:14](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/strategy-resolver.ts#L14)
___
@@ -76,7 +76,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/strategy-resolver.ts:11](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/strategy-resolver.ts#L11)
+[packages/medusa/src/services/strategy-resolver.ts:11](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/strategy-resolver.ts#L11)
___
@@ -90,7 +90,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/strategy-resolver.ts:12](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/strategy-resolver.ts#L12)
+[packages/medusa/src/services/strategy-resolver.ts:12](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/strategy-resolver.ts#L12)
## Methods
@@ -129,7 +129,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -149,7 +149,7 @@ ___
#### Defined in
-[packages/medusa/src/services/strategy-resolver.ts:19](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/strategy-resolver.ts#L19)
+[packages/medusa/src/services/strategy-resolver.ts:19](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/strategy-resolver.ts#L19)
___
@@ -173,7 +173,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -197,4 +197,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/SwapService.md b/docs/content/references/services/classes/SwapService.md
index 9f08cdf223..d4d708cdaa 100644
--- a/docs/content/references/services/classes/SwapService.md
+++ b/docs/content/references/services/classes/SwapService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/swap.ts:93](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L93)
+[packages/medusa/src/services/swap.ts:93](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L93)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:80](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L80)
+[packages/medusa/src/services/swap.ts:80](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L80)
___
@@ -74,7 +74,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:91](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L91)
+[packages/medusa/src/services/swap.ts:91](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L91)
___
@@ -84,7 +84,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:81](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L81)
+[packages/medusa/src/services/swap.ts:81](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L81)
___
@@ -94,7 +94,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:87](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L87)
+[packages/medusa/src/services/swap.ts:87](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L87)
___
@@ -104,7 +104,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:86](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L86)
+[packages/medusa/src/services/swap.ts:86](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L86)
___
@@ -114,7 +114,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:90](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L90)
+[packages/medusa/src/services/swap.ts:90](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L90)
___
@@ -124,7 +124,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:85](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L85)
+[packages/medusa/src/services/swap.ts:85](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L85)
___
@@ -138,7 +138,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/swap.ts:75](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L75)
+[packages/medusa/src/services/swap.ts:75](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L75)
___
@@ -148,7 +148,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:82](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L82)
+[packages/medusa/src/services/swap.ts:82](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L82)
___
@@ -158,7 +158,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:89](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L89)
+[packages/medusa/src/services/swap.ts:89](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L89)
___
@@ -168,7 +168,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:83](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L83)
+[packages/medusa/src/services/swap.ts:83](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L83)
___
@@ -178,7 +178,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:88](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L88)
+[packages/medusa/src/services/swap.ts:88](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L88)
___
@@ -188,7 +188,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:78](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L78)
+[packages/medusa/src/services/swap.ts:78](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L78)
___
@@ -198,7 +198,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:84](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L84)
+[packages/medusa/src/services/swap.ts:84](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L84)
___
@@ -212,7 +212,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/swap.ts:76](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L76)
+[packages/medusa/src/services/swap.ts:76](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L76)
___
@@ -236,7 +236,7 @@ ___
#### Defined in
-[packages/medusa/src/services/swap.ts:63](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L63)
+[packages/medusa/src/services/swap.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L63)
## Methods
@@ -275,7 +275,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -301,7 +301,7 @@ the canceled swap.
#### Defined in
-[packages/medusa/src/services/swap.ts:830](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L830)
+[packages/medusa/src/services/swap.ts:830](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L830)
___
@@ -325,7 +325,7 @@ updated swap
#### Defined in
-[packages/medusa/src/services/swap.ts:1031](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L1031)
+[packages/medusa/src/services/swap.ts:1031](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L1031)
___
@@ -359,7 +359,7 @@ the newly created swap
#### Defined in
-[packages/medusa/src/services/swap.ts:307](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L307)
+[packages/medusa/src/services/swap.ts:307](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L307)
___
@@ -387,7 +387,7 @@ the swap with its cart_id prop set to the id of the new cart.
#### Defined in
-[packages/medusa/src/services/swap.ts:556](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L556)
+[packages/medusa/src/services/swap.ts:556](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L556)
___
@@ -413,7 +413,7 @@ the updated swap with new status and fulfillments.
#### Defined in
-[packages/medusa/src/services/swap.ts:892](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L892)
+[packages/medusa/src/services/swap.ts:892](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L892)
___
@@ -440,7 +440,7 @@ the updated swap with new fulfillments and status.
#### Defined in
-[packages/medusa/src/services/swap.ts:1062](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L1062)
+[packages/medusa/src/services/swap.ts:1062](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L1062)
___
@@ -465,7 +465,7 @@ resolves to the updated result.
#### Defined in
-[packages/medusa/src/services/swap.ts:1140](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L1140)
+[packages/medusa/src/services/swap.ts:1140](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L1140)
___
@@ -490,7 +490,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/swap.ts:277](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L277)
+[packages/medusa/src/services/swap.ts:277](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L277)
___
@@ -514,7 +514,7 @@ processed swap
#### Defined in
-[packages/medusa/src/services/swap.ts:400](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L400)
+[packages/medusa/src/services/swap.ts:400](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L400)
___
@@ -538,7 +538,7 @@ swap related to the cart
#### Defined in
-[packages/medusa/src/services/swap.ts:679](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L679)
+[packages/medusa/src/services/swap.ts:679](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L679)
___
@@ -563,7 +563,7 @@ the resulting order
#### Defined in
-[packages/medusa/src/services/swap.ts:1180](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L1180)
+[packages/medusa/src/services/swap.ts:1180](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L1180)
___
@@ -588,7 +588,7 @@ the swap
#### Defined in
-[packages/medusa/src/services/swap.ts:208](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L208)
+[packages/medusa/src/services/swap.ts:208](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L208)
___
@@ -613,7 +613,7 @@ the swap
#### Defined in
-[packages/medusa/src/services/swap.ts:250](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L250)
+[packages/medusa/src/services/swap.ts:250](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L250)
___
@@ -637,7 +637,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -661,7 +661,7 @@ transformed find swap config
#### Defined in
-[packages/medusa/src/services/swap.ts:135](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L135)
+[packages/medusa/src/services/swap.ts:135](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L135)
___
@@ -686,7 +686,7 @@ updated swap record
#### Defined in
-[packages/medusa/src/services/swap.ts:523](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/swap.ts#L523)
+[packages/medusa/src/services/swap.ts:523](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/swap.ts#L523)
___
@@ -710,4 +710,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/SystemPaymentProviderService.md b/docs/content/references/services/classes/SystemPaymentProviderService.md
index 70e6c0a532..fba49abcad 100644
--- a/docs/content/references/services/classes/SystemPaymentProviderService.md
+++ b/docs/content/references/services/classes/SystemPaymentProviderService.md
@@ -24,7 +24,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L10)
+[packages/medusa/src/services/system-payment-provider.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L10)
## Properties
@@ -38,7 +38,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -52,7 +52,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -66,7 +66,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:5](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L5)
+[packages/medusa/src/services/system-payment-provider.ts:5](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L5)
___
@@ -80,7 +80,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:6](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L6)
+[packages/medusa/src/services/system-payment-provider.ts:6](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L6)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:8](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L8)
+[packages/medusa/src/services/system-payment-provider.ts:8](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L8)
## Methods
@@ -129,7 +129,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -149,7 +149,7 @@ ___
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:26](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L26)
+[packages/medusa/src/services/system-payment-provider.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L26)
___
@@ -169,7 +169,7 @@ ___
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L50)
+[packages/medusa/src/services/system-payment-provider.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L50)
___
@@ -189,7 +189,7 @@ ___
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:42](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L42)
+[packages/medusa/src/services/system-payment-provider.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L42)
___
@@ -209,7 +209,7 @@ ___
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:14](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L14)
+[packages/medusa/src/services/system-payment-provider.ts:14](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L14)
___
@@ -229,7 +229,7 @@ ___
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:38](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L38)
+[packages/medusa/src/services/system-payment-provider.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L38)
___
@@ -249,7 +249,7 @@ ___
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:22](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L22)
+[packages/medusa/src/services/system-payment-provider.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L22)
___
@@ -269,7 +269,7 @@ ___
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:18](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L18)
+[packages/medusa/src/services/system-payment-provider.ts:18](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L18)
___
@@ -289,7 +289,7 @@ ___
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:46](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L46)
+[packages/medusa/src/services/system-payment-provider.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L46)
___
@@ -313,7 +313,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -333,7 +333,7 @@ ___
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:34](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L34)
+[packages/medusa/src/services/system-payment-provider.ts:34](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L34)
___
@@ -353,7 +353,7 @@ ___
#### Defined in
-[packages/medusa/src/services/system-payment-provider.ts:30](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/system-payment-provider.ts#L30)
+[packages/medusa/src/services/system-payment-provider.ts:30](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/system-payment-provider.ts#L30)
___
@@ -377,4 +377,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/TaxProviderService.md b/docs/content/references/services/classes/TaxProviderService.md
index 598aaae5c5..04219d643e 100644
--- a/docs/content/references/services/classes/TaxProviderService.md
+++ b/docs/content/references/services/classes/TaxProviderService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:53](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L53)
+[packages/medusa/src/services/tax-provider.ts:53](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L53)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:45](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L45)
+[packages/medusa/src/services/tax-provider.ts:45](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L45)
___
@@ -74,7 +74,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:51](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L51)
+[packages/medusa/src/services/tax-provider.ts:51](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L51)
___
@@ -88,7 +88,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:42](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L42)
+[packages/medusa/src/services/tax-provider.ts:42](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L42)
___
@@ -98,7 +98,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L50)
+[packages/medusa/src/services/tax-provider.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L50)
___
@@ -108,7 +108,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:48](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L48)
+[packages/medusa/src/services/tax-provider.ts:48](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L48)
___
@@ -118,7 +118,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:47](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L47)
+[packages/medusa/src/services/tax-provider.ts:47](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L47)
___
@@ -128,7 +128,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:49](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L49)
+[packages/medusa/src/services/tax-provider.ts:49](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L49)
___
@@ -138,7 +138,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:46](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L46)
+[packages/medusa/src/services/tax-provider.ts:46](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L46)
___
@@ -152,7 +152,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:43](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L43)
+[packages/medusa/src/services/tax-provider.ts:43](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L43)
## Methods
@@ -191,7 +191,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -211,7 +211,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:94](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L94)
+[packages/medusa/src/services/tax-provider.ts:94](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L94)
___
@@ -237,7 +237,7 @@ the newly created tax lines
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:170](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L170)
+[packages/medusa/src/services/tax-provider.ts:170](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L170)
___
@@ -262,7 +262,7 @@ the newly created tax lines
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:116](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L116)
+[packages/medusa/src/services/tax-provider.ts:116](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L116)
___
@@ -287,7 +287,7 @@ the cached result or null
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:457](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L457)
+[packages/medusa/src/services/tax-provider.ts:457](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L457)
___
@@ -312,7 +312,7 @@ the cache key to use for the id set
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:426](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L426)
+[packages/medusa/src/services/tax-provider.ts:426](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L426)
___
@@ -338,7 +338,7 @@ the tax rates configured for the shipping option.
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:379](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L379)
+[packages/medusa/src/services/tax-provider.ts:379](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L379)
___
@@ -364,7 +364,7 @@ the tax rates configured for the shipping option.
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:333](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L333)
+[packages/medusa/src/services/tax-provider.ts:333](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L333)
___
@@ -391,7 +391,7 @@ the computed tax lines
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:191](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L191)
+[packages/medusa/src/services/tax-provider.ts:191](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L191)
___
@@ -420,7 +420,7 @@ the computed tax lines
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:243](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L243)
+[packages/medusa/src/services/tax-provider.ts:243](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L243)
___
@@ -434,7 +434,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:66](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L66)
+[packages/medusa/src/services/tax-provider.ts:66](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L66)
___
@@ -454,7 +454,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:478](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L478)
+[packages/medusa/src/services/tax-provider.ts:478](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L478)
___
@@ -478,7 +478,7 @@ the region specific tax provider
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:76](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L76)
+[packages/medusa/src/services/tax-provider.ts:76](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L76)
___
@@ -504,7 +504,7 @@ promise that resolves after the cache has been set
#### Defined in
-[packages/medusa/src/services/tax-provider.ts:437](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-provider.ts#L437)
+[packages/medusa/src/services/tax-provider.ts:437](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-provider.ts#L437)
___
@@ -528,7 +528,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -552,4 +552,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/TaxRateService.md b/docs/content/references/services/classes/TaxRateService.md
index 803579b8fd..fd44cfef21 100644
--- a/docs/content/references/services/classes/TaxRateService.md
+++ b/docs/content/references/services/classes/TaxRateService.md
@@ -24,7 +24,7 @@ BaseService.constructor
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:28](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L28)
+[packages/medusa/src/services/tax-rate.ts:28](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L28)
## Properties
@@ -34,7 +34,7 @@ BaseService.constructor
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:22](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L22)
+[packages/medusa/src/services/tax-rate.ts:22](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L22)
___
@@ -44,7 +44,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:23](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L23)
+[packages/medusa/src/services/tax-rate.ts:23](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L23)
___
@@ -54,7 +54,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:24](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L24)
+[packages/medusa/src/services/tax-rate.ts:24](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L24)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:25](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L25)
+[packages/medusa/src/services/tax-rate.ts:25](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L25)
___
@@ -74,7 +74,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:26](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L26)
+[packages/medusa/src/services/tax-rate.ts:26](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L26)
## Methods
@@ -96,7 +96,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:197](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L197)
+[packages/medusa/src/services/tax-rate.ts:197](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L197)
___
@@ -118,7 +118,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:233](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L233)
+[packages/medusa/src/services/tax-rate.ts:233](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L233)
___
@@ -140,7 +140,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:273](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L273)
+[packages/medusa/src/services/tax-rate.ts:273](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L273)
___
@@ -160,7 +160,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:104](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L104)
+[packages/medusa/src/services/tax-rate.ts:104](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L104)
___
@@ -180,7 +180,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:135](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L135)
+[packages/medusa/src/services/tax-rate.ts:135](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L135)
___
@@ -201,7 +201,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:63](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L63)
+[packages/medusa/src/services/tax-rate.ts:63](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L63)
___
@@ -222,7 +222,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:74](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L74)
+[packages/medusa/src/services/tax-rate.ts:74](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L74)
___
@@ -243,7 +243,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:321](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L321)
+[packages/medusa/src/services/tax-rate.ts:321](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L321)
___
@@ -263,7 +263,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:331](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L331)
+[packages/medusa/src/services/tax-rate.ts:331](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L331)
___
@@ -284,7 +284,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:143](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L143)
+[packages/medusa/src/services/tax-rate.ts:143](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L143)
___
@@ -305,7 +305,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:161](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L161)
+[packages/medusa/src/services/tax-rate.ts:161](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L161)
___
@@ -326,7 +326,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:179](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L179)
+[packages/medusa/src/services/tax-rate.ts:179](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L179)
___
@@ -347,7 +347,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:85](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L85)
+[packages/medusa/src/services/tax-rate.ts:85](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L85)
___
@@ -368,7 +368,7 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:120](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L120)
+[packages/medusa/src/services/tax-rate.ts:120](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L120)
___
@@ -388,4 +388,4 @@ ___
#### Defined in
-[packages/medusa/src/services/tax-rate.ts:44](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/tax-rate.ts#L44)
+[packages/medusa/src/services/tax-rate.ts:44](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/tax-rate.ts#L44)
diff --git a/docs/content/references/services/classes/TotalsService.md b/docs/content/references/services/classes/TotalsService.md
index 567fa9170f..13ad7fe760 100644
--- a/docs/content/references/services/classes/TotalsService.md
+++ b/docs/content/references/services/classes/TotalsService.md
@@ -28,7 +28,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/totals.ts:108](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L108)
+[packages/medusa/src/services/totals.ts:108](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L108)
## Properties
@@ -42,7 +42,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -56,7 +56,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -66,7 +66,7 @@ ___
#### Defined in
-[packages/medusa/src/services/totals.ts:106](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L106)
+[packages/medusa/src/services/totals.ts:106](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L106)
___
@@ -80,7 +80,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/totals.ts:101](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L101)
+[packages/medusa/src/services/totals.ts:101](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L101)
___
@@ -90,7 +90,7 @@ ___
#### Defined in
-[packages/medusa/src/services/totals.ts:105](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L105)
+[packages/medusa/src/services/totals.ts:105](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L105)
___
@@ -100,7 +100,7 @@ ___
#### Defined in
-[packages/medusa/src/services/totals.ts:104](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L104)
+[packages/medusa/src/services/totals.ts:104](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L104)
___
@@ -114,7 +114,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/totals.ts:102](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L102)
+[packages/medusa/src/services/totals.ts:102](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L102)
## Methods
@@ -153,7 +153,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -181,7 +181,7 @@ triples of lineitem, variant and applied discount
#### Defined in
-[packages/medusa/src/services/totals.ts:647](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L647)
+[packages/medusa/src/services/totals.ts:647](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L647)
___
@@ -210,7 +210,7 @@ array of triples of lineitem, variant and applied discount
#### Defined in
-[packages/medusa/src/services/totals.ts:689](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L689)
+[packages/medusa/src/services/totals.ts:689](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L689)
___
@@ -237,7 +237,7 @@ the allocation map for the line items in the cart or order.
#### Defined in
-[packages/medusa/src/services/totals.ts:433](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L433)
+[packages/medusa/src/services/totals.ts:433](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L433)
___
@@ -262,7 +262,7 @@ the tax calculation context
#### Defined in
-[packages/medusa/src/services/totals.ts:1094](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L1094)
+[packages/medusa/src/services/totals.ts:1094](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L1094)
___
@@ -287,7 +287,7 @@ the total discounts amount
#### Defined in
-[packages/medusa/src/services/totals.ts:1064](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L1064)
+[packages/medusa/src/services/totals.ts:1064](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L1064)
___
@@ -311,7 +311,7 @@ the gift card amount applied to the cart or order
#### Defined in
-[packages/medusa/src/services/totals.ts:989](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L989)
+[packages/medusa/src/services/totals.ts:989](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L989)
___
@@ -336,7 +336,7 @@ the gift card amount applied to the cart or order
#### Defined in
-[packages/medusa/src/services/totals.ts:972](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L972)
+[packages/medusa/src/services/totals.ts:972](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L972)
___
@@ -362,7 +362,7 @@ the allocations that the discount has on the items in the cart or
#### Defined in
-[packages/medusa/src/services/totals.ts:740](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L740)
+[packages/medusa/src/services/totals.ts:740](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L740)
___
@@ -382,7 +382,7 @@ ___
#### Defined in
-[packages/medusa/src/services/totals.ts:717](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L717)
+[packages/medusa/src/services/totals.ts:717](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L717)
___
@@ -403,7 +403,7 @@ ___
#### Defined in
-[packages/medusa/src/services/totals.ts:702](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L702)
+[packages/medusa/src/services/totals.ts:702](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L702)
___
@@ -428,7 +428,7 @@ the line item refund amount.
#### Defined in
-[packages/medusa/src/services/totals.ts:525](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L525)
+[packages/medusa/src/services/totals.ts:525](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L525)
___
@@ -455,7 +455,7 @@ the line item total
#### Defined in
-[packages/medusa/src/services/totals.ts:941](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L941)
+[packages/medusa/src/services/totals.ts:941](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L941)
___
@@ -483,7 +483,7 @@ the breakdown of the line item totals
#### Defined in
-[packages/medusa/src/services/totals.ts:786](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L786)
+[packages/medusa/src/services/totals.ts:786](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L786)
___
@@ -507,7 +507,7 @@ the total paid amount
#### Defined in
-[packages/medusa/src/services/totals.ts:158](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L158)
+[packages/medusa/src/services/totals.ts:158](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L158)
___
@@ -534,7 +534,7 @@ the calculated subtotal
#### Defined in
-[packages/medusa/src/services/totals.ts:604](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L604)
+[packages/medusa/src/services/totals.ts:604](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L604)
___
@@ -558,7 +558,7 @@ the total refunded amount for an order.
#### Defined in
-[packages/medusa/src/services/totals.ts:510](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L510)
+[packages/medusa/src/services/totals.ts:510](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L510)
___
@@ -585,7 +585,7 @@ An object that breaks down the totals for the shipping method
#### Defined in
-[packages/medusa/src/services/totals.ts:192](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L192)
+[packages/medusa/src/services/totals.ts:192](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L192)
___
@@ -609,7 +609,7 @@ shipping total
#### Defined in
-[packages/medusa/src/services/totals.ts:317](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L317)
+[packages/medusa/src/services/totals.ts:317](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L317)
___
@@ -634,7 +634,7 @@ the calculated subtotal
#### Defined in
-[packages/medusa/src/services/totals.ts:281](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L281)
+[packages/medusa/src/services/totals.ts:281](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L281)
___
@@ -659,7 +659,7 @@ the swap total
#### Defined in
-[packages/medusa/src/services/totals.ts:173](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L173)
+[packages/medusa/src/services/totals.ts:173](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L173)
___
@@ -685,7 +685,7 @@ tax total
#### Defined in
-[packages/medusa/src/services/totals.ts:344](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L344)
+[packages/medusa/src/services/totals.ts:344](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L344)
___
@@ -710,7 +710,7 @@ the calculated subtotal
#### Defined in
-[packages/medusa/src/services/totals.ts:135](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L135)
+[packages/medusa/src/services/totals.ts:135](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L135)
___
@@ -734,7 +734,7 @@ the rounded value
#### Defined in
-[packages/medusa/src/services/totals.ts:1124](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/totals.ts#L1124)
+[packages/medusa/src/services/totals.ts:1124](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/totals.ts#L1124)
___
@@ -758,7 +758,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -782,4 +782,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/classes/UserService.md b/docs/content/references/services/classes/UserService.md
index 08cb526f47..6025f1a70b 100644
--- a/docs/content/references/services/classes/UserService.md
+++ b/docs/content/references/services/classes/UserService.md
@@ -26,7 +26,7 @@ TransactionBaseService.constructor
#### Defined in
-[packages/medusa/src/services/user.ts:41](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L41)
+[packages/medusa/src/services/user.ts:41](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L41)
## Properties
@@ -40,7 +40,7 @@ TransactionBaseService.\_\_configModule\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
+[packages/medusa/src/interfaces/transaction-base-service.ts:10](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L10)
___
@@ -54,7 +54,7 @@ TransactionBaseService.\_\_container\_\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
+[packages/medusa/src/interfaces/transaction-base-service.ts:9](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L9)
___
@@ -64,7 +64,7 @@ ___
#### Defined in
-[packages/medusa/src/services/user.ts:39](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L39)
+[packages/medusa/src/services/user.ts:39](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L39)
___
@@ -78,7 +78,7 @@ TransactionBaseService.manager\_
#### Defined in
-[packages/medusa/src/services/user.ts:36](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L36)
+[packages/medusa/src/services/user.ts:36](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L36)
___
@@ -92,7 +92,7 @@ TransactionBaseService.transactionManager\_
#### Defined in
-[packages/medusa/src/services/user.ts:37](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L37)
+[packages/medusa/src/services/user.ts:37](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L37)
___
@@ -102,7 +102,7 @@ ___
#### Defined in
-[packages/medusa/src/services/user.ts:38](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L38)
+[packages/medusa/src/services/user.ts:38](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L38)
___
@@ -121,7 +121,7 @@ ___
#### Defined in
-[packages/medusa/src/services/user.ts:29](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L29)
+[packages/medusa/src/services/user.ts:29](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L29)
## Methods
@@ -160,7 +160,7 @@ TransactionBaseService.atomicPhase\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
+[packages/medusa/src/interfaces/transaction-base-service.ts:50](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L50)
___
@@ -186,7 +186,7 @@ the result of create
#### Defined in
-[packages/medusa/src/services/user.ts:157](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L157)
+[packages/medusa/src/services/user.ts:157](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L157)
___
@@ -210,7 +210,7 @@ the result of the delete operation.
#### Defined in
-[packages/medusa/src/services/user.ts:237](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L237)
+[packages/medusa/src/services/user.ts:237](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L237)
___
@@ -238,7 +238,7 @@ the generated JSON web token
#### Defined in
-[packages/medusa/src/services/user.ts:293](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L293)
+[packages/medusa/src/services/user.ts:293](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L293)
___
@@ -262,7 +262,7 @@ hashed password
#### Defined in
-[packages/medusa/src/services/user.ts:145](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L145)
+[packages/medusa/src/services/user.ts:145](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L145)
___
@@ -285,7 +285,7 @@ the result of the find operation
#### Defined in
-[packages/medusa/src/services/user.ts:54](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L54)
+[packages/medusa/src/services/user.ts:54](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L54)
___
@@ -311,7 +311,7 @@ the user document.
#### Defined in
-[packages/medusa/src/services/user.ts:67](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L67)
+[packages/medusa/src/services/user.ts:67](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L67)
___
@@ -337,7 +337,7 @@ the user document.
#### Defined in
-[packages/medusa/src/services/user.ts:91](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L91)
+[packages/medusa/src/services/user.ts:91](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L91)
___
@@ -363,7 +363,7 @@ the user document.
#### Defined in
-[packages/medusa/src/services/user.ts:120](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L120)
+[packages/medusa/src/services/user.ts:120](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L120)
___
@@ -390,7 +390,7 @@ the result of the update operation
#### Defined in
-[packages/medusa/src/services/user.ts:264](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L264)
+[packages/medusa/src/services/user.ts:264](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L264)
___
@@ -414,7 +414,7 @@ TransactionBaseService.shouldRetryTransaction\_
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
+[packages/medusa/src/interfaces/transaction-base-service.ts:31](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L31)
___
@@ -439,7 +439,7 @@ the result of create
#### Defined in
-[packages/medusa/src/services/user.ts:191](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/services/user.ts#L191)
+[packages/medusa/src/services/user.ts:191](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/services/user.ts#L191)
___
@@ -463,4 +463,4 @@ TransactionBaseService.withTransaction
#### Defined in
-[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/3efeb6b84/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
+[packages/medusa/src/interfaces/transaction-base-service.ts:13](https://github.com/medusajs/medusa/blob/6225aa57b/packages/medusa/src/interfaces/transaction-base-service.ts#L13)
diff --git a/docs/content/references/services/index.md b/docs/content/references/services/index.md
index 81d24fbb59..ead3f86eed 100644
--- a/docs/content/references/services/index.md
+++ b/docs/content/references/services/index.md
@@ -24,6 +24,7 @@
- [NoteService](classes/NoteService.md)
- [NotificationService](classes/NotificationService.md)
- [OauthService](classes/OauthService.md)
+- [OrderEditService](classes/OrderEditService.md)
- [OrderService](classes/OrderService.md)
- [PaymentProviderService](classes/PaymentProviderService.md)
- [PricingService](classes/PricingService.md)
diff --git a/docs/content/starters/gatsby-medusa-starter.md b/docs/content/starters/gatsby-medusa-starter.md
index 394bcd2ce8..aa58139d9e 100644
--- a/docs/content/starters/gatsby-medusa-starter.md
+++ b/docs/content/starters/gatsby-medusa-starter.md
@@ -31,6 +31,7 @@ gatsby new my-medusa-storefront https://github.com/medusajs/gatsby-starter-medus
2\. Change to the newly created directory `my-medusa-storefront` and rename the template environment variable file to use environment variables in development:
```bash
+cd my-medusa-storefront
mv .env.template .env.development
```
@@ -52,7 +53,7 @@ To customize the components, pages, and UI of your Gatsby storefront, just edit
The Gatsby storefront uses the [gatsby-source-medusa](https://github.com/medusajs/medusa/tree/master/packages/gatsby-source-medusa) plugin to source data from your Medusa server. This data includes products, collections, and regions, and as a result, you can query this data in the storefront starter using GraphQL queries. You can also explore the data in your store on `localhost:8000/___graphql`.
-Because of this, you must rebuild the site every time you update any of this data for it to be reflected in your storefront. We will soon be releasing a new version of the plugin which adds incremental builds, which will improve build times.
+Because of this, you must rebuild the site every time you update any of this data for it to be reflected in your storefront. The Medusa team will soon be releasing a new version of the plugin which adds incremental builds, which will improve build times.
### Change Port
@@ -77,7 +78,7 @@ STORE_CORS=http://localhost:
:::info
-For more details about the Store CORS configuration, check out the [Configure your Server documentation](../usage/configurations.md#storefront-cors).
+For more details about the Store Cross-Origin Resource Sharing (CORS) configuration, check out the [Configure your Server documentation](../usage/configurations.md#storefront-cors).
:::
diff --git a/docs/content/starters/nextjs-medusa-starter.md b/docs/content/starters/nextjs-medusa-starter.md
index d572e9cad6..06e76923ec 100644
--- a/docs/content/starters/nextjs-medusa-starter.md
+++ b/docs/content/starters/nextjs-medusa-starter.md
@@ -16,19 +16,20 @@ This document assumes you already have a Medusa server installed. If you don’t
## Installation
-1. Create a new Next.js project using the [Medusa starter template](https://github.com/medusajs/nextjs-starter-medusa):
+1\. Create a new Next.js project using the [Medusa starter template](https://github.com/medusajs/nextjs-starter-medusa):
```bash
npx create-next-app -e https://github.com/medusajs/nextjs-starter-medusa my-medusa-storefront
```
-1. Change to the newly created directory `my-medusa-storefront` and rename the template environment variable file to use environment variables in development:
+2\. Change to the newly created directory `my-medusa-storefront` and rename the template environment variable file to use environment variables in development:
```bash
+cd my-medusa-storefront
mv .env.template .env.local
```
-1. Make sure the Medusa server is running, then run the local Next.js server:
+3\. Make sure the Medusa server is running, then run the local Next.js server:
```bash
npm run dev
diff --git a/docs/content/troubleshooting/cors-issues.md b/docs/content/troubleshooting/cors-issues.md
index 6cad1e6b18..6a3bd6b9d7 100644
--- a/docs/content/troubleshooting/cors-issues.md
+++ b/docs/content/troubleshooting/cors-issues.md
@@ -1,6 +1,6 @@
# CORS issues
-If you are experiencing connection issues when trying to access your Medusa server from a storefront, it is most likely due to CORS issues.
+If you are experiencing connection issues when trying to access your Medusa server from a storefront, it is most likely due to Cross-Origin Resource Sharing (CORS) issues.
You might see a log in your browser console, that looks like this:
diff --git a/docs/content/troubleshooting/documentation-error.md b/docs/content/troubleshooting/documentation-error.md
index d16945be1d..bef2bf02a6 100644
--- a/docs/content/troubleshooting/documentation-error.md
+++ b/docs/content/troubleshooting/documentation-error.md
@@ -1,6 +1,6 @@
# Documentation Error
-If you have installed the dependencies in the root of the Medusa repository (i.e., if you have a `node_modules` directory at the root of the Medusa repository), this will cause an error when running the documentation website.
+If you have installed the dependencies in the root of the Medusa repository (that is, if you have a `node_modules` directory at the root of the Medusa repository), this will cause an error when running the documentation website.
This is because the content resides in `docs/content`. When that content is being imported from there, a mix up can happen between the dependencies in the root of the Medusa repository and the dependencies in `www/docs` which causes an `invalid hook call` error.
diff --git a/docs/content/troubleshooting/signing-in-to-admin.md b/docs/content/troubleshooting/signing-in-to-admin.md
index 4896aa7225..5a2c09563a 100644
--- a/docs/content/troubleshooting/signing-in-to-admin.md
+++ b/docs/content/troubleshooting/signing-in-to-admin.md
@@ -15,4 +15,4 @@ medusa user -e some@email.com -p somepassword
## Additional Resources
-Learn more about our CLI tool in the [CLI reference](../cli/reference.md).
+Learn more about Medusa's CLI tool in the [CLI reference](../cli/reference.md).
diff --git a/docs/content/tutorial/0-set-up-your-development-environment.mdx b/docs/content/tutorial/0-set-up-your-development-environment.mdx
index c6799e9c7f..ba7d817407 100644
--- a/docs/content/tutorial/0-set-up-your-development-environment.mdx
+++ b/docs/content/tutorial/0-set-up-your-development-environment.mdx
@@ -138,13 +138,13 @@ npm install @medusajs/medusa-cli -g
## Optional Tools
-These tools are not required to have to run a Medusa server, but we highly recommend that you have them installed.
+These tools are not required to have to run a Medusa server, but it's highly recommended that you have them installed.
### PostgreSQL
:::info
-PostgreSQL is an open-source relational database system with more than 30 years of active development. It is robust, reliable, and ensures data integrity so there's no need to worry about those when you scale your project.
+PostgreSQL is an open-source relational database system with more than thirty years of active development. It is robust, reliable, and ensures data integrity so there's no need to worry about those when you scale your project.
:::
diff --git a/docs/content/tutorial/2-adding-custom-functionality.md b/docs/content/tutorial/2-adding-custom-functionality.md
deleted file mode 100644
index 03ba64d85c..0000000000
--- a/docs/content/tutorial/2-adding-custom-functionality.md
+++ /dev/null
@@ -1,268 +0,0 @@
----
-title: Adding custom functionality
----
-
-# Adding custom functionality
-
-## Introduction
-
-In the previous part of the tutorial we set up your Medusa project using the `medusa new` and started your Medusa server locally. In this part we will start adding some custom functionality that extends the core. In particular this tutorial will take you through adding custom services, custom endpoints and subscribers. The custom functionality that we will be adding will create an endpoint called `/welcome/:cart_id` which customers of your store can use to opt-in to receiving a welcome in their email inbox after completing their order.
-
-The custom functionality will do a number of things:
-
-- Create a custom service that handles the logic around opting in. The service will ensure that only first time buyers will receive a welcome.
-- Create a custom endpoint at `/welcome/:cart_id` which will take a `optin` parameter as part of its request body, and call our custom service.
-- Create a subscriber that listens for the `order.placed` event and tells the custom service to send a welcome.
-
-## Services
-
-We will begin our custom implementation by adding a custom service. In your project create a new file at `/src/services/welcome.js`. Open the newly created file and add a class:
-
-```javascript
-import { BaseService } from "medusa-interfaces"
-
-class WelcomeService extends BaseService {
- constructor({}) {
- super()
- }
-
- async registerOptin(cartId, optin) {}
-
- async sendWelcome(orderId) {}
-}
-
-export default WelcomeService
-```
-
-We will be filling out each of the methods in turn, but before we get to that it should be noted that placing files in `/src/services` has a special meaning in Medusa projects. When Medusa starts up it will look for files in this folder and register exports from these files to the global container. The global container holds all services and repositories in your Medusa project allowing for dependency injection. Dependency injection is a software development technique in which objects only receive other objects that it depends upon.
-
-### `constructor`
-
-We will see dependency injection in action now when implementing the constructor:
-
-```javascript
-constructor({ cartService, orderService }) {
- super()
-
- this.cartService_ = cartService
-
- this.orderService_ = orderService
-}
-```
-
-In the constructor we specify that our `WelcomeService` will depend upon the `cartService` and `orderService` and Medusa will make sure to provide those as the first argument to the constructor when starting up Medusa. We then keep a reference to these services within the `WelcomeService` so that we can use them later on.
-
-:::note
-
-Just like we can depend on the `cartService` and `orderService` other services will be able to depend on our newly created `WelcomeService`. The registration name of our service is the camelCased version of our file name with the registration type appended. I.e. `/src/services/welcome.js` -> `welcomeService`.
-
-:::
-
-### `registerOptin`
-
-The `registerOption` function will take two arguments: `cartId` and `optin`, where `cartId` holds the id of the cart that we wish to register optin for and `optin` is a boolean to indicate if the customer has accepted or optin or not. We will save the `optin` preferences in the cart's `metadata` field, so that it can be persisted for the future when we need to evaluate if we should send the welcome or not.
-
-```javascript
-async registerOptin(cartId, optin) {
- if (typeof optin !== "boolean") {
- throw new Error("optin must be a boolean value.")
- }
-
- return await this.cartService_.update(cartId, {
- metadata: { welcome_optin: optin }
- })
-}
-```
-
-The `registerOptin` implementation simply validates that the provided argument is of the correct type and calls the CartService function `update`. `update` takes two arguments: the first is the id of the cart to update and the second is an object that with the key/value pairs that we want to update. In this case we are updating the metadata on the cart. The `metadata` field on the cart is itself an object so we need to pass an object when updating this field.
-
-:::note
-
-Most entities in Medusa have a `metadata` field that can be used for customizations or integrations when it is necessary to persist some data relating to the entity. Metadata cannot be overridden by other
-plugins.
-
-:::
-
-### `sendWelcome`
-
-The final function to implement in our class is the `sendWelcome` function that takes one argument `orderId` which holds the id of an order that we will evaluate whether to send a welcome for. In the implementation we leverage that when an order is created from a cart all the cart's metadata is copied to the order. We can therefore check `metadata.welcome_optin` to evaluate if the customer has allowed us to send a welcome to their email.
-
-```javascript
-async sendWelcome(orderId) {
- const order = await this.orderService_.retrieve(orderId, {
- select: ["email", "customer_id", "metadata"]
- })
-
- const prevOrders = await this.orderService_.list({
- customer_id: order.customer_id
- }, {
- select: ["id"]
- })
-
- if (prevOrders.length > 1) {
- // We only send welcomes to new customers. This customer
- // has already completed an order before so we can stop.
- return
- }
-
- if (order.metadata && order.metadata.welcome_optin) {
- // Customer opted in so we should send an email
- return await someEmailSender.send({
- to: order.email,
- subject: "Welcome to our Medusa Store!",
- body: `We are so happy to have you!`
- })
- }
-}
-```
-
-In the above implementation we are first retrieving the order that we need to check if we should send a welcome for. We are selecting only the fields that we need. In this case the `email` on the order, we will use this if we need to send out the welcome email, the `customer_id` which is used to determine if the customer has completed prior orders and `metadata` to check if the customer opted in to receiving the welcome email.
-
-After retrieving the order we list all orders that have the same `customer_id` as the order we just retrieved. We are only interested in the count of these orders so it is sufficient for us to just select the ids of these orders.
-
-We then check if the number of previous orders is greater than 1, indicating that the customer has previously purchased anything from our store. If the number of previous orders is greater than 1 we can exit our function prematurely as we only send welcomes to new customers.
-
-The final part of the implementation checks if the `welcome_optin` metadata has been set to true. If the customer has opted in we use `someEmailService.send` to trigger and email dispatch to the email stored on the order. In this case `someEmailSender` could be any email service for example Sendgrid, SES, Mailgun, etc.
-
-:::note
-
-If you have `medusa-plugin-sendgrid` installed you can use `sendgridService` in your constructor to use it later in `sendWelcome`. You will then be able to do `sendgridService.send({ ... })`.
-
-:::
-
-We have completed the implementation of our custom service and we will now be able to call it from elsewhere in our project.
-
-## Endpoints
-
-Similarly to the `/src/services` directory, the `/src/api` directory has a special meaning in Medusa. Exports from this directory are assumed to be functions that return an express router instance that will be registered on the internal express app that Medusa creates when starting your server. This allows you to create custom endpoints for custom functionality. We will use this to create the custom endpoint that customers can use to give there welcome opt-in.
-
-Create a new file at `/src/api/index.js` and add the following controller:
-
-```javascript
-import { Router } from "express"
-import bodyParser from "body-parser"
-
-export default () => {
- const app = Router()
-
- app.post("/welcome/:cart_id", bodyParser.json(), async (req, res) => {
- // TODO
- })
-
- return app
-}
-```
-
-### Controller implementation
-
-Our endpoint controller's implementation will be very simple. It will extract the `id` from the path paramater and the `optin` flag from the request body. We will then use these values to call our the `WelcomeService`, which will take care of updating the cart metadata for later.
-
-```javascript
-app.post("/welcome/:cart_id", bodyParser.json(), async (req, res) => {
- const { cart_id } = req.params
- const { optin } = req.body
-
- // Validate that the optin value was provided.
- // If not respond with a Bad Request status
- if (typeof optin !== "boolean") {
- res.status(400).json({
- message: "You must provide an boolean optin value in the request body",
- })
- return
- }
-
- const welcomeService = req.scope.resolve("welcomeService")
-
- try {
- await welcomeService.registerOptin(cart_id, optin)
-
- res.status(200).json({
- success: true,
- })
- } catch (err) {
- // This is not supposed to happen.
- res.status(500).json({
- message: "Something unexpected happened.",
- })
- }
-})
-```
-
-In the implementation above we are first validating that the request body is structured correctly so that we can proceed with our opt-in registration. If the validation fails we respond with 400 Bad Request which is an HTTP code that indicates that the client that sent the request has not provided the correct values.
-
-After validation is passed we leverage Medusa's container system again to fetch our custom service. When Medusa starts up it places an object on the express `req` object called `scope` which contains the function `resolve` that can be used to get any of the services registered in Medusa by simply providing the registration name as a string. In this case we are resolving our custom `welcomeService`, but you can resolve any service such as the `cartService` or `orderService` using this function.
-
-We put our `registerOptin` function call in a try-catch block to ensure that we can handle unexpected errors. If the call to `registerOptin` succeeds we respond with 200 OK and if for some reason we encounter an error we respond with 500 Internal Server Error.
-
-We have now completed the implementation necessary to complete opt-in registration on a cart. To test that your implementation is working correctly start up your Medusa server using: `medusa develop`. You can now send requests to the server, first create a new cart using:
-
-```shell
-curl -X POST localhost:9000/store/carts | python -m json.tool
-```
-
-The copy the cart id (the one that starts with `cart_`) and use it to opt-in to the welcome pack using:
-
-```shell
-curl -X POST \
- -H 'Content-Type: application/json' \
- -d '{ "optin": true }' \
- localhost:9000/welcome/[copied cart id]
-```
-
-The endpoint should respond with `{"success":true}`. If you wish to check that the `metadata` field has been updated you can fetch the created cart by doing:
-
-```shell
-curl -X GET localhost:9000/store/carts/[copied cart id] | python -m json.tool
-```
-
-The response should contain the cart with the metadata field set like this:
-
-```
-{
- "cart": {
- ...,
- "metadata": {
- "welcome_optin": true
- },
- ...
- }
-}
-```
-
-## Subscribers
-
-The final thing that we will add in this part of the tutorial is the subscriber that listens for the `order.placed` event and sends out emails if the user has opted in for welcomes. Again we will leverage one of the special directories in Medusa that makes dependency injection easy and automatic. The directory to place a file in this time is the `/src/subscribers` directory, which treats exports as subscribers and makes sure the inject dependencies in a similar fashion to what we saw with services. To get started with our implementation create a file at `/src/subscribers/welcome.js` and add the following:
-
-```javascript
-class WelcomeSubscriber {
- constructor({ welcomeService, eventBusService }) {
- this.welcomeService_ = welcomeService
-
- eventBusService.subscribe("order.placed", this.handleWelcome)
- }
-
- handleWelcome = async (data) => {
- return await this.welcomeService_.sendWelcome(data.id)
- }
-}
-
-export default WelcomeSubscriber
-```
-
-The implementation above is all that is needed to automate the `sendWelcome` function to be called every time a new order is created. The subscriber class here delegates all of the business logic to the `sendWelcome` function, where we are checking for opt-in and first time buyers.
-
-If we take a closer look at the constructor it will seem pretty familiar. Just like with our custom service, we are indicating which dependencies we would like to receive and Medusa will make sure to pass these on as the first argument to our constructor. In this case we are depending on the `welcomeService` which is used to take care of sending welcomes, and the `eventBusService` which is a core service in Medusa that handles events across your server allowing you to subscribe to events of interest. In this case we are using the `eventBusService` to subscribe to the `order.placed` event which is emitted every time a new order is created. The subscription is registered by the `eventBusService.subscribe` function which takes the event name to subscribe to as its first argument and a callback function to call when the event occurs, as its second argument.
-
-In this case we are using the `handleWelcome` function as our callback. The callback function receives the data that is passed for the event. The `order.placed` event contains the order id in the data object which is what the `welcomeService` needs to handle the sending logic so we simply call `sendWelcome` with `data.id`.
-
-You can now start up your server and test out the subscriber. Given that you have opted in to receiving welcome emails you can complete an order and you should receive an email with the welcome message.
-
-## Summary
-
-You have now learned how to add custom functionality to your Medusa server, which is one of the most powerful features of the Medusa core. The example above is quite simple, yet we have covered many of the customization capabilities available. We first looked at how to include custom business logic in Medusa by using services and dependency injection. Afterwards we put that logic to use when implementing our custom endpoint and in the final part of the tutorial we added some simple automation that handles sending the welcome message on every new order.
-
-### What's next?
-
-You have now been introduced to many of the key parts of Medusa and with your knowledge of customization you can now begin creating some really powerful commerce experiences. If you have an idea for a cool customization go ahead and make it right now! If you are not completely ready yet you can browse the reference docs further.
-
-
diff --git a/docs/content/tutorial/3-linking-your-local-project-with-medusa-cloud.md b/docs/content/tutorial/3-linking-your-local-project-with-medusa-cloud.md
index 995e91f306..5aaeb78942 100644
--- a/docs/content/tutorial/3-linking-your-local-project-with-medusa-cloud.md
+++ b/docs/content/tutorial/3-linking-your-local-project-with-medusa-cloud.md
@@ -2,6 +2,8 @@
title: Linking your local project with Medusa Cloud
---
+
+
# Linking your local project with Medusa Cloud
## Introduction
@@ -64,3 +66,5 @@ You are all set to start developing on your Medusa project. If you haven't alrea
- [Gatsby Starter](https://github.com/medusajs/gatsby-starter-medusa)
The final step to take from here is to deploy your Medusa project. We will cover how this is done in the next part of the tutorial (Coming soon!).
+
+
\ No newline at end of file
diff --git a/docs/content/usage.md b/docs/content/usage.md
index 27b18f84f4..7dbcf2a2ba 100644
--- a/docs/content/usage.md
+++ b/docs/content/usage.md
@@ -1,5 +1,7 @@
# Collected Usage Information
+
+
This document gives an overview of Medusa’s optional collected usage information, how it helps Medusa become a better platform, and how developers can opt out of this feature.
## Overview
@@ -48,3 +50,5 @@ Or, you can run the following command in the root of your Medusa server project
```bash
medusa telemetry --disable
```
+
+
\ No newline at end of file
diff --git a/docs/content/usage/configurations.md b/docs/content/usage/configurations.md
index 40f4c66150..44fafba7fb 100644
--- a/docs/content/usage/configurations.md
+++ b/docs/content/usage/configurations.md
@@ -24,54 +24,9 @@ This change in how environment variables are loaded was introduced in version 1.
:::
-### Load from .env
-
-A common way to use environment variables during development or in production is using `.env` files.
-
-To load environment variables from a `.env` file, add the following at the top of `medusa-config.js`:
-
-```jsx
-const dotenv = require('dotenv')
-
- let ENV_FILE_NAME = '';
- switch (process.env.NODE_ENV) {
- case 'production':
- ENV_FILE_NAME = '.env.production';
- break;
- case 'staging':
- ENV_FILE_NAME = '.env.staging';
- break;
- case 'test':
- ENV_FILE_NAME = '.env.test';
- break;
- case 'development':
- default:
- ENV_FILE_NAME = '.env';
- break;
- }
-
- try {
- dotenv.config({ path: process.cwd() + '/' + ENV_FILE_NAME });
- } catch (e) {
- //handle error
- }
-```
-
-This code snippet uses the [dotenv](https://www.npmjs.com/package/dotenv) library to load environment variables from a local file. The file chosen to be loaded will be loaded based on the current environment.
-
-:::note
-
-`dotenv` should be available to use in your Medusa server project without the need to install it. However, if it’s not available you can install it with the following command:
-
-```npm2yarn
-npm install dotenv --save
-```
-
-:::
-
## Database Configuration
-Medusa supports 2 database types: SQLite and PostgreSQL.
+Medusa supports two database types: SQLite and PostgreSQL.
:::tip
@@ -81,7 +36,7 @@ You can use SQLite for development purposes, however, it’s recommended to use
### SQLite Configurations
-For SQLite you mainly need 2 configurations:
+For SQLite you mainly need two configurations:
```jsx
module.exports = {
@@ -103,7 +58,7 @@ Before getting started with configuring PostgreSQL, you should have created a Po
:::
-For PostgreSQL you mainly need 2 configurations:
+For PostgreSQL you mainly need two configurations:
```jsx
module.exports = {
@@ -181,9 +136,9 @@ You can learn more about Subscribers and events in the [Subscriber documentation
:::
-## JSON Web Token (JWT) Secret
+## JWT Secret
-Medusa uses JWT to handle user authentication. To set the JWT secret:
+Medusa uses JSON Web Token (JWT) to handle user authentication. To set the JWT secret:
```jsx
module.exports = {
@@ -353,6 +308,6 @@ It is recommended to use environment variables to store values of options instea
## What’s Next 🚀
-- Check out our [Next.js](../starters/nextjs-medusa-starter.md) and [Gatsby](../starters/gatsby-medusa-starter.md) starter storefronts.
+- Check out the [Next.js](../starters/nextjs-medusa-starter.md) and [Gatsby](../starters/gatsby-medusa-starter.md) starter storefronts.
- Install the [Medusa admin](../admin/quickstart.md).
- Learn about [deploying the Medusa server](../deployments/server/index.mdx).
diff --git a/docs/content/usage/create-medusa-app.mdx b/docs/content/usage/create-medusa-app.mdx
index 7ef4656cec..e645d1da21 100644
--- a/docs/content/usage/create-medusa-app.mdx
+++ b/docs/content/usage/create-medusa-app.mdx
@@ -3,15 +3,15 @@ import TabItem from '@theme/TabItem';
# Use create-medusa-app
-In this document, you’ll learn how to use `create-medusa-app` to create a Medusa project with the 3 main components of Medusa.
+In this document, you’ll learn how to use `create-medusa-app` to create a Medusa project with the three main components of Medusa.
## Overview
-As explained in the [Introduction guide](../introduction.md), Medusa is composed of 3 different components: the headless server, the storefront, and the admin dashboard.
+As explained in the [Introduction guide](../introduction.md), Medusa is composed of three different components: the headless server, the storefront, and the admin dashboard.
-Medusa provides the necessary tools and resources to set up the 3 components separately. This ensures that developers have full freedom to choose their tech stack, as they can choose any framework for the storefront and admin dashboard.
+Medusa provides the necessary tools and resources to set up the three components separately. This ensures that developers have full freedom to choose their tech stack, as they can choose any framework for the storefront and admin dashboard.
-However, if you’re interested in using Medusa’s starters for the 3 components, you can easily make use of the `create-medusa-app` command instead of creating each separately.
+However, if you’re interested in using Medusa’s starters for the three components, you can easily make use of the `create-medusa-app` command instead of creating each separately.
When you run the `create-medusa-app` command, you’ll install a Medusa server, a Medusa admin, and optionally a storefront at the same time.
diff --git a/docs/content/usage/local-development.md b/docs/content/usage/local-development.md
new file mode 100644
index 0000000000..8cabf8be0c
--- /dev/null
+++ b/docs/content/usage/local-development.md
@@ -0,0 +1,184 @@
+# Local Development
+
+In this document, you’ll learn how to customize Medusa’s core and run tests.
+
+## Overview
+
+As an open-source platform, Medusa’s core can be completely customized.
+
+Whether you want to implement something differently, introduce a new future as part of Medusa’s core or any of the other packages, or contribute to Medusa, this guide helps you learn how to run Medusa’s integration tests, as well as test your own Medusa core in a local server.
+
+### Medusa Repository Overview
+
+[Medusa’s repository on GitHub](https://github.com/medusajs/medusa) includes all packages related to Medusa under the [`packages` directory](https://github.com/medusajs/medusa/tree/master/packages). This includes the [core Medusa server](https://github.com/medusajs/medusa/tree/master/packages/medusa), the [JS Client](https://github.com/medusajs/medusa/tree/master/packages/medusa-js), the CLI tools, and much more.
+
+All the packages are part of a [Yarn workspace](https://classic.yarnpkg.com/lang/en/docs/workspaces/). So, when you run a command in the root of the project, such as `yarn build`, it goes through all registered packages in the workspace under the `packages` directory and runs the `build` command in each of those packages.
+
+## Prerequisites
+
+### Yarn
+
+When using and developing with the Medusa repository, it’s highly recommended that you use [Yarn](https://yarnpkg.com/getting-started/install) to avoid any errors or issues.
+
+### Fork and Clone Medusa’s Repository
+
+To customize Medusa’s core or contribute to it, you must first [fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) and then [clone](https://docs.github.com/en/get-started/quickstart/fork-a-repo#cloning-your-forked-repository) the [GitHub repository](https://github.com/medusajs/medusa).
+
+### Install Dependencies and Build Packages
+
+In the directory of the forked GitHub repository, run the following commands to install necessary dependencies then build all packages in the repository:
+
+```bash
+yarn install
+yarn build
+```
+
+### Medusa’s Dev CLI tool
+
+Medusa provides a CLI tool to be used for development. This tool facilitates testing your local installment and changes to Medusa’s core without having to publish the changes to NPM.
+
+To install Medusa’s dev CLI tool:
+
+```bash npm2yarn
+npm install medusa-dev-cli -g
+```
+
+### Set the Location of the Medusa Repository
+
+In the directory of your forked GitHub repository, run the following command to specify to the dev CLI tool the location of your Medusa repository:
+
+```bash
+medusa-dev --set-path-to-repo `pwd`
+```
+
+## Run Tests in the Repository
+
+In this section, you’ll learn how to run tests in the Medusa repository. This is helpful after you customize any of Medusa’s packages and want to make sure everything is still working as expected.
+
+### Run Unit Tests
+
+To run unit tests in all packages in the Medusa repository, run the following command in the root directory of the repository:
+
+```bash
+yarn test
+```
+
+This runs the `test` script defined in the `package.json` file of each package under the `packages` directory.
+
+Alternatively, if you want to run the unit tests in a specific package, you can run the `test` command in the directory of that package.
+
+For example, to run the unit tests of the Medusa core:
+
+```bash
+cd packages/medusa
+yarn test
+```
+
+### Run API Integration Tests
+
+API integration tests are used to test out Medusa’s core endpoints. To run the API integration tests:
+
+1. Change to the `integrations-tests/api` directory:
+
+```bash
+cd integration-tests/api
+```
+
+2\. Install dependencies using Medusa’s dev CLI tool:
+
+```bash
+medusa-dev --force-install --external-registry
+```
+
+3\. Run the test command:
+
+```bash
+yarn test
+```
+
+:::info
+
+The `--force-install` option passed to `medusa-dev` ensures that the packages are installing from the local registry rather than copied as explained in [the next section](#test-in-a-local-server).
+
+:::
+
+### Run Plugin Integration Tests
+
+Plugin integration tests are used to test out Medusa’s official plugins, which are also stored in the `packages` directory in the repository.
+
+To run the plugin integration tests:
+
+1. Change to the `integrations-tests/plugins` directory:
+
+```bash
+cd integration-tests/plugins
+```
+
+2\. Install dependencies using Medusa’s dev CLI tool:
+
+```bash
+medusa-dev --force-install --external-registry
+```
+
+3\. Run the test command:
+
+```bash
+yarn test
+```
+
+## Test in a Local Server
+
+Using Medusa’s dev CLI tool, you can test any changes you make to Medusa’s packages in a local server installation. This eliminates the need to publish these packages on NPM publicly to be able to use them.
+
+Medusa’s dev CLI tool scans and finds the Medusa packages used in your Medusa server. Then, it copies the files of these packages from the `packages` directory in the Medusa repository into the `node_modules` directory of your Medusa server.
+
+:::info
+
+Medusa’s Dev CLI tool uses the [path you specified earlier](#set-the-location-of-the-medusa-repository) to copy the files of the packages.
+
+:::
+
+### Copy Files to Local Server
+
+To test in a local server:
+
+1. Change to the directory of the server you want to test your changes in:
+
+```bash
+cd medusa-server
+```
+
+2\. Run the following command to copy the files from the `packages` directory of your Medusa repository into `node_modules`:
+
+```bash
+medusa-dev
+```
+
+By default, Medusa’s dev CLI runs in watch mode. So, it copies the files when you first run it, then, whenever you make changes in the packages in the Medusa repository, it copies the changed files again.
+
+### CLI Options
+
+Here are some options you can use to customize how Medusa’s dev CLI tool works:
+
+- `--scan-once` or `-s`: Copies files only one time then stops processing. If you make any changes after running the command with this option, you have to run the command again.
+
+```bash
+medusa-dev -s
+```
+
+- `--quiet` or `-q`: Disables showing any output.
+
+```bash
+medusa-dev -q
+```
+
+- `--packages`: Only copies specified packages. It accepts at least one package name. Package names are separated by a space.
+
+```bash
+medusa-dev --packages @medusajs/medusa-cli medusa-file-minio
+```
+
+## What’s Next 🚀
+
+- Check out our [contribution guidelines](https://github.com/medusajs/medusa/blob/master/CONTRIBUTING.md).
+- Learn how to [create a plugin](../advanced/backend/plugins/create.md).
diff --git a/docs/content/user-guide/gift-cards/manage.mdx b/docs/content/user-guide/gift-cards/manage.mdx
index 7bd5621f45..7f73df247b 100644
--- a/docs/content/user-guide/gift-cards/manage.mdx
+++ b/docs/content/user-guide/gift-cards/manage.mdx
@@ -107,7 +107,7 @@ To delete a denomination:
:::info
-You can add up to 10 images for a Gift Card.
+You can add up to ten images for a Gift Card.
:::
diff --git a/docs/content/user-guide/index.mdx b/docs/content/user-guide/index.mdx
index ddc4264e3f..80aabe5919 100644
--- a/docs/content/user-guide/index.mdx
+++ b/docs/content/user-guide/index.mdx
@@ -11,7 +11,7 @@ This user guide is intended to help users learn how they can use the Medusa admi
:::tip
-If you don’t have a Medusa admin yet, you can check [our live demo](https://demo.medusajs.com/)!
+If you don’t have a Medusa admin yet, you can check [the live demo](https://demo.medusajs.com/)!
:::
@@ -69,8 +69,8 @@ At the top right, you’ll find an avatar icon. By clicking this icon, you’ll

-### Need Help?
+### Need Help
-At the top right, you’ll find a icon. When you click on this icon, a form will pop up. You can use this form to send the Medusa team a message asking for help. Our team usually responds in a few hours on business days.
+At the top right, you’ll find a icon. When you click on this icon, a form will pop up. You can use this form to send the Medusa team a message asking for help. The Medusa team usually responds in a few hours on business days.

\ No newline at end of file
diff --git a/docs/content/user-guide/orders/claims.mdx b/docs/content/user-guide/orders/claims.mdx
index a3cd525e22..00aeeb5905 100644
--- a/docs/content/user-guide/orders/claims.mdx
+++ b/docs/content/user-guide/orders/claims.mdx
@@ -136,7 +136,7 @@ To cancel a claim’s fulfillment:
1. Open the order details page.
2. Scroll down to the Fulfillment section.
-3. Find the fulfillment you want to cancel. A claim’s fulfillment’s title should be prefixed with “Claim fulfillment”.
+3. Find the fulfillment you want to cancel. A claim’s fulfillment’s title should be prefixed with “Claim fulfillment”.
4. Click on the icon next to it.
5. Click on Cancel Fulfillment in the dropdown.
6. Confirm canceling the fulfillment by clicking the “Yes, confirm” button in the pop-up.
diff --git a/docs/content/user-guide/price-lists/create.md b/docs/content/user-guide/price-lists/create.md
deleted file mode 100644
index 82f347858c..0000000000
--- a/docs/content/user-guide/price-lists/create.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-sidebar_position: 2
----
-
-# Create a Price List
-
-:::note
-
-This guide is coming soon.
-
-:::
diff --git a/docs/content/user-guide/price-lists/delete.md b/docs/content/user-guide/price-lists/delete.md
deleted file mode 100644
index cd0519bc23..0000000000
--- a/docs/content/user-guide/price-lists/delete.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-sidebar_position: 4
----
-
-# Delete a Price List
-
-:::note
-
-This guide is coming soon.
-
-:::
diff --git a/docs/content/user-guide/price-lists/edit.md b/docs/content/user-guide/price-lists/edit.md
deleted file mode 100644
index b45784e3a6..0000000000
--- a/docs/content/user-guide/price-lists/edit.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-sidebar_position: 3
----
-
-# Edit a Price List
-
-:::note
-
-This guide is coming soon.
-
-:::
diff --git a/docs/content/user-guide/price-lists/index.md b/docs/content/user-guide/price-lists/index.md
index b627a43427..865cf53860 100644
--- a/docs/content/user-guide/price-lists/index.md
+++ b/docs/content/user-guide/price-lists/index.md
@@ -26,6 +26,4 @@ In the list, you can see price list details such as the name, description, and s
## Learn More About Price Lists
-- [Create a Price List](./create.md)
-- [Edit a Price List](./edit.md)
-- [Delete a Price List](./delete.md)
+- [Manage a Price List](./manage.mdx)
diff --git a/docs/content/user-guide/price-lists/manage.mdx b/docs/content/user-guide/price-lists/manage.mdx
new file mode 100644
index 0000000000..6e5ac0c9f3
--- /dev/null
+++ b/docs/content/user-guide/price-lists/manage.mdx
@@ -0,0 +1,173 @@
+---
+sidebar_position: 2
+---
+
+import UiIcon from '@site/src/components/UiIcon';
+
+# Manage Price Lists
+
+In this document, you’ll learn how to create, update, and delete price lists and their related information.
+
+## Create a Price List
+
+To create a price list:
+
+1. Go to the Pricing page.
+2. Click on the “Add price list” button at the top right.
+
+This opens the form to create the price list in a new window. The form is split into different sections.
+
+### Price List Type
+
+In this section, choose the type of the price list. It can be either a Sale or an Override.
+
+### General
+
+In this section, enter the name and description of the price list. Both fields are required.
+
+### Configuration
+
+In this section, you can choose some optional configurations that determine how the price list will be applied:
+
+1. To specify the start or end dates:
+ 1. Toggle the “Price overrides has a start date” or “Price overrides has an expiry date” fields.
+ 2. Choose the date and time.
+2. To specify customer groups that this price list will be applied for:
+ 1. Toggle the “Customer availability” field.
+ 2. In the Customer Groups field, choose at least one customer group.
+
+### Prices
+
+In this section, you must choose at least one product and specify the prices you want to apply to at least one of its variants.
+
+1. To add product prices:
+ 1. Click on the “Add Products Manually” button.
+ 2. Choose at least one product from the list.
+ 3. Click the Save button. The products will then be seen under the Prices section.
+ 4. For each product you added:
+ 1. Click on the icon at its right.
+ 2. To add the same price for all variants:
+ 1. Click on the icon next to any of the variants.
+ 2. Choose “Edit Prices” from the dropdown.
+ 3. In the new window, choose the “Apply on all variants” option.
+ 4. Enter the price for each currency.
+ 5. Click on the “Save and close” button.
+ 3. To add a price for each variant:
+ 1. Click on the icon next to a variant.
+ 2. Choose “Edit Prices” from the dropdown.
+ 3. In the new window, choose the “Apply overrides on selected variants” option.
+ 4. Choose the variants that you want to apply the current pricing to.
+ 5. Enter the price for each currency.
+ 6. Click on the “Save and close” button.
+ 4. To remove a variant from the price list:
+ 1. Click on the icon next to the variant.
+ 2. Click on the Remove from List button.
+2. To remove products from the prices list:
+ 1. Click on the “Add Products Manually” button.
+ 2. Uncheck the products you previously added and want to remove.
+ 3. Click on the Save button.
+
+### Save the Price List
+
+To save the price list you can either:
+
+1. Click the “Save as draft” button to save the price list without publishing it;
+2. Or click the “Publish price list” button to save and publish the price list.
+
+---
+
+## View Price List Details
+
+To view a price list’s details:
+
+1. Go to the Pricing page.
+2. Click on the price list you want to view.
+
+---
+
+## Change Price List Status
+
+:::info
+
+Publishing a price list makes it and its prices available to customers. Unpublishing a price list makes it and its prices unavailable to customers.
+
+:::
+
+To change a price list’s status:
+
+1. Go to the Pricing page.
+2. Click on the icon next to the price list.
+3. Based on the current status, click on the Unpublish or Publish links in the dropdown to change the status.
+
+---
+
+## Edit Price List’s Configurations
+
+To edit a price list’s information and configurations:
+
+1. Go to the price list’s details page.
+2. Click on the icon in the first section.
+3. Choose “Edit price list details”.
+4. This opens a form in a new window that has the [same sections as the Create Price List form](#create-a-price-list), except for the Prices section. You can edit the price list’s general information, customer groups, and start and end dates.
+5. Once you’re done making changes, click on the Save changes button.
+
+---
+
+## Manage Prices
+
+### Add Product Prices
+
+To add new product prices:
+
+1. Go to the price list’s details page.
+2. In the Prices section, click on the icon.
+3. Click on “Edit manually” in the dropdown.
+4. This opens a new window with a form similar to the [Prices section in the Create form](#prices). You can search for or manually add products.
+5. Once you’re done, click on the “Save changes” button.
+
+### Edit a Product’s Prices
+
+To edit the prices in the price list:
+
+1. Go to the price list’s details page.
+2. Find the product you want to edit in the Prices section.
+3. Click on the icon next to it.
+4. Choose “Edit prices” from the dropdown.
+5. In the new window:
+ 1. Click on the icon next to the product’s name to expand the list of variants.
+ 2. Click on the icon next to the variant you want to edit.
+ 3. Edit the prices of the variant for each currency.
+ 4. Once you’re done, click on the “Save and close” button.
+6. Once you’re done editing the product’s prices, click on the Save button.
+
+### Delete a Product’s Prices
+
+:::warning
+
+Deleting a product’s prices in a price list cannot be undone.
+
+:::
+
+To delete all the prices of a product in a price list:
+
+1. Go to the price list’s details page.
+2. Find the product you want to edit in the Prices section.
+3. Click on the icon next to it.
+4. Click on “Remove product” in the dropdown.
+
+---
+
+## Delete Price List
+
+:::caution
+
+Deleting a price list cannot be undone. Prices defined in the price list will no longer be available for the customers.
+
+:::
+
+To delete a price list:
+
+1. Go to the Pricing page.
+2. Click on the icon next to the price list you want to delete.
+3. Click on Delete in the dropdown.
+4. Confirm deleting the price list by clicking the “Yes, confirm” button in the pop-up.
\ No newline at end of file
diff --git a/docs/content/user-guide/products/collections.md b/docs/content/user-guide/products/collections.md
index 79bea495f8..158fc079ac 100644
--- a/docs/content/user-guide/products/collections.md
+++ b/docs/content/user-guide/products/collections.md
@@ -1,5 +1,5 @@
---
-sidebar_position: 5
+sidebar_position: 6
---
# Manage Collections
diff --git a/docs/content/user-guide/products/import.mdx b/docs/content/user-guide/products/import.mdx
new file mode 100644
index 0000000000..8e71d4e9c8
--- /dev/null
+++ b/docs/content/user-guide/products/import.mdx
@@ -0,0 +1,70 @@
+---
+sidebar_position: 5
+---
+
+import UiIcon from '@site/src/components/UiIcon';
+
+# Import Products
+
+In this document, you’ll learn how to import products into your Medusa store.
+
+## Overview
+
+To import products, you must have the products in a CSV file. You can see a template of the CSV file during the import process.
+
+When you import products into your Medusa store, you’ll either create new products or update existing ones.
+
+---
+
+## Import List of Products
+
+To import products:
+
+1. Go to the Products page.
+2. Click on Import Products at the top right.
+3. In the new window:
+ 1. If you’re unsure of what the CSV file’s format must be like, you can download a template CSV file by clicking the icon.
+ 2. To upload the CSV file you want to import products from, either:
+ 1. Drag and drop the file into the dashed box;
+ 2. Or click on the dashed box and choose the file you want to import the products from.
+ 3. After you upload the CSV file:
+ 1. You can check the number of products to be created or updated above the uploaded file’s name.
+ 2. You can remove the file you choose by clicking the icon.
+4. Once you’re done choosing a file to import products from, click on the Import List button.
+
+This starts the import status. Based on the number of products you’re importing, it can take some time.
+
+:::note
+
+If you face any errors or difficulties, please contact your technical support team as this could be an issue in the storage integration used.
+
+:::
+
+### Check Import Status
+
+To check the status of the import:
+
+1. Click on the icon at the top right of the page.
+2. Find the product import, which should be the latest item on the list.
+
+If a loading indicator is showing, then the import process is still in progress.
+
+If the import is done, you should see the text “Import of products is done.”
+
+Once the import is done, you should find the created/updated products on the Products page.
+
+---
+
+## Cancel Import
+
+:::info
+
+You can only cancel an unfinished product import.
+
+:::
+
+To cancel a product import:
+
+1. Click on the icon at the top right of the page.
+2. Find the import you want to cancel.
+3. Click on the cancel button.
\ No newline at end of file
diff --git a/docs/content/user-guide/products/index.mdx b/docs/content/user-guide/products/index.mdx
index a5f86e3c36..c343efe116 100644
--- a/docs/content/user-guide/products/index.mdx
+++ b/docs/content/user-guide/products/index.mdx
@@ -48,7 +48,8 @@ In the list, you can see collection details such as the title, handle, and the n
## Learn More About Products
-- [Manage Products](./manage.md)
+- [Manage Products](./manage.mdx)
- [Manage Digital Products](./manage-digital.md)
- [Manage Collections](./collections.md)
-- [Export Products](./export.mdx)
\ No newline at end of file
+- [Export Products](./export.mdx)
+- [Import Products](./import.mdx)
\ No newline at end of file
diff --git a/docs/content/user-guide/products/manage.md b/docs/content/user-guide/products/manage.md
deleted file mode 100644
index 0e52872273..0000000000
--- a/docs/content/user-guide/products/manage.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-sidebar_position: 2
----
-
-# Manage Products
-
-:::note
-
-This guide is coming soon.
-
-:::
diff --git a/docs/content/user-guide/products/manage.mdx b/docs/content/user-guide/products/manage.mdx
new file mode 100644
index 0000000000..85249a3f26
--- /dev/null
+++ b/docs/content/user-guide/products/manage.mdx
@@ -0,0 +1,304 @@
+---
+sidebar_position: 2
+---
+
+import UiIcon from '@site/src/components/UiIcon';
+
+# Manage Products
+
+In this document, you’ll learn how to create new products, edit different fields and areas in a product, and more.
+
+## Create a Product
+
+To create a new product:
+
+1. Go to the Products page.
+2. Click on the New Product button at the top right.
+
+This opens a new form with different sections. The only field required is the Title field in the General Information Section.
+
+### General Information Section
+
+1. Enter the required field Title.
+2. If you don’t provide a value for the Handle field, it will be generated from the title.
+3. If you don’t want discounts to be applied to this product, toggle the Discountable field off.
+4. Optionally enter the rest of the general information fields.
+
+### Organize Section
+
+All fields in this section allow you to better group and filter your products using types, collections, and tags.
+
+1. You can either choose from a list of types or create a new one.
+2. You can choose from a list of collections.
+3. Tags are comma-separated. After entering a tag’s value, add a comma “,” and it will create the tag. You can remove the tag by pressing the icon next to it.
+
+### Variants Section
+
+In this section, you can create different options and variants of a product. You must add an option before you can add variants.
+
+1. Add a new option by clicking the “Add an option” button.
+ 1. This shows two new fields: the Title and the Variations fields. Separate the variations using a comma “,”. You can remove a variation by clicking the icon next to it.
+ 2. To remove an option, click on the icon next to it.
+2. Add a new variant by clicking the “Add a variant” button. In the new window that opens:
+ 1. Enter the required fields Custom title and choose a value for each option you created.
+ 2. In the Pricing section, you can specify the price for each currency. To specify the price per region:
+ 1. Click on the icon next to the currency. This expands a list of regions below the currency. These are regions that use this currency.
+ 2. Enter the price for the region you want.
+ 3. In the Stock & Inventory section, you can manage how Medusa handles the product’s inventory, the quantity in stock, and more.
+ 1. If Manage Inventory is enabled, Medusa will change the available quantity of the variant when orders or returns are made.
+ 2. If Allow Backorders is enabled, customers can purchase this variant even if it’s out-of-stock.
+ 4. In the Shipping section, you can specify information relevant to shipping such as Height, Weight, Country of origin, and more.
+3. You can edit a variant by clicking the icon, then choosing Edit from the dropdown.
+4. You can delete a variant by clicking the icon, then choosing Delete from the dropdown.
+
+### Attributes Section
+
+This section includes optional fields that are used for shipping and customs.
+
+### Thumbnail Section
+
+:::info
+
+You can upload only one thumbnail. Uploading another thumbnail replaces the previous one.
+
+:::
+
+1. To upload a thumbnail either:
+ 1. Click the dashed box and choose an image;
+ 2. Or drag-and-drop an image in the dashed box.
+2. To delete a thumbnail:
+ 1. Click on the icon.
+ 2. Click Delete from the dropdown.
+
+### Media Section
+
+:::info
+
+You can upload more than one image in the Media section.
+
+:::
+
+1. To upload an image either:
+ 1. Click the dashed box and choose an image;
+ 2. Or drag-and-drop an image in the dashed box.
+2. To delete an image:
+ 1. Click on the icon.
+ 2. Click Delete from the dropdown.
+
+### Save the Product
+
+To save the product you can either:
+
+1. Click the “Save as draft” button to save the product without publishing it.
+2. Click the “Publish product” button to save the product and publish it.
+
+## View Product Details
+
+To view a product’s details:
+
+1. Go to the Products page.
+2. Click on the product you want to view.
+
+## Edit a Product’s General Information
+
+To edit a product’s general information:
+
+1. Go to the product’s details page.
+2. Click on the at the top right of the first section.
+3. Click on “Edit General Information” from the dropdown.
+4. Edit any of the information in the window.
+5. Once done, click on the Save button.
+
+## Change a Product’s Status
+
+A product’s status can either be Draft or Published.
+
+To change a product’s status:
+
+1. Go to the product’s details page.
+2. Click on the status at the top right of the first section. For example, if the current status of the product is Draft, you should see Draft written at the top right of the first section.
+3. Click on the status in the dropdown to change the status.
+
+## Manage Product Options
+
+:::info
+
+After a product is created, the only way to add values to an option is when you add or edit a variant. Adding a new option automatically creates the value “Default Value”. An option’s value is deleted if no variant is using it.
+
+:::
+
+To manage a product’s option:
+
+1. Go to the product’s details page.
+2. Click on the icon in the top right of the Variants section.
+3. Click on Edit Options from the dropdown.
+4. In the new window that opens:
+ 1. You can add a new option by clicking the “Add an option” button.
+ 2. You can edit an option’s name by changing its name in the field.
+ 3. You can delete an option by clicking the icon.
+5. Once you’re done, click on the "Save and close" button.
+
+## Manage Product Variants
+
+### Add a Variant
+
+:::info
+
+Multiple variants can’t have the same options combination.
+
+:::
+
+To add a variant to a product:
+
+1. Go to the product’s details page.
+2. Click on the icon in the top right of the Variants section.
+3. Click on Add Variant from the dropdown.
+4. In the window that opens:
+ 1. Enter the required title field.
+ 2. Choose a value for each option in the product.
+ 3. In the Pricing section, you can specify the price for each currency. To specify the price per region:
+ 1. Click on the icon next to the currency. This expands a list of regions below the currency. These are regions that use this currency.
+ 2. Enter the price for the region you want.
+ 4. In the Stock & Inventory section, you can manage how Medusa handles the product’s inventory, the quantity in Stock, and more.
+ 1. If Manage Inventory is enabled, Medusa will change the available quantity of the variant when orders or returns are made.
+ 2. If Allow Backorders is enabled, customers can purchase this variant even if it’s out-of-stock.
+ 5. In the Shipping section, you can specify information relevant to shipping such as Height, Weight, Country of origin, and more.
+5. Once you’re done, click on the “Save and close” button.
+
+### Edit Variants Position
+
+To edit variants’ position in a product:
+
+1. Go to the product’s details page.
+2. Click on the icon in the top right of the Variants section.
+3. Click on Edit Variants from the dropdown.
+4. In the window that opens:
+ 1. Click and hold the icon next to the variant, then drag it to the position you want.
+ 2. You can also change the inventory of the variants.
+5. Once you’re done, click on the “Save and close” button.
+
+### Edit a Variant
+
+To edit a variant:
+
+1. Go to the product’s details page.
+2. Find the variant you want to edit in the Variants section.
+3. Click on the icon.
+4. Click on Edit Variant from the dropdown.
+5. In the new window that opens, you can edit all of the variant’s information.
+6. Once you’re done, click on the “Save and close” button.
+
+### Duplicate a Variant
+
+To duplicate a variant:
+
+1. Go to the product’s details page.
+2. Find the variant you want to duplicate in the Variants section.
+3. Click on the icon.
+4. Click on Duplicate Variant from the dropdown.
+5. This opens a new window with almost all fields filled except for the selected Options.
+6. Once you’re done, click on the “Save and close” button.
+
+### Delete a Variant
+
+:::warning
+
+Deleting a variant can’t be undone.
+
+:::
+
+To delete a variant:
+
+1. Go to the product’s details page.
+2. Find the variant you want to duplicate in the Variants section.
+3. Click on the icon.
+4. Click on Delete Variant from the dropdown.
+
+## Edit a Product’s Attributes
+
+To edit a product’s attributes:
+
+1. Go to the product’s details page.
+2. Click on the icon in the top right of the Attributes section.
+3. Click on Edit Attributes from the dropdown.
+4. In the new window that opens, you can edit any of the attribute information of the product.
+5. Once you’re done, click on the Save button.
+
+## Manage Thumbnails
+
+### Set Thumbnail
+
+:::info
+
+You can have only one thumbnail. If you add another, it replaces the existing one.
+
+:::
+
+To manage the thumbnail of a product:
+
+1. Go to the product’s details page.
+2. In the Thumbnail section, click on either the Edit or Upload buttons depending on whether you already have a thumbnail for the product or not.
+3. In the new window, to upload the thumbnail you can either:
+ 1. Click the dashed box and choose an image;
+ 2. Or drag-and-drop an image in the dashed box.
+4. Once you’re done, click on the “Save and close” button.
+
+### Delete Thumbnail
+
+:::caution
+
+Deleting a thumbnail can’t be undone.
+
+:::
+
+To delete a thumbnail:
+
+1. Go to the product’s details page.
+2. Click on the icon at the top right of the Thumbnail section.
+3. Click the Confirm button.
+
+## Manage Images
+
+:::info
+
+You can upload more than one image for the product.
+
+:::
+
+To manage a product’s images
+
+1. Go to the product’s details page.
+2. Click on the Edit Media button in the Media section.
+3. In the new window that opens:
+ 1. To upload a new image you can either:
+ 1. Click the dashed box and choose an image;
+ 2. Or drag-and-drop an image in the dashed box.
+ 2. To delete an image:
+ 1. Click on the icon.
+ 2. Click on Delete from the dropdown.
+4. Once you’re done, click Save and close.
+
+## Duplicate a Product
+
+To duplicate a product:
+
+1. Go to the Products page.
+2. Click on the icon next to the product you want to duplicate.
+3. Click on Duplicate from the dropdown.
+
+This creates a product with the same information as the original but as a draft.
+
+## Delete a Product
+
+:::warning
+
+Deleting a product can’t be undone. You’ll lose all the product information.
+
+:::
+
+To delete a product:
+
+1. Go to the Products page.
+2. Click on the icon next to the product you want to delete.
+3. Click on Delete from the dropdown.
+4. Confirm deleting the product by clicking the “Yes, confirm” button in the pop-up.
diff --git a/docs/content/user-guide/regions/index.md b/docs/content/user-guide/regions/index.md
index 8e8fbc6815..9877469309 100644
--- a/docs/content/user-guide/regions/index.md
+++ b/docs/content/user-guide/regions/index.md
@@ -31,5 +31,5 @@ For example, if you have Stripe enabled as a payment provider in a region create
## Learn More About Regions
- [Manage Regions](./manage.mdx)
-- [Manage Payment and Fulfillment Providers](./providers.md)
-- [Manage Shipping Options in a Region](./shipping-options.md)
+- [Manage Payment and Fulfillment Providers](./providers.mdx)
+- [Manage Shipping Options in a Region](./shipping-options.mdx)
diff --git a/docs/content/user-guide/regions/manage.mdx b/docs/content/user-guide/regions/manage.mdx
index 2480af9c0a..6038ff6db0 100644
--- a/docs/content/user-guide/regions/manage.mdx
+++ b/docs/content/user-guide/regions/manage.mdx
@@ -24,11 +24,11 @@ This opens the Regions page where you can find a list of regions.
To create a region:
1. Go to Settings → Regions.
-2. Click on Add Region at the top right of the Regions section.
-3. In the window that opens you must enter the Regions details:
- - It is required to enter a name and choose a currency and at least one country, payment provider, and fulfillment provider.
- - You can optionally enter a tax rate and code for the region. Alternatively, you can [edit a region’s tax settings and rates](../taxes/manage.md#edit-a-regions-taxes) after creation.
-4. Once you’re done, click Save.
+2. Click on the icon at the top right of the Regions section.
+3. In the form that opens you must enter the Regions details:
+ - It is required to enter a title, choose a currency, enter a tax rate, and at least choose one country, payment provider, and fulfillment provider.
+ - You can optionally enter a tax code for the region. Alternatively, you can [edit a region’s tax settings](../taxes/manage.md#edit-a-regions-taxes) after creation.
+4. Once you’re done, click on the "Create region" button.
:::tip
@@ -42,26 +42,16 @@ After you click save, the region will be created and you can see it in the list
## Edit a Region
-To edit a region:
+To edit a region's basic information:
1. Go to Settings → Regions.
-2. Click on the region you want to edit from the Regions section.
-3. This opens a Details form to the right. You can edit basic information such as the name or currency.
-4. Once you’re done, click Save.
+2. Click on the region you want to edit from the Regions section. This shows sections to the right to edit different information and data related to the region.
+4. Click on the icon at the top right of the first region.
+5. This opens a new window where you can edit the region's details.
+6. Once done, click on the "Save and close" button.
---
-## Duplicate a Region
-
-Duplicating a region allows you to create a new region with some of its details filled from an existing region. The details that will be copied are the currency, payment providers, and fulfillment providers.
-
-To duplicate a region:
-
-1. Go to Settings → Regions.
-2. Click on the region you want to duplicate from the Regions section.
-3. In the Details section, click on the icon.
-4. Choose Duplicate Region from the dropdown list.
-
## Delete a Region
:::warning
@@ -74,6 +64,6 @@ To delete a region:
1. Go to Settings → Regions.
2. Click on the region you want to duplicate from the Regions section.
-3. In the Details section, click on the icon.
+3. In the first section on the right, click on the icon.
4. Choose Delete Region from the dropdown list.
-5. Confirm deleting the region by clicking the “Yes, delete” button in the pop-up.
\ No newline at end of file
+5. Confirm deleting the region by clicking the “Yes, confirm" button in the pop-up.
\ No newline at end of file
diff --git a/docs/content/user-guide/regions/providers.md b/docs/content/user-guide/regions/providers.md
deleted file mode 100644
index 1d3805bd08..0000000000
--- a/docs/content/user-guide/regions/providers.md
+++ /dev/null
@@ -1,39 +0,0 @@
----
-sidebar_position: 3
----
-
-# Manage Payment and Fulfillment Providers
-
-In this document, you’ll learn how to manage a region’s payment and fulfillment providers in your Medusa Admin.
-
-## Overview
-
-You can choose the payment and fulfillment providers available in each region. This allows you to provide customers in specific regions the providers that are available in their country or region.
-
-When a payment or fulfillment provider is added to a region, it means a customer is able to select that payment or fulfillment provider during checkout to complete their purchase.
-
----
-
-## Manage Payment Providers
-
-To add or remove a payment provider in a region:
-
-1. Go to Settings → Regions.
-2. Select a region to edit.
-3. Scroll down to the Payment Providers section in the Details form.
-4. Select the payment providers you want to add to the region.
-5. Unselect the payment providers you want to remove from the region.
-6. Click Save.
-
----
-
-## Manage Fulfillment Providers
-
-To add or remove a fulfillment provider in a region:
-
-1. Go to Settings → Regions.
-2. Select a region to edit.
-3. Scroll down to the Fulfillment Providers section in the Details form.
-4. Select the fulfillment providers you want to add to the region.
-5. Unselect the fulfillment providers you want to remove from the region.
-6. Click Save.
diff --git a/docs/content/user-guide/regions/providers.mdx b/docs/content/user-guide/regions/providers.mdx
new file mode 100644
index 0000000000..c948574ea8
--- /dev/null
+++ b/docs/content/user-guide/regions/providers.mdx
@@ -0,0 +1,44 @@
+---
+sidebar_position: 3
+sidebar_label: Manage Providers
+---
+
+import UiIcon from '@site/src/components/UiIcon';
+
+# Manage Payment and Fulfillment Providers
+
+In this document, you’ll learn how to manage a region’s payment and fulfillment providers in your Medusa Admin.
+
+## Overview
+
+You can choose the payment and fulfillment providers available in each region. This allows you to provide customers in specific regions the providers that are available in their country or region.
+
+When a payment or fulfillment provider is added to a region, it means a customer is able to select that payment or fulfillment provider during checkout to complete their purchase.
+
+---
+
+## Manage Payment Providers
+
+To add or remove a payment provider in a region:
+
+1. Go to Settings → Regions.
+2. Select a region to edit.
+3. Click on the icon at the top right of the first section on the right.
+4. Click on Edit Region Details from the dropdown.
+5. Under the providers section, select the payment providers you want to add to the region.
+6. Unselect the payment providers you want to remove from the region.
+7. Click Save.
+
+---
+
+## Manage Fulfillment Providers
+
+To add or remove a fulfillment provider in a region:
+
+1. Go to Settings → Regions.
+2. Select a region to edit.
+3. Click on the icon at the top right of the first section on the right.
+4. Click on Edit Region Details from the dropdown.
+5. Under the providers section, select the fulfillment providers you want to add to the region.
+6. Unselect the fulfillment providers you want to remove from the region.
+7. Click Save.
diff --git a/docs/content/user-guide/regions/shipping-options.md b/docs/content/user-guide/regions/shipping-options.md
deleted file mode 100644
index 5caff21a73..0000000000
--- a/docs/content/user-guide/regions/shipping-options.md
+++ /dev/null
@@ -1,112 +0,0 @@
----
-sidebar_position: 4
----
-
-# Manage Shipping Options
-
-In this document, you’ll learn how to manage a region’s shipping options in your Medusa Admin.
-
-## Types of Shipping Options
-
-There are two types of shipping options in a region:
-
-1. Shipping Options are used when a customer places an order or when an admin creates a draft order.
-2. Return Shipping Options are used when a customer requests a return or swap for their order, or when an admin registers an exchange, a claim, or a return for an order.
-
-A shipping option can’t be used for both cases. In a region, you can create an unlimited amount of shipping options and return shipping options.
-
-## Manage Shipping Options in a Region
-
-### Add Shipping Option to a Region
-
-To add a shipping option:
-
-1. Go to Settings → Regions.
-2. Select a region to edit.
-3. Scroll down to the Shipping Options section in the Details form.
-4. Click on Add Option.
-5. A new window will open with a form with the following fields:
- - **Name (Required):** The name of the shipping option. The customer will see this name on the storefront if the “Show on Website” field is checked.
- - **Currency:** This is a read-only field and its value depends on the currency of the region.
- - **Price (Required):** The price of the shipping option.
- - **Show on Website:** Whether or not this option should be available on the website. This is useful if you want to create a shipping option only for use on the Medusa Admin (for example, to create draft orders).
- - **Shipping Profile (Required):** The shipping profile this option belongs to.
- - **Fulfillment Method (Required):** the fulfillment provider that will handle fulfilling this shipping option.
- - **Requirements:** You can use this to specify a condition for when this shipping option should be available. The first field indicates the minimum cart subtotal, and the second field indicates the maximum cart subtotal. For example, you can fill in the first field “100” to only allow using this shipping option if the cart’s subtotal is at least $100.
-6. Once you’re done, click Save.
-
-### Edit a Shipping Option
-
-To edit a shipping option:
-
-1. Go to Settings → Regions.
-2. Select a region to edit.
-3. Scroll down to the Shipping Options section in the Details form.
-4. Find the shipping option you want to edit and click on Edit at the right of its name.
-5. A new window will open with the fields that you can edit. You can edit all of the fields you chose while adding the shipping option except for the Shipping Profile and Fulfillment Method.
-6. Once done, click Save.
-
-### Delete a Shipping Option
-
-:::warning
-
-If you delete a shipping option, you can’t restore it or its data, customers can’t use it during checkout, and admins can’t use it for draft orders.
-
-:::
-
-To delete a shipping option:
-
-1. Go to Settings → Regions.
-2. Select a region to edit.
-3. Scroll down to the Shipping Options section in the Details form.
-4. Find the shipping option you want to edit and click on Edit at the right of its name.
-5. A new window will open. Click on Delete under the Danger Zone section.
-6. Confirm deleting the shipping option by clicking the “Yes, remove” button in the pop-up.
-
----
-
-## Manage Return Shipping Options in a Region
-
-### Add Return Shipping Option to a Region
-
-To add a return shipping option:
-
-1. Go to Settings → Regions.
-2. Select a region to edit.
-3. Scroll down to the Return Shipping Options section in the Details form.
-4. Click on Add Return.
-5. A new window will open with a form with the following fields:
- - **Name (Required):** The name of the return shipping option. The customer will see this name on the storefront if the “Show on Website” field is checked.
- - **Currency:** This is a read-only field and its value depends on the currency of the region.
- - **Price (Required):** The price of the return shipping option.
- - **Show on Website:** Whether or not this option should be available on the website. This is useful if you want to create a return shipping option only for use on the Medusa Admin (for example, to create claims or return requests from the Medusa Admin).
- - **Fulfillment Method (Required):** the fulfillment provider that will handle fulfilling this return shipping option.
-6. Once you’re done, click Save.
-
-### Edit a Return Shipping Option
-
-To edit a return shipping option:
-
-1. Go to Settings → Regions.
-2. Select a region to edit.
-3. Scroll down to the Return Shipping Options section in the Details form.
-4. Find the return shipping option you want to edit and click on Edit at the right of its name.
-5. A new window will open with the fields that you can edit. You can edit all of the fields you chose while adding the shipping profile except for the Fulfillment Method.
-6. Once done, click Save.
-
-### Delete a Return Shipping Option
-
-:::warning
-
-If you delete a return shipping option, you can’t restore it or its data, customers can’t use it when they request a return or an exchange, and admins can’t use it when requesting a return for an order or registering an exchange or claim for an order.
-
-:::
-
-To delete a return shipping option:
-
-1. Go to Settings → Regions.
-2. Select a region to edit.
-3. Scroll down to the Return Shipping Options section in the Details form.
-4. Find the return shipping option you want to edit and click on Edit at the right of its name.
-5. A new window will open. Click on Delete under the Danger Zone section.
-6. Confirm deleting the return shipping option by clicking the “Yes, remove” button in the pop-up.
\ No newline at end of file
diff --git a/docs/content/user-guide/regions/shipping-options.mdx b/docs/content/user-guide/regions/shipping-options.mdx
new file mode 100644
index 0000000000..aeb5112b5f
--- /dev/null
+++ b/docs/content/user-guide/regions/shipping-options.mdx
@@ -0,0 +1,114 @@
+---
+sidebar_position: 4
+---
+
+import UiIcon from '@site/src/components/UiIcon';
+
+# Manage Shipping Options
+
+In this document, you’ll learn how to manage a region’s shipping options in your Medusa Admin.
+
+## Types of Shipping Options
+
+There are two types of shipping options in a region:
+
+1. Shipping Options are used when a customer places an order or when an admin creates a draft order.
+2. Return Shipping Options are used when a customer requests a return or swap for their order, or when an admin registers an exchange, a claim, or a return for an order.
+
+A shipping option can’t be used for both cases. In a region, you can create an unlimited amount of shipping options and return shipping options.
+
+## Manage Shipping Options in a Region
+
+### Add Shipping Option to a Region
+
+To add a shipping option:
+
+1. Go to Settings → Regions.
+2. Select a region to edit.
+3. Scroll down to the Shipping Options section on the right side.
+4. Click on the Add Option button.
+5. A new window will open with a form with the following fields:
+ - **Title (Required):** The name of the shipping option. The customer will see this name on the storefront if the “Show on Website” field is checked.
+ - **Price (Required):** The price of the shipping option.
+ - **Shipping Profile (Required):** The shipping profile this option belongs to.
+ - **Fulfillment Method (Required):** the fulfillment provider that will handle fulfilling this shipping option.
+ - **Visible is Store:** Whether or not this option should be available on the website. This is useful if you want to create a shipping option only for use on the Medusa Admin (for example, to create draft orders).
+ - **Requirements:** You can use this to specify a condition for when this shipping option should be available. The first field indicates the minimum cart subtotal, and the second field indicates the maximum cart subtotal. For example, you can fill in the first field “100” to only allow using this shipping option if the cart’s subtotal is at least $100.
+6. Once you’re done, click Save.
+
+### Edit a Shipping Option
+
+To edit a shipping option:
+
+1. Go to Settings → Regions.
+2. Select a region to edit.
+3. Scroll down to the Shipping Options section on the right side.
+4. Find the shipping option you want to edit and click on the three dots icon at its right.
+5. Click on Edit in the dropdown.
+6. A new window will open with the fields that you can edit. You can edit all of the fields you chose while adding the shipping option except for the Shipping Profile and Fulfillment Method.
+7. Once you’re done, click the Save and close button.
+
+### Delete a Shipping Option
+
+:::warning
+
+If you delete a shipping option, you can’t restore it or its data, customers can’t use it during checkout, and admins can’t use it for draft orders.
+
+:::
+
+To delete a shipping option:
+
+1. Go to Settings → Regions.
+2. Select a region to edit.
+3. Scroll down to the Shipping Options section on the right side.
+4. Find the shipping option you want to edit and click on the icon at its right.
+5. Click on Delete in the dropdown.
+
+---
+
+## Manage Return Shipping Options in a Region
+
+### Add Return Shipping Option to a Region
+
+To add a return shipping option:
+
+1. Go to Settings → Regions.
+2. Select a region to edit.
+3. Scroll down to the Return Shipping Options section on the right side.
+4. Click on the Add Option button.
+5. A new window will open with a form with the following fields:
+ - **Title (Required):** The name of the shipping option. The customer will see this name on the storefront if the “Show on Website” field is checked.
+ - **Price (Required):** The price of the shipping option.
+ - **Shipping Profile (Required):** The shipping profile this option belongs to.
+ - **Fulfillment Method (Required):** the fulfillment provider that will handle fulfilling this shipping option.
+ - **Visible is Store:** Whether or not this option should be available on the website. This is useful if you want to create a shipping option only for use on the Medusa Admin (for example, to create draft orders).
+ - **Requirements:** You can use this to specify a condition for when this shipping option should be available. The first field indicates the minimum cart subtotal, and the second field indicates the maximum cart subtotal. For example, you can fill in the first field “100” to only allow using this shipping option if the cart’s subtotal is at least $100.
+6. Once you’re done, click the Save and close button.
+
+### Edit a Return Shipping Option
+
+To edit a return shipping option:
+
+1. Go to Settings → Regions.
+2. Select a region to edit.
+3. Scroll down to the Return Shipping Options section on the right side.
+4. Find the shipping option you want to edit and click on the icon at its right.
+5. Click on Edit in the dropdown.
+6. A new window will open with the fields that you can edit. You can edit all of the fields you chose while adding the shipping option except for the Shipping Profile and Fulfillment Method.
+7. Once you’re done, click the Save and close button.
+
+### Delete a Return Shipping Option
+
+:::warning
+
+If you delete a return shipping option, you can’t restore it or its data, customers can’t use it when they request a return or an exchange, and admins can’t use it when requesting a return for an order or registering an exchange or claim for an order.
+
+:::
+
+To delete a return shipping option:
+
+1. Go to Settings → Regions.
+2. Select a region to edit.
+3. Scroll down to the Return Shipping Options section on the right side.
+4. Find the shipping option you want to edit and click on the icon at its right.
+5. Click on Delete in the dropdown.
diff --git a/docs/content/user-guide/taxes/index.md b/docs/content/user-guide/taxes/index.md
index 43550f0e75..6659f3c4a3 100644
--- a/docs/content/user-guide/taxes/index.md
+++ b/docs/content/user-guide/taxes/index.md
@@ -14,7 +14,7 @@ Taxes are calculated for products and shipping methods on checkout. Medusa provi
---
-## How are Taxes Created?
+## How are Taxes Created
Once a region is created, a default tax rate is created for that region. You can specify the rate and code of the tax rate during the creation of the region.
diff --git a/docs/content/user-guide/taxes/tax-rates.mdx b/docs/content/user-guide/taxes/tax-rates.mdx
index eeee54464c..9d2574ebed 100644
--- a/docs/content/user-guide/taxes/tax-rates.mdx
+++ b/docs/content/user-guide/taxes/tax-rates.mdx
@@ -58,6 +58,6 @@ To delete a tax rate:
:::info
-Default tax rates can’t be deleted. If you don’t want to apply any taxes in a region, you can instead set the default tax rate to 0.
+Default tax rates can’t be deleted. If you don’t want to apply any taxes in a region, you can instead set the default tax rate to zero.
:::
\ No newline at end of file
diff --git a/docs/get-files.sh b/docs/get-files.sh
new file mode 100755
index 0000000000..8fed717a15
--- /dev/null
+++ b/docs/get-files.sh
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+list=""
+# get directories in content other than reference
+for i in `find content -type d -maxdepth 1 -not -path 'content/references' -not -path 'content'`
+do
+ if [ ${#list} -gt 0 ]; then
+ list+=','
+ fi
+ list+="\"docs/$i\""
+done
+#get files in content (not nested)
+for i in `find content -type f -maxdepth 1 -not -path 'content/references'`
+do
+ if [ ${#list} -gt 0 ]; then
+ list+=','
+ fi
+ list+="\"docs/$i\""
+done
+echo "::set-output name=LIST::[$list]"
\ No newline at end of file
diff --git a/docs/run-vale.sh b/docs/run-vale.sh
new file mode 100755
index 0000000000..e862920d8c
--- /dev/null
+++ b/docs/run-vale.sh
@@ -0,0 +1,28 @@
+#!/bin/bash
+
+list=""
+alertLevel=$1
+
+if [ ${#alertLevel} -eq 0 ]; then
+ alertLevel="suggestion"
+fi
+
+# get directories in content other than reference
+for i in `find content -type d -maxdepth 1 -not -path 'content/references' -not -path 'content'`
+do
+ if [ ${#list} -gt 0 ]; then
+ list+=' '
+ fi
+ list+="docs/$i"
+done
+#get files in content (not nested)
+for i in `find content -type f -maxdepth 1 -not -path 'content/references'`
+do
+ if [ ${#list} -gt 0 ]; then
+ list+=' '
+ fi
+ list+="docs/$i"
+done
+
+cd ..
+exec vale $list --minAlertLevel $alertLevel
\ No newline at end of file
diff --git a/docs/styles/Vocab/Base/accept.txt b/docs/styles/Vocab/Base/accept.txt
new file mode 100644
index 0000000000..1bd5903cc0
--- /dev/null
+++ b/docs/styles/Vocab/Base/accept.txt
@@ -0,0 +1,4 @@
+(?i)Medusa
+(?i)Qovery
+(?i)Netlify
+(?i)s3
\ No newline at end of file
diff --git a/docs/styles/Vocab/Base/reject.txt b/docs/styles/Vocab/Base/reject.txt
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/docs/styles/docs/Acronyms.yml b/docs/styles/docs/Acronyms.yml
new file mode 100644
index 0000000000..f5a2ce357e
--- /dev/null
+++ b/docs/styles/docs/Acronyms.yml
@@ -0,0 +1,73 @@
+extends: conditional
+message: "'%s' has no definition."
+link: https://medusajs.notion.site/Style-Guide-Docs-fad86dd1c5f84b48b145e959f36628e0#4a59adcd20a949008302f27502921933
+level: error
+ignorecase: false
+scope: paragraph
+# Ensures that the existence of 'first' implies the existence of 'second'.
+first: '\b([A-Z]{3,5})\b'
+second: '(?:\b[A-Z][a-z]+ )+\(([A-Z]{3,5})\)'
+# ... with the exception of these:
+exceptions:
+ - API
+ - ASP
+ - CLI
+ - CPU
+ - CSS
+ - CSV
+ - DEBUG
+ - DOM
+ - DPI
+ - FAQ
+ - GCC
+ - GDB
+ - GET
+ - GPU
+ - GTK
+ - GUI
+ - HTML
+ - HTTP
+ - HTTPS
+ - IDE
+ - JAR
+ - JSON
+ - JSX
+ - LESS
+ - LLDB
+ - NET
+ - NOTE
+ - NVDA
+ - OSS
+ - PATH
+ - PDF
+ - PHP
+ - POST
+ - RAM
+ - REPL
+ - RSA
+ - SCM
+ - SCSS
+ - SDK
+ - SQL
+ - SSH
+ - SSL
+ - SVG
+ - TBD
+ - TCP
+ - TODO
+ - URI
+ - URL
+ - USB
+ - UTF
+ - XML
+ - XSS
+ - YAML
+ - ZIP
+ - AWS
+ - REST
+ - MDX
+ - NPM
+ - SMS
+ - SID
+ - VIP
+ - UPS
\ No newline at end of file
diff --git a/docs/styles/docs/ComplexWords.yml b/docs/styles/docs/ComplexWords.yml
new file mode 100644
index 0000000000..3dfcbed54a
--- /dev/null
+++ b/docs/styles/docs/ComplexWords.yml
@@ -0,0 +1,120 @@
+extends: substitution
+message: "Consider using '%s' instead of '%s'."
+link: https://medusajs.notion.site/Style-Guide-Docs-fad86dd1c5f84b48b145e959f36628e0#426bd116f42d42859d3572c2de9f73f7
+ignorecase: true
+level: suggestion
+action:
+ name: replace
+swap:
+ "approximate(?:ly)?": about
+ abundance: plenty
+ accelerate: speed up
+ accentuate: stress
+ accompany: go with
+ accomplish: carry out|do
+ accorded: given
+ accordingly: so
+ accrue: add
+ accurate: right|exact
+ acquiesce: agree
+ acquire: get|buy
+ additional: more|extra
+ address: discuss
+ addressees: you
+ adjacent to: next to
+ adjustment: change
+ admissible: allowed
+ advantageous: helpful
+ advise: tell
+ aggregate: total
+ aircraft: plane
+ alleviate: ease
+ allocate: assign|divide
+ alternatively: or
+ alternatives: choices|options
+ ameliorate: improve
+ amend: change
+ anticipate: expect
+ apparent: clear|plain
+ ascertain: discover|find out
+ assistance: help
+ attain: meet
+ attempt: try
+ authorize: allow
+ belated: late
+ bestow: give
+ cease: stop|end
+ collaborate: work together
+ commence: begin
+ compensate: pay
+ component: part
+ comprise: form|include
+ concept: idea
+ concerning: about
+ confer: give|award
+ consequently: so
+ consolidate: merge
+ constitutes: forms
+ contains: has
+ convene: meet
+ demonstrate: show|prove
+ depart: leave
+ designate: choose
+ desire: want|wish
+ determine: decide|find
+ detrimental: bad|harmful
+ disclose: share|tell
+ discontinue: stop
+ disseminate: send|give
+ eliminate: end
+ elucidate: explain
+ employ: use
+ enclosed: inside|included
+ encounter: meet
+ endeavor: try
+ enumerate: count
+ equitable: fair
+ equivalent: equal
+ exclusively: only
+ expedite: hurry
+ facilitate: ease
+ females: women
+ finalize: complete|finish
+ frequently: often
+ identical: same
+ incorrect: wrong
+ indication: sign
+ initiate: start|begin
+ itemized: listed
+ jeopardize: risk
+ liaise: work with|partner with
+ maintain: keep|support
+ methodology: method
+ modify: change
+ monitor: check|watch
+ multiple: many
+ necessitate: cause
+ notify: tell
+ numerous: many
+ objective: aim|goal
+ obligate: bind|compel
+ optimum: best|most
+ permit: let
+ portion: part
+ possess: own
+ previous: earlier
+ previously: before
+ prioritize: rank
+ procure: buy
+ provide: give|offer
+ purchase: buy
+ relocate: move
+ solicit: request
+ state-of-the-art: latest
+ subsequent: later|next
+ substantial: large
+ sufficient: enough
+ terminate: end
+ transmit: send
+ utilization: use
+ utilize: use
diff --git a/docs/styles/docs/Contractions.yml b/docs/styles/docs/Contractions.yml
new file mode 100644
index 0000000000..b11736cdb1
--- /dev/null
+++ b/docs/styles/docs/Contractions.yml
@@ -0,0 +1,49 @@
+extends: substitution
+message: "Use '%s' instead of '%s'."
+level: suggestion
+ignorecase: true
+action:
+ name: replace
+swap:
+ are not: aren't
+ cannot: can't
+ could not: couldn't
+ did not: didn't
+ do not: don't
+ does not: doesn't
+ has not: hasn't
+ have not: haven't
+ how is: how's
+ is not: isn't
+
+ 'it is(?!\.)': it's
+ 'it''s(?=\.)': it is
+
+ should not: shouldn't
+
+ 'that is(?!\.)': that's
+ 'that''s(?=\.)': that is
+
+ 'they are(?!\.)': they're
+ 'they''re(?=\.)': they are
+
+ was not: wasn't
+
+ 'we are(?!\.)': we're
+ 'we''re(?=\.)': we are
+
+ 'we have(?!\.)': we've
+ 'we''ve(?=\.)': we have
+
+ were not: weren't
+
+ 'what is(?!\.)': what's
+ 'what''s(?=\.)': what is
+
+ 'when is(?!\.)': when's
+ 'when''s(?=\.)': when is
+
+ 'where is(?!\.)': where's
+ 'where''s(?=\.)': where is
+
+ will not: won't
diff --git a/docs/styles/docs/FirstPerson.yml b/docs/styles/docs/FirstPerson.yml
new file mode 100644
index 0000000000..479927d551
--- /dev/null
+++ b/docs/styles/docs/FirstPerson.yml
@@ -0,0 +1,16 @@
+extends: existence
+message: "Avoid using first person (such as '%s')"
+link: https://medusajs.notion.site/Style-Guide-Docs-fad86dd1c5f84b48b145e959f36628e0#9f0dc7c440b841d3bfcb006df12c2652
+ignorecase: true
+level: error
+nonword: true
+tokens:
+ - (?:^|\s)I\s
+ - (?:^|\s)I,\s
+ - \bI'd\b
+ - \bI'll\b
+ - \bI'm\b
+ - \bI've\b
+ - \bme\b
+ - \bmy\b
+ - \bmine\b
diff --git a/docs/styles/docs/Foreign.yml b/docs/styles/docs/Foreign.yml
new file mode 100644
index 0000000000..738ad2778b
--- /dev/null
+++ b/docs/styles/docs/Foreign.yml
@@ -0,0 +1,11 @@
+extends: substitution
+message: "Use '%s' instead of '%s'."
+ignorecase: true
+level: error
+nonword: true
+action:
+ name: replace
+swap:
+ '\b(?:eg|e\.g\.)[\s,]': for example
+ '\b(?:ie|i\.e\.)[\s,]': that is
+
diff --git a/docs/styles/docs/Gender.yml b/docs/styles/docs/Gender.yml
new file mode 100644
index 0000000000..7bd5a44b0b
--- /dev/null
+++ b/docs/styles/docs/Gender.yml
@@ -0,0 +1,7 @@
+extends: existence
+message: "Don't use '%s'."
+level: error
+ignorecase: true
+tokens:
+ - he/she
+ - s/he
diff --git a/docs/styles/docs/HeadingColons.yml b/docs/styles/docs/HeadingColons.yml
new file mode 100644
index 0000000000..a0596c4a60
--- /dev/null
+++ b/docs/styles/docs/HeadingColons.yml
@@ -0,0 +1,8 @@
+extends: existence
+message: "Capitalize '%s'."
+link: https://medusajs.notion.site/Style-Guide-Docs-fad86dd1c5f84b48b145e959f36628e0#a5043fc5f8bc4b0b84f3ba494f817e42
+nonword: true
+level: error
+scope: heading
+tokens:
+ - ':\s[a-z]'
diff --git a/docs/styles/docs/HeadingPunctuation.yml b/docs/styles/docs/HeadingPunctuation.yml
new file mode 100644
index 0000000000..117e948526
--- /dev/null
+++ b/docs/styles/docs/HeadingPunctuation.yml
@@ -0,0 +1,13 @@
+extends: existence
+message: "Don't use end punctuation in headings."
+link: https://medusajs.notion.site/Style-Guide-Docs-fad86dd1c5f84b48b145e959f36628e0#a5043fc5f8bc4b0b84f3ba494f817e42
+nonword: true
+level: error
+scope: heading
+action:
+ name: edit
+ params:
+ - remove
+ - '.?!'
+tokens:
+ - '[a-z][.?!](?:\s|$)'
diff --git a/docs/styles/docs/Npm2Yarn.yml b/docs/styles/docs/Npm2Yarn.yml
new file mode 100644
index 0000000000..fb723161ff
--- /dev/null
+++ b/docs/styles/docs/Npm2Yarn.yml
@@ -0,0 +1,8 @@
+extends: existence
+message: "Consider adding npm2yarn to ```bash"
+link: https://docs.medusajs.com/contribution-guidelines#npm-and-yarn-code-blocks
+level: warning
+scope: raw
+ignorecase: true
+raw:
+ - '```bash[\n]+npm'
\ No newline at end of file
diff --git a/docs/styles/docs/NpmCommands.yml b/docs/styles/docs/NpmCommands.yml
new file mode 100644
index 0000000000..0f2d3ec990
--- /dev/null
+++ b/docs/styles/docs/NpmCommands.yml
@@ -0,0 +1,11 @@
+extends: substitution
+message: Use '%s' instead of '%s'
+link: https://docs.medusajs.com/contribution-guidelines#expand-commands
+level: error
+scope: code
+ignorecase: false
+# swap maps tokens in form of bad: good
+swap:
+ npm i: npm install
+ npm start: npm run start
+ npm build: npm run build
\ No newline at end of file
diff --git a/docs/styles/docs/NpmGlobal.yml b/docs/styles/docs/NpmGlobal.yml
new file mode 100644
index 0000000000..956f6a0953
--- /dev/null
+++ b/docs/styles/docs/NpmGlobal.yml
@@ -0,0 +1,8 @@
+extends: existence
+message: "The -g option should be added at the end of the command"
+link: https://docs.medusajs.com/contribution-guidelines#global-option
+level: error
+scope: code
+ignorecase: true
+raw:
+ - '(npm (i|install) (-g|--global)|npm (-g|--global) (i|install))'
\ No newline at end of file
diff --git a/docs/styles/docs/Numbers.yml b/docs/styles/docs/Numbers.yml
new file mode 100644
index 0000000000..025a4871f1
--- /dev/null
+++ b/docs/styles/docs/Numbers.yml
@@ -0,0 +1,14 @@
+extends: existence
+message: "Numbers must be spelled out"
+link: https://medusajs.notion.site/Style-Guide-Docs-fad86dd1c5f84b48b145e959f36628e0#24a7270d3eee4d8e97657b0e12cd979a
+level: error
+ignorecase: true
+scope: paragraph
+tokens:
+ - '.*[0-9]+\s(?!(AM|PM))+' #need to match words before to add exceptions
+ - '.*[0-9][.]'
+exceptions:
+ - '[pP]ort [0-9]+'
+ - 'WSL2'
+ - '[vV]ersions? [0-9]'
+ - '[v.]+[0-9]+'
diff --git a/docs/styles/docs/Ordinal.yml b/docs/styles/docs/Ordinal.yml
new file mode 100644
index 0000000000..1b924aa16c
--- /dev/null
+++ b/docs/styles/docs/Ordinal.yml
@@ -0,0 +1,12 @@
+extends: existence
+message: "Don't add -ly to an ordinal number."
+level: suggestion
+action:
+ name: edit
+ params:
+ - trim
+ - ly
+tokens:
+ - firstly
+ - secondly
+ - thirdly
diff --git a/docs/styles/docs/Our.yml b/docs/styles/docs/Our.yml
new file mode 100644
index 0000000000..0603ecfdcc
--- /dev/null
+++ b/docs/styles/docs/Our.yml
@@ -0,0 +1,7 @@
+extends: existence
+message: "Avoid using our"
+link: https://medusajs.notion.site/Style-Guide-Docs-fad86dd1c5f84b48b145e959f36628e0#9f0dc7c440b841d3bfcb006df12c2652
+level: warning
+ignorecase: true
+tokens:
+ - ours?
\ No newline at end of file
diff --git a/docs/styles/docs/OxfordComma.yml b/docs/styles/docs/OxfordComma.yml
new file mode 100644
index 0000000000..493b55c3ce
--- /dev/null
+++ b/docs/styles/docs/OxfordComma.yml
@@ -0,0 +1,8 @@
+extends: existence
+message: "Use the Oxford comma in '%s'."
+link: https://docs.microsoft.com/en-us/style-guide/punctuation/commas
+scope: sentence
+level: suggestion
+nonword: true
+tokens:
+ - '(?:[^\s,]+,){1,} \w+ (?:and|or) \w+[.?!]'
diff --git a/docs/styles/docs/Passive.yml b/docs/styles/docs/Passive.yml
new file mode 100644
index 0000000000..1f2b6beb0b
--- /dev/null
+++ b/docs/styles/docs/Passive.yml
@@ -0,0 +1,183 @@
+extends: existence
+message: "'%s' looks like passive voice."
+ignorecase: true
+level: warning
+raw:
+ - \b(am|are|were|being|is|been|was|be)\b\s*
+tokens:
+ - '[\w]+ed'
+ - awoken
+ - beat
+ - become
+ - been
+ - begun
+ - bent
+ - beset
+ - bet
+ - bid
+ - bidden
+ - bitten
+ - bled
+ - blown
+ - born
+ - bought
+ - bound
+ - bred
+ - broadcast
+ - broken
+ - brought
+ - built
+ - burnt
+ - burst
+ - cast
+ - caught
+ - chosen
+ - clung
+ - come
+ - cost
+ - crept
+ - cut
+ - dealt
+ - dived
+ - done
+ - drawn
+ - dreamt
+ - driven
+ - drunk
+ - dug
+ - eaten
+ - fallen
+ - fed
+ - felt
+ - fit
+ - fled
+ - flown
+ - flung
+ - forbidden
+ - foregone
+ - forgiven
+ - forgotten
+ - forsaken
+ - fought
+ - found
+ - frozen
+ - given
+ - gone
+ - gotten
+ - ground
+ - grown
+ - heard
+ - held
+ - hidden
+ - hit
+ - hung
+ - hurt
+ - kept
+ - knelt
+ - knit
+ - known
+ - laid
+ - lain
+ - leapt
+ - learnt
+ - led
+ - left
+ - lent
+ - let
+ - lighted
+ - lost
+ - made
+ - meant
+ - met
+ - misspelt
+ - mistaken
+ - mown
+ - overcome
+ - overdone
+ - overtaken
+ - overthrown
+ - paid
+ - pled
+ - proven
+ - put
+ - quit
+ - read
+ - rid
+ - ridden
+ - risen
+ - run
+ - rung
+ - said
+ - sat
+ - sawn
+ - seen
+ - sent
+ - set
+ - sewn
+ - shaken
+ - shaven
+ - shed
+ - shod
+ - shone
+ - shorn
+ - shot
+ - shown
+ - shrunk
+ - shut
+ - slain
+ - slept
+ - slid
+ - slit
+ - slung
+ - smitten
+ - sold
+ - sought
+ - sown
+ - sped
+ - spent
+ - spilt
+ - spit
+ - split
+ - spoken
+ - spread
+ - sprung
+ - spun
+ - stolen
+ - stood
+ - stridden
+ - striven
+ - struck
+ - strung
+ - stuck
+ - stung
+ - stunk
+ - sung
+ - sunk
+ - swept
+ - swollen
+ - sworn
+ - swum
+ - swung
+ - taken
+ - taught
+ - thought
+ - thrived
+ - thrown
+ - thrust
+ - told
+ - torn
+ - trodden
+ - understood
+ - upheld
+ - upset
+ - wed
+ - wept
+ - withheld
+ - withstood
+ - woken
+ - won
+ - worn
+ - wound
+ - woven
+ - written
+ - wrung
diff --git a/docs/styles/docs/Percentages.yml b/docs/styles/docs/Percentages.yml
new file mode 100644
index 0000000000..75b41c15d3
--- /dev/null
+++ b/docs/styles/docs/Percentages.yml
@@ -0,0 +1,7 @@
+extends: existence
+message: "Use a numeral plus the units."
+link: https://medusajs.notion.site/Style-Guide-Docs-fad86dd1c5f84b48b145e959f36628e0#24a7270d3eee4d8e97657b0e12cd979a
+nonword: true
+level: error
+tokens:
+ - '\b[a-zA-z]+\spercent\b'
diff --git a/docs/styles/docs/SentenceLength.yml b/docs/styles/docs/SentenceLength.yml
new file mode 100644
index 0000000000..f248cf0513
--- /dev/null
+++ b/docs/styles/docs/SentenceLength.yml
@@ -0,0 +1,7 @@
+extends: occurrence
+message: "Try to keep sentences short (< 30 words)."
+scope: sentence
+level: suggestion
+max: 30
+token: \b(\w+)\b
+
diff --git a/docs/styles/docs/Spacing.yml b/docs/styles/docs/Spacing.yml
new file mode 100644
index 0000000000..ab716c0e68
--- /dev/null
+++ b/docs/styles/docs/Spacing.yml
@@ -0,0 +1,7 @@
+extends: existence
+message: "'%s' should have one space."
+level: error
+nonword: true
+tokens:
+ - '[a-z][.?!] {2,}[A-Z]'
+ - '[a-z][.?!][A-Z]'
diff --git a/docs/styles/docs/Terms.yml b/docs/styles/docs/Terms.yml
new file mode 100644
index 0000000000..d9f73c7a2b
--- /dev/null
+++ b/docs/styles/docs/Terms.yml
@@ -0,0 +1,8 @@
+extends: substitution
+message: Consider using '%s' instead of '%s'
+level: warning
+scope: code
+ignorecase: false
+# swap maps tokens in form of bad: good
+swap:
+ e-commerce: ecommerce
\ No newline at end of file
diff --git a/docs/styles/docs/TypeScript.yml b/docs/styles/docs/TypeScript.yml
new file mode 100644
index 0000000000..70141e498e
--- /dev/null
+++ b/docs/styles/docs/TypeScript.yml
@@ -0,0 +1,7 @@
+extends: existence
+message: "Consider using typescript instead of tsx"
+level: warning
+scope: raw
+ignorecase: true
+raw:
+ - '```tsx'
\ No newline at end of file
diff --git a/docs/styles/docs/We.yml b/docs/styles/docs/We.yml
new file mode 100644
index 0000000000..2e237b296b
--- /dev/null
+++ b/docs/styles/docs/We.yml
@@ -0,0 +1,10 @@
+extends: existence
+message: "Avoid using first-person plural like '%s'."
+link: https://medusajs.notion.site/Style-Guide-Docs-fad86dd1c5f84b48b145e959f36628e0#9f0dc7c440b841d3bfcb006df12c2652
+level: error
+ignorecase: true
+tokens:
+ - we
+ - we'(?:ve|re)
+ - us
+ - let's
\ No newline at end of file
diff --git a/docs/styles/docs/Wordiness.yml b/docs/styles/docs/Wordiness.yml
new file mode 100644
index 0000000000..62f870954f
--- /dev/null
+++ b/docs/styles/docs/Wordiness.yml
@@ -0,0 +1,122 @@
+extends: substitution
+message: "Consider using '%s' instead of '%s'."
+link: https://medusajs.notion.site/Style-Guide-Docs-fad86dd1c5f84b48b145e959f36628e0#426bd116f42d42859d3572c2de9f73f7
+ignorecase: true
+level: suggestion
+action:
+ name: replace
+swap:
+ (?:give|gave) rise to: lead to
+ (?:previous|prior) to: before
+ a (?:large)? majority of: most
+ a (?:large)? number of: many
+ a myriad of: myriad
+ adversely impact: hurt
+ all across: across
+ all of a sudden: suddenly
+ all of these: these
+ all of: all
+ all-time record: record
+ almost all: most
+ almost never: seldom
+ along the lines of: similar to
+ an adequate number of: enough
+ an appreciable number of: many
+ an estimated: about
+ any and all: all
+ are in agreement: agree
+ as a matter of fact: in fact
+ as a means of: to
+ as a result of: because of
+ as of yet: yet
+ as per: per
+ at a later date: later
+ at all times: always
+ at the present time: now
+ at this point in time: at this point
+ based in large part on: based on
+ based on the fact that: because
+ basic necessity: necessity
+ because of the fact that: because
+ came to a realization: realized
+ came to an abrupt end: ended abruptly
+ carry out an evaluation of: evaluate
+ close down: close
+ closed down: closed
+ complete stranger: stranger
+ completely separate: separate
+ concerning the matter of: regarding
+ conduct a review of: review
+ conduct an investigation: investigate
+ conduct experiments: experiment
+ continue on: continue
+ despite the fact that: although
+ disappear from sight: disappear
+ drag and drop: drag
+ drag-and-drop: drag
+ doomed to fail: doomed
+ due to the fact that: because
+ during the period of: during
+ during the time that: while
+ emergency situation: emergency
+ except when: unless
+ excessive number: too many
+ extend an invitation: invite
+ fall down: fall
+ fell down: fell
+ for the duration of: during
+ gather together: gather
+ has the ability to: can
+ has the capacity to: can
+ has the opportunity to: could
+ hold a meeting: meet
+ if this is not the case: if not
+ in a careful manner: carefully
+ in a thoughtful manner: thoughtfully
+ in a timely manner: timely
+ in an effort to: to
+ in between: between
+ in lieu of: instead of
+ in many cases: often
+ in most cases: usually
+ in order to: to
+ in some cases: sometimes
+ in spite of the fact that: although
+ in spite of: despite
+ in the (?:very)? near future: soon
+ in the event that: if
+ in the neighborhood of: roughly
+ in the vicinity of: close to
+ it would appear that: apparently
+ lift up: lift
+ made reference to: referred to
+ make reference to: refer to
+ mix together: mix
+ none at all: none
+ not in a position to: unable
+ not possible: impossible
+ of major importance: important
+ perform an assessment of: assess
+ pertaining to: about
+ place an order: order
+ plays a key role in: is essential to
+ present time: now
+ readily apparent: apparent
+ some of the: some
+ span across: span
+ subsequent to: after
+ successfully complete: complete
+ sufficient number (?:of)?: enough
+ take action: act
+ take into account: consider
+ the question as to whether: whether
+ there is no doubt but that: doubtless
+ this day and age: this age
+ this is a subject that: this subject
+ time (?:frame|period): time
+ under the provisions of: under
+ until such time as: until
+ used for fuel purposes: used for fuel
+ whether or not: whether
+ with regard to: regarding
+ with the exception of: except for
diff --git a/docs/styles/docs/WritingLevel.yml b/docs/styles/docs/WritingLevel.yml
new file mode 100644
index 0000000000..214fff1c50
--- /dev/null
+++ b/docs/styles/docs/WritingLevel.yml
@@ -0,0 +1,9 @@
+extends: metric
+message: "Try to keep the Flesch-Kincaid grade level (%s) below 8."
+link: https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests
+
+formula: |
+ (0.39 * (words / sentences)) + (11.8 * (syllables / words)) - 15.59
+
+condition: "> 8"
+level: suggestion
\ No newline at end of file
diff --git a/docs/styles/write-good/Cliches.yml b/docs/styles/write-good/Cliches.yml
new file mode 100644
index 0000000000..c95314387b
--- /dev/null
+++ b/docs/styles/write-good/Cliches.yml
@@ -0,0 +1,702 @@
+extends: existence
+message: "Try to avoid using clichés like '%s'."
+ignorecase: true
+level: warning
+tokens:
+ - a chip off the old block
+ - a clean slate
+ - a dark and stormy night
+ - a far cry
+ - a fine kettle of fish
+ - a loose cannon
+ - a penny saved is a penny earned
+ - a tough row to hoe
+ - a word to the wise
+ - ace in the hole
+ - acid test
+ - add insult to injury
+ - against all odds
+ - air your dirty laundry
+ - all fun and games
+ - all in a day's work
+ - all talk, no action
+ - all thumbs
+ - all your eggs in one basket
+ - all's fair in love and war
+ - all's well that ends well
+ - almighty dollar
+ - American as apple pie
+ - an axe to grind
+ - another day, another dollar
+ - armed to the teeth
+ - as luck would have it
+ - as old as time
+ - as the crow flies
+ - at loose ends
+ - at my wits end
+ - avoid like the plague
+ - babe in the woods
+ - back against the wall
+ - back in the saddle
+ - back to square one
+ - back to the drawing board
+ - bad to the bone
+ - badge of honor
+ - bald faced liar
+ - ballpark figure
+ - banging your head against a brick wall
+ - baptism by fire
+ - barking up the wrong tree
+ - bat out of hell
+ - be all and end all
+ - beat a dead horse
+ - beat around the bush
+ - been there, done that
+ - beggars can't be choosers
+ - behind the eight ball
+ - bend over backwards
+ - benefit of the doubt
+ - bent out of shape
+ - best thing since sliced bread
+ - bet your bottom dollar
+ - better half
+ - better late than never
+ - better mousetrap
+ - better safe than sorry
+ - between a rock and a hard place
+ - beyond the pale
+ - bide your time
+ - big as life
+ - big cheese
+ - big fish in a small pond
+ - big man on campus
+ - bigger they are the harder they fall
+ - bird in the hand
+ - bird's eye view
+ - birds and the bees
+ - birds of a feather flock together
+ - bit the hand that feeds you
+ - bite the bullet
+ - bite the dust
+ - bitten off more than he can chew
+ - black as coal
+ - black as pitch
+ - black as the ace of spades
+ - blast from the past
+ - bleeding heart
+ - blessing in disguise
+ - blind ambition
+ - blind as a bat
+ - blind leading the blind
+ - blood is thicker than water
+ - blood sweat and tears
+ - blow off steam
+ - blow your own horn
+ - blushing bride
+ - boils down to
+ - bolt from the blue
+ - bone to pick
+ - bored stiff
+ - bored to tears
+ - bottomless pit
+ - boys will be boys
+ - bright and early
+ - brings home the bacon
+ - broad across the beam
+ - broken record
+ - brought back to reality
+ - bull by the horns
+ - bull in a china shop
+ - burn the midnight oil
+ - burning question
+ - burning the candle at both ends
+ - burst your bubble
+ - bury the hatchet
+ - busy as a bee
+ - by hook or by crook
+ - call a spade a spade
+ - called onto the carpet
+ - calm before the storm
+ - can of worms
+ - can't cut the mustard
+ - can't hold a candle to
+ - case of mistaken identity
+ - cat got your tongue
+ - cat's meow
+ - caught in the crossfire
+ - caught red-handed
+ - checkered past
+ - chomping at the bit
+ - cleanliness is next to godliness
+ - clear as a bell
+ - clear as mud
+ - close to the vest
+ - cock and bull story
+ - cold shoulder
+ - come hell or high water
+ - cool as a cucumber
+ - cool, calm, and collected
+ - cost a king's ransom
+ - count your blessings
+ - crack of dawn
+ - crash course
+ - creature comforts
+ - cross that bridge when you come to it
+ - crushing blow
+ - cry like a baby
+ - cry me a river
+ - cry over spilt milk
+ - crystal clear
+ - curiosity killed the cat
+ - cut and dried
+ - cut through the red tape
+ - cut to the chase
+ - cute as a bugs ear
+ - cute as a button
+ - cute as a puppy
+ - cuts to the quick
+ - dark before the dawn
+ - day in, day out
+ - dead as a doornail
+ - devil is in the details
+ - dime a dozen
+ - divide and conquer
+ - dog and pony show
+ - dog days
+ - dog eat dog
+ - dog tired
+ - don't burn your bridges
+ - don't count your chickens
+ - don't look a gift horse in the mouth
+ - don't rock the boat
+ - don't step on anyone's toes
+ - don't take any wooden nickels
+ - down and out
+ - down at the heels
+ - down in the dumps
+ - down the hatch
+ - down to earth
+ - draw the line
+ - dressed to kill
+ - dressed to the nines
+ - drives me up the wall
+ - dull as dishwater
+ - dyed in the wool
+ - eagle eye
+ - ear to the ground
+ - early bird catches the worm
+ - easier said than done
+ - easy as pie
+ - eat your heart out
+ - eat your words
+ - eleventh hour
+ - even the playing field
+ - every dog has its day
+ - every fiber of my being
+ - everything but the kitchen sink
+ - eye for an eye
+ - face the music
+ - facts of life
+ - fair weather friend
+ - fall by the wayside
+ - fan the flames
+ - feast or famine
+ - feather your nest
+ - feathered friends
+ - few and far between
+ - fifteen minutes of fame
+ - filthy vermin
+ - fine kettle of fish
+ - fish out of water
+ - fishing for a compliment
+ - fit as a fiddle
+ - fit the bill
+ - fit to be tied
+ - flash in the pan
+ - flat as a pancake
+ - flip your lid
+ - flog a dead horse
+ - fly by night
+ - fly the coop
+ - follow your heart
+ - for all intents and purposes
+ - for the birds
+ - for what it's worth
+ - force of nature
+ - force to be reckoned with
+ - forgive and forget
+ - fox in the henhouse
+ - free and easy
+ - free as a bird
+ - fresh as a daisy
+ - full steam ahead
+ - fun in the sun
+ - garbage in, garbage out
+ - gentle as a lamb
+ - get a kick out of
+ - get a leg up
+ - get down and dirty
+ - get the lead out
+ - get to the bottom of
+ - get your feet wet
+ - gets my goat
+ - gilding the lily
+ - give and take
+ - go against the grain
+ - go at it tooth and nail
+ - go for broke
+ - go him one better
+ - go the extra mile
+ - go with the flow
+ - goes without saying
+ - good as gold
+ - good deed for the day
+ - good things come to those who wait
+ - good time was had by all
+ - good times were had by all
+ - greased lightning
+ - greek to me
+ - green thumb
+ - green-eyed monster
+ - grist for the mill
+ - growing like a weed
+ - hair of the dog
+ - hand to mouth
+ - happy as a clam
+ - happy as a lark
+ - hasn't a clue
+ - have a nice day
+ - have high hopes
+ - have the last laugh
+ - haven't got a row to hoe
+ - head honcho
+ - head over heels
+ - hear a pin drop
+ - heard it through the grapevine
+ - heart's content
+ - heavy as lead
+ - hem and haw
+ - high and dry
+ - high and mighty
+ - high as a kite
+ - hit paydirt
+ - hold your head up high
+ - hold your horses
+ - hold your own
+ - hold your tongue
+ - honest as the day is long
+ - horns of a dilemma
+ - horse of a different color
+ - hot under the collar
+ - hour of need
+ - I beg to differ
+ - icing on the cake
+ - if the shoe fits
+ - if the shoe were on the other foot
+ - in a jam
+ - in a jiffy
+ - in a nutshell
+ - in a pig's eye
+ - in a pinch
+ - in a word
+ - in hot water
+ - in the gutter
+ - in the nick of time
+ - in the thick of it
+ - in your dreams
+ - it ain't over till the fat lady sings
+ - it goes without saying
+ - it takes all kinds
+ - it takes one to know one
+ - it's a small world
+ - it's only a matter of time
+ - ivory tower
+ - Jack of all trades
+ - jockey for position
+ - jog your memory
+ - joined at the hip
+ - judge a book by its cover
+ - jump down your throat
+ - jump in with both feet
+ - jump on the bandwagon
+ - jump the gun
+ - jump to conclusions
+ - just a hop, skip, and a jump
+ - just the ticket
+ - justice is blind
+ - keep a stiff upper lip
+ - keep an eye on
+ - keep it simple, stupid
+ - keep the home fires burning
+ - keep up with the Joneses
+ - keep your chin up
+ - keep your fingers crossed
+ - kick the bucket
+ - kick up your heels
+ - kick your feet up
+ - kid in a candy store
+ - kill two birds with one stone
+ - kiss of death
+ - knock it out of the park
+ - knock on wood
+ - knock your socks off
+ - know him from Adam
+ - know the ropes
+ - know the score
+ - knuckle down
+ - knuckle sandwich
+ - knuckle under
+ - labor of love
+ - ladder of success
+ - land on your feet
+ - lap of luxury
+ - last but not least
+ - last hurrah
+ - last-ditch effort
+ - law of the jungle
+ - law of the land
+ - lay down the law
+ - leaps and bounds
+ - let sleeping dogs lie
+ - let the cat out of the bag
+ - let the good times roll
+ - let your hair down
+ - let's talk turkey
+ - letter perfect
+ - lick your wounds
+ - lies like a rug
+ - life's a bitch
+ - life's a grind
+ - light at the end of the tunnel
+ - lighter than a feather
+ - lighter than air
+ - like clockwork
+ - like father like son
+ - like taking candy from a baby
+ - like there's no tomorrow
+ - lion's share
+ - live and learn
+ - live and let live
+ - long and short of it
+ - long lost love
+ - look before you leap
+ - look down your nose
+ - look what the cat dragged in
+ - looking a gift horse in the mouth
+ - looks like death warmed over
+ - loose cannon
+ - lose your head
+ - lose your temper
+ - loud as a horn
+ - lounge lizard
+ - loved and lost
+ - low man on the totem pole
+ - luck of the draw
+ - luck of the Irish
+ - make hay while the sun shines
+ - make money hand over fist
+ - make my day
+ - make the best of a bad situation
+ - make the best of it
+ - make your blood boil
+ - man of few words
+ - man's best friend
+ - mark my words
+ - meaningful dialogue
+ - missed the boat on that one
+ - moment in the sun
+ - moment of glory
+ - moment of truth
+ - money to burn
+ - more power to you
+ - more than one way to skin a cat
+ - movers and shakers
+ - moving experience
+ - naked as a jaybird
+ - naked truth
+ - neat as a pin
+ - needle in a haystack
+ - needless to say
+ - neither here nor there
+ - never look back
+ - never say never
+ - nip and tuck
+ - nip it in the bud
+ - no guts, no glory
+ - no love lost
+ - no pain, no gain
+ - no skin off my back
+ - no stone unturned
+ - no time like the present
+ - no use crying over spilled milk
+ - nose to the grindstone
+ - not a hope in hell
+ - not a minute's peace
+ - not in my backyard
+ - not playing with a full deck
+ - not the end of the world
+ - not written in stone
+ - nothing to sneeze at
+ - nothing ventured nothing gained
+ - now we're cooking
+ - off the top of my head
+ - off the wagon
+ - off the wall
+ - old hat
+ - older and wiser
+ - older than dirt
+ - older than Methuselah
+ - on a roll
+ - on cloud nine
+ - on pins and needles
+ - on the bandwagon
+ - on the money
+ - on the nose
+ - on the rocks
+ - on the spot
+ - on the tip of my tongue
+ - on the wagon
+ - on thin ice
+ - once bitten, twice shy
+ - one bad apple doesn't spoil the bushel
+ - one born every minute
+ - one brick short
+ - one foot in the grave
+ - one in a million
+ - one red cent
+ - only game in town
+ - open a can of worms
+ - open and shut case
+ - open the flood gates
+ - opportunity doesn't knock twice
+ - out of pocket
+ - out of sight, out of mind
+ - out of the frying pan into the fire
+ - out of the woods
+ - out on a limb
+ - over a barrel
+ - over the hump
+ - pain and suffering
+ - pain in the
+ - panic button
+ - par for the course
+ - part and parcel
+ - party pooper
+ - pass the buck
+ - patience is a virtue
+ - pay through the nose
+ - penny pincher
+ - perfect storm
+ - pig in a poke
+ - pile it on
+ - pillar of the community
+ - pin your hopes on
+ - pitter patter of little feet
+ - plain as day
+ - plain as the nose on your face
+ - play by the rules
+ - play your cards right
+ - playing the field
+ - playing with fire
+ - pleased as punch
+ - plenty of fish in the sea
+ - point with pride
+ - poor as a church mouse
+ - pot calling the kettle black
+ - pretty as a picture
+ - pull a fast one
+ - pull your punches
+ - pulling your leg
+ - pure as the driven snow
+ - put it in a nutshell
+ - put one over on you
+ - put the cart before the horse
+ - put the pedal to the metal
+ - put your best foot forward
+ - put your foot down
+ - quick as a bunny
+ - quick as a lick
+ - quick as a wink
+ - quick as lightning
+ - quiet as a dormouse
+ - rags to riches
+ - raining buckets
+ - raining cats and dogs
+ - rank and file
+ - rat race
+ - reap what you sow
+ - red as a beet
+ - red herring
+ - reinvent the wheel
+ - rich and famous
+ - rings a bell
+ - ripe old age
+ - ripped me off
+ - rise and shine
+ - road to hell is paved with good intentions
+ - rob Peter to pay Paul
+ - roll over in the grave
+ - rub the wrong way
+ - ruled the roost
+ - running in circles
+ - sad but true
+ - sadder but wiser
+ - salt of the earth
+ - scared stiff
+ - scared to death
+ - sealed with a kiss
+ - second to none
+ - see eye to eye
+ - seen the light
+ - seize the day
+ - set the record straight
+ - set the world on fire
+ - set your teeth on edge
+ - sharp as a tack
+ - shoot for the moon
+ - shoot the breeze
+ - shot in the dark
+ - shoulder to the wheel
+ - sick as a dog
+ - sigh of relief
+ - signed, sealed, and delivered
+ - sink or swim
+ - six of one, half a dozen of another
+ - skating on thin ice
+ - slept like a log
+ - slinging mud
+ - slippery as an eel
+ - slow as molasses
+ - smart as a whip
+ - smooth as a baby's bottom
+ - sneaking suspicion
+ - snug as a bug in a rug
+ - sow wild oats
+ - spare the rod, spoil the child
+ - speak of the devil
+ - spilled the beans
+ - spinning your wheels
+ - spitting image of
+ - spoke with relish
+ - spread like wildfire
+ - spring to life
+ - squeaky wheel gets the grease
+ - stands out like a sore thumb
+ - start from scratch
+ - stick in the mud
+ - still waters run deep
+ - stitch in time
+ - stop and smell the roses
+ - straight as an arrow
+ - straw that broke the camel's back
+ - strong as an ox
+ - stubborn as a mule
+ - stuff that dreams are made of
+ - stuffed shirt
+ - sweating blood
+ - sweating bullets
+ - take a load off
+ - take one for the team
+ - take the bait
+ - take the bull by the horns
+ - take the plunge
+ - takes one to know one
+ - takes two to tango
+ - the more the merrier
+ - the real deal
+ - the real McCoy
+ - the red carpet treatment
+ - the same old story
+ - there is no accounting for taste
+ - thick as a brick
+ - thick as thieves
+ - thin as a rail
+ - think outside of the box
+ - third time's the charm
+ - this day and age
+ - this hurts me worse than it hurts you
+ - this point in time
+ - three sheets to the wind
+ - through thick and thin
+ - throw in the towel
+ - tie one on
+ - tighter than a drum
+ - time and time again
+ - time is of the essence
+ - tip of the iceberg
+ - tired but happy
+ - to coin a phrase
+ - to each his own
+ - to make a long story short
+ - to the best of my knowledge
+ - toe the line
+ - tongue in cheek
+ - too good to be true
+ - too hot to handle
+ - too numerous to mention
+ - touch with a ten foot pole
+ - tough as nails
+ - trial and error
+ - trials and tribulations
+ - tried and true
+ - trip down memory lane
+ - twist of fate
+ - two cents worth
+ - two peas in a pod
+ - ugly as sin
+ - under the counter
+ - under the gun
+ - under the same roof
+ - under the weather
+ - until the cows come home
+ - unvarnished truth
+ - up the creek
+ - uphill battle
+ - upper crust
+ - upset the applecart
+ - vain attempt
+ - vain effort
+ - vanquish the enemy
+ - vested interest
+ - waiting for the other shoe to drop
+ - wakeup call
+ - warm welcome
+ - watch your p's and q's
+ - watch your tongue
+ - watching the clock
+ - water under the bridge
+ - weather the storm
+ - weed them out
+ - week of Sundays
+ - went belly up
+ - wet behind the ears
+ - what goes around comes around
+ - what you see is what you get
+ - when it rains, it pours
+ - when push comes to shove
+ - when the cat's away
+ - when the going gets tough, the tough get going
+ - white as a sheet
+ - whole ball of wax
+ - whole hog
+ - whole nine yards
+ - wild goose chase
+ - will wonders never cease?
+ - wisdom of the ages
+ - wise as an owl
+ - wolf at the door
+ - words fail me
+ - work like a dog
+ - world weary
+ - worst nightmare
+ - worth its weight in gold
+ - wrong side of the bed
+ - yanking your chain
+ - yappy as a dog
+ - years young
+ - you are what you eat
+ - you can run but you can't hide
+ - you only live once
+ - you're the boss
+ - young and foolish
+ - young and vibrant
diff --git a/docs/styles/write-good/E-Prime.yml b/docs/styles/write-good/E-Prime.yml
new file mode 100644
index 0000000000..074a102b25
--- /dev/null
+++ b/docs/styles/write-good/E-Prime.yml
@@ -0,0 +1,32 @@
+extends: existence
+message: "Try to avoid using '%s'."
+ignorecase: true
+level: suggestion
+tokens:
+ - am
+ - are
+ - aren't
+ - be
+ - been
+ - being
+ - he's
+ - here's
+ - here's
+ - how's
+ - i'm
+ - is
+ - isn't
+ - it's
+ - she's
+ - that's
+ - there's
+ - they're
+ - was
+ - wasn't
+ - we're
+ - were
+ - weren't
+ - what's
+ - where's
+ - who's
+ - you're
diff --git a/docs/styles/write-good/Illusions.yml b/docs/styles/write-good/Illusions.yml
new file mode 100644
index 0000000000..b4f1321859
--- /dev/null
+++ b/docs/styles/write-good/Illusions.yml
@@ -0,0 +1,11 @@
+extends: repetition
+message: "'%s' is repeated!"
+level: warning
+alpha: true
+action:
+ name: edit
+ params:
+ - truncate
+ - " "
+tokens:
+ - '[^\s]+'
diff --git a/docs/styles/write-good/Passive.yml b/docs/styles/write-good/Passive.yml
new file mode 100644
index 0000000000..f472cb9049
--- /dev/null
+++ b/docs/styles/write-good/Passive.yml
@@ -0,0 +1,183 @@
+extends: existence
+message: "'%s' may be passive voice. Use active voice if you can."
+ignorecase: true
+level: warning
+raw:
+ - \b(am|are|were|being|is|been|was|be)\b\s*
+tokens:
+ - '[\w]+ed'
+ - awoken
+ - beat
+ - become
+ - been
+ - begun
+ - bent
+ - beset
+ - bet
+ - bid
+ - bidden
+ - bitten
+ - bled
+ - blown
+ - born
+ - bought
+ - bound
+ - bred
+ - broadcast
+ - broken
+ - brought
+ - built
+ - burnt
+ - burst
+ - cast
+ - caught
+ - chosen
+ - clung
+ - come
+ - cost
+ - crept
+ - cut
+ - dealt
+ - dived
+ - done
+ - drawn
+ - dreamt
+ - driven
+ - drunk
+ - dug
+ - eaten
+ - fallen
+ - fed
+ - felt
+ - fit
+ - fled
+ - flown
+ - flung
+ - forbidden
+ - foregone
+ - forgiven
+ - forgotten
+ - forsaken
+ - fought
+ - found
+ - frozen
+ - given
+ - gone
+ - gotten
+ - ground
+ - grown
+ - heard
+ - held
+ - hidden
+ - hit
+ - hung
+ - hurt
+ - kept
+ - knelt
+ - knit
+ - known
+ - laid
+ - lain
+ - leapt
+ - learnt
+ - led
+ - left
+ - lent
+ - let
+ - lighted
+ - lost
+ - made
+ - meant
+ - met
+ - misspelt
+ - mistaken
+ - mown
+ - overcome
+ - overdone
+ - overtaken
+ - overthrown
+ - paid
+ - pled
+ - proven
+ - put
+ - quit
+ - read
+ - rid
+ - ridden
+ - risen
+ - run
+ - rung
+ - said
+ - sat
+ - sawn
+ - seen
+ - sent
+ - set
+ - sewn
+ - shaken
+ - shaven
+ - shed
+ - shod
+ - shone
+ - shorn
+ - shot
+ - shown
+ - shrunk
+ - shut
+ - slain
+ - slept
+ - slid
+ - slit
+ - slung
+ - smitten
+ - sold
+ - sought
+ - sown
+ - sped
+ - spent
+ - spilt
+ - spit
+ - split
+ - spoken
+ - spread
+ - sprung
+ - spun
+ - stolen
+ - stood
+ - stridden
+ - striven
+ - struck
+ - strung
+ - stuck
+ - stung
+ - stunk
+ - sung
+ - sunk
+ - swept
+ - swollen
+ - sworn
+ - swum
+ - swung
+ - taken
+ - taught
+ - thought
+ - thrived
+ - thrown
+ - thrust
+ - told
+ - torn
+ - trodden
+ - understood
+ - upheld
+ - upset
+ - wed
+ - wept
+ - withheld
+ - withstood
+ - woken
+ - won
+ - worn
+ - wound
+ - woven
+ - written
+ - wrung
diff --git a/docs/styles/write-good/README.md b/docs/styles/write-good/README.md
new file mode 100644
index 0000000000..3edcc9b376
--- /dev/null
+++ b/docs/styles/write-good/README.md
@@ -0,0 +1,27 @@
+Based on [write-good](https://github.com/btford/write-good).
+
+> Naive linter for English prose for developers who can't write good and wanna learn to do other stuff good too.
+
+```
+The MIT License (MIT)
+
+Copyright (c) 2014 Brian Ford
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+```
diff --git a/docs/styles/write-good/So.yml b/docs/styles/write-good/So.yml
new file mode 100644
index 0000000000..e57f099dc0
--- /dev/null
+++ b/docs/styles/write-good/So.yml
@@ -0,0 +1,5 @@
+extends: existence
+message: "Don't start a sentence with '%s'."
+level: error
+raw:
+ - '(?:[;-]\s)so[\s,]|\bSo[\s,]'
diff --git a/docs/styles/write-good/ThereIs.yml b/docs/styles/write-good/ThereIs.yml
new file mode 100644
index 0000000000..8b82e8f6cc
--- /dev/null
+++ b/docs/styles/write-good/ThereIs.yml
@@ -0,0 +1,6 @@
+extends: existence
+message: "Don't start a sentence with '%s'."
+ignorecase: false
+level: error
+raw:
+ - '(?:[;-]\s)There\s(is|are)|\bThere\s(is|are)\b'
diff --git a/docs/styles/write-good/TooWordy.yml b/docs/styles/write-good/TooWordy.yml
new file mode 100644
index 0000000000..d247c1745b
--- /dev/null
+++ b/docs/styles/write-good/TooWordy.yml
@@ -0,0 +1,220 @@
+extends: existence
+message: "'%s' is too wordy."
+ignorecase: true
+level: warning
+tokens:
+ - a number of
+ - abundance
+ - accede to
+ - accelerate
+ - accentuate
+ - accompany
+ - accomplish
+ - accorded
+ - accrue
+ - acquiesce
+ - acquire
+ - additional
+ - adjacent to
+ - adjustment
+ - admissible
+ - advantageous
+ - adversely impact
+ - advise
+ - aforementioned
+ - aggregate
+ - aircraft
+ - all of
+ - all things considered
+ - alleviate
+ - allocate
+ - along the lines of
+ - already existing
+ - alternatively
+ - amazing
+ - ameliorate
+ - anticipate
+ - apparent
+ - appreciable
+ - as a matter of fact
+ - as a means of
+ - as far as I'm concerned
+ - as of yet
+ - as to
+ - as yet
+ - ascertain
+ - assistance
+ - at the present time
+ - at this time
+ - attain
+ - attributable to
+ - authorize
+ - because of the fact that
+ - belated
+ - benefit from
+ - bestow
+ - by means of
+ - by virtue of
+ - by virtue of the fact that
+ - cease
+ - close proximity
+ - commence
+ - comply with
+ - concerning
+ - consequently
+ - consolidate
+ - constitutes
+ - demonstrate
+ - depart
+ - designate
+ - discontinue
+ - due to the fact that
+ - each and every
+ - economical
+ - eliminate
+ - elucidate
+ - employ
+ - endeavor
+ - enumerate
+ - equitable
+ - equivalent
+ - evaluate
+ - evidenced
+ - exclusively
+ - expedite
+ - expend
+ - expiration
+ - facilitate
+ - factual evidence
+ - feasible
+ - finalize
+ - first and foremost
+ - for all intents and purposes
+ - for the most part
+ - for the purpose of
+ - forfeit
+ - formulate
+ - have a tendency to
+ - honest truth
+ - however
+ - if and when
+ - impacted
+ - in a manner of speaking
+ - in a timely manner
+ - in a very real sense
+ - in accordance with
+ - in addition
+ - in all likelihood
+ - in an effort to
+ - in between
+ - in excess of
+ - in lieu of
+ - in light of the fact that
+ - in many cases
+ - in my opinion
+ - in order to
+ - in regard to
+ - in some instances
+ - in terms of
+ - in the case of
+ - in the event that
+ - in the final analysis
+ - in the nature of
+ - in the near future
+ - in the process of
+ - inception
+ - incumbent upon
+ - indicate
+ - indication
+ - initiate
+ - irregardless
+ - is applicable to
+ - is authorized to
+ - is responsible for
+ - it is
+ - it is essential
+ - it seems that
+ - it was
+ - magnitude
+ - maximum
+ - methodology
+ - minimize
+ - minimum
+ - modify
+ - monitor
+ - multiple
+ - necessitate
+ - nevertheless
+ - not certain
+ - not many
+ - not often
+ - not unless
+ - not unlike
+ - notwithstanding
+ - null and void
+ - numerous
+ - objective
+ - obligate
+ - obtain
+ - on the contrary
+ - on the other hand
+ - one particular
+ - optimum
+ - overall
+ - owing to the fact that
+ - participate
+ - particulars
+ - pass away
+ - pertaining to
+ - point in time
+ - portion
+ - possess
+ - preclude
+ - previously
+ - prior to
+ - prioritize
+ - procure
+ - proficiency
+ - provided that
+ - purchase
+ - put simply
+ - readily apparent
+ - refer back
+ - regarding
+ - relocate
+ - remainder
+ - remuneration
+ - requirement
+ - reside
+ - residence
+ - retain
+ - satisfy
+ - shall
+ - should you wish
+ - similar to
+ - solicit
+ - span across
+ - strategize
+ - subsequent
+ - substantial
+ - successfully complete
+ - sufficient
+ - terminate
+ - the month of
+ - the point I am trying to make
+ - therefore
+ - time period
+ - took advantage of
+ - transmit
+ - transpire
+ - type of
+ - until such time as
+ - utilization
+ - utilize
+ - validate
+ - various different
+ - what I mean to say is
+ - whether or not
+ - with respect to
+ - with the exception of
+ - witnessed
diff --git a/docs/styles/write-good/Weasel.yml b/docs/styles/write-good/Weasel.yml
new file mode 100644
index 0000000000..e29391444b
--- /dev/null
+++ b/docs/styles/write-good/Weasel.yml
@@ -0,0 +1,207 @@
+extends: existence
+message: "'%s' is a weasel word!"
+ignorecase: true
+level: warning
+tokens:
+ - absolutely
+ - accidentally
+ - additionally
+ - allegedly
+ - alternatively
+ - angrily
+ - anxiously
+ - approximately
+ - awkwardly
+ - badly
+ - barely
+ - beautifully
+ - blindly
+ - boldly
+ - bravely
+ - brightly
+ - briskly
+ - bristly
+ - bubbly
+ - busily
+ - calmly
+ - carefully
+ - carelessly
+ - cautiously
+ - cheerfully
+ - clearly
+ - closely
+ - coldly
+ - completely
+ - consequently
+ - correctly
+ - courageously
+ - crinkly
+ - cruelly
+ - crumbly
+ - cuddly
+ - currently
+ - daily
+ - daringly
+ - deadly
+ - definitely
+ - deliberately
+ - doubtfully
+ - dumbly
+ - eagerly
+ - early
+ - easily
+ - elegantly
+ - enormously
+ - enthusiastically
+ - equally
+ - especially
+ - eventually
+ - exactly
+ - exceedingly
+ - exclusively
+ - extremely
+ - fairly
+ - faithfully
+ - fatally
+ - fiercely
+ - finally
+ - fondly
+ - few
+ - foolishly
+ - fortunately
+ - frankly
+ - frantically
+ - generously
+ - gently
+ - giggly
+ - gladly
+ - gracefully
+ - greedily
+ - happily
+ - hardly
+ - hastily
+ - healthily
+ - heartily
+ - helpfully
+ - honestly
+ - hourly
+ - hungrily
+ - hurriedly
+ - immediately
+ - impatiently
+ - inadequately
+ - ingeniously
+ - innocently
+ - inquisitively
+ - interestingly
+ - irritably
+ - jiggly
+ - joyously
+ - justly
+ - kindly
+ - largely
+ - lately
+ - lazily
+ - likely
+ - literally
+ - lonely
+ - loosely
+ - loudly
+ - loudly
+ - luckily
+ - madly
+ - many
+ - mentally
+ - mildly
+ - monthly
+ - mortally
+ - mostly
+ - mysteriously
+ - neatly
+ - nervously
+ - nightly
+ - noisily
+ - normally
+ - obediently
+ - occasionally
+ - only
+ - openly
+ - painfully
+ - particularly
+ - patiently
+ - perfectly
+ - politely
+ - poorly
+ - powerfully
+ - presumably
+ - previously
+ - promptly
+ - punctually
+ - quarterly
+ - quickly
+ - quietly
+ - rapidly
+ - rarely
+ - really
+ - recently
+ - recklessly
+ - regularly
+ - remarkably
+ - relatively
+ - reluctantly
+ - repeatedly
+ - rightfully
+ - roughly
+ - rudely
+ - sadly
+ - safely
+ - selfishly
+ - sensibly
+ - seriously
+ - sharply
+ - shortly
+ - shyly
+ - significantly
+ - silently
+ - simply
+ - sleepily
+ - slowly
+ - smartly
+ - smelly
+ - smoothly
+ - softly
+ - solemnly
+ - sparkly
+ - speedily
+ - stealthily
+ - sternly
+ - stupidly
+ - substantially
+ - successfully
+ - suddenly
+ - surprisingly
+ - suspiciously
+ - swiftly
+ - tenderly
+ - tensely
+ - thoughtfully
+ - tightly
+ - timely
+ - truthfully
+ - unexpectedly
+ - unfortunately
+ - usually
+ - very
+ - victoriously
+ - violently
+ - vivaciously
+ - warmly
+ - waverly
+ - weakly
+ - wearily
+ - weekly
+ - wildly
+ - wisely
+ - worldly
+ - wrinkly
+ - yearly
diff --git a/docs/styles/write-good/meta.json b/docs/styles/write-good/meta.json
new file mode 100644
index 0000000000..a115d2886a
--- /dev/null
+++ b/docs/styles/write-good/meta.json
@@ -0,0 +1,4 @@
+{
+ "feed": "https://github.com/errata-ai/write-good/releases.atom",
+ "vale_version": ">=1.0.0"
+}
diff --git a/integration-tests/README.md b/integration-tests/README.md
index e4be2c14d0..46f2c13177 100644
--- a/integration-tests/README.md
+++ b/integration-tests/README.md
@@ -1,14 +1,3 @@
# Integration-tests
-To be able to run the integration tests on your local machine,
-run the following commands (adapted to your machine)
-
-```bash
-cd [ROOT_OF_YOUR_REPO]
-medusa-dev -p [YOUR_ABSOLUTE_PATH_TO_THE_REPO]
-npm run bootstrap
-cd integration-tests/api
-medusa-dev -s
-npm run build
-cd - && npm run test:integration
-```
+Check out the [local development documentation to learn how to run integration tests](https://docs.medusajs.com/usage/local-development#run-tests-in-the-repository).
diff --git a/package.json b/package.json
index 85290fcd72..35899d1079 100644
--- a/package.json
+++ b/package.json
@@ -69,11 +69,13 @@
"generate:services": "typedoc --options typedoc.services.js",
"generate:js-client": "typedoc --options typedoc.js-client.js",
"generate:entities": "typedoc --options typedoc.entities.js",
- "release:snapshot": "changeset publish --no-git-tags --snapshot --tag snapshot"
+ "release:snapshot": "changeset publish --no-git-tags --snapshot --tag snapshot",
+ "generate:announcement": "node ./scripts/doc-change-release.js"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.23.0",
+ "@octokit/core": "^4.0.5",
"global": "^4.4.0",
"import-from": "^3.0.0",
"oas-normalize": "^5.0.1",
diff --git a/packages/medusa-payment-manual/src/services/manual-payment.js b/packages/medusa-payment-manual/src/services/manual-payment.js
index 775721a278..9afc5797e7 100644
--- a/packages/medusa-payment-manual/src/services/manual-payment.js
+++ b/packages/medusa-payment-manual/src/services/manual-payment.js
@@ -52,6 +52,16 @@ class ManualPaymentService extends PaymentService {
return sessionData.data
}
+ /**
+ .
+ * @param {object} sessionData - payment session data.
+ * @param {object} update - payment session update data.
+ * @returns {object} existing data merged with update data
+ */
+ async updatePaymentData(sessionData, update) {
+ return { ...sessionData.data, ...update.data }
+ }
+
async deletePayment() {
return
}
diff --git a/scripts/doc-change-release.js b/scripts/doc-change-release.js
new file mode 100644
index 0000000000..a10845c7ff
--- /dev/null
+++ b/scripts/doc-change-release.js
@@ -0,0 +1,67 @@
+#!/usr/bin/env node
+
+const { Octokit } = require("@octokit/core");
+const fs = require('fs');
+const path = require('path');
+
+const shouldExpire = process.argv.indexOf('--expire') !== -1;
+const octokit = new Octokit({
+ auth: process.env.GH_TOKEN
+});
+
+async function main () {
+ let announcement = {};
+
+ if (shouldExpire) {
+ //check if the file was last updated 6 days ago
+ try {
+ const commitResponse = await octokit.request('GET /repos/{owner}/{repo}/commits', {
+ owner: 'medusajs',
+ repo: 'medusa',
+ path: path.join('www', 'docs', 'announcement.json'),
+ per_page: 1
+ })
+
+ if (commitResponse.data.length && dateDiffInDays(commitResponse.data[0].commit.committer.date, new Date()) < 6) {
+ console.log("File was edited less than 6 days ago. Expiry canceled.");
+ return;
+ }
+ } catch (e) {
+ //continue as if file doesn't exist
+ }
+ } else {
+ //retrieve the latest release
+ const response = await octokit.request('GET /repos/{owner}/{repo}/releases/latest', {
+ owner: 'medusajs',
+ repo: 'medusa'
+ });
+
+ const version = response.data.tag_name;
+
+ //add new announcement
+ announcement = {
+ id: `release-${version.replace(/\./g, '-')}`,
+ content: `New Release! Version ${version} of Medusa is out now! Read all about it here .`,
+ backgroundColor: '#7C53FF',
+ textColor: '#fff',
+ isCloseable: false,
+ }
+ }
+
+ //write new config file
+ fs.writeFileSync(path.join(__dirname, '..', 'www', 'docs', 'announcement.json'), JSON.stringify(announcement));
+ console.log(`Announcement Bar has been ${shouldExpire ? 'removed' : 'added'}`);
+}
+
+const _MS_PER_DAY = 1000 * 60 * 60 * 24;
+
+// a and b are javascript Date objects
+function dateDiffInDays(a, b) {
+ // Discard the time and time-zone information.
+ const utc1 = Date.UTC(a.getFullYear(), a.getMonth(), a.getDate());
+ const utc2 = Date.UTC(b.getFullYear(), b.getMonth(), b.getDate());
+
+ return Math.floor((utc2 - utc1) / _MS_PER_DAY);
+}
+
+main();
\ No newline at end of file
diff --git a/www/docs/.yarn/install-state.gz b/www/docs/.yarn/install-state.gz
index b513dc15e1..1bfbb90ab8 100644
Binary files a/www/docs/.yarn/install-state.gz and b/www/docs/.yarn/install-state.gz differ
diff --git a/www/docs/announcement.json b/www/docs/announcement.json
new file mode 100644
index 0000000000..9e26dfeeb6
--- /dev/null
+++ b/www/docs/announcement.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/www/docs/docusaurus.config.js b/www/docs/docusaurus.config.js
index c30c050ba1..ab3889144d 100644
--- a/www/docs/docusaurus.config.js
+++ b/www/docs/docusaurus.config.js
@@ -1,12 +1,15 @@
const path = require("path")
+const fs = require("fs")
const docsPath = path.join(__dirname, "../../docs/content")
const apisPath = path.join(__dirname, "../../docs/api")
const algoliaAppId = process.env.ALGOLIA_APP_ID || "temp"
const algoliaApiKey = process.env.ALGOLIA_API_KEY || "temp"
+const announcementBar = JSON.parse(fs.readFileSync('./announcement.json'))
+
/** @type {import('@docusaurus/types').DocusaurusConfig} */
-module.exports = {
+const config = {
title: "Medusa",
tagline: "Explore and learn how to use Medusa",
url: "https://docs.medusajs.com",
@@ -32,14 +35,6 @@ module.exports = {
]
],
themeConfig: {
- announcementBar: {
- id: 'release-1-3-8',
- content:
- 'New Release! Version 1.3.8 of Medusa is out now! Read all about it here .',
- backgroundColor: '#7C53FF',
- textColor: '#fff',
- isCloseable: false,
- },
colorMode: {
defaultMode: 'light',
disableSwitch: false,
@@ -146,6 +141,10 @@ module.exports = {
label: "GitHub",
href: "https://github.com/medusajs/medusa",
},
+ {
+ label: "Integrations",
+ href: "https://medusajs.notion.site/1a0ada9903874e0185d0b8ce0591b359?v=0631285851ba4021aa07c3b48dd4801a",
+ },
],
},
],
@@ -226,4 +225,10 @@ module.exports = {
},
],
],
-}
\ No newline at end of file
+}
+
+if (Object.keys(announcementBar).length) {
+ config.themeConfig.announcementBar = announcementBar
+}
+
+module.exports = config
diff --git a/www/docs/package.json b/www/docs/package.json
index ee6d98ad7e..43c2a2f2df 100644
--- a/www/docs/package.json
+++ b/www/docs/package.json
@@ -30,6 +30,7 @@
"prism-react-renderer": "^1.3.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
+ "react-transition-group": "^4.4.5",
"redocusaurus": "^1.3.0",
"url-loader": "^4.1.1"
},
diff --git a/www/docs/sidebars.js b/www/docs/sidebars.js
index 1d699b3116..d3b6a2d132 100644
--- a/www/docs/sidebars.js
+++ b/www/docs/sidebars.js
@@ -23,13 +23,17 @@ module.exports = {
{
type: "doc",
id: "introduction",
- label: "Introduction",
+ label: "Architecture Overview",
},
{
type: "doc",
id: "quickstart/quick-start",
label: "Quickstart Guide",
},
+ {
+ type:"doc",
+ id: "quickstart/quick-start-docker",
+ },
{
type: "doc",
id: "usage",
@@ -176,12 +180,52 @@ module.exports = {
},
]
},
+ {
+ type: "doc",
+ id: "usage/local-development",
+ },
]
},
{
type: "category",
label: "How-to Guides",
items: [
+ {
+ type: "category",
+ label: "Storefront",
+ items: [
+ {
+ type: "doc",
+ id: "guides/carts-in-medusa",
+ label: "Implement Cart"
+ },
+ {
+ type: "doc",
+ id: "advanced/storefront/how-to-implement-checkout-flow",
+ label: "Implement Checkout"
+ },
+ ]
+ },
+ {
+ type: "category",
+ label: "Admin",
+ items: [
+ {
+ type: "doc",
+ id: "advanced/admin/import-products",
+ label: "Import Products"
+ },
+ {
+ type: "doc",
+ id: "advanced/backend/taxes/manual-calculation",
+ label: "Calculate Taxes Manually"
+ },
+ {
+ type: "doc",
+ id: "advanced/backend/price-lists/use-api"
+ },
+ ]
+ },
{
type: "doc",
id: "advanced/backend/endpoints/add-storefront",
@@ -232,37 +276,29 @@ module.exports = {
id: "advanced/backend/migrations/index",
label: "Create a Migration"
},
+ {
+ type: "doc",
+ id: "advanced/backend/feature-flags/toggle",
+ label: "Toggle Feature Flags"
+ },
{
type: "doc",
id: "advanced/backend/cron-jobs/create",
label: "Create a Cron Job"
},
{
- type: "category",
- label: "Storefront",
- items: [
- {
- type: "doc",
- id: "guides/carts-in-medusa",
- label: "Implement Cart"
- },
- {
- type: "doc",
- id: "advanced/storefront/how-to-implement-checkout-flow",
- label: "Implement Checkout"
- },
- ]
+ type: "doc",
+ id: "advanced/backend/batch-jobs/create",
+ label: "Create Batch Job Strategy"
},
{
- type: "category",
- label: "Admin",
- items: [
- {
- type: "doc",
- id: "advanced/admin/import-products",
- label: "Import Products"
- },
- ]
+ type: "doc",
+ id: "advanced/backend/batch-jobs/customize-import",
+ },
+ {
+ type: "doc",
+ id: "advanced/backend/price-selection-strategy/override",
+ label: "Override Price Selection"
},
]
},
@@ -315,6 +351,19 @@ module.exports = {
id: "advanced/backend/batch-jobs/index",
label: "Batch Jobs"
},
+ {
+ type: "doc",
+ id: "advanced/backend/taxes/inclusive-pricing",
+ label: "Tax Inclusive Pricing"
+ },
+ {
+ type: "doc",
+ id: "advanced/backend/price-lists/index"
+ },
+ {
+ type: "doc",
+ id: "advanced/backend/price-selection-strategy/index"
+ },
]
},
{
@@ -494,11 +543,6 @@ module.exports = {
id: "cli/reference",
label: "CLI Reference",
},
- {
- type: "doc",
- id: "contribution-guidelines",
- label: "Contribution Guidelines",
- },
{
type: "ref",
id: "references/entities/classes/Address",
@@ -521,6 +565,11 @@ module.exports = {
},
]
},
+ {
+ type: "doc",
+ id: "contribution-guidelines",
+ label: "Contribution Guidelines",
+ },
],
userGuideSidebar: [
{
diff --git a/www/docs/src/components/Feedback/index.css b/www/docs/src/components/Feedback/index.css
new file mode 100644
index 0000000000..5505a90e38
--- /dev/null
+++ b/www/docs/src/components/Feedback/index.css
@@ -0,0 +1,123 @@
+.inline-feedback {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+}
+
+.inline-question,
+.feedback-message {
+ display: flex;
+ flex-direction: column;
+}
+
+.inline-feedback span,
+.inline-question span {
+ font-weight: bold;
+}
+
+.inline-feedback span {
+ margin-right: 13px;
+}
+
+.inline-question span {
+ margin-bottom: 13px;
+}
+
+.feedback-btn {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+ font-size: 13px;
+ padding: 12px 16px;
+ border-radius: 8px;
+ cursor: pointer;
+ font-weight: 600;
+ background-color: transparent;
+ border: 1px solid #E5E7EB;
+ color: var(--ifm-font-color-base);
+}
+
+.feedback-btn:focus {
+ box-shadow: 0px 0px 0px 4px rgba(124, 58, 237, 0.1);
+}
+
+html:not([data-theme="dark"]) .feedback-btn:hover {
+ background: #F3F4F6;
+}
+
+html:not([data-theme="dark"]) .feedback-btn:active,
+html:not([data-theme="dark"]) .feedback-btn:disabled {
+ background: #E5E7EB;
+}
+
+[data-theme="dark"] .feedback-btn,
+[data-theme="dark"] .inline-question textarea {
+ border-color: rgba(255, 255, 255, 0.15);
+}
+
+.feedback-btn:not(:last-child) {
+ margin-right: 13px;
+}
+
+.inline-question .feedback-btn {
+ margin-top: 13px;
+ width: fit-content;
+}
+
+.inline-question textarea {
+ border-radius: 4px;
+ background-color: transparent;
+ border: 1px solid #E5E7EB;
+ padding: 8px;
+ font-family: var(--ifm-font-family-base);
+}
+
+.feedback-message {
+ text-align: center;
+ font-size: 18px;
+}
+
+.fade-in {
+ -webkit-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
+ animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
+}
+
+@-webkit-keyframes fade-in {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+@keyframes fade-in {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+
+.fade-out {
+ -webkit-animation: fade-out .3s ease-out both;
+ animation: fade-out .3s ease-out both;
+}
+
+@-webkit-keyframes fade-out {
+ 0% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
+@keyframes fade-out {
+ 0% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+}
\ No newline at end of file
diff --git a/www/docs/src/components/Feedback/index.js b/www/docs/src/components/Feedback/index.js
new file mode 100644
index 0000000000..ffc4a6ce54
--- /dev/null
+++ b/www/docs/src/components/Feedback/index.js
@@ -0,0 +1,88 @@
+import React, { useRef, useState } from 'react';
+import { CSSTransition, SwitchTransition } from 'react-transition-group';
+import './index.css';
+
+import useIsBrowser from '@docusaurus/useIsBrowser';
+import {useLocation} from '@docusaurus/router';
+
+export default function Feedback () {
+ const [showForm, setShowForm] = useState(false);
+ const [submittedFeedback, setSubmittedFeedback] = useState(false);
+ const [loading, setLoading] = useState(false);
+ const inlineFeedbackRef = useRef(null);
+ const inlineQuestionRef = useRef(null);
+ const inlineMessageRef = useRef(null)
+ const [positiveFeedback, setPositiveFeedbac] = useState(false);
+ const [message, setMessage] = useState("");
+ const nodeRef = submittedFeedback ? inlineMessageRef : (showForm ? inlineQuestionRef : inlineFeedbackRef);
+
+ const isBrowser = useIsBrowser();
+ const location = useLocation();
+
+ function handleFeedback (e) {
+ setPositiveFeedbac(e.target.classList.contains('positive'));
+ setShowForm(true);
+ }
+
+ function submitFeedback (e) {
+ if (isBrowser) {
+ if (window.analytics) {
+ setLoading(true);
+ window.analytics.track('survey', {
+ url: location.pathname,
+ label: document.title,
+ feedback: positiveFeedback ? 'yes' : 'no',
+ message
+ }, function () {
+ setLoading(false);
+ setShowForm(false);
+ setSubmittedFeedback(true);
+ })
+ } else {
+ setShowForm(false);
+ setSubmittedFeedback(true);
+ }
+ }
+ }
+
+ return (
+
+
+ {
+ nodeRef.current.addEventListener("transitionend", done, false);
+ }}
+ classNames={{
+ enter: 'fade-in',
+ exit: 'fade-out'
+ }}
+ >
+ <>
+ {(!showForm && !submittedFeedback) && (
+
+ Was this page helpful?
+ Yes
+ No
+
+ )}
+ {(showForm && !submittedFeedback) && (
+
+ {positiveFeedback ? 'What was most helpful?' : 'What can we improve?'}
+
+ Submit
+
+ )}
+ {submittedFeedback && (
+
+ Thank you for helping improve our documentation!
+
+ )}
+ >
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/www/docs/src/components/Layout/Layout.js b/www/docs/src/components/Layout/Layout.js
deleted file mode 100644
index 8fb93152c5..0000000000
--- a/www/docs/src/components/Layout/Layout.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import React, { useEffect } from "react"
-
-import RootLayout from "@theme/Layout"
-
-const Layout = ({ children, ...props }) => {
- return (
-
- {children}
-
- )
-}
-
-export default Layout
diff --git a/www/docs/src/components/Layout/index.js b/www/docs/src/components/Layout/index.js
deleted file mode 100644
index 306f58fd8f..0000000000
--- a/www/docs/src/components/Layout/index.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as Layout } from "./Layout"
diff --git a/www/docs/src/components/Tabs/TabItem/TabItem.js b/www/docs/src/components/Tabs/TabItem/TabItem.js
deleted file mode 100644
index 6b7c3b28c0..0000000000
--- a/www/docs/src/components/Tabs/TabItem/TabItem.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import React from "react"
-import styles from "./tab.module.css"
-
-const TabItem = ({ title, isOverviewCard, items }) => {
- const overviewModeList = () =>
- items.map((item) => {item.title}
)
- return (
-
-
-
-
{title}
-
{isOverviewCard && overviewModeList()}
-
-
-
- )
-}
-
-export default TabItem
diff --git a/www/docs/src/components/Tabs/TabItem/index.js b/www/docs/src/components/Tabs/TabItem/index.js
deleted file mode 100644
index 39410a50a7..0000000000
--- a/www/docs/src/components/Tabs/TabItem/index.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as TabItem } from "./TabItem"
diff --git a/www/docs/src/components/Tabs/TabItem/tab.module.css b/www/docs/src/components/Tabs/TabItem/tab.module.css
deleted file mode 100644
index e425152248..0000000000
--- a/www/docs/src/components/Tabs/TabItem/tab.module.css
+++ /dev/null
@@ -1,18 +0,0 @@
-.card {
- background-color: var(--ifm-medusa-gray);
- min-height: 257px;
- border-radius: 5px;
- padding: 20px 13px;
- height: 100%;
-}
-
-.cardContent {
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
-}
-
-.cardContent p {
- font-size: 18px;
-}
diff --git a/www/docs/src/components/Tabs/TabsPanel.js b/www/docs/src/components/Tabs/TabsPanel.js
deleted file mode 100644
index 0d85cf02ee..0000000000
--- a/www/docs/src/components/Tabs/TabsPanel.js
+++ /dev/null
@@ -1,77 +0,0 @@
-import clsx from "clsx"
-import React, { useState } from "react"
-import { TabItem } from "./TabItem/"
-
-const BUTTONS_DATA = [
- { buttonTitle: "Overview", value: "overview" },
- { buttonTitle: "Tutorial", value: "tutorial" },
- { buttonTitle: "Guides", value: "guide" },
- { buttonTitle: "Reference", value: "reference" },
-]
-
-const OVERVIEW_DATA = ["Tutorial", "Guides", "Reference"]
-
-const TabsPanel = ({ items }) => {
- const [sort, setSort] = useState("overview")
-
- const buttons = BUTTONS_DATA.map((item) => (
- // setSort(item.value)}
- // >
- // {item.buttonTitle}
- //
- setSort(item.value)}
- >
- {item.buttonTitle}
-
- ))
-
- const getOverviewCardItemsSet = (currentCard) =>
- items.filter((item) => item.key === currentCard.toLowerCase())
-
- const overviewCardsSet = () =>
- OVERVIEW_DATA.map((item) => (
-
- ))
-
- const getSortedArray = () => {
- return items.filter((entry) => entry.type === sort)
- }
-
- const renderTabItems = () => {
- if (sort === "overview") return overviewCardsSet()
- return getSortedArray().length > 0 ? (
- getSortedArray().map((item) => {
- return
- })
- ) : (
- hold tight! we are building these things
- )
- }
-
- return (
-
- {/*
- {buttons}
- */}
-
-
-
- )
-}
-
-export default TabsPanel
diff --git a/www/docs/src/components/Tabs/index.js b/www/docs/src/components/Tabs/index.js
deleted file mode 100644
index bf7cd87ade..0000000000
--- a/www/docs/src/components/Tabs/index.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as TabsPanel } from "./TabsPanel"
diff --git a/www/docs/src/components/Tabs/tabs.module.css b/www/docs/src/components/Tabs/tabs.module.css
deleted file mode 100644
index 41e999ef4c..0000000000
--- a/www/docs/src/components/Tabs/tabs.module.css
+++ /dev/null
@@ -1,14 +0,0 @@
-.button {
- background-color: transparent;
- border: none;
- cursor: pointer;
- height: 30px;
- font-size: 16px;
- margin-right: 10px;
-}
-
-.buttonActive {
- color: var(--ifm-color-primary);
- border-bottom: 3px solid var(--ifm-color-primary) !important;
- font-weight: 500;
-}
diff --git a/www/docs/src/theme/DocItem/Footer/index.js b/www/docs/src/theme/DocItem/Footer/index.js
new file mode 100644
index 0000000000..02feffda41
--- /dev/null
+++ b/www/docs/src/theme/DocItem/Footer/index.js
@@ -0,0 +1,12 @@
+import React from 'react';
+import Footer from '@theme-original/DocItem/Footer';
+import Feedback from '../../../components/Feedback';
+
+export default function FooterWrapper(props) {
+ return (
+
+
+
+
+ );
+}
diff --git a/www/docs/yarn.lock b/www/docs/yarn.lock
index 6d70c77115..50482fb3a2 100644
--- a/www/docs/yarn.lock
+++ b/www/docs/yarn.lock
@@ -2883,6 +2883,15 @@ __metadata:
languageName: node
linkType: hard
+"@babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7":
+ version: 7.19.0
+ resolution: "@babel/runtime@npm:7.19.0"
+ dependencies:
+ regenerator-runtime: ^0.13.4
+ checksum: 42d4f11d6a5bfcf5a3d05346e7f1aef79a53b9e1968b4dc54a0682df60284300c97de3be63f4d5dd47b404d3a1022a8a57444b5d150822ec8974757de7233f6e
+ languageName: node
+ linkType: hard
+
"@babel/runtime@npm:^7.8.4":
version: 7.17.8
resolution: "@babel/runtime@npm:7.17.8"
@@ -3011,9 +3020,9 @@ __metadata:
languageName: node
linkType: hard
-"@docusaurus/core@npm:2.0.1, @docusaurus/core@npm:latest":
- version: 2.0.1
- resolution: "@docusaurus/core@npm:2.0.1"
+"@docusaurus/core@npm:2.1.0, @docusaurus/core@npm:latest":
+ version: 2.1.0
+ resolution: "@docusaurus/core@npm:2.1.0"
dependencies:
"@babel/core": ^7.18.6
"@babel/generator": ^7.18.7
@@ -3025,13 +3034,13 @@ __metadata:
"@babel/runtime": ^7.18.6
"@babel/runtime-corejs3": ^7.18.6
"@babel/traverse": ^7.18.8
- "@docusaurus/cssnano-preset": 2.0.1
- "@docusaurus/logger": 2.0.1
- "@docusaurus/mdx-loader": 2.0.1
+ "@docusaurus/cssnano-preset": 2.1.0
+ "@docusaurus/logger": 2.1.0
+ "@docusaurus/mdx-loader": 2.1.0
"@docusaurus/react-loadable": 5.5.2
- "@docusaurus/utils": 2.0.1
- "@docusaurus/utils-common": 2.0.1
- "@docusaurus/utils-validation": 2.0.1
+ "@docusaurus/utils": 2.1.0
+ "@docusaurus/utils-common": 2.1.0
+ "@docusaurus/utils-validation": 2.1.0
"@slorber/static-site-generator-webpack-plugin": ^4.0.7
"@svgr/webpack": ^6.2.1
autoprefixer: ^10.4.7
@@ -3091,40 +3100,40 @@ __metadata:
react-dom: ^16.8.4 || ^17.0.0
bin:
docusaurus: bin/docusaurus.mjs
- checksum: ac857546e6ee776ba17db5318771a129d2aac56058ebd74c7f526381398b082abcd5717735c970b7f9c2a0735b0b2883ac01aaeb1f2899d418620b8d3c680ef2
+ checksum: 928ad0786e83123df44f9bb523179984ad4d5520042d1c5a8bc1a5d34ee8549553439991010dfefcf364d027b8456fd861eb70b3ec98c7546a1aab3213f60940
languageName: node
linkType: hard
-"@docusaurus/cssnano-preset@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/cssnano-preset@npm:2.0.1"
+"@docusaurus/cssnano-preset@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/cssnano-preset@npm:2.1.0"
dependencies:
cssnano-preset-advanced: ^5.3.8
postcss: ^8.4.14
postcss-sort-media-queries: ^4.2.1
tslib: ^2.4.0
- checksum: a6a61be8d08a421cc852c29779bd434934f004173566b1b09d5bfabf1d9f786fc1f9f4f99b45af8bb215b358ef2b6408f03bf9c20697070aea7b12222f9fdb98
+ checksum: 30805ad1701500a3f67fec98b27a6c8c9bdb8699b5e774f790eccb8938f8ed3c8e70a487dbf6ca1c0027d04858d5e676505ab699fbc7943d581cfa9ba9a870ac
languageName: node
linkType: hard
-"@docusaurus/logger@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/logger@npm:2.0.1"
+"@docusaurus/logger@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/logger@npm:2.1.0"
dependencies:
chalk: ^4.1.2
tslib: ^2.4.0
- checksum: 12d04adbab5ce6f6a59b560f40854d538ff626b03980d513327bf293ff90cb591519347ba3cc8864aca62e455a8cc1f3ad9c2562cee344121691e2e3999eef1b
+ checksum: 24e123d127c10e54c40f99ccf0835b422aac7f3acf7a5b9e34ba83a3e743ce7e76183b624da0dd0fd167c20351681ff6cea58261fc1131f03feee8bd54cb25b6
languageName: node
linkType: hard
-"@docusaurus/mdx-loader@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/mdx-loader@npm:2.0.1"
+"@docusaurus/mdx-loader@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/mdx-loader@npm:2.1.0"
dependencies:
"@babel/parser": ^7.18.8
"@babel/traverse": ^7.18.8
- "@docusaurus/logger": 2.0.1
- "@docusaurus/utils": 2.0.1
+ "@docusaurus/logger": 2.1.0
+ "@docusaurus/utils": 2.1.0
"@mdx-js/mdx": ^1.6.22
escape-html: ^1.0.3
file-loader: ^6.2.0
@@ -3141,16 +3150,16 @@ __metadata:
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: a13d8fdf8d79db89586ebd82815a92f522ab7628770c14a7399ca8b670608b0b1978e809bb1e2a92be27ff2709560f6feb992fae3e20502bc002c93ea9ec7e39
+ checksum: 1d5ade44eedadce85140d896599c2c9ecb1fa63c9c36f50d6a24729600768860ca6be2bd6cf22dd6c93e7d9fee16031d09a5605439e2bf2969f67383ee246d8f
languageName: node
linkType: hard
-"@docusaurus/module-type-aliases@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/module-type-aliases@npm:2.0.1"
+"@docusaurus/module-type-aliases@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/module-type-aliases@npm:2.1.0"
dependencies:
"@docusaurus/react-loadable": 5.5.2
- "@docusaurus/types": 2.0.1
+ "@docusaurus/types": 2.1.0
"@types/history": ^4.7.11
"@types/react": "*"
"@types/react-router-config": "*"
@@ -3160,21 +3169,21 @@ __metadata:
peerDependencies:
react: "*"
react-dom: "*"
- checksum: cdcc508911999e237451afffd4a114cea8271d107a3951604639e5c11ebf4e9d0e3287932a07adb2c97f3fdc5aac2a3f072d33fcfd2f473d00ab8e4b9e01f6d9
+ checksum: 2249499a23edd9aa8c961414c912c260c2d0f11465c6fdec5e90fe33d92c57dd1f0d262382cc4d647d0d22d501d14645301a5321aaf26e3b7b6f205b45379b76
languageName: node
linkType: hard
-"@docusaurus/plugin-content-blog@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/plugin-content-blog@npm:2.0.1"
+"@docusaurus/plugin-content-blog@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/plugin-content-blog@npm:2.1.0"
dependencies:
- "@docusaurus/core": 2.0.1
- "@docusaurus/logger": 2.0.1
- "@docusaurus/mdx-loader": 2.0.1
- "@docusaurus/types": 2.0.1
- "@docusaurus/utils": 2.0.1
- "@docusaurus/utils-common": 2.0.1
- "@docusaurus/utils-validation": 2.0.1
+ "@docusaurus/core": 2.1.0
+ "@docusaurus/logger": 2.1.0
+ "@docusaurus/mdx-loader": 2.1.0
+ "@docusaurus/types": 2.1.0
+ "@docusaurus/utils": 2.1.0
+ "@docusaurus/utils-common": 2.1.0
+ "@docusaurus/utils-validation": 2.1.0
cheerio: ^1.0.0-rc.12
feed: ^4.2.2
fs-extra: ^10.1.0
@@ -3187,21 +3196,21 @@ __metadata:
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: 981ea4d9afb4c995ff9e04790521b8e2b3627de703650a5725b97af49ee0818c620e720b551f9f03ce1490b8cd6a083574b46dd00f29d1bfa22a9060fb61bf82
+ checksum: 173fa5b16ea08dd6eb14704f4393c720c6416272c8f52656b5a82167e3e2e1a5e8ee3474645a19a9660493d40ccc085f47948e06cdacffa426dbc9c3891e4432
languageName: node
linkType: hard
-"@docusaurus/plugin-content-docs@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/plugin-content-docs@npm:2.0.1"
+"@docusaurus/plugin-content-docs@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/plugin-content-docs@npm:2.1.0"
dependencies:
- "@docusaurus/core": 2.0.1
- "@docusaurus/logger": 2.0.1
- "@docusaurus/mdx-loader": 2.0.1
- "@docusaurus/module-type-aliases": 2.0.1
- "@docusaurus/types": 2.0.1
- "@docusaurus/utils": 2.0.1
- "@docusaurus/utils-validation": 2.0.1
+ "@docusaurus/core": 2.1.0
+ "@docusaurus/logger": 2.1.0
+ "@docusaurus/mdx-loader": 2.1.0
+ "@docusaurus/module-type-aliases": 2.1.0
+ "@docusaurus/types": 2.1.0
+ "@docusaurus/utils": 2.1.0
+ "@docusaurus/utils-validation": 2.1.0
"@types/react-router-config": ^5.0.6
combine-promises: ^1.1.0
fs-extra: ^10.1.0
@@ -3214,116 +3223,116 @@ __metadata:
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: 4dbad76084df7ed37b889fbba7619f2e405b4e23eaef43a5c836f779a132dd940556be98313f863f790a5e3976b629267e397395846bd4efd4722327c25f73cc
+ checksum: 40dd6e8f984d5c589b260bb1fd36e491cebf02fab0e972f87184ed7e5d8e8ab410256b54192e0cdc58543729dfdb62aed18bf106312115aeae37404b2e714e62
languageName: node
linkType: hard
-"@docusaurus/plugin-content-pages@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/plugin-content-pages@npm:2.0.1"
+"@docusaurus/plugin-content-pages@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/plugin-content-pages@npm:2.1.0"
dependencies:
- "@docusaurus/core": 2.0.1
- "@docusaurus/mdx-loader": 2.0.1
- "@docusaurus/types": 2.0.1
- "@docusaurus/utils": 2.0.1
- "@docusaurus/utils-validation": 2.0.1
+ "@docusaurus/core": 2.1.0
+ "@docusaurus/mdx-loader": 2.1.0
+ "@docusaurus/types": 2.1.0
+ "@docusaurus/utils": 2.1.0
+ "@docusaurus/utils-validation": 2.1.0
fs-extra: ^10.1.0
tslib: ^2.4.0
webpack: ^5.73.0
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: ee361c21c2e545729e6377a6b541a88d7a314f2fd638284a7d37395f8a9bb502a8a1cc7b3f8b93ebd443e44974ddcb7994c5ad3cbfcd36638edfb58441635355
+ checksum: ddfcf0712edd0e0220996b43a5b35f25445fe287720b5cb67988529e472d3b9c81b67dec0c0efbfa42aba8f31ffe0987db2573c97cc0d55436ef63fe9e311eb0
languageName: node
linkType: hard
-"@docusaurus/plugin-debug@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/plugin-debug@npm:2.0.1"
+"@docusaurus/plugin-debug@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/plugin-debug@npm:2.1.0"
dependencies:
- "@docusaurus/core": 2.0.1
- "@docusaurus/types": 2.0.1
- "@docusaurus/utils": 2.0.1
+ "@docusaurus/core": 2.1.0
+ "@docusaurus/types": 2.1.0
+ "@docusaurus/utils": 2.1.0
fs-extra: ^10.1.0
react-json-view: ^1.21.3
tslib: ^2.4.0
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: 15835bc34a267cd4732655ab61e89bd8521bae69b4cfdfc0a222800ce9851b4da3e3871cb3ce69cb2707ea31ea2f2a5b6488777c9de8ec34396bdf384ec731ce
+ checksum: fc6d577184a08c2798788c5216c543ba1942a09f833365bd0e0caff6765ff74c54430605390a8ca11c4ca35beff64553cfa26308b18ddc3d6f4a91e0714ade5a
languageName: node
linkType: hard
-"@docusaurus/plugin-google-analytics@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/plugin-google-analytics@npm:2.0.1"
+"@docusaurus/plugin-google-analytics@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/plugin-google-analytics@npm:2.1.0"
dependencies:
- "@docusaurus/core": 2.0.1
- "@docusaurus/types": 2.0.1
- "@docusaurus/utils-validation": 2.0.1
+ "@docusaurus/core": 2.1.0
+ "@docusaurus/types": 2.1.0
+ "@docusaurus/utils-validation": 2.1.0
tslib: ^2.4.0
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: 8b219f0a676cfb1703eb267280f0a0eadd46478c84faf1f0973c026954de4af59a4948e13467d39eb3fd5a643a6c424a0e276149e0ce716f732a4a8127f3d8de
+ checksum: 5c9769046677dd423123c7855d16434585002bc8d30a735becbc19e199c18b810476a5c072f06e574663c3e957d48beeebe2293d702722ea41a418ada830514c
languageName: node
linkType: hard
-"@docusaurus/plugin-google-gtag@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/plugin-google-gtag@npm:2.0.1"
+"@docusaurus/plugin-google-gtag@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/plugin-google-gtag@npm:2.1.0"
dependencies:
- "@docusaurus/core": 2.0.1
- "@docusaurus/types": 2.0.1
- "@docusaurus/utils-validation": 2.0.1
+ "@docusaurus/core": 2.1.0
+ "@docusaurus/types": 2.1.0
+ "@docusaurus/utils-validation": 2.1.0
tslib: ^2.4.0
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: 6a1005a626e4671a7bb545ba10addff2e69fb879ffe89a07f12fc74db93505291868cd8a3517bd369014c3198fee56f7567c7ed055c2b2715e57341de15f1bf1
+ checksum: e29296caab9a36439d4bae20d170191c06b989b9be5d77e05632ae7f5e296cdd3c7d04a39892b97467b9257ac7eac44402b09d5369ce4c35e82ed77a51763a4f
languageName: node
linkType: hard
-"@docusaurus/plugin-sitemap@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/plugin-sitemap@npm:2.0.1"
+"@docusaurus/plugin-sitemap@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/plugin-sitemap@npm:2.1.0"
dependencies:
- "@docusaurus/core": 2.0.1
- "@docusaurus/logger": 2.0.1
- "@docusaurus/types": 2.0.1
- "@docusaurus/utils": 2.0.1
- "@docusaurus/utils-common": 2.0.1
- "@docusaurus/utils-validation": 2.0.1
+ "@docusaurus/core": 2.1.0
+ "@docusaurus/logger": 2.1.0
+ "@docusaurus/types": 2.1.0
+ "@docusaurus/utils": 2.1.0
+ "@docusaurus/utils-common": 2.1.0
+ "@docusaurus/utils-validation": 2.1.0
fs-extra: ^10.1.0
sitemap: ^7.1.1
tslib: ^2.4.0
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: bfa81cc31b310faebae5efd2b996c299847d2a76a76fba9de341ed3f3e6563044ff065fc79d8f77e1e5c40a6a4aaf7ccc211b981e7909a77794c5ec9363d27e3
+ checksum: c255f0985b78afbba746675a5252c2f0bfc49472a706d1f778a0794d7ad1f3871c975e61af8516e8d6cd25d8c3cee6d075863077e7c7e4f1d89b997b8e488961
languageName: node
linkType: hard
"@docusaurus/preset-classic@npm:latest":
- version: 2.0.1
- resolution: "@docusaurus/preset-classic@npm:2.0.1"
+ version: 2.1.0
+ resolution: "@docusaurus/preset-classic@npm:2.1.0"
dependencies:
- "@docusaurus/core": 2.0.1
- "@docusaurus/plugin-content-blog": 2.0.1
- "@docusaurus/plugin-content-docs": 2.0.1
- "@docusaurus/plugin-content-pages": 2.0.1
- "@docusaurus/plugin-debug": 2.0.1
- "@docusaurus/plugin-google-analytics": 2.0.1
- "@docusaurus/plugin-google-gtag": 2.0.1
- "@docusaurus/plugin-sitemap": 2.0.1
- "@docusaurus/theme-classic": 2.0.1
- "@docusaurus/theme-common": 2.0.1
- "@docusaurus/theme-search-algolia": 2.0.1
- "@docusaurus/types": 2.0.1
+ "@docusaurus/core": 2.1.0
+ "@docusaurus/plugin-content-blog": 2.1.0
+ "@docusaurus/plugin-content-docs": 2.1.0
+ "@docusaurus/plugin-content-pages": 2.1.0
+ "@docusaurus/plugin-debug": 2.1.0
+ "@docusaurus/plugin-google-analytics": 2.1.0
+ "@docusaurus/plugin-google-gtag": 2.1.0
+ "@docusaurus/plugin-sitemap": 2.1.0
+ "@docusaurus/theme-classic": 2.1.0
+ "@docusaurus/theme-common": 2.1.0
+ "@docusaurus/theme-search-algolia": 2.1.0
+ "@docusaurus/types": 2.1.0
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: c434ddc54c1d1ad6595a6825f5b4e368a5d1944f22793587a1caf9e596a2809ccdab3bd6eb642d0c4a3d5a4ee00c83b99279f97de9a9ea94415a431041c6695a
+ checksum: 3f0a80a158f05adb1078f848e8fe1f559a5f117e4f5728f9346bc9d6592cdf07feaebcf44b84c80e90b79aefef81f9fef7e662dd6365d1a33706ffff97c8c314
languageName: node
linkType: hard
@@ -3340,32 +3349,32 @@ __metadata:
linkType: hard
"@docusaurus/remark-plugin-npm2yarn@npm:latest":
- version: 2.0.1
- resolution: "@docusaurus/remark-plugin-npm2yarn@npm:2.0.1"
+ version: 2.1.0
+ resolution: "@docusaurus/remark-plugin-npm2yarn@npm:2.1.0"
dependencies:
npm-to-yarn: ^1.0.1
tslib: ^2.4.0
unist-util-visit: ^2.0.3
- checksum: b12260fc3d36a83926c24aeaf72201e5fbd133ad9c85b6ac22b798d277a7dd8079da7758897f938cec434ac6feb78b7a08beb6ad59c0ad16b67a3c7869abffe0
+ checksum: b1234bb8809cbcaa407ae673c6352e9308d16f44726d5d70f877f927c5b10d6664f3c07b32773eee04ae74a5110e362725cf2205a68dac7268c0567864abbcf5
languageName: node
linkType: hard
-"@docusaurus/theme-classic@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/theme-classic@npm:2.0.1"
+"@docusaurus/theme-classic@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/theme-classic@npm:2.1.0"
dependencies:
- "@docusaurus/core": 2.0.1
- "@docusaurus/mdx-loader": 2.0.1
- "@docusaurus/module-type-aliases": 2.0.1
- "@docusaurus/plugin-content-blog": 2.0.1
- "@docusaurus/plugin-content-docs": 2.0.1
- "@docusaurus/plugin-content-pages": 2.0.1
- "@docusaurus/theme-common": 2.0.1
- "@docusaurus/theme-translations": 2.0.1
- "@docusaurus/types": 2.0.1
- "@docusaurus/utils": 2.0.1
- "@docusaurus/utils-common": 2.0.1
- "@docusaurus/utils-validation": 2.0.1
+ "@docusaurus/core": 2.1.0
+ "@docusaurus/mdx-loader": 2.1.0
+ "@docusaurus/module-type-aliases": 2.1.0
+ "@docusaurus/plugin-content-blog": 2.1.0
+ "@docusaurus/plugin-content-docs": 2.1.0
+ "@docusaurus/plugin-content-pages": 2.1.0
+ "@docusaurus/theme-common": 2.1.0
+ "@docusaurus/theme-translations": 2.1.0
+ "@docusaurus/types": 2.1.0
+ "@docusaurus/utils": 2.1.0
+ "@docusaurus/utils-common": 2.1.0
+ "@docusaurus/utils-validation": 2.1.0
"@mdx-js/react": ^1.6.22
clsx: ^1.2.1
copy-text-to-clipboard: ^3.0.1
@@ -3382,20 +3391,20 @@ __metadata:
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: a9d45f3613e1f40f42a188630af16a09f7ce696dc310748e0f089c4e4c381f3ba62e427413318f2d2a0fa4783c20f0a1fa00c80e5d88b2d95dd6eee76e5fc603
+ checksum: 6062dc0c1047656f5b25fa3c8c4790a1ebc0e12765d3ba4a14c58c7f8b3475e7c5cb292e771e9195d012a41e91582415c89e1ab7c954bdc6b2479c423e924964
languageName: node
linkType: hard
-"@docusaurus/theme-common@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/theme-common@npm:2.0.1"
+"@docusaurus/theme-common@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/theme-common@npm:2.1.0"
dependencies:
- "@docusaurus/mdx-loader": 2.0.1
- "@docusaurus/module-type-aliases": 2.0.1
- "@docusaurus/plugin-content-blog": 2.0.1
- "@docusaurus/plugin-content-docs": 2.0.1
- "@docusaurus/plugin-content-pages": 2.0.1
- "@docusaurus/utils": 2.0.1
+ "@docusaurus/mdx-loader": 2.1.0
+ "@docusaurus/module-type-aliases": 2.1.0
+ "@docusaurus/plugin-content-blog": 2.1.0
+ "@docusaurus/plugin-content-docs": 2.1.0
+ "@docusaurus/plugin-content-pages": 2.1.0
+ "@docusaurus/utils": 2.1.0
"@types/history": ^4.7.11
"@types/react": "*"
"@types/react-router-config": "*"
@@ -3407,22 +3416,22 @@ __metadata:
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: 51869cd4bcb53058905a954c844d5773130f0fd79b3330a56b59c6473ffd0d97e16718524baa7521377e895fd07856ba204f0e96729949f09350018c530e3eb8
+ checksum: 56e9927e38d20f2ac5c4d4db5ccb39310784a9f677e02218f389c5877a1bdb0a66f76466d2f8741128fb683710f811b9f4035c5e05f6e9e153c22f4c2674ac15
languageName: node
linkType: hard
-"@docusaurus/theme-search-algolia@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/theme-search-algolia@npm:2.0.1"
+"@docusaurus/theme-search-algolia@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/theme-search-algolia@npm:2.1.0"
dependencies:
"@docsearch/react": ^3.1.1
- "@docusaurus/core": 2.0.1
- "@docusaurus/logger": 2.0.1
- "@docusaurus/plugin-content-docs": 2.0.1
- "@docusaurus/theme-common": 2.0.1
- "@docusaurus/theme-translations": 2.0.1
- "@docusaurus/utils": 2.0.1
- "@docusaurus/utils-validation": 2.0.1
+ "@docusaurus/core": 2.1.0
+ "@docusaurus/logger": 2.1.0
+ "@docusaurus/plugin-content-docs": 2.1.0
+ "@docusaurus/theme-common": 2.1.0
+ "@docusaurus/theme-translations": 2.1.0
+ "@docusaurus/utils": 2.1.0
+ "@docusaurus/utils-validation": 2.1.0
algoliasearch: ^4.13.1
algoliasearch-helper: ^3.10.0
clsx: ^1.2.1
@@ -3434,23 +3443,23 @@ __metadata:
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: 03cffc70c3dba72d83824751d871902e6780be54fb96fcc7d7d6987134da28689609f76fa7bdcd9211092637aff081dcf2616fcd3c2e9a0bca9521f5f3a60661
+ checksum: 58f37a3310b4e8b63717eb4f350a0d096ef9bfc91887a21bdfc9680d75b1d381b333a75f56e01612ef45b96e8e68ee0994babe4216f65aa29326df2bcf9d07e1
languageName: node
linkType: hard
-"@docusaurus/theme-translations@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/theme-translations@npm:2.0.1"
+"@docusaurus/theme-translations@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/theme-translations@npm:2.1.0"
dependencies:
fs-extra: ^10.1.0
tslib: ^2.4.0
- checksum: 8ed90f020f454838f6edf6cf0d43380fde9abd617345d2edc7c0d0189fe9fca67353cf38ecc1d115830db215c11c3b577c5f8dc34d6652fa72709db9eb9dcb3a
+ checksum: 1aa09e11e2e1f30c353f720de71e5807563edf386805a85cd7faaedca9cf6083160db807c5ccf77927065f1152bef904fd00a87c891a7cfbffedd314a4311529
languageName: node
linkType: hard
-"@docusaurus/types@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/types@npm:2.0.1"
+"@docusaurus/types@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/types@npm:2.1.0"
dependencies:
"@types/history": ^4.7.11
"@types/react": "*"
@@ -3463,13 +3472,13 @@ __metadata:
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
- checksum: 9eacc42582f6f9d4a0da58714a09f824b7c551ea4dbe6713d0ea4251ddcf7f3d488fa50e1f33bb2885050816611f4a2aa4145dd2175978918222f87cfb57612a
+ checksum: ded514982e499111377db6ada32936644b29b51f34d8a3f762461603c2db17bc260629cdeab09f30fd493f035039f1b035fe8b9c86e717279e418c4b97724b1a
languageName: node
linkType: hard
-"@docusaurus/utils-common@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/utils-common@npm:2.0.1"
+"@docusaurus/utils-common@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/utils-common@npm:2.1.0"
dependencies:
tslib: ^2.4.0
peerDependencies:
@@ -3477,28 +3486,28 @@ __metadata:
peerDependenciesMeta:
"@docusaurus/types":
optional: true
- checksum: c05eeb2ec35c7e320db967592c1e2635debb5c1c165af85e722a0f7d4e1b83078e69be7bd3e29f6e3442d43802ee0d3c09618348524a16e055432c8f7bc5082b
+ checksum: 11991a3327f3278798469c55c1374a2311bf0040ead0e8c2fb320861fce246db8fa6b6dd49a5b9278b87d53dc12e93504e8ba8b2719bb1332385a39d882cc9c2
languageName: node
linkType: hard
-"@docusaurus/utils-validation@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/utils-validation@npm:2.0.1"
+"@docusaurus/utils-validation@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/utils-validation@npm:2.1.0"
dependencies:
- "@docusaurus/logger": 2.0.1
- "@docusaurus/utils": 2.0.1
+ "@docusaurus/logger": 2.1.0
+ "@docusaurus/utils": 2.1.0
joi: ^17.6.0
js-yaml: ^4.1.0
tslib: ^2.4.0
- checksum: 83e406046101a53bd52b2df095a79d3a45733c692e61976358a10cc0a45df0d4cf15a7eb38c023ecb70cc8a86e30257d5f178d6b35635220b0e6252e0d0522ef
+ checksum: 52664daff9543518b3c704990d82cf499864698e1c4b585d3b533f9f9eb55297ddf055832e15c3804ba844cb49ee3f0ad03a2b2c684acef8ed82a53a54679146
languageName: node
linkType: hard
-"@docusaurus/utils@npm:2.0.1":
- version: 2.0.1
- resolution: "@docusaurus/utils@npm:2.0.1"
+"@docusaurus/utils@npm:2.1.0":
+ version: 2.1.0
+ resolution: "@docusaurus/utils@npm:2.1.0"
dependencies:
- "@docusaurus/logger": 2.0.1
+ "@docusaurus/logger": 2.1.0
"@svgr/webpack": ^6.2.1
file-loader: ^6.2.0
fs-extra: ^10.1.0
@@ -3518,7 +3527,7 @@ __metadata:
peerDependenciesMeta:
"@docusaurus/types":
optional: true
- checksum: d56e514caea2b26906b785df402177bd5e9d399ffacf658c07018b6082b0e1d9eb4110ae8fcc5bd88d682df3b2ca9f0a462a2b1284d3ca0adea00f4497a8f1d0
+ checksum: 0eb3faae15a7508acdfc37f59799ba4de0594d7d2f576b4cc7d06041981c29c6f360e4f6583327024182652dc01b5db0016fb1eb7d7be6a9109d99a2bc4ab982
languageName: node
linkType: hard
@@ -5399,24 +5408,10 @@ __metadata:
languageName: node
linkType: hard
-"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001297":
- version: 1.0.30001312
- resolution: "caniuse-lite@npm:1.0.30001312"
- checksum: 9969d14a76fde0dcde7a6c486a15340bcc4ccda57a3bca92c8e81c67e816a1629a4a68ddaca0c9918dfc4872bfb5391fcb0659a93ef6d8430c692a322264ec64
- languageName: node
- linkType: hard
-
-"caniuse-lite@npm:^1.0.30001312, caniuse-lite@npm:^1.0.30001317":
- version: 1.0.30001320
- resolution: "caniuse-lite@npm:1.0.30001320"
- checksum: 41744483a4b869d448f0d54786dce159dbe4863907e1529f8976284ef272ec7b5c2c620b63f2d7b7f1643e3148a13b119f6f696877dc262b1c168be5f82c5b22
- languageName: node
- linkType: hard
-
-"caniuse-lite@npm:^1.0.30001370, caniuse-lite@npm:^1.0.30001373":
- version: 1.0.30001374
- resolution: "caniuse-lite@npm:1.0.30001374"
- checksum: 942afc8764d8b1b5cf2bff04cc596a1729f7b621182ac46b725c1a8492ef1de740309274cecf226cd4727c726b52ac160f103b5c6524c9e1cffd4244e4cdd397
+"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001297, caniuse-lite@npm:^1.0.30001312, caniuse-lite@npm:^1.0.30001317, caniuse-lite@npm:^1.0.30001370, caniuse-lite@npm:^1.0.30001373":
+ version: 1.0.30001406
+ resolution: "caniuse-lite@npm:1.0.30001406"
+ checksum: e5f0503e5630bd11b7907c30d4a4fc02be0cc34d594ebdf8386212937652f6edf96fa33192dff7691527f1c1572a8d26df2138a8a9c53851fb2eb458f0e055c7
languageName: node
linkType: hard
@@ -6441,6 +6436,7 @@ __metadata:
prism-react-renderer: ^1.3.1
react: ^17.0.1
react-dom: ^17.0.1
+ react-transition-group: ^4.4.5
redocusaurus: ^1.3.0
url-loader: ^4.1.1
languageName: unknown
@@ -6502,6 +6498,16 @@ __metadata:
languageName: node
linkType: hard
+"dom-helpers@npm:^5.0.1":
+ version: 5.2.1
+ resolution: "dom-helpers@npm:5.2.1"
+ dependencies:
+ "@babel/runtime": ^7.8.7
+ csstype: ^3.0.2
+ checksum: f735074d66dd759b36b158fa26e9d00c9388ee0e8c9b16af941c38f014a37fc80782de83afefd621681b19ac0501034b4f1c4a3bff5caa1b8667f0212b5e124c
+ languageName: node
+ linkType: hard
+
"dom-serializer@npm:^1.0.1":
version: 1.3.2
resolution: "dom-serializer@npm:1.3.2"
@@ -10872,6 +10878,21 @@ __metadata:
languageName: node
linkType: hard
+"react-transition-group@npm:^4.4.5":
+ version: 4.4.5
+ resolution: "react-transition-group@npm:4.4.5"
+ dependencies:
+ "@babel/runtime": ^7.5.5
+ dom-helpers: ^5.0.1
+ loose-envify: ^1.4.0
+ prop-types: ^15.6.2
+ peerDependencies:
+ react: ">=16.6.0"
+ react-dom: ">=16.6.0"
+ checksum: 2ba754ba748faefa15f87c96dfa700d5525054a0141de8c75763aae6734af0740e77e11261a1e8f4ffc08fd9ab78510122e05c21c2d79066c38bb6861a886c82
+ languageName: node
+ linkType: hard
+
"react@npm:^17.0.1":
version: 17.0.2
resolution: "react@npm:17.0.2"
diff --git a/yarn.lock b/yarn.lock
index 21d623387b..d623f59059 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4720,6 +4720,93 @@ __metadata:
languageName: node
linkType: hard
+"@octokit/auth-token@npm:^3.0.0":
+ version: 3.0.1
+ resolution: "@octokit/auth-token@npm:3.0.1"
+ dependencies:
+ "@octokit/types": ^7.0.0
+ checksum: f52087d6680dd151ac5db49d330a544c07340680a6cc39a8a32ee366d34e57c00b7f0396f32644af2614afe158ee6a692a6f0a00cc949ea03828ea7e2532fefd
+ languageName: node
+ linkType: hard
+
+"@octokit/core@npm:^4.0.5":
+ version: 4.0.5
+ resolution: "@octokit/core@npm:4.0.5"
+ dependencies:
+ "@octokit/auth-token": ^3.0.0
+ "@octokit/graphql": ^5.0.0
+ "@octokit/request": ^6.0.0
+ "@octokit/request-error": ^3.0.0
+ "@octokit/types": ^7.0.0
+ before-after-hook: ^2.2.0
+ universal-user-agent: ^6.0.0
+ checksum: 9de824e033a1f8f80156168322bba9933434d3435afed2b0eee315e86f44728f7b86e33064eff7823e6c6f1dc4ec836baf38cd62cf08fbcdc90b018d5ce3b438
+ languageName: node
+ linkType: hard
+
+"@octokit/endpoint@npm:^7.0.0":
+ version: 7.0.2
+ resolution: "@octokit/endpoint@npm:7.0.2"
+ dependencies:
+ "@octokit/types": ^7.0.0
+ is-plain-object: ^5.0.0
+ universal-user-agent: ^6.0.0
+ checksum: 0a74012756159f3269d55f331c0c0e3b1e79b6d8c4a3cd3c1216c5b3fd0efd0ee183f65407160103e8507ab8c9a3ad58ace050b5bea76e9a9eb8900f7c118637
+ languageName: node
+ linkType: hard
+
+"@octokit/graphql@npm:^5.0.0":
+ version: 5.0.1
+ resolution: "@octokit/graphql@npm:5.0.1"
+ dependencies:
+ "@octokit/request": ^6.0.0
+ "@octokit/types": ^7.0.0
+ universal-user-agent: ^6.0.0
+ checksum: 096ca4d78790b5e43422b5076b721b1b6d8b7b55fc5a33c5edca66a613ba043a072cf20a739ef2f76380fecaf1f9d2bf26af290aff2e158a354a4b2aea5b38e2
+ languageName: node
+ linkType: hard
+
+"@octokit/openapi-types@npm:^13.11.0":
+ version: 13.12.0
+ resolution: "@octokit/openapi-types@npm:13.12.0"
+ checksum: 30ffc7ad56197b52b2898bb438cfe25f77d7c41d7f2f1dab6eff1015861966947fb557a7b54305b3381f028e49610e844c2951d2a142c5321d1c45aa70047678
+ languageName: node
+ linkType: hard
+
+"@octokit/request-error@npm:^3.0.0":
+ version: 3.0.1
+ resolution: "@octokit/request-error@npm:3.0.1"
+ dependencies:
+ "@octokit/types": ^7.0.0
+ deprecation: ^2.0.0
+ once: ^1.4.0
+ checksum: 73389dcc36dc0e5fcf58c6e2763a907d0b304953393884623bf2e37705b4cafeb142f9b6d2f5d394617b49568e93ac0cf1b40491695fe1b18e10a8785c609fb9
+ languageName: node
+ linkType: hard
+
+"@octokit/request@npm:^6.0.0":
+ version: 6.2.1
+ resolution: "@octokit/request@npm:6.2.1"
+ dependencies:
+ "@octokit/endpoint": ^7.0.0
+ "@octokit/request-error": ^3.0.0
+ "@octokit/types": ^7.0.0
+ is-plain-object: ^5.0.0
+ node-fetch: ^2.6.7
+ universal-user-agent: ^6.0.0
+ checksum: 61329ea64f032240a1ee6f77d94840f0aa1c24c2467acd747cad1ca78a49c4526116a09641f696f4e47cb5a82ffcd000555fcf6127f5b07d2f871285b9f5ee04
+ languageName: node
+ linkType: hard
+
+"@octokit/types@npm:^7.0.0":
+ version: 7.5.0
+ resolution: "@octokit/types@npm:7.5.0"
+ dependencies:
+ "@octokit/openapi-types": ^13.11.0
+ checksum: 65501fd2dc106497d403be9d26763fb7a89f385bc8cba61a2ac842d273f1b2fb0b1db8b0081d2d42d37fe354f2e6b159b4fec694a51b7bf4c6cc1cb098d6ad57
+ languageName: node
+ linkType: hard
+
"@open-draft/until@npm:^1.0.3":
version: 1.0.3
resolution: "@open-draft/until@npm:1.0.3"
@@ -10870,6 +10957,13 @@ __metadata:
languageName: node
linkType: hard
+"before-after-hook@npm:^2.2.0":
+ version: 2.2.2
+ resolution: "before-after-hook@npm:2.2.2"
+ checksum: 7457bfb8f40e8cbce943ea6e6531261925c6c8a451fea540762367a3e2e52b5979978963a7ec65f232a4f5b87310930bf152c9a055608c64ecee5115bad60b9a
+ languageName: node
+ linkType: hard
+
"better-opn@npm:^2.1.1":
version: 2.1.1
resolution: "better-opn@npm:2.1.1"
@@ -13922,6 +14016,13 @@ __metadata:
languageName: node
linkType: hard
+"deprecation@npm:^2.0.0":
+ version: 2.3.1
+ resolution: "deprecation@npm:2.3.1"
+ checksum: 23d688ba66b74d09b908c40a76179418acbeeb0bfdf218c8075c58ad8d0c315130cb91aa3dffb623aa3a411a3569ce56c6460de6c8d69071c17fe6dd2442f032
+ languageName: node
+ linkType: hard
+
"des.js@npm:^1.0.0":
version: 1.0.1
resolution: "des.js@npm:1.0.1"
@@ -19793,7 +19894,7 @@ __metadata:
languageName: node
linkType: hard
-"is-plain-object@npm:5.0.0":
+"is-plain-object@npm:5.0.0, is-plain-object@npm:^5.0.0":
version: 5.0.0
resolution: "is-plain-object@npm:5.0.0"
checksum: 893e42bad832aae3511c71fd61c0bf61aa3a6d853061c62a307261842727d0d25f761ce9379f7ba7226d6179db2a3157efa918e7fe26360f3bf0842d9f28942c
@@ -29949,6 +30050,7 @@ __metadata:
"@babel/runtime": ^7.11.2
"@changesets/changelog-github": ^0.4.5
"@changesets/cli": ^2.23.0
+ "@octokit/core": ^4.0.5
"@redocly/cli": latest
"@typescript-eslint/eslint-plugin": ^5.36.2
"@typescript-eslint/parser": ^5.36.2
@@ -33692,6 +33794,13 @@ __metadata:
languageName: node
linkType: hard
+"universal-user-agent@npm:^6.0.0":
+ version: 6.0.0
+ resolution: "universal-user-agent@npm:6.0.0"
+ checksum: ebeb0206963666c13bcf9ebc86d0577c7daed5870c05cd34d4972ee7a43b9ef20679baf2a8c83bf1b71d899bae67243ac4982d84ddaf9ba0355ff76595819961
+ languageName: node
+ linkType: hard
+
"universalify@npm:^0.1.0, universalify@npm:^0.1.2":
version: 0.1.2
resolution: "universalify@npm:0.1.2"