docs: update price lists user guides (#11528)

This commit is contained in:
Shahed Nasser
2025-02-19 12:57:47 +02:00
committed by GitHub
parent 2940b0fee2
commit 4faf40e916
16 changed files with 333 additions and 293 deletions

View File

@@ -3,6 +3,7 @@ sidebar_position: 1
---
import { EllipsisHorizontal, ArrowUpRightOnBox, EllipsisVertical } from "@medusajs/icons"
import { Table } from "docs-ui"
export const metadata = {
title: `Manage Customers`,
@@ -36,6 +37,29 @@ To view a customers details:
![Customers Detail Page](https://res.cloudinary.com/dza7lstvk/image/upload/v1739886949/User%20Guide/Screenshot_2025-02-18_at_3.55.21_PM_omxw5x.png)
### Customer Type
At the top right of the first section, you can see a badge with the customer's type:
<Table>
<Table.Header>
<Table.Row>
<Table.HeaderCell>Customer Type</Table.HeaderCell>
<Table.HeaderCell>Description</Table.HeaderCell>
</Table.Row>
</Table.Header>
<Table.Body>
<Table.Row>
<Table.Cell>Registered</Table.Cell>
<Table.Cell>A customer that has registered in your store.</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>Guest</Table.Cell>
<Table.Cell>A customer that has placed an order but hasn't registered in your store, or a customer that you created through the admin dashboard.</Table.Cell>
</Table.Row>
</Table.Body>
</Table>
---
## Edit Customer Details

View File

@@ -10,7 +10,7 @@ export const metadata = {
The Customers domain allows you to manage customers and customer groups in your commerce store.
You can manage both customers that have registered in your store and guest customers that have placed an order. You can also segment these customers into groups to offer them specific [promotions](../promotions/page.mdx) and [pricing](../pricing/page.mdx).
You can manage both customers that have registered in your store and guest customers that have placed an order. You can also segment these customers into groups to offer them specific [promotions](../promotions/page.mdx) and [price lists](../price-lists/page.mdx).
You can view the list of customers in your commerce store by clicking on Customers from the sidebar menu.

View File

@@ -0,0 +1,66 @@
---
sidebar_position: 1
---
import { EllipsisHorizontal } from "@medusajs/icons"
export const metadata = {
title: `Create a Price List`,
}
# {metadata.title}
In this guide, youll learn how to create a price list.
To create a price list:
1. Go to Price Lists from the sidebar.
2. Click the Create button at the top right.
This will open the form to create a price, which is made up of three steps: Details, Products, and Prices.
## Step 1: Details
In th first step of creating a price list, you'll enter the general information of the price list:
1. For the Type section, choose either:
- **Sale**: Useful if you're creating a temporary sale on some products.
- **Override**: Useful if you're overriding prices permanently for a segment of customers.
2. In the Title field, enter the price list's title.
3. In the Status field, choose one of the following statuses:
- **Active**: The price list is active and can be used. If you later set a start date, the price list will be active from that date.
- **Draft**: The price list is not active and can't be used.
4. In the Description field, enter a description for your price list.
5. If you want the price list to be active starting from a specific date, choose that date in the "Price list has a start date" field.
6. If you want the price list to automatically expire after a specific date, choose that date in the "Price list has an expiry date" field.
7. In the "Customer availability" section, you can specify the customer groups that this price list applies for. Customers in these groups will see the prices set in this price list. To choose the customer groups:
- Click the Browse button.
- In the list that opens, check the customer groups to apply the price list to.
- Once you're done, click the Save button.
8. Once you're done, click the Continue button to move to the next step.
![Create Price List Details Form](https://res.cloudinary.com/dza7lstvk/image/upload/v1739959087/User%20Guide/Screenshot_2025-02-19_at_11.57.54_AM_if1uxe.png)
---
## Step 2: Products
In the second step, you'll choose the products you want to change their prices in the price list.
To do that, check the products you want to include in the price list. You can search, filter, and sort the products to find the specific ones you are looking for.
Once you're done, click the Continue button to go to the next step.
![Create Price List Products Form](https://res.cloudinary.com/dza7lstvk/image/upload/v1739959206/User%20Guide/Screenshot_2025-02-19_at_11.59.53_AM_hgmtl4.png)
---
## Step 3: Prices
In the last step, you'll use the [Bulk Editor](../../tips/bulk-editor/page.mdx) to enter the new prices for the variants of each product you selected. You can set the prices for every currency and region in your store.
Once you're done, click the Save button to create the price list.
![Create Price List Pricing Form](https://res.cloudinary.com/dza7lstvk/image/upload/v1739959865/User%20Guide/Screenshot_2025-02-19_at_12.10.10_PM_aaxecg.png)
You can now [manage the price list](../manage/page.mdx) you created.

View File

@@ -0,0 +1,154 @@
---
sidebar_position: 2
---
import { EllipsisHorizontal } from "@medusajs/icons"
import { Table } from "docs-ui"
export const metadata = {
title: `Manage Price Lists`,
}
# {metadata.title}
In this guide, youll learn how to manage price lists and their related information.
## View Price List Details
To view a price lists details:
1. Go to the Price Lists page from the sidebar.
2. Click on the price list you want to view.
This will open the price list's details page.
![Price List details page](https://res.cloudinary.com/dza7lstvk/image/upload/v1739960115/User%20Guide/Screenshot_2025-02-19_at_12.15.02_PM_tdt8zl.png)
### Price List Status
At the top right of the first section, you'll find the price list's status. It can be one of the following:
<Table>
<Table.Header>
<Table.Row>
<Table.HeaderCell>Status</Table.HeaderCell>
<Table.HeaderCell>Description</Table.HeaderCell>
</Table.Row>
</Table.Header>
<Table.Body>
<Table.Row>
<Table.Cell>Draft</Table.Cell>
<Table.Cell>The price list is not active and can't be used.</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>Active</Table.Cell>
<Table.Cell>The price list is active and can be used.</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>Scheduled</Table.Cell>
<Table.Cell>The price list has a start date in the future. Once the start date is reached, the price list becomes active.</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>Expired</Table.Cell>
<Table.Cell>The price list has an end date that has passed. The price list can't be used.</Table.Cell>
</Table.Row>
</Table.Body>
</Table>
---
## Edit Price List Details
To edit a price list's details:
<Note title="Tip">
To edit a price list's start and expiry dates, or customer availability, refer to the [Edit Price List Configurations](#edit-price-list-configurations) section.
</Note>
1. Go to the price list's details page.
2. Click on the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon at the top right of the first section.
3. Choose Edit from the dropdown.
4. In the side window that opens, you can edit the price list's type, title, status, and description.
- If you change the price list's status to Active, but the price list has a start date in the future, the price list will have a "Scheduled" status and become active once the start date is reached.
5. Once you're done, click the Save button.
![Edit price list form](https://res.cloudinary.com/dza7lstvk/image/upload/v1739960659/User%20Guide/Screenshot_2025-02-19_at_12.24.08_PM_y333se.png)
---
## Edit Price List Configurations
A price list's configurations include the start and expiry dates, and customer availability.
1. Go to the price list's details page.
2. Click the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon at the top right of the "Configuration" section.
3. Choose Edit from the dropdown.
4. In the side window that opens, you can edit the start and expiry dates and the customer groups that the price list applies to.
- To change the customer groups, click the Browse button, select the customer groups, and click Save.
5. Once you're done, click the Save button.
![Edit price list configurations form](https://res.cloudinary.com/dza7lstvk/image/upload/v1739960935/User%20Guide/Screenshot_2025-02-19_at_12.28.45_PM_jczlo1.png)
---
## Manage Products in Price List
From the price list's details page, you can manage the products in the price list.
### Add Products to Price List
To add products to a price list:
1. Go to the price list's details page.
2. In the Products section, click the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon.
3. Choose "Add products" from the dropdown.
4. In the list that opens, check the products you want to add to the price list.
5. Once youre done, click the Continue button.
6. In the next "Prices" step, use the [Bulk Editor](../../tips/bulk-editor/page.mdx) to set the prices for the variants of the products you added. You can set prices for every currency and region in your store.
7. Once you're done, click the Save button.
### Remove Products from Price List
To remove products from a price list:
1. Go to the price list's details page.
2. In the Products section, check the products you want to remove from the price list.
3. Either press <Kbd>D</Kbd> or click "Delete" at the bottom center of the page.
4. Confirm removing the products by clicking the "Delete" button in the pop-up.
![Remove products from price list](https://res.cloudinary.com/dza7lstvk/image/upload/v1739961185/User%20Guide/Screenshot_2025-02-19_at_12.32.55_PM_sfirfu.png)
---
## Edit Prices in Price List
From the price list's details page, you can manage the price overrides of the products in the price list.
To edit the prices of the products in the price list:
1. Go to the price list's details page.
2. In the Products section, click the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon.
3. Choose "Edit prices" from the dropdown.
4. This opens the [Bulk Editor](../../tips/bulk-editor/page.mdx) to edit the prices of the products' variants. You can set prices for every currency and region in your store.
5. Once you're done, click the Save button.
![Edit prices in price list](https://res.cloudinary.com/dza7lstvk/image/upload/v1739961309/User%20Guide/Screenshot_2025-02-19_at_12.35.00_PM_kvpnss.png)
---
## Delete Price List
<Note type="warning">
Deleting a price list is irreversible.
</Note>
To delete a price list:
1. Go to the price list's details page.
2. Click on the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon at the top right of the first section.
3. Choose Delete from the dropdown.
4. In the pop-up, enter the price list's title and click the "Delete" button.

View File

@@ -0,0 +1,32 @@
---
sidebar_autogenerate_exclude: true
---
export const metadata = {
title: `Price Lists`,
}
# {metadata.title}
The Price Lists domain allow you to manage custom product pricing for customer groups in your store. These prices can be either for a sale or to override the default prices for specific customer groups.
For example, you can utilize price lists to provide customers in the B2B customer group different pricing, allowing you to support B2B and B2C customers in the same store.
You can view the list of price lists in your commerce store by clicking on Price Lists from the sidebar menu.
In the list, you can see price list details such as title and status. You can also search, filter, and sort the price lists to find the specific one you are looking for.
<Note title="Tip">
Find tips to use lists effectively in [this guide](../tips/lists/page.mdx).
</Note>
![Price Lists list](https://res.cloudinary.com/dza7lstvk/image/upload/v1739958425/User%20Guide/Screenshot_2025-02-19_at_11.46.29_AM_zupks8.png)
---
## Manage Price Lists
- [Create Price List](./create/page.mdx)
- [Manage Price Lists](./manage/page.mdx)

View File

@@ -1,83 +0,0 @@
---
sidebar_position: 2
---
export const metadata = {
title: `Import Prices`,
}
# {metadata.title}
In this document, youll learn how to import prices into your Medusa store.
## Overview
To import prices, you must have the prices in a CSV file. You can see a template of the CSV file during the import process.
<Note>
For a list of accepted columns, refer to [this guide](../../modules/price-lists/admin/_import-prices.mdx#csv-file).
</Note>
<Note type="warning">
When you import prices into a price list, it removes existing prices and adds new prices.
</Note>
---
## Import Prices into a Price List
To import prices into a price list:
1. Go to the price lists details page.
2. In the Prices section, click on the <InlineThemeImage light="https://res.cloudinary.com/dza7lstvk/image/upload/v1667999308/Medusa%20Docs/UI%20Icons/1ordBC6_ssysel.png" dark="https://res.cloudinary.com/dza7lstvk/image/upload/v1667999308/Medusa%20Docs/UI%20Icons/1ordBC6_ssysel.png" alt="three dots" /> icon.
3. Click on “Import price list” from the dropdown.
4. In the new window:
1. If youre unsure of what the CSV files format must be like, you can download a template CSV file by clicking the <InlineThemeImage light="https://res.cloudinary.com/dza7lstvk/image/upload/v1667999458/Medusa%20Docs/UI%20Icons/fhRqHS3_kwmafj.png" dark="https://res.cloudinary.com/dza7lstvk/image/upload/v1667999458/Medusa%20Docs/UI%20Icons/fhRqHS3_kwmafj.png" alt="download" /> icon.
2. To upload the CSV file you want to import prices 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 prices from.
3. After you upload the CSV file:
1. You can check the number of prices to be added above the uploaded files name.
2. You can remove the file you choose by clicking the <InlineThemeImage light="https://res.cloudinary.com/dza7lstvk/image/upload/v1667999273/Medusa%20Docs/UI%20Icons/7hztVhj_mj6mxu.png" dark="https://res.cloudinary.com/dza7lstvk/image/upload/v1667999273/Medusa%20Docs/UI%20Icons/7hztVhj_mj6mxu.png" alt="trash" /> icon.
5. Once youre done choosing a file to import prices from, click on the Import List button.
This starts the import process. Based on the number of prices youre 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.
</Note>
### Check Import Status
To check the status of the import:
1. Click on the <InlineThemeImage light="https://res.cloudinary.com/dza7lstvk/image/upload/v1667999016/Medusa%20Docs/UI%20Icons/mWhpxNX_xteuos.png" dark="https://res.cloudinary.com/dza7lstvk/image/upload/v1667999016/Medusa%20Docs/UI%20Icons/mWhpxNX_xteuos.png" alt="bell" /> icon at the top right of the page.
2. Find the price 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 prices is done.”
Once the import is done, you should find the news prices on the price lists details page.
---
## Cancel Import
<Note>
You can only cancel an unfinished prices import.
</Note>
To cancel a price import:
1. Click on the <InlineThemeImage light="https://res.cloudinary.com/dza7lstvk/image/upload/v1667999016/Medusa%20Docs/UI%20Icons/mWhpxNX_xteuos.png" dark="https://res.cloudinary.com/dza7lstvk/image/upload/v1667999016/Medusa%20Docs/UI%20Icons/mWhpxNX_xteuos.png" alt="bell" /> icon at the top right of the page.
2. Find the import you want to cancel.
3. Click on the cancel button.

View File

@@ -1,32 +0,0 @@
---
sidebar_position: 1
---
import { EllipsisHorizontal } from "@medusajs/icons"
export const metadata = {
title: `Create a Price List`,
}
# {metadata.title}
In this document, youll learn how to create a price list.
{/* TODO check for correctness */}
To create a price list:
1. Go to the Pricing page.
2. Click on the Create button.
3. A form opens to create a price list. The form is split into three steps:
1. In the first step:
1. Under the Type section, choose the price list's type. It can be either Sale or Override.
2. Enter the title and description of the price list in their respective fields.
3. If the prices in the price list include taxes, enable the "Tax inclusive prices" field.
4. If the price list has a start or end date, set those in their respective fields.
5. To limit which customer groups can use the price list, enable the "Customer availability" field and check the checkbox next to the customer groups allowed to use the price list.
6. Once you're done, click the Continue button.
2. In the second step, choose the products that the price list applies to. Once you're done, click the Continue button.
3. In the third step, enter the price of each product variant. The price editor uses the [bulk editor](../../tips/bulk-editor/page.mdx).
- To add a currency, click on the "Add currency" button and select the currency.
4. Once you're done, click the Save button.

View File

@@ -1,121 +0,0 @@
---
sidebar_position: 2
---
import { EllipsisHorizontal } from "@medusajs/icons"
export const metadata = {
title: `Manage Price Lists`,
}
# {metadata.title}
In this document, youll learn how to manage price lists and their related information.
## View Price List Details
To view a price lists details:
1. Go to the Pricing page.
2. Click on the price list you want to view.
---
## Change Price List Status
{/* TODO check for correctness */}
<Note>
Publishing a price list makes it and its prices available to customers. Unpublishing a price list makes it and its prices unavailable to customers.
</Note>
To change a price lists status:
1. Go to the Pricing page.
2. Click on the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon next to the price list.
3. If the price list is a draft, click on "Mark as active" in the dropdown to publish it. Otherwise, if the price list is active or published, click on the "Mark as draft" in the dropdown to unpublish it.
---
## Edit Price Lists Details
{/* TODO check for correctness */}
To edit a price lists details:
1. Go to the price lists details page.
2. Click on the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon in the first section.
3. Choose Edit from the dropdown.
4. In the drawer that opens, edit the price list's details.
5. Once youre done , click on the Save button.
---
## Manage Prices
### Add Products
{/* TODO check for correctness */}
To add new products to the price list:
1. Go to the price lists details page.
2. Under the Prices section, click on the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon.
3. Choose “Add products" in the dropdown.
4. This opens a form with two steps:
1. In the first step, choose the products to add to the price list. Once you're done, click the Continue button.
2. In the second step, enter the prices of each product variant. The prices editor is based on the [bulk editor](../../tips/bulk-editor/page.mdx).
- To add a currency, click on the "Add currency" button and select the currency.
5. Once you're done, click the Save button.
### Edit a Products Prices
{/* TODO check for correctness */}
To edit the prices of a product in the price list:
1. Go to the price lists details page.
2. In the Prices section, click on the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon.
3. Choose “Edit prices" from the dropdown.
4. This opens the prices editor, which is based on the [bulk editor](../../tips/bulk-editor/page.mdx).
- To add a currency, click on the "Add currency" button and select the currency.
5. Once you're done, click the Save button.
### Remove a Product From Price List
{/* TODO check for correctness */}
<Note type="warning">
Removing a product from a price list is irreversible.
</Note>
To remove a product from a price list:
1. Go to the price lists details page.
2. Find the product you want to delete in the Prices section.
3. Click on the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon to its right.
4. Choose Remove from the dropdown.
5. Confirm deleting the product's prices by clicking the “Confirm” button in the pop-up.
---
## Delete Price List
{/* TODO check for correctness */}
<Note type="warning">
Deleting a price list is irreversible.
</Note>
To delete a price list:
1. Go to the Pricing page.
2. Find the price list to delete and click the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon to its right.
3. Choose Delete from the dropdown.
4. Confirm deleting the price list by entering the price list's name, then clicking the Confirm button.

View File

@@ -1,33 +0,0 @@
---
sidebar_autogenerate_exclude: true
---
export const metadata = {
title: `Pricing`,
}
# {metadata.title}
In this document, you learn about what price lists are and get an overview of the Pricing page.
## Overview
Price lists are used to create a sale or override the pricing of one or more products based on specific conditions.
Adding a price list on a set of products changes the prices of these products to the amount you set. You can set the start and end dates of these prices.
You can also specify customer groups to which these prices will be applied. For example, you may apply reduced pricing for VIP customers.
---
## View List of Price Lists
The Pricing page includes a list of price lists.
In the list, you can see price list details such as the title, description, and status of the price list.
---
## Learn More About Price Lists
- [Manage a Price List](./manage/page.mdx)

View File

@@ -60,6 +60,17 @@ To view a category's details:
![Category details page](https://res.cloudinary.com/dza7lstvk/image/upload/v1739874959/User%20Guide/Screenshot_2025-02-18_at_12.35.43_PM_wfijxl.png)
### Product Category Status and Visibility
At the top right of the first section, you'll find two badges:
- The first from the left is the category's status:
- **Active**: The category is active and shown on the storefront.
- **Inactive**: The category is inactive and not shown on the storefront.
- The second from the left is the category's visibility:
- **Public**: The category is visible to customers on the storefront.
- **Private**: The category is not visible to customers on the storefront. It's only used by admin users.
---
## Edit Product Category's Details

View File

@@ -115,3 +115,5 @@ To manage the inventory kit of variants in the fourth step, for each variant:
Once you're done, click the "Publish" button.
![Create Product Fourth Step](https://res.cloudinary.com/dza7lstvk/image/upload/v1739808931/User%20Guide/Screenshot_2025-02-17_at_6.15.16_PM_hofawf.png)
You can now [manage the product](../edit/page.mdx) you created.

View File

@@ -32,7 +32,7 @@ The first section, which has the product's title as a header, includes the produ
### Product Statuses
A product can have one of the following statuses:
At the top right of the first section, you can see the product's status. A product can have one of the following statuses:
<Table>
<Table.Header>

View File

@@ -301,3 +301,5 @@ If you selected a new campaign, you need to fill out the following to create a c
5. Once you're done, click on the Save button.
![Create campaign form](https://res.cloudinary.com/dza7lstvk/image/upload/v1739897668/User%20Guide/Screenshot_2025-02-18_at_6.53.46_PM_gfhp9l.png)
You can now [manage the promotion](../manage/page.mdx) you created.

View File

@@ -21,17 +21,13 @@ export const generatedEditDates = {
"app/settings/regions/countries/page.mdx": "2024-05-03T17:36:38+03:00",
"app/settings/store/page.mdx": "2024-05-03T17:36:38+03:00",
"app/products/import/page.mdx": "2025-02-18T12:15:03.830Z",
"app/pricing/create/page.mdx": "2024-05-03T17:36:38+03:00",
"app/settings/regions/providers/page.mdx": "2024-05-03T17:36:38+03:00",
"app/settings/locations/page.mdx": "2024-05-03T17:36:38+03:00",
"app/settings/developer/api-key-management/page.mdx": "2024-05-03T17:36:38+03:00",
"app/products/categories/page.mdx": "2025-02-18T14:00:05.996Z",
"app/products/categories/page.mdx": "2025-02-19T10:21:42.058Z",
"app/inventory/reservations/page.mdx": "2025-02-18T13:56:28.134Z",
"app/settings/developer/api-key-management/sales-channels/page.mdx": "2024-05-03T17:36:38+03:00",
"app/pricing/page.mdx": "2024-05-03T17:36:38+03:00",
"app/pricing/manage/page.mdx": "2024-05-03T17:36:38+03:00",
"app/discounts/manage/page.mdx": "2024-05-03T17:36:38+03:00",
"app/pricing/_import/page.mdx": "2024-05-03T17:36:38+03:00",
"app/products/page.mdx": "2025-02-18T12:24:19.794Z",
"app/settings/sales-channels/products/page.mdx": "2024-05-03T17:36:38+03:00",
"app/settings/developer/executions/page.mdx": "2024-05-03T17:36:38+03:00",
@@ -46,18 +42,21 @@ export const generatedEditDates = {
"app/customers/page.mdx": "2025-02-18T15:38:17.543Z",
"app/orders/edit/page.mdx": "2025-02-17T15:15:53.489Z",
"app/products/collections/page.mdx": "2025-02-18T14:00:51.469Z",
"app/customers/manage/page.mdx": "2025-02-18T15:38:17.543Z",
"app/customers/manage/page.mdx": "2025-02-19T10:20:05.606Z",
"app/discounts/create/page.mdx": "2024-05-03T17:36:38+03:00",
"app/orders/payments/page.mdx": "2025-02-17T15:10:24.250Z",
"app/discounts/page.mdx": "2024-05-03T17:36:38+03:00",
"app/orders/exchanges/page.mdx": "2025-02-17T15:14:13.676Z",
"app/products/create/page.mdx": "2025-02-18T12:17:14.624Z",
"app/products/edit/page.mdx": "2025-02-17T17:13:29.141Z",
"app/products/create/page.mdx": "2025-02-19T10:13:12.047Z",
"app/products/edit/page.mdx": "2025-02-19T10:18:34.689Z",
"app/products/variants/page.mdx": "2025-02-18T12:10:36.029Z",
"app/products/create/bundle/page.mdx": "2025-02-18T12:17:32.166Z",
"app/products/create/multi-part/page.mdx": "2025-02-18T12:17:29.629Z",
"app/promotions/campaigns/page.mdx": "2025-02-19T09:02:49.193Z",
"app/promotions/create/page.mdx": "2025-02-19T09:00:51.979Z",
"app/promotions/create/page.mdx": "2025-02-19T10:13:44.835Z",
"app/promotions/manage/page.mdx": "2025-02-19T09:01:11.841Z",
"app/promotions/page.mdx": "2025-02-19T09:00:12.501Z"
"app/promotions/page.mdx": "2025-02-19T09:00:12.501Z",
"app/price-lists/create/page.mdx": "2025-02-19T10:11:33.113Z",
"app/price-lists/manage/page.mdx": "2025-02-19T10:35:49.881Z",
"app/price-lists/page.mdx": "2025-02-19T09:51:32.546Z"
}

View File

@@ -315,26 +315,30 @@ export const generatedSidebar = [
"loaded": true,
"isPathHref": true,
"type": "category",
"path": "/pricing",
"title": "Pricing",
"autogenerate_path": "/pricing",
"title": "Price Lists",
"children": [
{
"loaded": true,
"isPathHref": true,
"type": "link",
"path": "/pricing/create",
"title": "Create a Price List",
"description": "",
"title": "Overview",
"path": "/price-lists",
"children": []
},
{
"loaded": true,
"isPathHref": true,
"type": "link",
"path": "/pricing/manage",
"title": "Manage Price Lists",
"description": "",
"title": "Create Price List",
"path": "/price-lists/create",
"children": []
},
{
"loaded": true,
"isPathHref": true,
"type": "link",
"title": "Manage Price List",
"path": "/price-lists/manage",
"children": []
}
]

View File

@@ -191,9 +191,24 @@ export const sidebar = sidebarAttachHrefCommonOptions([
},
{
type: "category",
path: "/pricing",
title: "Pricing",
autogenerate_path: "/pricing",
title: "Price Lists",
children: [
{
type: "link",
title: "Overview",
path: "/price-lists",
},
{
type: "link",
title: "Create Price List",
path: "/price-lists/create",
},
{
type: "link",
title: "Manage Price List",
path: "/price-lists/manage",
},
],
},
{
type: "category",