docs: add support for keywords in references (#12413)
This commit is contained in:
+1
@@ -11,6 +11,7 @@ const authProviderOptions: FormattingOptionsType = {
|
||||
slug: "/references/auth/provider",
|
||||
tags: ["auth", "server", "how to"],
|
||||
sidebar_label: "Create Auth Provider",
|
||||
keywords: ["auth", "provider", "integration"],
|
||||
},
|
||||
reflectionTitle: {
|
||||
fullReplacement: "How to Create an Auth Module Provider",
|
||||
|
||||
+1
@@ -10,6 +10,7 @@ const cacheOptions: FormattingOptionsType = {
|
||||
slug: "/references/cache-service",
|
||||
tags: ["cache", "server", "how to"],
|
||||
sidebar_label: "Use Cache Module",
|
||||
keywords: ["cache", "provider", "integration"],
|
||||
},
|
||||
reflectionTitle: {
|
||||
fullReplacement: "How to Use Cache Module",
|
||||
|
||||
+1
@@ -10,6 +10,7 @@ const eventOptions: FormattingOptionsType = {
|
||||
slug: "/references/event-service",
|
||||
tags: ["event", "server", "how to"],
|
||||
sidebar_label: "Use Event Module",
|
||||
keywords: ["event", "provider", "integration"],
|
||||
},
|
||||
reflectionTitle: {
|
||||
fullReplacement: "How to Use Event Module",
|
||||
|
||||
+1
@@ -9,6 +9,7 @@ const fileOptions: FormattingOptionsType = {
|
||||
reflectionDescription: `In this document, you’ll learn how to create a File Module Provider and the methods you must implement in its main service.`,
|
||||
frontmatterData: {
|
||||
slug: "/references/file-provider-module",
|
||||
keywords: ["file", "storage", "provider", "integration"],
|
||||
},
|
||||
reflectionTitle: {
|
||||
fullReplacement: "How to Create a File Module Provider",
|
||||
|
||||
+1
@@ -11,6 +11,7 @@ const fulfillmentProviderOptions: FormattingOptionsType = {
|
||||
slug: "/references/fulfillment/provider",
|
||||
tags: ["fulfillment", "server", "how to"],
|
||||
sidebar_label: "Create Fulfillment Provider",
|
||||
keywords: ["fulfillment", "shipping", "provider", "integration"],
|
||||
},
|
||||
reflectionTitle: {
|
||||
fullReplacement: "How to Create a Fulfillment Module Provider",
|
||||
|
||||
+1
@@ -11,6 +11,7 @@ const lockingOptions: FormattingOptionsType = {
|
||||
slug: "/references/locking-module-provider",
|
||||
tags: ["locking", "server", "how to"],
|
||||
sidebar_label: "Create Locking Provider",
|
||||
keywords: ["locking", "provider", "integration"],
|
||||
},
|
||||
reflectionTitle: {
|
||||
fullReplacement: "How to Create a Locking Module Provider",
|
||||
|
||||
+1
@@ -10,6 +10,7 @@ const notificationServiceOptions: FormattingOptionsType = {
|
||||
slug: "/references/notification-service",
|
||||
tags: ["notification", "server", "how to"],
|
||||
sidebar_label: "Use Notification Module",
|
||||
keywords: ["notification", "provider", "integration"],
|
||||
},
|
||||
reflectionTitle: {
|
||||
fullReplacement: "How to Use Notification Module",
|
||||
|
||||
+1
@@ -11,6 +11,7 @@ const paymentProviderOptions: FormattingOptionsType = {
|
||||
slug: "/references/payment/provider",
|
||||
tags: ["payment", "server", "how to"],
|
||||
sidebar_label: "Create Payment Provider",
|
||||
keywords: ["payment", "provider", "integration"],
|
||||
},
|
||||
reflectionTitle: {
|
||||
fullReplacement: "How to Create a Payment Module Provider",
|
||||
|
||||
+1
@@ -10,6 +10,7 @@ const taxProviderOptions: FormattingOptionsType = {
|
||||
slug: "/references/tax/provider",
|
||||
tags: ["tax", "server", "how to"],
|
||||
sidebar_label: "Create Tax Provider",
|
||||
keywords: ["tax", "provider", "integration"],
|
||||
},
|
||||
reflectionTitle: {
|
||||
fullReplacement: "How to Create a Tax Module Provider",
|
||||
|
||||
+1
@@ -62,6 +62,7 @@ export type FrontmatterData = {
|
||||
sidebar_label?: string
|
||||
displayed_sidebar?: string
|
||||
tags?: Tag[]
|
||||
keywords?: string[]
|
||||
[k: string]: unknown
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user