From 024c55d9957257ee101949d9879a6f8b1d3b51f7 Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Thu, 19 Dec 2024 18:55:56 +0200 Subject: [PATCH] docs: add tags manually to doc pages (#10675) --- .../product/guides/price-with-taxes/page.mdx | 5 + .../product/guides/price/page.mdx | 4 + .../cart/context/page.mdx | 6 + .../cart/create/page.mdx | 6 + .../cart/manage-items/page.mdx | 6 + .../cart/retrieve/page.mdx | 6 + .../cart/update/page.mdx | 6 + .../checkout/address/page.mdx | 6 + .../checkout/complete-cart/page.mdx | 8 + .../checkout/email/page.mdx | 6 + .../checkout/payment/page.mdx | 7 + .../checkout/payment/stripe/page.mdx | 8 + .../checkout/shipping/page.mdx | 7 + .../customers/addresses/page.mdx | 6 + .../customers/context/page.mdx | 6 + .../customers/log-out/page.mdx | 7 + .../customers/login/page.mdx | 7 + .../customers/profile/page.mdx | 6 + .../customers/register/page.mdx | 7 + .../customers/reset-password/page.mdx | 7 + .../customers/retrieve/page.mdx | 7 + .../customers/third-party-login/page.mdx | 7 + .../products/categories/list/page.mdx | 7 + .../categories/nested-categories/page.mdx | 7 + .../products/categories/products/page.mdx | 7 + .../products/categories/retrieve/page.mdx | 7 + .../products/collections/list/page.mdx | 7 + .../products/collections/products/page.mdx | 7 + .../products/collections/retrieve/page.mdx | 7 + .../products/inventory/page.mdx | 7 + .../products/list/page.mdx | 6 + .../price/examples/sale-price/page.mdx | 4 + .../price/examples/show-price/page.mdx | 4 + .../price/examples/tax-price/page.mdx | 5 + .../products/price/page.mdx | 7 + .../products/retrieve/page.mdx | 6 + .../products/variants/page.mdx | 6 + .../publishable-api-keys/page.mdx | 7 + .../regions/context/page.mdx | 6 + .../regions/list/page.mdx | 6 + .../regions/store-retrieve-region/page.mdx | 6 + .../app/storefront-development/tips/page.mdx | 5 + www/apps/resources/generated/edit-dates.mjs | 84 ++++----- www/packages/tags/src/tags/api-key.ts | 6 + www/packages/tags/src/tags/auth.ts | 26 +++ www/packages/tags/src/tags/cart.ts | 46 +++++ www/packages/tags/src/tags/customer.ts | 38 ++++ www/packages/tags/src/tags/fulfillment.ts | 6 + www/packages/tags/src/tags/index.ts | 18 ++ www/packages/tags/src/tags/inventory.ts | 6 + www/packages/tags/src/tags/order.ts | 6 + www/packages/tags/src/tags/payment.ts | 14 ++ www/packages/tags/src/tags/pricing.ts | 26 +++ .../tags/src/tags/product-category.ts | 18 ++ .../tags/src/tags/product-collection.ts | 14 ++ www/packages/tags/src/tags/product.ts | 70 ++++++++ .../tags/src/tags/publishable-api-key.ts | 6 + www/packages/tags/src/tags/query.ts | 10 ++ www/packages/tags/src/tags/region.ts | 14 ++ www/packages/tags/src/tags/storefront.ts | 162 ++++++++++++++++++ www/packages/tags/src/tags/stripe.ts | 6 + www/packages/tags/src/tags/tax.ts | 10 ++ 62 files changed, 809 insertions(+), 42 deletions(-) create mode 100644 www/packages/tags/src/tags/api-key.ts create mode 100644 www/packages/tags/src/tags/auth.ts create mode 100644 www/packages/tags/src/tags/cart.ts create mode 100644 www/packages/tags/src/tags/customer.ts create mode 100644 www/packages/tags/src/tags/fulfillment.ts create mode 100644 www/packages/tags/src/tags/inventory.ts create mode 100644 www/packages/tags/src/tags/order.ts create mode 100644 www/packages/tags/src/tags/payment.ts create mode 100644 www/packages/tags/src/tags/pricing.ts create mode 100644 www/packages/tags/src/tags/product-category.ts create mode 100644 www/packages/tags/src/tags/product-collection.ts create mode 100644 www/packages/tags/src/tags/product.ts create mode 100644 www/packages/tags/src/tags/publishable-api-key.ts create mode 100644 www/packages/tags/src/tags/query.ts create mode 100644 www/packages/tags/src/tags/region.ts create mode 100644 www/packages/tags/src/tags/storefront.ts create mode 100644 www/packages/tags/src/tags/stripe.ts create mode 100644 www/packages/tags/src/tags/tax.ts diff --git a/www/apps/resources/app/commerce-modules/product/guides/price-with-taxes/page.mdx b/www/apps/resources/app/commerce-modules/product/guides/price-with-taxes/page.mdx index 5232eea3d3..d615be436a 100644 --- a/www/apps/resources/app/commerce-modules/product/guides/price-with-taxes/page.mdx +++ b/www/apps/resources/app/commerce-modules/product/guides/price-with-taxes/page.mdx @@ -1,5 +1,10 @@ --- sidebar_label: "Get Variant Price with Taxes" +tags: + - product + - pricing + - query + - tax --- export const metadata = { diff --git a/www/apps/resources/app/commerce-modules/product/guides/price/page.mdx b/www/apps/resources/app/commerce-modules/product/guides/price/page.mdx index 1aa5e29670..d03f5a6c14 100644 --- a/www/apps/resources/app/commerce-modules/product/guides/price/page.mdx +++ b/www/apps/resources/app/commerce-modules/product/guides/price/page.mdx @@ -1,5 +1,9 @@ --- sidebar_label: "Get Variant Prices" +tags: + - product + - pricing + - query --- export const metadata = { diff --git a/www/apps/resources/app/storefront-development/cart/context/page.mdx b/www/apps/resources/app/storefront-development/cart/context/page.mdx index c4777794a4..c8e7d78a98 100644 --- a/www/apps/resources/app/storefront-development/cart/context/page.mdx +++ b/www/apps/resources/app/storefront-development/cart/context/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - cart + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/cart/create/page.mdx b/www/apps/resources/app/storefront-development/cart/create/page.mdx index db7d82f50f..0899cd2623 100644 --- a/www/apps/resources/app/storefront-development/cart/create/page.mdx +++ b/www/apps/resources/app/storefront-development/cart/create/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - cart + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/cart/manage-items/page.mdx b/www/apps/resources/app/storefront-development/cart/manage-items/page.mdx index 388b0d3085..4f66860d56 100644 --- a/www/apps/resources/app/storefront-development/cart/manage-items/page.mdx +++ b/www/apps/resources/app/storefront-development/cart/manage-items/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - cart + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/cart/retrieve/page.mdx b/www/apps/resources/app/storefront-development/cart/retrieve/page.mdx index 487c172e0c..e2a8c6cc5a 100644 --- a/www/apps/resources/app/storefront-development/cart/retrieve/page.mdx +++ b/www/apps/resources/app/storefront-development/cart/retrieve/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - cart + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/cart/update/page.mdx b/www/apps/resources/app/storefront-development/cart/update/page.mdx index f91f2cabe8..7158575366 100644 --- a/www/apps/resources/app/storefront-development/cart/update/page.mdx +++ b/www/apps/resources/app/storefront-development/cart/update/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - cart + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/checkout/address/page.mdx b/www/apps/resources/app/storefront-development/checkout/address/page.mdx index 63b2fe4df4..a438d43c5b 100644 --- a/www/apps/resources/app/storefront-development/checkout/address/page.mdx +++ b/www/apps/resources/app/storefront-development/checkout/address/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - cart + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/checkout/complete-cart/page.mdx b/www/apps/resources/app/storefront-development/checkout/complete-cart/page.mdx index 372160de4c..fc6156bb87 100644 --- a/www/apps/resources/app/storefront-development/checkout/complete-cart/page.mdx +++ b/www/apps/resources/app/storefront-development/checkout/complete-cart/page.mdx @@ -1,3 +1,11 @@ +--- +tags: + - cart + - order + - payment + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/checkout/email/page.mdx b/www/apps/resources/app/storefront-development/checkout/email/page.mdx index 2a37145e43..8cca6d8855 100644 --- a/www/apps/resources/app/storefront-development/checkout/email/page.mdx +++ b/www/apps/resources/app/storefront-development/checkout/email/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - cart + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/checkout/payment/page.mdx b/www/apps/resources/app/storefront-development/checkout/payment/page.mdx index 6aeadfae8f..8bf5332763 100644 --- a/www/apps/resources/app/storefront-development/checkout/payment/page.mdx +++ b/www/apps/resources/app/storefront-development/checkout/payment/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - cart + - storefront + - payment +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/checkout/payment/stripe/page.mdx b/www/apps/resources/app/storefront-development/checkout/payment/stripe/page.mdx index f2c3478a16..a776ba806c 100644 --- a/www/apps/resources/app/storefront-development/checkout/payment/stripe/page.mdx +++ b/www/apps/resources/app/storefront-development/checkout/payment/stripe/page.mdx @@ -1,3 +1,11 @@ +--- +tags: + - cart + - storefront + - stripe + - payment +--- + import { CodeTabs, CodeTab, Prerequisites } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/checkout/shipping/page.mdx b/www/apps/resources/app/storefront-development/checkout/shipping/page.mdx index b80b8d6a42..0ac3ba9d62 100644 --- a/www/apps/resources/app/storefront-development/checkout/shipping/page.mdx +++ b/www/apps/resources/app/storefront-development/checkout/shipping/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - cart + - storefront + - fulfillment +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/customers/addresses/page.mdx b/www/apps/resources/app/storefront-development/customers/addresses/page.mdx index c2a75edab8..12095b5fb8 100644 --- a/www/apps/resources/app/storefront-development/customers/addresses/page.mdx +++ b/www/apps/resources/app/storefront-development/customers/addresses/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - customer + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/customers/context/page.mdx b/www/apps/resources/app/storefront-development/customers/context/page.mdx index 8d1753e83d..e5f3d990e4 100644 --- a/www/apps/resources/app/storefront-development/customers/context/page.mdx +++ b/www/apps/resources/app/storefront-development/customers/context/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - customer + - storefront +--- + export const metadata = { title: `Customer Context in Storefront`, } diff --git a/www/apps/resources/app/storefront-development/customers/log-out/page.mdx b/www/apps/resources/app/storefront-development/customers/log-out/page.mdx index a6d9c63f69..636399023f 100644 --- a/www/apps/resources/app/storefront-development/customers/log-out/page.mdx +++ b/www/apps/resources/app/storefront-development/customers/log-out/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - customer + - storefront + - auth +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/customers/login/page.mdx b/www/apps/resources/app/storefront-development/customers/login/page.mdx index b57ea2a3a5..c4ee7351fc 100644 --- a/www/apps/resources/app/storefront-development/customers/login/page.mdx +++ b/www/apps/resources/app/storefront-development/customers/login/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - customer + - storefront + - auth +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/customers/profile/page.mdx b/www/apps/resources/app/storefront-development/customers/profile/page.mdx index 9a5194c935..11484b4213 100644 --- a/www/apps/resources/app/storefront-development/customers/profile/page.mdx +++ b/www/apps/resources/app/storefront-development/customers/profile/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - customer + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/customers/register/page.mdx b/www/apps/resources/app/storefront-development/customers/register/page.mdx index 0cdf2b6cd8..432c1e030f 100644 --- a/www/apps/resources/app/storefront-development/customers/register/page.mdx +++ b/www/apps/resources/app/storefront-development/customers/register/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - customer + - storefront + - auth +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/customers/reset-password/page.mdx b/www/apps/resources/app/storefront-development/customers/reset-password/page.mdx index dd578b8ec8..b7d517c9ae 100644 --- a/www/apps/resources/app/storefront-development/customers/reset-password/page.mdx +++ b/www/apps/resources/app/storefront-development/customers/reset-password/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - customer + - storefront + - auth +--- + import { CodeTabs, CodeTab, Prerequisites } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/customers/retrieve/page.mdx b/www/apps/resources/app/storefront-development/customers/retrieve/page.mdx index 96c5ae3767..2f5eae3b2c 100644 --- a/www/apps/resources/app/storefront-development/customers/retrieve/page.mdx +++ b/www/apps/resources/app/storefront-development/customers/retrieve/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - customer + - storefront + - auth +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/customers/third-party-login/page.mdx b/www/apps/resources/app/storefront-development/customers/third-party-login/page.mdx index d6d83ccc82..ff23e69470 100644 --- a/www/apps/resources/app/storefront-development/customers/third-party-login/page.mdx +++ b/www/apps/resources/app/storefront-development/customers/third-party-login/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - customer + - storefront + - auth +--- + import { Prerequisites, CodeTabs, CodeTab, Details } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/categories/list/page.mdx b/www/apps/resources/app/storefront-development/products/categories/list/page.mdx index c732697634..258acae53e 100644 --- a/www/apps/resources/app/storefront-development/products/categories/list/page.mdx +++ b/www/apps/resources/app/storefront-development/products/categories/list/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - product + - product category + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/categories/nested-categories/page.mdx b/www/apps/resources/app/storefront-development/products/categories/nested-categories/page.mdx index 491950a943..daf8c93518 100644 --- a/www/apps/resources/app/storefront-development/products/categories/nested-categories/page.mdx +++ b/www/apps/resources/app/storefront-development/products/categories/nested-categories/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - product + - product category + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/categories/products/page.mdx b/www/apps/resources/app/storefront-development/products/categories/products/page.mdx index 0ceeb89e7f..fcb8e46447 100644 --- a/www/apps/resources/app/storefront-development/products/categories/products/page.mdx +++ b/www/apps/resources/app/storefront-development/products/categories/products/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - product + - product category + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/categories/retrieve/page.mdx b/www/apps/resources/app/storefront-development/products/categories/retrieve/page.mdx index 7a8efa519b..234db1acad 100644 --- a/www/apps/resources/app/storefront-development/products/categories/retrieve/page.mdx +++ b/www/apps/resources/app/storefront-development/products/categories/retrieve/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - product + - product category + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/collections/list/page.mdx b/www/apps/resources/app/storefront-development/products/collections/list/page.mdx index f70812478a..f5270a2281 100644 --- a/www/apps/resources/app/storefront-development/products/collections/list/page.mdx +++ b/www/apps/resources/app/storefront-development/products/collections/list/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - product + - product collection + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/collections/products/page.mdx b/www/apps/resources/app/storefront-development/products/collections/products/page.mdx index 192fbc44fa..9e636188b1 100644 --- a/www/apps/resources/app/storefront-development/products/collections/products/page.mdx +++ b/www/apps/resources/app/storefront-development/products/collections/products/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - product + - product collection + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/collections/retrieve/page.mdx b/www/apps/resources/app/storefront-development/products/collections/retrieve/page.mdx index 1def0f6bfb..0c24330576 100644 --- a/www/apps/resources/app/storefront-development/products/collections/retrieve/page.mdx +++ b/www/apps/resources/app/storefront-development/products/collections/retrieve/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - product + - product collection + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/inventory/page.mdx b/www/apps/resources/app/storefront-development/products/inventory/page.mdx index 53aa9508b9..c51ecf46d7 100644 --- a/www/apps/resources/app/storefront-development/products/inventory/page.mdx +++ b/www/apps/resources/app/storefront-development/products/inventory/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - product + - inventory + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/list/page.mdx b/www/apps/resources/app/storefront-development/products/list/page.mdx index 34efffb7a7..2dee6abeb6 100644 --- a/www/apps/resources/app/storefront-development/products/list/page.mdx +++ b/www/apps/resources/app/storefront-development/products/list/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - product + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/price/examples/sale-price/page.mdx b/www/apps/resources/app/storefront-development/products/price/examples/sale-price/page.mdx index 5f4c0f99a6..389634eb0b 100644 --- a/www/apps/resources/app/storefront-development/products/price/examples/sale-price/page.mdx +++ b/www/apps/resources/app/storefront-development/products/price/examples/sale-price/page.mdx @@ -1,6 +1,10 @@ --- sidebar_position: 2 sidebar_label: "Example: Show Sale Price" +tags: + - product + - storefront + - pricing --- export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/price/examples/show-price/page.mdx b/www/apps/resources/app/storefront-development/products/price/examples/show-price/page.mdx index 36de4f39ab..71f26afa65 100644 --- a/www/apps/resources/app/storefront-development/products/price/examples/show-price/page.mdx +++ b/www/apps/resources/app/storefront-development/products/price/examples/show-price/page.mdx @@ -1,6 +1,10 @@ --- sidebar_position: 1 sidebar_label: "Example: Show Variant's Price" +tags: + - product + - storefront + - pricing --- export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/price/examples/tax-price/page.mdx b/www/apps/resources/app/storefront-development/products/price/examples/tax-price/page.mdx index affdc2c856..9845cb76eb 100644 --- a/www/apps/resources/app/storefront-development/products/price/examples/tax-price/page.mdx +++ b/www/apps/resources/app/storefront-development/products/price/examples/tax-price/page.mdx @@ -1,6 +1,11 @@ --- sidebar_position: 3 sidebar_label: "Example: Show Price with Taxes" +tags: + - product + - storefront + - pricing + - tax --- export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/price/page.mdx b/www/apps/resources/app/storefront-development/products/price/page.mdx index 01d842931f..871e1b28b3 100644 --- a/www/apps/resources/app/storefront-development/products/price/page.mdx +++ b/www/apps/resources/app/storefront-development/products/price/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - product + - storefront + - pricing +--- + import { CodeTabs, CodeTab, Table } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/retrieve/page.mdx b/www/apps/resources/app/storefront-development/products/retrieve/page.mdx index 9adb6668dc..8b531eb2b8 100644 --- a/www/apps/resources/app/storefront-development/products/retrieve/page.mdx +++ b/www/apps/resources/app/storefront-development/products/retrieve/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - product + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/products/variants/page.mdx b/www/apps/resources/app/storefront-development/products/variants/page.mdx index f9dfbad838..e70dfe562c 100644 --- a/www/apps/resources/app/storefront-development/products/variants/page.mdx +++ b/www/apps/resources/app/storefront-development/products/variants/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - product + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/publishable-api-keys/page.mdx b/www/apps/resources/app/storefront-development/publishable-api-keys/page.mdx index bb3a07d61e..58085b425a 100644 --- a/www/apps/resources/app/storefront-development/publishable-api-keys/page.mdx +++ b/www/apps/resources/app/storefront-development/publishable-api-keys/page.mdx @@ -1,3 +1,10 @@ +--- +tags: + - publishable api key + - api key + - storefront +--- + export const metadata = { title: `Use a Publishable API Key in the Storefront`, } diff --git a/www/apps/resources/app/storefront-development/regions/context/page.mdx b/www/apps/resources/app/storefront-development/regions/context/page.mdx index a006d9fef4..9bc514dc79 100644 --- a/www/apps/resources/app/storefront-development/regions/context/page.mdx +++ b/www/apps/resources/app/storefront-development/regions/context/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - region + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/regions/list/page.mdx b/www/apps/resources/app/storefront-development/regions/list/page.mdx index 32fa523e9e..8698eecce0 100644 --- a/www/apps/resources/app/storefront-development/regions/list/page.mdx +++ b/www/apps/resources/app/storefront-development/regions/list/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - region + - storefront +--- + import { CodeTabs, CodeTab } from "docs-ui" export const metadata = { diff --git a/www/apps/resources/app/storefront-development/regions/store-retrieve-region/page.mdx b/www/apps/resources/app/storefront-development/regions/store-retrieve-region/page.mdx index ff9e17043f..5770717d04 100644 --- a/www/apps/resources/app/storefront-development/regions/store-retrieve-region/page.mdx +++ b/www/apps/resources/app/storefront-development/regions/store-retrieve-region/page.mdx @@ -1,3 +1,9 @@ +--- +tags: + - region + - storefront +--- + export const metadata = { title: `Store and Retrieve Region`, } diff --git a/www/apps/resources/app/storefront-development/tips/page.mdx b/www/apps/resources/app/storefront-development/tips/page.mdx index 6af1663007..176c23da86 100644 --- a/www/apps/resources/app/storefront-development/tips/page.mdx +++ b/www/apps/resources/app/storefront-development/tips/page.mdx @@ -1,3 +1,8 @@ +--- +tags: + - storefront +--- + export const metadata = { title: `Storefront Development Tips`, } diff --git a/www/apps/resources/generated/edit-dates.mjs b/www/apps/resources/generated/edit-dates.mjs index 949f8bfabc..89f90a9415 100644 --- a/www/apps/resources/generated/edit-dates.mjs +++ b/www/apps/resources/generated/edit-dates.mjs @@ -69,8 +69,8 @@ export const generatedEditDates = { "app/commerce-modules/product/_events/_events-table/page.mdx": "2024-07-03T19:27:13+03:00", "app/commerce-modules/product/_events/page.mdx": "2024-07-03T19:27:13+03:00", "app/commerce-modules/product/examples/page.mdx": "2024-10-09T13:59:32.887Z", - "app/commerce-modules/product/guides/price/page.mdx": "2024-12-09T16:15:12.846Z", - "app/commerce-modules/product/guides/price-with-taxes/page.mdx": "2024-12-09T14:48:15.107Z", + "app/commerce-modules/product/guides/price/page.mdx": "2024-12-19T16:37:40.491Z", + "app/commerce-modules/product/guides/price-with-taxes/page.mdx": "2024-12-19T16:37:48.597Z", "app/commerce-modules/product/page.mdx": "2024-12-09T14:48:26.091Z", "app/commerce-modules/promotion/_events/_events-table/page.mdx": "2024-07-03T19:27:13+03:00", "app/commerce-modules/promotion/_events/page.mdx": "2024-07-03T19:27:13+03:00", @@ -150,49 +150,49 @@ export const generatedEditDates = { "app/service-factory-reference/methods/update/page.mdx": "2024-07-31T17:01:33+03:00", "app/service-factory-reference/tips/filtering/page.mdx": "2024-07-31T17:01:33+03:00", "app/service-factory-reference/page.mdx": "2024-07-26T14:40:56+00:00", - "app/storefront-development/cart/context/page.mdx": "2024-09-11T10:08:05.194Z", - "app/storefront-development/cart/create/page.mdx": "2024-10-21T07:40:27.947Z", - "app/storefront-development/cart/manage-items/page.mdx": "2024-09-11T10:10:54.932Z", - "app/storefront-development/cart/retrieve/page.mdx": "2024-09-11T10:12:55.828Z", - "app/storefront-development/cart/update/page.mdx": "2024-10-21T07:41:21.046Z", + "app/storefront-development/cart/context/page.mdx": "2024-12-19T16:27:53.821Z", + "app/storefront-development/cart/create/page.mdx": "2024-12-19T16:27:55.753Z", + "app/storefront-development/cart/manage-items/page.mdx": "2024-12-19T16:27:56.433Z", + "app/storefront-development/cart/retrieve/page.mdx": "2024-12-19T16:27:57.486Z", + "app/storefront-development/cart/update/page.mdx": "2024-12-19T16:28:05.574Z", "app/storefront-development/cart/page.mdx": "2024-06-11T11:56:37+03:00", - "app/storefront-development/checkout/address/page.mdx": "2024-09-11T09:40:02.899Z", - "app/storefront-development/checkout/complete-cart/page.mdx": "2024-09-11T09:40:48.531Z", - "app/storefront-development/checkout/email/page.mdx": "2024-09-11T09:41:22.358Z", - "app/storefront-development/checkout/payment/stripe/page.mdx": "2024-09-11T09:41:52.777Z", - "app/storefront-development/checkout/payment/page.mdx": "2024-09-11T09:46:55.373Z", - "app/storefront-development/checkout/shipping/page.mdx": "2024-09-11T09:47:54.828Z", + "app/storefront-development/checkout/address/page.mdx": "2024-12-19T16:30:41.978Z", + "app/storefront-development/checkout/complete-cart/page.mdx": "2024-12-19T16:30:41.019Z", + "app/storefront-development/checkout/email/page.mdx": "2024-12-19T16:30:40.122Z", + "app/storefront-development/checkout/payment/stripe/page.mdx": "2024-12-19T16:30:39.173Z", + "app/storefront-development/checkout/payment/page.mdx": "2024-12-19T16:30:38.192Z", + "app/storefront-development/checkout/shipping/page.mdx": "2024-12-19T16:30:31.537Z", "app/storefront-development/checkout/page.mdx": "2024-06-12T19:46:06+02:00", - "app/storefront-development/customers/addresses/page.mdx": "2024-09-11T09:50:20.736Z", - "app/storefront-development/customers/context/page.mdx": "2024-09-11T09:50:36.936Z", - "app/storefront-development/customers/log-out/page.mdx": "2024-09-11T10:00:38.904Z", - "app/storefront-development/customers/login/page.mdx": "2024-09-11T10:00:28.555Z", - "app/storefront-development/customers/profile/page.mdx": "2024-09-11T09:54:38.574Z", - "app/storefront-development/customers/register/page.mdx": "2024-09-11T09:59:29.085Z", - "app/storefront-development/customers/retrieve/page.mdx": "2024-09-11T09:55:40.516Z", + "app/storefront-development/customers/addresses/page.mdx": "2024-12-19T16:38:44.847Z", + "app/storefront-development/customers/context/page.mdx": "2024-12-19T16:38:43.703Z", + "app/storefront-development/customers/log-out/page.mdx": "2024-12-19T16:31:28.347Z", + "app/storefront-development/customers/login/page.mdx": "2024-12-19T16:31:34.194Z", + "app/storefront-development/customers/profile/page.mdx": "2024-12-19T16:31:43.978Z", + "app/storefront-development/customers/register/page.mdx": "2024-12-19T16:31:49.314Z", + "app/storefront-development/customers/retrieve/page.mdx": "2024-12-19T16:32:34.302Z", "app/storefront-development/customers/page.mdx": "2024-06-13T12:21:54+03:00", - "app/storefront-development/products/categories/list/page.mdx": "2024-09-11T10:01:50.873Z", - "app/storefront-development/products/categories/nested-categories/page.mdx": "2024-11-27T12:00:57.628Z", - "app/storefront-development/products/categories/products/page.mdx": "2024-09-11T10:08:05.194Z", - "app/storefront-development/products/categories/retrieve/page.mdx": "2024-09-11T10:04:38.752Z", + "app/storefront-development/products/categories/list/page.mdx": "2024-12-19T16:33:06.547Z", + "app/storefront-development/products/categories/nested-categories/page.mdx": "2024-12-19T16:33:20.197Z", + "app/storefront-development/products/categories/products/page.mdx": "2024-12-19T16:33:23.566Z", + "app/storefront-development/products/categories/retrieve/page.mdx": "2024-12-19T16:33:31.498Z", "app/storefront-development/products/categories/page.mdx": "2024-06-11T19:55:56+02:00", - "app/storefront-development/products/collections/list/page.mdx": "2024-09-11T10:05:31.249Z", - "app/storefront-development/products/collections/products/page.mdx": "2024-09-11T10:08:05.205Z", - "app/storefront-development/products/collections/retrieve/page.mdx": "2024-09-11T10:06:12.064Z", + "app/storefront-development/products/collections/list/page.mdx": "2024-12-19T16:33:43.902Z", + "app/storefront-development/products/collections/products/page.mdx": "2024-12-19T16:33:54.473Z", + "app/storefront-development/products/collections/retrieve/page.mdx": "2024-12-19T16:34:02.301Z", "app/storefront-development/products/collections/page.mdx": "2024-06-11T19:55:56+02:00", - "app/storefront-development/products/list/page.mdx": "2024-09-11T10:08:05.195Z", - "app/storefront-development/products/price/examples/sale-price/page.mdx": "2024-09-11T10:08:05.204Z", - "app/storefront-development/products/price/examples/show-price/page.mdx": "2024-09-11T10:08:05.202Z", - "app/storefront-development/products/price/examples/tax-price/page.mdx": "2024-09-11T10:08:05.204Z", - "app/storefront-development/products/price/page.mdx": "2024-09-11T10:08:05.202Z", - "app/storefront-development/products/retrieve/page.mdx": "2024-09-11T10:08:05.195Z", - "app/storefront-development/products/variants/page.mdx": "2024-09-11T10:08:05.207Z", + "app/storefront-development/products/list/page.mdx": "2024-12-19T16:34:23.521Z", + "app/storefront-development/products/price/examples/sale-price/page.mdx": "2024-12-19T16:34:46.886Z", + "app/storefront-development/products/price/examples/show-price/page.mdx": "2024-12-19T16:34:56.493Z", + "app/storefront-development/products/price/examples/tax-price/page.mdx": "2024-12-19T16:35:05.493Z", + "app/storefront-development/products/price/page.mdx": "2024-12-19T16:35:19.471Z", + "app/storefront-development/products/retrieve/page.mdx": "2024-12-19T16:35:35.011Z", + "app/storefront-development/products/variants/page.mdx": "2024-12-19T16:35:41.278Z", "app/storefront-development/products/page.mdx": "2024-06-11T19:55:56+02:00", - "app/storefront-development/regions/context/page.mdx": "2024-09-11T10:07:10.566Z", - "app/storefront-development/regions/list/page.mdx": "2024-09-11T10:07:34.742Z", - "app/storefront-development/regions/store-retrieve-region/page.mdx": "2024-09-11T10:07:42.887Z", + "app/storefront-development/regions/context/page.mdx": "2024-12-19T16:36:07.406Z", + "app/storefront-development/regions/list/page.mdx": "2024-12-19T16:36:17.364Z", + "app/storefront-development/regions/store-retrieve-region/page.mdx": "2024-12-19T16:36:22.800Z", "app/storefront-development/regions/page.mdx": "2024-06-09T15:19:09+02:00", - "app/storefront-development/tips/page.mdx": "2024-10-22T11:01:01.298Z", + "app/storefront-development/tips/page.mdx": "2024-12-19T16:36:32.938Z", "app/storefront-development/page.mdx": "2024-12-10T09:23:20.666Z", "app/troubleshooting/cors-errors/page.mdx": "2024-05-03T17:36:38+03:00", "app/troubleshooting/create-medusa-app-errors/page.mdx": "2024-07-11T10:29:13+03:00", @@ -888,7 +888,7 @@ export const generatedEditDates = { "references/types/interfaces/types.BaseClaim/page.mdx": "2024-12-09T13:21:33.225Z", "app/commerce-modules/auth/auth-providers/github/page.mdx": "2024-10-08T07:37:27.882Z", "app/commerce-modules/auth/auth-providers/google/page.mdx": "2024-10-08T07:37:06.517Z", - "app/storefront-development/customers/third-party-login/page.mdx": "2024-09-11T09:58:51.801Z", + "app/storefront-development/customers/third-party-login/page.mdx": "2024-12-19T16:32:43.550Z", "references/types/HttpTypes/types/types.HttpTypes.AdminWorkflowRunResponse/page.mdx": "2024-12-09T13:21:34.761Z", "references/types/HttpTypes/types/types.HttpTypes.BatchResponse/page.mdx": "2024-12-09T13:21:33.549Z", "references/types/WorkflowsSdkTypes/types/types.WorkflowsSdkTypes.Acknowledgement/page.mdx": "2024-12-09T13:21:35.873Z", @@ -934,7 +934,7 @@ export const generatedEditDates = { "references/promotion/interfaces/promotion.IPromotionModuleService/page.mdx": "2024-11-25T17:49:58.612Z", "references/types/EventBusTypes/interfaces/types.EventBusTypes.IEventBusService/page.mdx": "2024-12-09T13:21:33.073Z", "references/types/TransactionBaseTypes/interfaces/types.TransactionBaseTypes.ITransactionBaseService/page.mdx": "2024-09-06T00:11:08.494Z", - "app/storefront-development/products/inventory/page.mdx": "2024-09-11T10:08:05.202Z", + "app/storefront-development/products/inventory/page.mdx": "2024-12-19T16:34:10.122Z", "references/auth/IAuthModuleService/methods/auth.IAuthModuleService.updateAuthIdentities/page.mdx": "2024-12-09T13:21:36.269Z", "references/auth/IAuthModuleService/methods/auth.IAuthModuleService.updateProvider/page.mdx": "2024-12-09T13:21:36.245Z", "references/auth/IAuthModuleService/methods/auth.IAuthModuleService.updateProviderIdentities/page.mdx": "2024-12-09T13:21:36.289Z", @@ -995,7 +995,7 @@ export const generatedEditDates = { "references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChangeActions/page.mdx": "2024-12-09T13:22:01.816Z", "references/types/ModulesSdkTypes/types/types.ModulesSdkTypes.RemoteQueryFunction/page.mdx": "2024-12-09T13:21:35.401Z", "references/types/types.CommonTypes/page.mdx": "2024-11-25T17:49:25.351Z", - "app/storefront-development/publishable-api-keys/page.mdx": "2024-09-11T09:35:46.683Z", + "app/storefront-development/publishable-api-keys/page.mdx": "2024-12-19T16:35:56.322Z", "references/api_key/types/api_key.ExpandScalar/page.mdx": "2024-09-17T00:10:59.563Z", "references/api_key/types/api_key.FilterQuery/page.mdx": "2024-11-27T16:33:40.706Z", "references/api_key/types/api_key.FilterValue/page.mdx": "2024-09-17T00:10:59.571Z", @@ -2171,7 +2171,7 @@ export const generatedEditDates = { "app/admin-components/layouts/two-column/page.mdx": "2024-10-07T11:16:10.092Z", "app/admin-components/components/forms/page.mdx": "2024-10-09T12:48:04.229Z", "app/commerce-modules/auth/reset-password/page.mdx": "2024-11-27T13:33:55.940Z", - "app/storefront-development/customers/reset-password/page.mdx": "2024-09-25T10:21:46.647Z", + "app/storefront-development/customers/reset-password/page.mdx": "2024-12-19T16:32:00.724Z", "app/commerce-modules/api-key/links-to-other-modules/page.mdx": "2024-10-08T08:05:36.596Z", "app/commerce-modules/cart/extend/page.mdx": "2024-12-11T09:05:37.041Z", "app/commerce-modules/cart/links-to-other-modules/page.mdx": "2024-10-08T08:22:35.190Z", diff --git a/www/packages/tags/src/tags/api-key.ts b/www/packages/tags/src/tags/api-key.ts new file mode 100644 index 0000000000..1e0d4c28b6 --- /dev/null +++ b/www/packages/tags/src/tags/api-key.ts @@ -0,0 +1,6 @@ +export const apiKey = [ + { + "title": "Use a Publishable API Key in the Storefront", + "path": "/app/storefront-development/publishable-api-keys" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/auth.ts b/www/packages/tags/src/tags/auth.ts new file mode 100644 index 0000000000..894c15ba44 --- /dev/null +++ b/www/packages/tags/src/tags/auth.ts @@ -0,0 +1,26 @@ +export const auth = [ + { + "title": "Log-out Customer in Storefront", + "path": "/app/storefront-development/customers/log-out" + }, + { + "title": "Login Customer in Storefront", + "path": "/app/storefront-development/customers/login" + }, + { + "title": "Register Customer in Storefront", + "path": "/app/storefront-development/customers/register" + }, + { + "title": "Reset Customer Password in Storefront", + "path": "/app/storefront-development/customers/reset-password" + }, + { + "title": "Retrieve Customer in Storefront", + "path": "/app/storefront-development/customers/retrieve" + }, + { + "title": "Third-Party or Social Login in Storefront", + "path": "/app/storefront-development/customers/third-party-login" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/cart.ts b/www/packages/tags/src/tags/cart.ts new file mode 100644 index 0000000000..c0627ea057 --- /dev/null +++ b/www/packages/tags/src/tags/cart.ts @@ -0,0 +1,46 @@ +export const cart = [ + { + "title": "Create Cart Context in Storefront", + "path": "/app/storefront-development/cart/context" + }, + { + "title": "Create Cart in Storefront", + "path": "/app/storefront-development/cart/create" + }, + { + "title": "Manage Cart's Items in Storefront", + "path": "/app/storefront-development/cart/manage-items" + }, + { + "title": "Retrieve Cart in Storefront", + "path": "/app/storefront-development/cart/retrieve" + }, + { + "title": "Update Cart in Storefront", + "path": "/app/storefront-development/cart/update" + }, + { + "title": "Checkout Step 2: Enter Address", + "path": "/app/storefront-development/checkout/address" + }, + { + "title": "Checkout Step 5: Complete Cart", + "path": "/app/storefront-development/checkout/complete-cart" + }, + { + "title": "Checkout Step 1: Enter Email", + "path": "/app/storefront-development/checkout/email" + }, + { + "title": "Checkout Step 4: Choose Payment Provider", + "path": "/app/storefront-development/checkout/payment" + }, + { + "title": "Payment with Stripe in React Storefront", + "path": "/app/storefront-development/checkout/payment/stripe" + }, + { + "title": "Checkout Step 3: Choose Shipping Method", + "path": "/app/storefront-development/checkout/shipping" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/customer.ts b/www/packages/tags/src/tags/customer.ts new file mode 100644 index 0000000000..85500186c4 --- /dev/null +++ b/www/packages/tags/src/tags/customer.ts @@ -0,0 +1,38 @@ +export const customer = [ + { + "title": "Manage Customer Addresses in Storefront", + "path": "/app/storefront-development/customers/addresses" + }, + { + "title": "Customer Context in Storefront", + "path": "/app/storefront-development/customers/context" + }, + { + "title": "Log-out Customer in Storefront", + "path": "/app/storefront-development/customers/log-out" + }, + { + "title": "Login Customer in Storefront", + "path": "/app/storefront-development/customers/login" + }, + { + "title": "Edit Customer Profile in Storefront", + "path": "/app/storefront-development/customers/profile" + }, + { + "title": "Register Customer in Storefront", + "path": "/app/storefront-development/customers/register" + }, + { + "title": "Reset Customer Password in Storefront", + "path": "/app/storefront-development/customers/reset-password" + }, + { + "title": "Retrieve Customer in Storefront", + "path": "/app/storefront-development/customers/retrieve" + }, + { + "title": "Third-Party or Social Login in Storefront", + "path": "/app/storefront-development/customers/third-party-login" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/fulfillment.ts b/www/packages/tags/src/tags/fulfillment.ts new file mode 100644 index 0000000000..b7b24ac3d6 --- /dev/null +++ b/www/packages/tags/src/tags/fulfillment.ts @@ -0,0 +1,6 @@ +export const fulfillment = [ + { + "title": "Checkout Step 3: Choose Shipping Method", + "path": "/app/storefront-development/checkout/shipping" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/index.ts b/www/packages/tags/src/tags/index.ts index e69de29bb2..37078bf2f6 100644 --- a/www/packages/tags/src/tags/index.ts +++ b/www/packages/tags/src/tags/index.ts @@ -0,0 +1,18 @@ +export * from "./product.js" +export * from "./storefront.js" +export * from "./order.js" +export * from "./payment.js" +export * from "./cart.js" +export * from "./fulfillment.js" +export * from "./stripe.js" +export * from "./customer.js" +export * from "./product-category.js" +export * from "./auth.js" +export * from "./inventory.js" +export * from "./product-collection.js" +export * from "./api-key.js" +export * from "./region.js" +export * from "./publishable-api-key.js" +export * from "./tax.js" +export * from "./pricing.js" +export * from "./query.js" diff --git a/www/packages/tags/src/tags/inventory.ts b/www/packages/tags/src/tags/inventory.ts new file mode 100644 index 0000000000..ba1aa92c89 --- /dev/null +++ b/www/packages/tags/src/tags/inventory.ts @@ -0,0 +1,6 @@ +export const inventory = [ + { + "title": "Retrieve Product Variant's Inventory in Storefront", + "path": "/app/storefront-development/products/inventory" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/order.ts b/www/packages/tags/src/tags/order.ts new file mode 100644 index 0000000000..71e86381bf --- /dev/null +++ b/www/packages/tags/src/tags/order.ts @@ -0,0 +1,6 @@ +export const order = [ + { + "title": "Checkout Step 5: Complete Cart", + "path": "/app/storefront-development/checkout/complete-cart" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/payment.ts b/www/packages/tags/src/tags/payment.ts new file mode 100644 index 0000000000..2d6031ee77 --- /dev/null +++ b/www/packages/tags/src/tags/payment.ts @@ -0,0 +1,14 @@ +export const payment = [ + { + "title": "Checkout Step 5: Complete Cart", + "path": "/app/storefront-development/checkout/complete-cart" + }, + { + "title": "Checkout Step 4: Choose Payment Provider", + "path": "/app/storefront-development/checkout/payment" + }, + { + "title": "Payment with Stripe in React Storefront", + "path": "/app/storefront-development/checkout/payment/stripe" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/pricing.ts b/www/packages/tags/src/tags/pricing.ts new file mode 100644 index 0000000000..a81a3cba6a --- /dev/null +++ b/www/packages/tags/src/tags/pricing.ts @@ -0,0 +1,26 @@ +export const pricing = [ + { + "title": "Get Variant Prices", + "path": "/app/commerce-modules/product/guides/price" + }, + { + "title": "Get Variant Price with Taxes", + "path": "/app/commerce-modules/product/guides/price-with-taxes" + }, + { + "title": "Example: Show Sale Price", + "path": "/app/storefront-development/products/price/examples/sale-price" + }, + { + "title": "Example: Show Variant's Price", + "path": "/app/storefront-development/products/price/examples/show-price" + }, + { + "title": "Example: Show Price with Taxes", + "path": "/app/storefront-development/products/price/examples/tax-price" + }, + { + "title": "Retrieve Product Variant's Prices in Storefront", + "path": "/app/storefront-development/products/price" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/product-category.ts b/www/packages/tags/src/tags/product-category.ts new file mode 100644 index 0000000000..0cbb957501 --- /dev/null +++ b/www/packages/tags/src/tags/product-category.ts @@ -0,0 +1,18 @@ +export const productCategory = [ + { + "title": "List Product Categories in Storefront", + "path": "/app/storefront-development/products/categories/list" + }, + { + "title": "Retrieve Nested Categories in Storefront", + "path": "/app/storefront-development/products/categories/nested-categories" + }, + { + "title": "Retrieve a Category's Products in Storefront", + "path": "/app/storefront-development/products/categories/products" + }, + { + "title": "Retrieve a Category in Storefront", + "path": "/app/storefront-development/products/categories/retrieve" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/product-collection.ts b/www/packages/tags/src/tags/product-collection.ts new file mode 100644 index 0000000000..964c0683a6 --- /dev/null +++ b/www/packages/tags/src/tags/product-collection.ts @@ -0,0 +1,14 @@ +export const productCollection = [ + { + "title": "List Product Collections in Storefront", + "path": "/app/storefront-development/products/collections/list" + }, + { + "title": "Retrieve a Collection's Products in Storefront", + "path": "/app/storefront-development/products/collections/products" + }, + { + "title": "Retrieve a Collection in Storefront", + "path": "/app/storefront-development/products/collections/retrieve" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/product.ts b/www/packages/tags/src/tags/product.ts new file mode 100644 index 0000000000..5fd55af273 --- /dev/null +++ b/www/packages/tags/src/tags/product.ts @@ -0,0 +1,70 @@ +export const product = [ + { + "title": "Get Variant Prices", + "path": "/app/commerce-modules/product/guides/price" + }, + { + "title": "Get Variant Price with Taxes", + "path": "/app/commerce-modules/product/guides/price-with-taxes" + }, + { + "title": "List Product Categories in Storefront", + "path": "/app/storefront-development/products/categories/list" + }, + { + "title": "Retrieve Nested Categories in Storefront", + "path": "/app/storefront-development/products/categories/nested-categories" + }, + { + "title": "Retrieve a Category's Products in Storefront", + "path": "/app/storefront-development/products/categories/products" + }, + { + "title": "Retrieve a Category in Storefront", + "path": "/app/storefront-development/products/categories/retrieve" + }, + { + "title": "List Product Collections in Storefront", + "path": "/app/storefront-development/products/collections/list" + }, + { + "title": "Retrieve a Collection's Products in Storefront", + "path": "/app/storefront-development/products/collections/products" + }, + { + "title": "Retrieve a Collection in Storefront", + "path": "/app/storefront-development/products/collections/retrieve" + }, + { + "title": "Retrieve Product Variant's Inventory in Storefront", + "path": "/app/storefront-development/products/inventory" + }, + { + "title": "List Products in Storefront", + "path": "/app/storefront-development/products/list" + }, + { + "title": "Example: Show Sale Price", + "path": "/app/storefront-development/products/price/examples/sale-price" + }, + { + "title": "Example: Show Variant's Price", + "path": "/app/storefront-development/products/price/examples/show-price" + }, + { + "title": "Example: Show Price with Taxes", + "path": "/app/storefront-development/products/price/examples/tax-price" + }, + { + "title": "Retrieve Product Variant's Prices in Storefront", + "path": "/app/storefront-development/products/price" + }, + { + "title": "Retrieve a Product in Storefront", + "path": "/app/storefront-development/products/retrieve" + }, + { + "title": "Select Product Variants in Storefront", + "path": "/app/storefront-development/products/variants" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/publishable-api-key.ts b/www/packages/tags/src/tags/publishable-api-key.ts new file mode 100644 index 0000000000..44f281ed34 --- /dev/null +++ b/www/packages/tags/src/tags/publishable-api-key.ts @@ -0,0 +1,6 @@ +export const publishableApiKey = [ + { + "title": "Use a Publishable API Key in the Storefront", + "path": "/app/storefront-development/publishable-api-keys" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/query.ts b/www/packages/tags/src/tags/query.ts new file mode 100644 index 0000000000..dfb19c96b3 --- /dev/null +++ b/www/packages/tags/src/tags/query.ts @@ -0,0 +1,10 @@ +export const query = [ + { + "title": "Get Variant Prices", + "path": "/app/commerce-modules/product/guides/price" + }, + { + "title": "Get Variant Price with Taxes", + "path": "/app/commerce-modules/product/guides/price-with-taxes" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/region.ts b/www/packages/tags/src/tags/region.ts new file mode 100644 index 0000000000..46d0896a42 --- /dev/null +++ b/www/packages/tags/src/tags/region.ts @@ -0,0 +1,14 @@ +export const region = [ + { + "title": "Region Context in Storefront", + "path": "/app/storefront-development/regions/context" + }, + { + "title": "List Regions in Storefront", + "path": "/app/storefront-development/regions/list" + }, + { + "title": "Store and Retrieve Region", + "path": "/app/storefront-development/regions/store-retrieve-region" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/storefront.ts b/www/packages/tags/src/tags/storefront.ts new file mode 100644 index 0000000000..828634946f --- /dev/null +++ b/www/packages/tags/src/tags/storefront.ts @@ -0,0 +1,162 @@ +export const storefront = [ + { + "title": "Create Cart Context in Storefront", + "path": "/app/storefront-development/cart/context" + }, + { + "title": "Create Cart in Storefront", + "path": "/app/storefront-development/cart/create" + }, + { + "title": "Manage Cart's Items in Storefront", + "path": "/app/storefront-development/cart/manage-items" + }, + { + "title": "Retrieve Cart in Storefront", + "path": "/app/storefront-development/cart/retrieve" + }, + { + "title": "Update Cart in Storefront", + "path": "/app/storefront-development/cart/update" + }, + { + "title": "Checkout Step 2: Enter Address", + "path": "/app/storefront-development/checkout/address" + }, + { + "title": "Checkout Step 5: Complete Cart", + "path": "/app/storefront-development/checkout/complete-cart" + }, + { + "title": "Checkout Step 1: Enter Email", + "path": "/app/storefront-development/checkout/email" + }, + { + "title": "Checkout Step 4: Choose Payment Provider", + "path": "/app/storefront-development/checkout/payment" + }, + { + "title": "Payment with Stripe in React Storefront", + "path": "/app/storefront-development/checkout/payment/stripe" + }, + { + "title": "Checkout Step 3: Choose Shipping Method", + "path": "/app/storefront-development/checkout/shipping" + }, + { + "title": "Manage Customer Addresses in Storefront", + "path": "/app/storefront-development/customers/addresses" + }, + { + "title": "Customer Context in Storefront", + "path": "/app/storefront-development/customers/context" + }, + { + "title": "Log-out Customer in Storefront", + "path": "/app/storefront-development/customers/log-out" + }, + { + "title": "Login Customer in Storefront", + "path": "/app/storefront-development/customers/login" + }, + { + "title": "Edit Customer Profile in Storefront", + "path": "/app/storefront-development/customers/profile" + }, + { + "title": "Register Customer in Storefront", + "path": "/app/storefront-development/customers/register" + }, + { + "title": "Reset Customer Password in Storefront", + "path": "/app/storefront-development/customers/reset-password" + }, + { + "title": "Retrieve Customer in Storefront", + "path": "/app/storefront-development/customers/retrieve" + }, + { + "title": "Third-Party or Social Login in Storefront", + "path": "/app/storefront-development/customers/third-party-login" + }, + { + "title": "List Product Categories in Storefront", + "path": "/app/storefront-development/products/categories/list" + }, + { + "title": "Retrieve Nested Categories in Storefront", + "path": "/app/storefront-development/products/categories/nested-categories" + }, + { + "title": "Retrieve a Category's Products in Storefront", + "path": "/app/storefront-development/products/categories/products" + }, + { + "title": "Retrieve a Category in Storefront", + "path": "/app/storefront-development/products/categories/retrieve" + }, + { + "title": "List Product Collections in Storefront", + "path": "/app/storefront-development/products/collections/list" + }, + { + "title": "Retrieve a Collection's Products in Storefront", + "path": "/app/storefront-development/products/collections/products" + }, + { + "title": "Retrieve a Collection in Storefront", + "path": "/app/storefront-development/products/collections/retrieve" + }, + { + "title": "Retrieve Product Variant's Inventory in Storefront", + "path": "/app/storefront-development/products/inventory" + }, + { + "title": "List Products in Storefront", + "path": "/app/storefront-development/products/list" + }, + { + "title": "Example: Show Sale Price", + "path": "/app/storefront-development/products/price/examples/sale-price" + }, + { + "title": "Example: Show Variant's Price", + "path": "/app/storefront-development/products/price/examples/show-price" + }, + { + "title": "Example: Show Price with Taxes", + "path": "/app/storefront-development/products/price/examples/tax-price" + }, + { + "title": "Retrieve Product Variant's Prices in Storefront", + "path": "/app/storefront-development/products/price" + }, + { + "title": "Retrieve a Product in Storefront", + "path": "/app/storefront-development/products/retrieve" + }, + { + "title": "Select Product Variants in Storefront", + "path": "/app/storefront-development/products/variants" + }, + { + "title": "Use a Publishable API Key in the Storefront", + "path": "/app/storefront-development/publishable-api-keys" + }, + { + "title": "Region Context in Storefront", + "path": "/app/storefront-development/regions/context" + }, + { + "title": "List Regions in Storefront", + "path": "/app/storefront-development/regions/list" + }, + { + "title": "Store and Retrieve Region", + "path": "/app/storefront-development/regions/store-retrieve-region" + }, + { + "title": "Storefront Development Tips", + "path": "/app/storefront-development/tips" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/stripe.ts b/www/packages/tags/src/tags/stripe.ts new file mode 100644 index 0000000000..11f08bb595 --- /dev/null +++ b/www/packages/tags/src/tags/stripe.ts @@ -0,0 +1,6 @@ +export const stripe = [ + { + "title": "Payment with Stripe in React Storefront", + "path": "/app/storefront-development/checkout/payment/stripe" + } +] \ No newline at end of file diff --git a/www/packages/tags/src/tags/tax.ts b/www/packages/tags/src/tags/tax.ts new file mode 100644 index 0000000000..58b3da3bd1 --- /dev/null +++ b/www/packages/tags/src/tags/tax.ts @@ -0,0 +1,10 @@ +export const tax = [ + { + "title": "Get Variant Price with Taxes", + "path": "/app/commerce-modules/product/guides/price-with-taxes" + }, + { + "title": "Example: Show Price with Taxes", + "path": "/app/storefront-development/products/price/examples/tax-price" + } +] \ No newline at end of file