docs: add documentation for Locking Module (#11824)

* add locking docs

* fix main navbar

* added implementation example links

* generate refs

* update architecture

* fix vale error
This commit is contained in:
Shahed Nasser
2025-03-13 12:20:24 +02:00
committed by GitHub
parent 5cf0bf4d93
commit 28b0d08591
94 changed files with 15932 additions and 10857 deletions
@@ -1,4 +1,4 @@
import { ChildDocs } from "docs-ui"
import { CardList } from "docs-ui"
export const metadata = {
title: `Commerce Modules`,
@@ -14,7 +14,82 @@ A commerce module also defines data models, representing tables in the database.
## Commerce Modules List
<ChildDocs onlyTopLevel={true} defaultItemsPerRow={2} hideItems={["Overview"]} />
<CardList
items={[
{
title: "API Key Module",
href: "/commerce-modules/api-key"
},
{
title: "Auth Module",
href: "/commerce-modules/auth"
},
{
title: "Cart Module",
href: "/commerce-modules/cart"
},
{
title: "Currency Module",
href: "/commerce-modules/currency"
},
{
title: "Customer Module",
href: "/commerce-modules/customer"
},
{
title: "Fulfillment Module",
href: "/commerce-modules/fulfillment"
},
{
title: "Inventory Module",
href: "/commerce-modules/inventory"
},
{
title: "Order Module",
href: "/commerce-modules/order"
},
{
title: "Payment Module",
href: "/commerce-modules/payment"
},
{
title: "Pricing Module",
href: "/commerce-modules/pricing"
},
{
title: "Product Module",
href: "/commerce-modules/product"
},
{
title: "Promotion Module",
href: "/commerce-modules/promotion"
},
{
title: "Region Module",
href: "/commerce-modules/region"
},
{
title: "Sales Channel Module",
href: "/commerce-modules/sales-channel"
},
{
title: "Stock Location Module",
href: "/commerce-modules/stock-location"
},
{
title: "Store Module",
href: "/commerce-modules/store"
},
{
title: "Tax Module",
href: "/commerce-modules/tax"
},
{
title: "User Module",
href: "/commerce-modules/user"
}
]}
/>
---