docs: improve content of workflows reference overview page (#11045)

This commit is contained in:
Shahed Nasser
2025-01-20 10:54:32 +02:00
committed by GitHub
parent 66898124b1
commit d089852ce3
340 changed files with 2151 additions and 400 deletions
@@ -23,6 +23,7 @@ export async function getSidebarItemLink({
frontmatter.slug ||
filePath.replace(basePath, "").replace(`/${fileBasename}`, ""),
title: frontmatter.sidebar_label || findPageTitle(filePath) || "",
description: frontmatter.sidebar_description || "",
},
])[0] as InteractiveSidebarItem
+22 -22
View File
@@ -1,37 +1,37 @@
export * from "./inventory.js"
export * from "./stock-location.js"
export * from "./server.js"
export * from "./pricing.js"
export * from "./tax.js"
export * from "./query.js"
export * from "./concept.js"
export * from "./storefront.js"
export * from "./query.js"
export * from "./payment.js"
export * from "./cart.js"
export * from "./order.js"
export * from "./stripe.js"
export * from "./customer.js"
export * from "./fulfillment.js"
export * from "./product.js"
export * from "./auth.js"
export * from "./product-category.js"
export * from "./product-collection.js"
export * from "./api-key.js"
export * from "./publishable-api-key.js"
export * from "./region.js"
export * from "./step.js"
export * from "./sales-channel.js"
export * from "./link.js"
export * from "./pricing.js"
export * from "./remote-query.js"
export * from "./concept.js"
export * from "./event-bus.js"
export * from "./store.js"
export * from "./promotion.js"
export * from "./locking.js"
export * from "./region.js"
export * from "./api-key.js"
export * from "./step.js"
export * from "./workflow.js"
export * from "./user.js"
export * from "./customer.js"
export * from "./file.js"
export * from "./product-collection.js"
export * from "./remote-query.js"
export * from "./link.js"
export * from "./event-bus.js"
export * from "./product.js"
export * from "./locking.js"
export * from "./logger.js"
export * from "./notification.js"
export * from "./js-sdk.js"
export * from "./currency.js"
export * from "./file.js"
export * from "./admin.js"
export * from "./promotion.js"
export * from "./notification.js"
export * from "./user.js"
export * from "./server.js"
export * from "./js-sdk.js"
export * from "./stock-location.js"
export * from "./currency.js"
export * from "./store.js"
+1
View File
@@ -5,5 +5,6 @@ export declare type FrontMatter = {
sidebar_group_main?: boolean
sidebar_position?: number
sidebar_autogenerate_exclude?: boolean
sidebar_description?: string
tags?: string[]
}