Files
medusa-store/www/apps/resources/sidebars/pricing.mjs
Shahed Nasser cdfa21cfb0 docs: add user guide tags + sidebar links for commerce modules (#11612)
* add tags

* docs: add tags for user guide + links in commerce modules sidebar

* generate sidebar
2025-02-26 12:08:29 +02:00

175 lines
5.4 KiB
JavaScript

/** @type {import('types').RawSidebarItem[]} */
export const pricingSidebar = [
{
type: "category",
title: "Pricing Module",
isChildSidebar: true,
children: [
{
type: "link",
path: "/commerce-modules/pricing",
title: "Overview",
},
{
type: "separator",
},
{
type: "category",
title: "Concepts",
initialOpen: false,
children: [
{
type: "link",
path: "/commerce-modules/pricing/concepts",
title: "Pricing Concepts",
},
{
type: "link",
path: "/commerce-modules/pricing/price-rules",
title: "Price Rules",
},
{
type: "link",
path: "/commerce-modules/pricing/price-calculation",
title: "Prices Calculation",
},
{
type: "link",
path: "/commerce-modules/pricing/tax-inclusive-pricing",
title: "Tax-Inclusive Pricing",
},
{
type: "link",
path: "/commerce-modules/pricing/links-to-other-modules",
title: "Links to Other Modules",
},
],
},
{
type: "category",
title: "Server Guides",
autogenerate_tags: "server+pricing",
initialOpen: false,
autogenerate_as_ref: true,
description:
"Learn how to use the Pricing Module in your customizations on the Medusa application server.",
},
{
type: "category",
title: "Storefront Guides",
autogenerate_tags: "storefront+pricing,-jsSdk",
initialOpen: false,
autogenerate_as_ref: true,
description:
"Learn how to integrate the Pricing Module's features into your storefront.",
},
{
type: "category",
title: "Admin Guides",
autogenerate_tags: "admin+pricing,-jsSdk",
initialOpen: false,
autogenerate_as_ref: true,
description:
"Learn how to utilize administative features of the Pricing Module.",
},
{
type: "category",
title: "Admin User Guides",
autogenerate_tags: "userGuide+pricing",
initialOpen: false,
autogenerate_as_ref: true,
description:
"Learn how to utilize and manage Pricing features in the Medusa Admin dashboard.",
},
{
type: "category",
title: "References",
initialOpen: false,
description:
"Find references for tools and resources related to the Pricing Module, such as data models, methods, and more. These are useful for your customizations.",
children: [
{
type: "link",
path: "/commerce-modules/pricing/workflows",
title: "Workflows",
hideChildren: true,
children: [
{
type: "category",
title: "Workflows",
autogenerate_tags: "workflow+pricing",
autogenerate_as_ref: true,
},
{
type: "category",
title: "Steps",
autogenerate_tags: "step+pricing",
autogenerate_as_ref: true,
},
],
},
{
type: "link",
path: "/commerce-modules/pricing/js-sdk",
title: "JS SDK",
hideChildren: true,
children: [
{
type: "sub-category",
title: "Store",
autogenerate_tags: "jsSdk+storefront+pricing",
description:
"The following methods or properties are used to send requests to Store API Routes related to the Pricing Module.",
autogenerate_as_ref: true,
},
{
type: "sub-category",
title: "Admin",
autogenerate_tags: "jsSdk+admin+pricing",
description:
"The following methods or properties are used to send requests to Admin API Routes related to the Pricing Module.",
autogenerate_as_ref: true,
},
],
},
{
type: "link",
path: "/commerce-modules/pricing/admin-widget-zones",
title: "Admin Widget Zones",
},
{
type: "link",
path: "/references/pricing",
title: "Main Service Reference",
isChildSidebar: true,
childSidebarTitle: "Pricing Module's Main Service Reference",
children: [
{
type: "category",
title: "Methods",
autogenerate_path:
"/references/pricing/IPricingModuleService/methods",
},
],
},
{
type: "link",
path: "/references/pricing/models",
title: "Data Models Reference",
isChildSidebar: true,
childSidebarTitle: "Pricing Module Data Models Reference",
children: [
{
type: "category",
title: "Data Models",
hasTitleStyling: true,
autogenerate_path: "/references/pricing_models/variables",
},
],
},
],
},
],
},
]