docs: updates and fixes in utils + fulfillment provider changes (#9347)

* fix config + update deps

* rearrange sidebar + add to examples
This commit is contained in:
Shahed Nasser
2024-10-02 10:27:48 +03:00
committed by GitHub
parent 07afa8fba6
commit 8686ca9d12
37 changed files with 591 additions and 89 deletions
@@ -93,6 +93,7 @@ This chapter provides links to example sections on different Medusa topics.
### Auth
- [Create a custom actor type](!resources!/commerce-modules/auth/create-actor-type)
- [Create auth provider module](!resources!/references/auth/provider)
### Cart
@@ -101,12 +102,16 @@ This chapter provides links to example sections on different Medusa topics.
### Fulfillment
- [Create a fulfillment module provider](!resources!/recipes/digital-products/examples/standard#step-10-create-digital-product-fulfillment-module-provider)
- [Create fulfillment module provider](!resources!/recipes/digital-products/examples/standard#step-10-create-digital-product-fulfillment-module-provider)
### Order
- [Retrieve promotion actions of an order](!resources!/commerce-modules/order/promotion-adjustments#promotion-actions)
### Payment
- [Create payment module provider](!resources!/references/payment/provider)
### Product
- [Retrieve prices of product variants](!resources!/commerce-modules/product/guides/price)
@@ -114,6 +119,26 @@ This chapter provides links to example sections on different Medusa topics.
---
## Architectural Modules
### Cache
- [Create cache module](!resources!/architectural-modules/cache/create)
### Event
- [Create event module](!resources!/architectural-modules/event/create)
### File
- [Create file module provider](!resources!/references/file-provider-module)
### Notification
- [Create notification module provider](!resources!/references/notification-provider-module)
---
## Integrations
- [Send a notification with SendGrid](!resources!/architectural-modules/notification/sendgrid#test-out-the-module)
+1 -1
View File
@@ -110,7 +110,7 @@ export const generatedEditDates = {
"app/customization/next-steps/page.mdx": "2024-09-12T10:50:04.873Z",
"app/customization/page.mdx": "2024-09-12T11:16:18.504Z",
"app/more-resources/cheatsheet/page.mdx": "2024-07-11T16:11:26.480Z",
"app/more-resources/examples/page.mdx": "2024-09-19T10:30:30.398Z",
"app/more-resources/examples/page.mdx": "2024-09-27T07:17:16.892Z",
"app/architecture/architectural-modules/page.mdx": "2024-09-23T12:51:04.520Z",
"app/architecture/overview/page.mdx": "2024-09-23T12:55:01.339Z",
"app/advanced-development/data-models/infer-type/page.mdx": "2024-09-30T08:43:53.123Z"
+36 -20
View File
@@ -278,6 +278,14 @@ export const generatedSidebar = [
"path": "/commerce-modules/auth/create-actor-type",
"title": "Create an Actor Type",
"children": []
},
{
"loaded": true,
"isPathHref": true,
"type": "link",
"path": "/references/auth/provider",
"title": "Create Auth Provider Module",
"children": []
}
]
},
@@ -319,14 +327,6 @@ export const generatedSidebar = [
"type": "sub-category",
"title": "References",
"children": [
{
"loaded": true,
"isPathHref": true,
"type": "link",
"path": "/references/auth/provider",
"title": "Create Auth Provider Module",
"children": []
},
{
"loaded": true,
"isPathHref": true,
@@ -1601,7 +1601,7 @@ export const generatedSidebar = [
"loaded": true,
"isPathHref": true,
"type": "sub-category",
"title": "References",
"title": "Guides",
"children": [
{
"loaded": true,
@@ -1610,7 +1610,15 @@ export const generatedSidebar = [
"path": "/references/fulfillment/provider",
"title": "Create Fulfillment Provider Module",
"children": []
},
}
]
},
{
"loaded": true,
"isPathHref": true,
"type": "sub-category",
"title": "References",
"children": [
{
"loaded": true,
"isPathHref": true,
@@ -4144,6 +4152,14 @@ export const generatedSidebar = [
"path": "/commerce-modules/payment/payment-flow",
"title": "Accept Payment Flow",
"children": []
},
{
"loaded": true,
"isPathHref": true,
"type": "link",
"path": "/references/payment/provider",
"title": "Create Payment Provider",
"children": []
}
]
},
@@ -4153,14 +4169,6 @@ export const generatedSidebar = [
"type": "sub-category",
"title": "References",
"children": [
{
"loaded": true,
"isPathHref": true,
"type": "link",
"path": "/references/payment/provider",
"title": "Payment Provider Reference",
"children": []
},
{
"loaded": true,
"isPathHref": true,
@@ -7004,7 +7012,7 @@ export const generatedSidebar = [
"loaded": true,
"isPathHref": true,
"type": "sub-category",
"title": "References",
"title": "Guides",
"children": [
{
"loaded": true,
@@ -7013,7 +7021,15 @@ export const generatedSidebar = [
"path": "/references/tax/provider",
"title": "Tax Provider Reference",
"children": []
},
}
]
},
{
"loaded": true,
"isPathHref": true,
"type": "sub-category",
"title": "References",
"children": [
{
"loaded": true,
"isPathHref": true,
+24 -12
View File
@@ -138,6 +138,11 @@ export const sidebar = sidebarAttachHrefCommonOptions([
path: "/commerce-modules/auth/create-actor-type",
title: "Create an Actor Type",
},
{
type: "link",
path: "/references/auth/provider",
title: "Create Auth Provider Module",
},
],
},
{
@@ -165,11 +170,6 @@ export const sidebar = sidebarAttachHrefCommonOptions([
type: "sub-category",
title: "References",
children: [
{
type: "link",
path: "/references/auth/provider",
title: "Create Auth Provider Module",
},
{
type: "link",
path: "/references/auth",
@@ -460,13 +460,19 @@ export const sidebar = sidebarAttachHrefCommonOptions([
},
{
type: "sub-category",
title: "References",
title: "Guides",
children: [
{
type: "link",
path: "/references/fulfillment/provider",
title: "Create Fulfillment Provider Module",
},
],
},
{
type: "sub-category",
title: "References",
children: [
{
type: "link",
path: "/references/fulfillment",
@@ -747,17 +753,17 @@ export const sidebar = sidebarAttachHrefCommonOptions([
path: "/commerce-modules/payment/payment-flow",
title: "Accept Payment Flow",
},
{
type: "link",
path: "/references/payment/provider",
title: "Create Payment Provider",
},
],
},
{
type: "sub-category",
title: "References",
children: [
{
type: "link",
path: "/references/payment/provider",
title: "Payment Provider Reference",
},
{
type: "link",
path: "/references/payment",
@@ -1339,13 +1345,19 @@ export const sidebar = sidebarAttachHrefCommonOptions([
},
{
type: "sub-category",
title: "References",
title: "Guides",
children: [
{
type: "link",
path: "/references/tax/provider",
title: "Tax Provider Reference",
},
],
},
{
type: "sub-category",
title: "References",
children: [
{
type: "link",
path: "/references/tax",