From 32b60cdf830db449aadc34ce7f84f876438f5e45 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 00:11:09 +0000 Subject: [PATCH 01/14] Update create/text.mdx --- create/text.mdx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/create/text.mdx b/create/text.mdx index a2d0f25e7..6c614c102 100644 --- a/create/text.mdx +++ b/create/text.mdx @@ -213,6 +213,34 @@ This line starts on a new line. In most cases, paragraph breaks with blank lines provide better readability than manual line breaks. +## Multi-view content + +Use the `` component to display different content based on user selection. This is useful for showing platform-specific instructions, language variations, or different implementation approaches. + +### Basic usage + +Create multiple views with the `title` prop: + +```mdx + +This content appears when JavaScript is selected. + + + +This content appears when Python is selected. + + + +This content appears when Ruby is selected. + +``` + +Users can switch between views using the dropdown selector that appears above the content. + + + The `` component works with the multi-view system. Only one view is visible at a time based on the user's selection. + + ## Best practices ### Content organization From 9f0d2f81a1a8ca41c07190d56c293c6bb4b4dd37 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 00:14:48 +0000 Subject: [PATCH 02/14] Update components/view.mdx --- components/view.mdx | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 components/view.mdx diff --git a/components/view.mdx b/components/view.mdx new file mode 100644 index 000000000..b19547e89 --- /dev/null +++ b/components/view.mdx @@ -0,0 +1,46 @@ +--- +title: "View" +description: "Create multi-view content for different programming languages or frameworks" +--- + +Use the View component to create content that changes based on the selected view in a multi-view dropdown. This is particularly useful for showing code examples or documentation specific to different programming languages or frameworks. + + + This content is only visible when JavaScript is selected. + + ```javascript + console.log("Hello from JavaScript!"); + ``` + + + + This content is only visible when Python is selected. + + ```python + print("Hello from Python!") + ``` + + +```mdx View example + + This content is only visible when JavaScript is selected. + + ```javascript + console.log("Hello from JavaScript!"); + ``` + + + + This content is only visible when Python is selected. + + ```python + print("Hello from Python!") + ``` + +``` + +## Properties + + + The title that identifies this view. Must match one of the options in the multi-view dropdown. + From 32151b08d16cb95fe2147e26c3adb15bd73262cc Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 00:15:06 +0000 Subject: [PATCH 03/14] Update docs.json --- docs.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs.json b/docs.json index 8355abedf..6364b6d9f 100644 --- a/docs.json +++ b/docs.json @@ -92,7 +92,8 @@ "components/steps", "components/tabs", "components/tooltips", - "components/update" + "components/update", + "components/view" ] }, "create/reusable-snippets", From 7b4bf54455ef16d47dac4a803bc24d4f8a1b7b07 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 00:15:19 +0000 Subject: [PATCH 04/14] Update docs.json --- docs.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs.json b/docs.json index 6364b6d9f..7fb5b1194 100644 --- a/docs.json +++ b/docs.json @@ -401,7 +401,8 @@ "fr/components/steps", "fr/components/tabs", "fr/components/tooltips", - "fr/components/update" + "fr/components/update", + "fr/components/view" ] }, "fr/create/reusable-snippets", From 130dda762bb75562dd464c2494d168daee52d3cc Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 00:15:31 +0000 Subject: [PATCH 05/14] Update docs.json --- docs.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs.json b/docs.json index 7fb5b1194..99416fe9a 100644 --- a/docs.json +++ b/docs.json @@ -710,7 +710,8 @@ "es/components/steps", "es/components/tabs", "es/components/tooltips", - "es/components/update" + "es/components/update", + "es/components/view" ] }, "es/create/reusable-snippets", From f654cd09b470b1c03ee89ff19561f43c62cea7c2 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 00:15:40 +0000 Subject: [PATCH 06/14] Update docs.json --- docs.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs.json b/docs.json index 99416fe9a..51a0154d9 100644 --- a/docs.json +++ b/docs.json @@ -1019,7 +1019,8 @@ "zh/components/steps", "zh/components/tabs", "zh/components/tooltips", - "zh/components/update" + "zh/components/update", + "zh/components/view" ] }, "zh/create/reusable-snippets", From eeb56819d4f31d650a705c11af9d201a28727cc5 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 00:25:01 +0000 Subject: [PATCH 07/14] Update create/text.mdx --- create/text.mdx | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/create/text.mdx b/create/text.mdx index 6c614c102..a2d0f25e7 100644 --- a/create/text.mdx +++ b/create/text.mdx @@ -213,34 +213,6 @@ This line starts on a new line. In most cases, paragraph breaks with blank lines provide better readability than manual line breaks. -## Multi-view content - -Use the `` component to display different content based on user selection. This is useful for showing platform-specific instructions, language variations, or different implementation approaches. - -### Basic usage - -Create multiple views with the `title` prop: - -```mdx - -This content appears when JavaScript is selected. - - - -This content appears when Python is selected. - - - -This content appears when Ruby is selected. - -``` - -Users can switch between views using the dropdown selector that appears above the content. - - - The `` component works with the multi-view system. Only one view is visible at a time based on the user's selection. - - ## Best practices ### Content organization From a96630fac869ab36f146950b2997d7edc8a433f2 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 01:00:37 +0000 Subject: [PATCH 08/14] Update components/view.mdx --- components/view.mdx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/components/view.mdx b/components/view.mdx index b19547e89..e17c9e2ca 100644 --- a/components/view.mdx +++ b/components/view.mdx @@ -21,23 +21,27 @@ Use the View component to create content that changes based on the selected view ``` -```mdx View example +## Example + + +```mdx JavaScript and Python views This content is only visible when JavaScript is selected. - ```javascript + \```javascript console.log("Hello from JavaScript!"); - ``` + \``` This content is only visible when Python is selected. - ```python + \```python print("Hello from Python!") - ``` + \``` ``` + ## Properties From dbd28b5f61dc435c1e6b14f40aa30740fe4a8e62 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 01:03:03 +0000 Subject: [PATCH 09/14] Update components/view.mdx --- components/view.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/components/view.mdx b/components/view.mdx index e17c9e2ca..7715cb179 100644 --- a/components/view.mdx +++ b/components/view.mdx @@ -48,3 +48,11 @@ Use the View component to create content that changes based on the selected view The title that identifies this view. Must match one of the options in the multi-view dropdown. + + + A [Font Awesome](https://fontawesome.com/icons) icon, [Lucide](https://lucide.dev/icons) icon, URL to an icon, or relative path to an icon. + + + + For Font Awesome icons only: One of `regular`, `solid`, `light`, `thin`, `sharp-solid`, `duotone`, `brands`. + From 6a0c9924dec1565b6d11da47a67da06bd4b7b259 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 01:10:43 +0000 Subject: [PATCH 10/14] Update docs.json --- docs.json | 1372 +++++++++-------------------------------------------- 1 file changed, 220 insertions(+), 1152 deletions(-) diff --git a/docs.json b/docs.json index 51a0154d9..42fc6ee01 100644 --- a/docs.json +++ b/docs.json @@ -15,1242 +15,310 @@ "drilldown": false }, "navigation": { - "languages": [ + "tabs": [ { - "tabs": [ + "tab": "Documentation", + "groups": [ { - "tab": "Documentation", - "groups": [ - { - "group": "Get started", - "icon": "rocket", - "pages": [ - "index", - "quickstart", - "installation", - "editor", - "ai-native", - "migration" - ] - }, - { - "group": "Organize", - "icon": "map", - "pages": [ - "organize/settings", - "organize/navigation", - "organize/pages", - "organize/hidden-pages" - ] - }, - { - "group": "Customize", - "icon": "paint-bucket", - "pages": [ - "customize/custom-domain", - "customize/themes", - "customize/fonts", - "customize/custom-scripts", - "customize/react-components", - { - "group": "Dashboard access", - "pages": [ - "dashboard/sso", - "dashboard/permissions", - "dashboard/roles" - ] - }, - "customize/custom-404-page" - ] - }, - { - "group": "Create content", - "icon": "pen-line", - "pages": [ - "create/text", - "create/code", - "create/image-embeds", - "create/files", - "create/list-table", - { - "group": "Components", - "pages": [ - "components/accordions", - "components/banner", - "components/callouts", - "components/cards", - "components/code-groups", - "components/columns", - "components/examples", - "components/expandables", - "components/fields", - "components/frames", - "components/icons", - "components/mermaid-diagrams", - "components/panel", - "components/responses", - "components/steps", - "components/tabs", - "components/tooltips", - "components/update", - "components/view" - ] - }, - "create/reusable-snippets", - "create/broken-links", - "create/changelogs" - ] - }, - { - "group": "Document APIs", - "icon": "file-json", - "pages": [ - "api-playground/overview", - "api-playground/openapi-setup", - "api-playground/complex-data-types", - "api-playground/adding-sdk-examples", - "api-playground/managing-page-visibility", - "api-playground/multiple-responses", - { - "group": "MDX", - "pages": [ - "api-playground/mdx/configuration", - "api-playground/mdx/authentication" - ] - }, - { - "group": "AsyncAPI", - "pages": [ - "api-playground/asyncapi/setup", - "api-playground/asyncapi/playground" - ] - }, - "api-playground/troubleshooting" - ] - }, - { - "group": "Deploy", - "icon": "boxes", - "pages": [ - "deploy/deployments", - "deploy/preview-deployments", - { - "group": "Custom subdirectory", - "pages": [ - "deploy/cloudflare", - "deploy/route53-cloudfront", - "deploy/vercel", - "deploy/reverse-proxy", - "deploy/csp-configuration" - ] - }, - "deploy/authentication-setup", - "deploy/personalization-setup", - "deploy/monorepo", - "deploy/ci", - "deploy/github", - "deploy/gitlab" - ] - }, - { - "group": "Optimize", - "icon": "wrench", - "pages": [ - { - "group": "AI", - "pages": [ - "ai/assistant", - "ai/agent", - "ai/llmstxt", - "ai/contextual-menu", - "ai/model-context-protocol", - "ai/markdown-export" - ] - }, - { - "group": "Insights", - "pages": [ - "insights/overview", - "insights/feedback" - ] - }, - "optimize/seo", - "optimize/pdf-exports", - { - "group": "Integrations", - "pages": [ - { - "group": "Analytics", - "pages": [ - "integrations/analytics/overview", - "integrations/analytics/amplitude", - "integrations/analytics/clearbit", - "integrations/analytics/fathom", - "integrations/analytics/google-analytics", - "integrations/analytics/google-tag-manager", - "integrations/analytics/heap", - "integrations/analytics/hightouch", - "integrations/analytics/hotjar", - "integrations/analytics/logrocket", - "integrations/analytics/mixpanel", - "integrations/analytics/pirsch", - "integrations/analytics/plausible", - "integrations/analytics/posthog", - "integrations/analytics/segment" - ] - }, - { - "group": "SDKs", - "pages": [ - "integrations/sdks/speakeasy", - "integrations/sdks/stainless" - ] - }, - { - "group": "Support", - "pages": [ - "integrations/support/overview", - "integrations/support/intercom", - "integrations/support/front" - ] - }, - { - "group": "Privacy", - "pages": [ - "integrations/privacy/overview", - "integrations/privacy/osano" - ] - } - ] - } - ] - } + "group": "Get started", + "icon": "rocket", + "pages": [ + "index", + "quickstart", + "installation", + "editor", + "ai-native", + "migration" ] }, { - "tab": "Guides", - "groups": [ - { - "group": "AI", - "icon": "bot", - "pages": [ - "guides/automate-agent", - "guides/geo", - "guides/claude-code", - "guides/cursor", - "guides/windsurf" - ] - }, - { - "group": "API docs", - "icon": "file-json", - "pages": [ - "guides/migrating-from-mdx" - ] - }, - { - "group": "Best practices", - "icon": "trophy", - "pages": [ - "guides/accessibility", - "guides/content-types", - "guides/improving-docs", - "guides/maintenance", - "guides/media", - "guides/navigation", - "guides/seo", - "guides/style-and-tone", - "guides/understand-your-audience" - ] - }, - { - "group": "Git", - "icon": "git-merge", - "pages": [ - "guides/git-concepts", - "guides/branches" - ] - } + "group": "Organize", + "icon": "map", + "pages": [ + "organize/settings", + "organize/navigation", + "organize/pages", + "organize/hidden-pages" ] }, { - "tab": "API Reference", - "groups": [ - { - "group": "API reference", - "icon": "file-json", - "pages": [ - "api/introduction" - ] - }, + "group": "Customize", + "icon": "paint-bucket", + "pages": [ + "customize/custom-domain", + "customize/themes", + "customize/fonts", + "customize/custom-scripts", + "customize/react-components", { - "group": "Admin", - "icon": "activity", + "group": "Dashboard access", "pages": [ - "api/update/trigger", - "api/update/status" + "dashboard/sso", + "dashboard/permissions", + "dashboard/roles" ] }, - { - "group": "Agent", - "icon": "pen-line", - "pages": [ - "api/agent/create-agent-job", - "api/agent/get-agent-job", - "api/agent/get-all-jobs" - ] - }, - { - "group": "Assistant", - "icon": "bot-message-square", - "pages": [ - "api/assistant/create-assistant-message", - "api/assistant/search" - ] - } + "customize/custom-404-page" ] }, { - "tab": "Changelog", - "groups": [ - { - "group": "Changelog", - "icon": "calendar", - "pages": [ - "changelog" - ] - } - ] - } - ], - "language": "en" - }, - { - "tabs": [ - { - "tab": "Documentation", - "groups": [ - { - "group": "Commencer", - "icon": "rocket", - "pages": [ - "fr/index", - "fr/quickstart", - "fr/installation", - "fr/editor", - "fr/ai-native", - "fr/migration" - ] - }, - { - "group": "Organiser", - "icon": "map", - "pages": [ - "fr/organize/settings", - "fr/organize/navigation", - "fr/organize/pages", - "fr/organize/hidden-pages" - ] - }, - { - "group": "Personnaliser", - "icon": "paint-bucket", - "pages": [ - "fr/customize/custom-domain", - "fr/customize/themes", - "fr/customize/fonts", - "fr/customize/custom-scripts", - "fr/customize/react-components", - { - "group": "Accès au Dashboard", - "pages": [ - "fr/dashboard/sso", - "fr/dashboard/permissions", - "fr/dashboard/roles" - ] - }, - "fr/customize/custom-404-page" - ] - }, - { - "group": "Créer un objet", - "icon": "pen-line", - "pages": [ - "fr/create/text", - "fr/create/code", - "fr/create/image-embeds", - "fr/create/files", - "fr/create/list-table", - { - "group": "Composants", - "pages": [ - "fr/components/accordions", - "fr/components/banner", - "fr/components/callouts", - "fr/components/cards", - "fr/components/code-groups", - "fr/components/columns", - "fr/components/examples", - "fr/components/expandables", - "fr/components/fields", - "fr/components/frames", - "fr/components/icons", - "fr/components/mermaid-diagrams", - "fr/components/panel", - "fr/components/responses", - "fr/components/steps", - "fr/components/tabs", - "fr/components/tooltips", - "fr/components/update", - "fr/components/view" - ] - }, - "fr/create/reusable-snippets", - "fr/create/broken-links", - "fr/create/changelogs" - ] - }, - { - "group": "Documenter des API", - "icon": "file-json", - "pages": [ - "fr/api-playground/overview", - "fr/api-playground/openapi-setup", - "fr/api-playground/complex-data-types", - "fr/api-playground/adding-sdk-examples", - "fr/api-playground/managing-page-visibility", - "fr/api-playground/multiple-responses", - { - "group": "MDX", - "pages": [ - "fr/api-playground/mdx/configuration", - "fr/api-playground/mdx/authentication" - ] - }, - { - "group": "AsyncAPI", - "pages": [ - "fr/api-playground/asyncapi/setup", - "fr/api-playground/asyncapi/playground" - ] - }, - "fr/api-playground/troubleshooting" - ] - }, - { - "group": "Déployer", - "icon": "boxes", - "pages": [ - "fr/deploy/deployments", - "fr/deploy/preview-deployments", - { - "group": "Sous-répertoire personnalisé", - "pages": [ - "fr/deploy/cloudflare", - "fr/deploy/route53-cloudfront", - "fr/deploy/vercel", - "fr/deploy/reverse-proxy", - "fr/deploy/csp-configuration" - ] - }, - "fr/deploy/authentication-setup", - "fr/deploy/personalization-setup", - "fr/deploy/monorepo", - "fr/deploy/ci", - "fr/deploy/github", - "fr/deploy/gitlab" - ] - }, - { - "group": "Optimiser", - "icon": "wrench", - "pages": [ - { - "group": "IA", - "pages": [ - "fr/ai/assistant", - "fr/ai/agent", - "fr/ai/llmstxt", - "fr/ai/contextual-menu", - "fr/ai/model-context-protocol", - "fr/ai/markdown-export" - ] - }, - { - "group": "Analyses", - "pages": [ - "fr/insights/overview", - "fr/insights/feedback" - ] - }, - "fr/optimize/seo", - "fr/optimize/pdf-exports", - { - "group": "Intégrations", - "pages": [ - { - "group": "Analytics", - "pages": [ - "fr/integrations/analytics/overview", - "fr/integrations/analytics/amplitude", - "fr/integrations/analytics/clearbit", - "fr/integrations/analytics/fathom", - "fr/integrations/analytics/google-analytics", - "fr/integrations/analytics/google-tag-manager", - "fr/integrations/analytics/heap", - "fr/integrations/analytics/hightouch", - "fr/integrations/analytics/hotjar", - "fr/integrations/analytics/logrocket", - "fr/integrations/analytics/mixpanel", - "fr/integrations/analytics/pirsch", - "fr/integrations/analytics/plausible", - "fr/integrations/analytics/posthog", - "fr/integrations/analytics/segment" - ] - }, - { - "group": "SDK", - "pages": [ - "fr/integrations/sdks/speakeasy", - "fr/integrations/sdks/stainless" - ] - }, - { - "group": "Assistance", - "pages": [ - "fr/integrations/support/overview", - "fr/integrations/support/intercom", - "fr/integrations/support/front" - ] - }, - { - "group": "Confidentialité", - "pages": [ - "fr/integrations/privacy/overview", - "fr/integrations/privacy/osano" - ] - } - ] - } - ] - } + "group": "Create content", + "icon": "pen-line", + "pages": [ + "create/text", + "create/code", + "create/image-embeds", + "create/files", + "create/list-table", + { + "group": "Components", + "pages": [ + "components/accordions", + "components/banner", + "components/callouts", + "components/cards", + "components/code-groups", + "components/columns", + "components/examples", + "components/expandables", + "components/fields", + "components/frames", + "components/icons", + "components/mermaid-diagrams", + "components/panel", + "components/responses", + "components/steps", + "components/tabs", + "components/tooltips", + "components/update", + "components/view" + ] + }, + "create/reusable-snippets", + "create/broken-links", + "create/changelogs" ] }, { - "tab": "Guides", - "groups": [ - { - "group": "IA", - "icon": "bot", - "pages": [ - "fr/guides/automate-agent", - "fr/guides/geo", - "fr/guides/claude-code", - "fr/guides/cursor", - "fr/guides/windsurf" - ] - }, + "group": "Document APIs", + "icon": "file-json", + "pages": [ + "api-playground/overview", + "api-playground/openapi-setup", + "api-playground/complex-data-types", + "api-playground/adding-sdk-examples", + "api-playground/managing-page-visibility", + "api-playground/multiple-responses", { - "group": "Documentation de l’API", - "icon": "file-json", + "group": "MDX", "pages": [ - "fr/guides/migrating-from-mdx" + "api-playground/mdx/configuration", + "api-playground/mdx/authentication" ] }, { - "group": "Bonnes pratiques", - "icon": "trophy", + "group": "AsyncAPI", "pages": [ - "fr/guides/accessibility", - "fr/guides/content-types", - "fr/guides/improving-docs", - "fr/guides/maintenance", - "fr/guides/media", - "fr/guides/navigation", - "fr/guides/seo", - "fr/guides/style-and-tone", - "fr/guides/understand-your-audience" + "api-playground/asyncapi/setup", + "api-playground/asyncapi/playground" ] }, - { - "group": "Git", - "icon": "git-merge", - "pages": [ - "fr/guides/git-concepts", - "fr/guides/branches" - ] - } + "api-playground/troubleshooting" ] }, { - "tab": "Référence de l’API", - "groups": [ - { - "group": "référence de l’API", - "icon": "file-json", - "pages": [ - "fr/api/introduction" - ] - }, - { - "group": "Admin", - "icon": "activity", - "pages": [ - "fr/api/update/trigger", - "fr/api/update/status" - ] - }, - { - "group": "Agent", - "icon": "pen-line", - "pages": [ - "fr/api/agent/create-agent-job", - "fr/api/agent/get-agent-job", - "fr/api/agent/get-all-jobs" - ] - }, - { - "group": "Assistant", - "icon": "bot-message-square", - "pages": [ - "fr/api/assistant/create-assistant-message", - "fr/api/assistant/search" - ] - } + "group": "Deploy", + "icon": "boxes", + "pages": [ + "deploy/deployments", + "deploy/preview-deployments", + { + "group": "Custom subdirectory", + "pages": [ + "deploy/cloudflare", + "deploy/route53-cloudfront", + "deploy/vercel", + "deploy/reverse-proxy", + "deploy/csp-configuration" + ] + }, + "deploy/authentication-setup", + "deploy/personalization-setup", + "deploy/monorepo", + "deploy/ci", + "deploy/github", + "deploy/gitlab" ] }, { - "tab": "Journal des modifications", - "groups": [ - { - "group": "Journal des modifications", - "icon": "calendar", - "pages": [ - "fr/changelog" - ] - } - ] - } - ], - "language": "fr" - }, - { - "tabs": [ - { - "tab": "Documentación", - "groups": [ + "group": "Optimize", + "icon": "wrench", + "pages": [ { - "group": "Comenzar", - "icon": "rocket", - "pages": [ - "es/index", - "es/quickstart", - "es/installation", - "es/editor", - "es/ai-native", - "es/migration" - ] - }, - { - "group": "Organizar", - "icon": "map", + "group": "AI", "pages": [ - "es/organize/settings", - "es/organize/navigation", - "es/organize/pages", - "es/organize/hidden-pages" + "ai/assistant", + "ai/agent", + "ai/llmstxt", + "ai/contextual-menu", + "ai/model-context-protocol", + "ai/markdown-export" ] }, { - "group": "Personalizar", - "icon": "paint-bucket", + "group": "Insights", "pages": [ - "es/customize/custom-domain", - "es/customize/themes", - "es/customize/fonts", - "es/customize/custom-scripts", - "es/customize/react-components", - { - "group": "Acceso al dashboard", - "pages": [ - "es/dashboard/sso", - "es/dashboard/permissions", - "es/dashboard/roles" - ] - }, - "es/customize/custom-404-page" + "insights/overview", + "insights/feedback" ] }, + "optimize/seo", + "optimize/pdf-exports", { - "group": "Crear contenido", - "icon": "pen-line", + "group": "Integrations", "pages": [ - "es/create/text", - "es/create/code", - "es/create/image-embeds", - "es/create/files", - "es/create/list-table", { - "group": "Componentes", + "group": "Analytics", "pages": [ - "es/components/accordions", - "es/components/banner", - "es/components/callouts", - "es/components/cards", - "es/components/code-groups", - "es/components/columns", - "es/components/examples", - "es/components/expandables", - "es/components/fields", - "es/components/frames", - "es/components/icons", - "es/components/mermaid-diagrams", - "es/components/panel", - "es/components/responses", - "es/components/steps", - "es/components/tabs", - "es/components/tooltips", - "es/components/update", - "es/components/view" + "integrations/analytics/overview", + "integrations/analytics/amplitude", + "integrations/analytics/clearbit", + "integrations/analytics/fathom", + "integrations/analytics/google-analytics", + "integrations/analytics/google-tag-manager", + "integrations/analytics/heap", + "integrations/analytics/hightouch", + "integrations/analytics/hotjar", + "integrations/analytics/logrocket", + "integrations/analytics/mixpanel", + "integrations/analytics/pirsch", + "integrations/analytics/plausible", + "integrations/analytics/posthog", + "integrations/analytics/segment" ] }, - "es/create/reusable-snippets", - "es/create/broken-links", - "es/create/changelogs" - ] - }, - { - "group": "Documentar APIs", - "icon": "file-json", - "pages": [ - "es/api-playground/overview", - "es/api-playground/openapi-setup", - "es/api-playground/complex-data-types", - "es/api-playground/adding-sdk-examples", - "es/api-playground/managing-page-visibility", - "es/api-playground/multiple-responses", { - "group": "MDX", + "group": "SDKs", "pages": [ - "es/api-playground/mdx/configuration", - "es/api-playground/mdx/authentication" + "integrations/sdks/speakeasy", + "integrations/sdks/stainless" ] }, { - "group": "AsyncAPI", + "group": "Support", "pages": [ - "es/api-playground/asyncapi/setup", - "es/api-playground/asyncapi/playground" + "integrations/support/overview", + "integrations/support/intercom", + "integrations/support/front" ] }, - "es/api-playground/troubleshooting" - ] - }, - { - "group": "Implementar", - "icon": "boxes", - "pages": [ - "es/deploy/deployments", - "es/deploy/preview-deployments", { - "group": "Subdirectorio personalizado", + "group": "Privacy", "pages": [ - "es/deploy/cloudflare", - "es/deploy/route53-cloudfront", - "es/deploy/vercel", - "es/deploy/reverse-proxy", - "es/deploy/csp-configuration" - ] - }, - "es/deploy/authentication-setup", - "es/deploy/personalization-setup", - "es/deploy/monorepo", - "es/deploy/ci", - "es/deploy/github", - "es/deploy/gitlab" - ] - }, - { - "group": "Optimizar", - "icon": "wrench", - "pages": [ - { - "group": "IA", - "pages": [ - "es/ai/assistant", - "es/ai/agent", - "es/ai/llmstxt", - "es/ai/contextual-menu", - "es/ai/model-context-protocol", - "es/ai/markdown-export" - ] - }, - { - "group": "Información detallada", - "pages": [ - "es/insights/overview", - "es/insights/feedback" - ] - }, - "es/optimize/seo", - "es/optimize/pdf-exports", - { - "group": "Integraciones", - "pages": [ - { - "group": "Analytics", - "pages": [ - "es/integrations/analytics/overview", - "es/integrations/analytics/amplitude", - "es/integrations/analytics/clearbit", - "es/integrations/analytics/fathom", - "es/integrations/analytics/google-analytics", - "es/integrations/analytics/google-tag-manager", - "es/integrations/analytics/heap", - "es/integrations/analytics/hightouch", - "es/integrations/analytics/hotjar", - "es/integrations/analytics/logrocket", - "es/integrations/analytics/mixpanel", - "es/integrations/analytics/pirsch", - "es/integrations/analytics/plausible", - "es/integrations/analytics/posthog", - "es/integrations/analytics/segment" - ] - }, - { - "group": "SDK", - "pages": [ - "es/integrations/sdks/speakeasy", - "es/integrations/sdks/stainless" - ] - }, - { - "group": "Soporte", - "pages": [ - "es/integrations/support/overview", - "es/integrations/support/intercom", - "es/integrations/support/front" - ] - }, - { - "group": "Privacidad", - "pages": [ - "es/integrations/privacy/overview", - "es/integrations/privacy/osano" - ] - } + "integrations/privacy/overview", + "integrations/privacy/osano" ] } ] } ] + } + ] + }, + { + "tab": "Guides", + "groups": [ + { + "group": "AI", + "icon": "bot", + "pages": [ + "guides/automate-agent", + "guides/geo", + "guides/claude-code", + "guides/cursor", + "guides/windsurf" + ] }, { - "tab": "Guías", - "groups": [ - { - "group": "IA", - "icon": "bot", - "pages": [ - "es/guides/automate-agent", - "es/guides/geo", - "es/guides/claude-code", - "es/guides/cursor", - "es/guides/windsurf" - ] - }, - { - "group": "Documentación de la API", - "icon": "file-json", - "pages": [ - "es/guides/migrating-from-mdx" - ] - }, - { - "group": "Mejores prácticas", - "icon": "trophy", - "pages": [ - "es/guides/accessibility", - "es/guides/content-types", - "es/guides/improving-docs", - "es/guides/maintenance", - "es/guides/media", - "es/guides/navigation", - "es/guides/seo", - "es/guides/style-and-tone", - "es/guides/understand-your-audience" - ] - }, - { - "group": "Git", - "icon": "git-merge", - "pages": [ - "es/guides/git-concepts", - "es/guides/branches" - ] - } + "group": "API docs", + "icon": "file-json", + "pages": [ + "guides/migrating-from-mdx" ] }, { - "tab": "Referencia de la API", - "groups": [ - { - "group": "Referencia de la API", - "icon": "file-json", - "pages": [ - "es/api/introduction" - ] - }, - { - "group": "Administrador", - "icon": "activity", - "pages": [ - "es/api/update/trigger", - "es/api/update/status" - ] - }, - { - "group": "Agente", - "icon": "pen-line", - "pages": [ - "es/api/agent/create-agent-job", - "es/api/agent/get-agent-job", - "es/api/agent/get-all-jobs" - ] - }, - { - "group": "assistant", - "icon": "bot-message-square", - "pages": [ - "es/api/assistant/create-assistant-message", - "es/api/assistant/search" - ] - } + "group": "Best practices", + "icon": "trophy", + "pages": [ + "guides/accessibility", + "guides/content-types", + "guides/improving-docs", + "guides/maintenance", + "guides/media", + "guides/navigation", + "guides/seo", + "guides/style-and-tone", + "guides/understand-your-audience" ] }, { - "tab": "Cambios", - "groups": [ - { - "group": "Cambios", - "icon": "calendar", - "pages": [ - "es/changelog" - ] - } + "group": "Git", + "icon": "git-merge", + "pages": [ + "guides/git-concepts", + "guides/branches" ] } - ], - "language": "es" + ] }, { - "tabs": [ + "tab": "API Reference", + "groups": [ { - "tab": "文档", - "groups": [ - { - "group": "开始使用", - "icon": "rocket", - "pages": [ - "zh/index", - "zh/quickstart", - "zh/installation", - "zh/editor", - "zh/ai-native", - "zh/migration" - ] - }, - { - "group": "组织", - "icon": "map", - "pages": [ - "zh/organize/settings", - "zh/organize/navigation", - "zh/organize/pages", - "zh/organize/hidden-pages" - ] - }, - { - "group": "自定义", - "icon": "paint-bucket", - "pages": [ - "zh/customize/custom-domain", - "zh/customize/themes", - "zh/customize/fonts", - "zh/customize/custom-scripts", - "zh/customize/react-components", - { - "group": "控制台访问", - "pages": [ - "zh/dashboard/sso", - "zh/dashboard/permissions", - "zh/dashboard/roles" - ] - }, - "zh/customize/custom-404-page" - ] - }, - { - "group": "创建对象", - "icon": "pen-line", - "pages": [ - "zh/create/text", - "zh/create/code", - "zh/create/image-embeds", - "zh/create/files", - "zh/create/list-table", - { - "group": "组件", - "pages": [ - "zh/components/accordions", - "zh/components/banner", - "zh/components/callouts", - "zh/components/cards", - "zh/components/code-groups", - "zh/components/columns", - "zh/components/examples", - "zh/components/expandables", - "zh/components/fields", - "zh/components/frames", - "zh/components/icons", - "zh/components/mermaid-diagrams", - "zh/components/panel", - "zh/components/responses", - "zh/components/steps", - "zh/components/tabs", - "zh/components/tooltips", - "zh/components/update", - "zh/components/view" - ] - }, - "zh/create/reusable-snippets", - "zh/create/broken-links", - "zh/create/changelogs" - ] - }, - { - "group": "文档 API", - "icon": "file-json", - "pages": [ - "zh/api-playground/overview", - "zh/api-playground/openapi-setup", - "zh/api-playground/complex-data-types", - "zh/api-playground/adding-sdk-examples", - "zh/api-playground/managing-page-visibility", - "zh/api-playground/multiple-responses", - { - "group": "MDX", - "pages": [ - "zh/api-playground/mdx/configuration", - "zh/api-playground/mdx/authentication" - ] - }, - { - "group": "AsyncAPI", - "pages": [ - "zh/api-playground/asyncapi/setup", - "zh/api-playground/asyncapi/playground" - ] - }, - "zh/api-playground/troubleshooting" - ] - }, - { - "group": "部署", - "icon": "boxes", - "pages": [ - "zh/deploy/deployments", - "zh/deploy/preview-deployments", - { - "group": "自定义子目录", - "pages": [ - "zh/deploy/cloudflare", - "zh/deploy/route53-cloudfront", - "zh/deploy/vercel", - "zh/deploy/reverse-proxy", - "zh/deploy/csp-configuration" - ] - }, - "zh/deploy/authentication-setup", - "zh/deploy/personalization-setup", - "zh/deploy/monorepo", - "zh/deploy/ci", - "zh/deploy/github", - "zh/deploy/gitlab" - ] - }, - { - "group": "优化", - "icon": "wrench", - "pages": [ - { - "group": "人工智能", - "pages": [ - "zh/ai/assistant", - "zh/ai/agent", - "zh/ai/llmstxt", - "zh/ai/contextual-menu", - "zh/ai/model-context-protocol", - "zh/ai/markdown-export" - ] - }, - { - "group": "洞察", - "pages": [ - "zh/insights/overview", - "zh/insights/feedback" - ] - }, - "zh/optimize/seo", - "zh/optimize/pdf-exports", - { - "group": "集成", - "pages": [ - { - "group": "Analytics", - "pages": [ - "zh/integrations/analytics/overview", - "zh/integrations/analytics/amplitude", - "zh/integrations/analytics/clearbit", - "zh/integrations/analytics/fathom", - "zh/integrations/analytics/google-analytics", - "zh/integrations/analytics/google-tag-manager", - "zh/integrations/analytics/heap", - "zh/integrations/analytics/hightouch", - "zh/integrations/analytics/hotjar", - "zh/integrations/analytics/logrocket", - "zh/integrations/analytics/mixpanel", - "zh/integrations/analytics/pirsch", - "zh/integrations/analytics/plausible", - "zh/integrations/analytics/posthog", - "zh/integrations/analytics/segment" - ] - }, - { - "group": "SDK", - "pages": [ - "zh/integrations/sdks/speakeasy", - "zh/integrations/sdks/stainless" - ] - }, - { - "group": "支持", - "pages": [ - "zh/integrations/support/overview", - "zh/integrations/support/intercom", - "zh/integrations/support/front" - ] - }, - { - "group": "隐私", - "pages": [ - "zh/integrations/privacy/overview", - "zh/integrations/privacy/osano" - ] - } - ] - } - ] - } + "group": "API reference", + "icon": "file-json", + "pages": [ + "api/introduction" ] }, { - "tab": "指南", - "groups": [ - { - "group": "人工智能", - "icon": "bot", - "pages": [ - "zh/guides/automate-agent", - "zh/guides/geo", - "zh/guides/claude-code", - "zh/guides/cursor", - "zh/guides/windsurf" - ] - }, - { - "group": "API 文档", - "icon": "file-json", - "pages": [ - "zh/guides/migrating-from-mdx" - ] - }, - { - "group": "最佳实践", - "icon": "trophy", - "pages": [ - "zh/guides/accessibility", - "zh/guides/content-types", - "zh/guides/improving-docs", - "zh/guides/maintenance", - "zh/guides/media", - "zh/guides/navigation", - "zh/guides/seo", - "zh/guides/style-and-tone", - "zh/guides/understand-your-audience" - ] - }, - { - "group": "Git", - "icon": "git-merge", - "pages": [ - "zh/guides/git-concepts", - "zh/guides/branches" - ] - } + "group": "Admin", + "icon": "activity", + "pages": [ + "api/update/trigger", + "api/update/status" ] }, { - "tab": "API 参考", - "groups": [ - { - "group": "API 参考", - "icon": "file-json", - "pages": [ - "zh/api/introduction" - ] - }, - { - "group": "管理员", - "icon": "activity", - "pages": [ - "zh/api/update/trigger", - "zh/api/update/status" - ] - }, - { - "group": "代理", - "icon": "pen-line", - "pages": [ - "zh/api/agent/create-agent-job", - "zh/api/agent/get-agent-job", - "zh/api/agent/get-all-jobs" - ] - }, - { - "group": "AI 助手", - "icon": "bot-message-square", - "pages": [ - "zh/api/assistant/create-assistant-message", - "zh/api/assistant/search" - ] - } + "group": "Agent", + "icon": "pen-line", + "pages": [ + "api/agent/create-agent-job", + "api/agent/get-agent-job", + "api/agent/get-all-jobs" ] }, { - "tab": "更新日志", - "groups": [ - { - "group": "更新日志", - "icon": "calendar", - "pages": [ - "zh/changelog" - ] - } + "group": "Assistant", + "icon": "bot-message-square", + "pages": [ + "api/assistant/create-assistant-message", + "api/assistant/search" ] } - ], - "language": "zh" + ] + }, + { + "tab": "Changelog", + "groups": [ + { + "group": "Changelog", + "icon": "calendar", + "pages": [ + "changelog" + ] + } + ] } ] }, @@ -1735,4 +803,4 @@ "google-site-verification": "YRuJgIxsRnMkiRTYTo_tEsJSFyIE3AraEiukTbeV4Ag" } } -} \ No newline at end of file +} From ee00b7458078b6834d22af9a0075be88b9d368b1 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 01:11:17 +0000 Subject: [PATCH 11/14] Update components/view.mdx --- components/view.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/view.mdx b/components/view.mdx index 7715cb179..b1cc301da 100644 --- a/components/view.mdx +++ b/components/view.mdx @@ -5,7 +5,7 @@ description: "Create multi-view content for different programming languages or f Use the View component to create content that changes based on the selected view in a multi-view dropdown. This is particularly useful for showing code examples or documentation specific to different programming languages or frameworks. - + This content is only visible when JavaScript is selected. ```javascript @@ -13,7 +13,7 @@ Use the View component to create content that changes based on the selected view ``` - + This content is only visible when Python is selected. ```python From ac758c3e0eab908db8aa24d5cedea0b630e61a86 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 01:11:23 +0000 Subject: [PATCH 12/14] Update components/view.mdx --- components/view.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/view.mdx b/components/view.mdx index b1cc301da..fb683039a 100644 --- a/components/view.mdx +++ b/components/view.mdx @@ -25,7 +25,7 @@ Use the View component to create content that changes based on the selected view ```mdx JavaScript and Python views - + This content is only visible when JavaScript is selected. \```javascript @@ -33,7 +33,7 @@ Use the View component to create content that changes based on the selected view \``` - + This content is only visible when Python is selected. \```python From 6a99131558ebee2a04a4ef6550947d60de313ecc Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 01:15:19 +0000 Subject: [PATCH 13/14] Update docs.json --- docs.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs.json b/docs.json index 42fc6ee01..96e344b91 100644 --- a/docs.json +++ b/docs.json @@ -15,7 +15,9 @@ "drilldown": false }, "navigation": { - "tabs": [ + "languages": [ + { + "tabs": [ { "tab": "Documentation", "groups": [ From 2eb780906c31ac5f0fad50911654be47dea099b2 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 01:19:08 +0000 Subject: [PATCH 14/14] Update docs.json --- docs.json | 1365 ++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 1146 insertions(+), 219 deletions(-) diff --git a/docs.json b/docs.json index 96e344b91..c816de062 100644 --- a/docs.json +++ b/docs.json @@ -18,309 +18,1236 @@ "languages": [ { "tabs": [ - { - "tab": "Documentation", - "groups": [ { - "group": "Get started", - "icon": "rocket", - "pages": [ - "index", - "quickstart", - "installation", - "editor", - "ai-native", - "migration" + "tab": "Documentation", + "groups": [ + { + "group": "Get started", + "icon": "rocket", + "pages": [ + "index", + "quickstart", + "installation", + "editor", + "ai-native", + "migration" + ] + }, + { + "group": "Organize", + "icon": "map", + "pages": [ + "organize/settings", + "organize/navigation", + "organize/pages", + "organize/hidden-pages" + ] + }, + { + "group": "Customize", + "icon": "paint-bucket", + "pages": [ + "customize/custom-domain", + "customize/themes", + "customize/fonts", + "customize/custom-scripts", + "customize/react-components", + { + "group": "Dashboard access", + "pages": [ + "dashboard/sso", + "dashboard/permissions", + "dashboard/roles" + ] + }, + "customize/custom-404-page" + ] + }, + { + "group": "Create content", + "icon": "pen-line", + "pages": [ + "create/text", + "create/code", + "create/image-embeds", + "create/files", + "create/list-table", + { + "group": "Components", + "pages": [ + "components/accordions", + "components/banner", + "components/callouts", + "components/cards", + "components/code-groups", + "components/columns", + "components/examples", + "components/expandables", + "components/fields", + "components/frames", + "components/icons", + "components/mermaid-diagrams", + "components/panel", + "components/responses", + "components/steps", + "components/tabs", + "components/tooltips", + "components/update", + "components/view" + ] + }, + "create/reusable-snippets", + "create/broken-links", + "create/changelogs" + ] + }, + { + "group": "Document APIs", + "icon": "file-json", + "pages": [ + "api-playground/overview", + "api-playground/openapi-setup", + "api-playground/complex-data-types", + "api-playground/adding-sdk-examples", + "api-playground/managing-page-visibility", + "api-playground/multiple-responses", + { + "group": "MDX", + "pages": [ + "api-playground/mdx/configuration", + "api-playground/mdx/authentication" + ] + }, + { + "group": "AsyncAPI", + "pages": [ + "api-playground/asyncapi/setup", + "api-playground/asyncapi/playground" + ] + }, + "api-playground/troubleshooting" + ] + }, + { + "group": "Deploy", + "icon": "boxes", + "pages": [ + "deploy/deployments", + "deploy/preview-deployments", + { + "group": "Custom subdirectory", + "pages": [ + "deploy/cloudflare", + "deploy/route53-cloudfront", + "deploy/vercel", + "deploy/reverse-proxy", + "deploy/csp-configuration" + ] + }, + "deploy/authentication-setup", + "deploy/personalization-setup", + "deploy/monorepo", + "deploy/ci", + "deploy/github", + "deploy/gitlab" + ] + }, + { + "group": "Optimize", + "icon": "wrench", + "pages": [ + { + "group": "AI", + "pages": [ + "ai/assistant", + "ai/agent", + "ai/llmstxt", + "ai/contextual-menu", + "ai/model-context-protocol", + "ai/markdown-export" + ] + }, + { + "group": "Insights", + "pages": [ + "insights/overview", + "insights/feedback" + ] + }, + "optimize/seo", + "optimize/pdf-exports", + { + "group": "Integrations", + "pages": [ + { + "group": "Analytics", + "pages": [ + "integrations/analytics/overview", + "integrations/analytics/amplitude", + "integrations/analytics/clearbit", + "integrations/analytics/fathom", + "integrations/analytics/google-analytics", + "integrations/analytics/google-tag-manager", + "integrations/analytics/heap", + "integrations/analytics/hightouch", + "integrations/analytics/hotjar", + "integrations/analytics/logrocket", + "integrations/analytics/mixpanel", + "integrations/analytics/pirsch", + "integrations/analytics/plausible", + "integrations/analytics/posthog", + "integrations/analytics/segment" + ] + }, + { + "group": "SDKs", + "pages": [ + "integrations/sdks/speakeasy", + "integrations/sdks/stainless" + ] + }, + { + "group": "Support", + "pages": [ + "integrations/support/overview", + "integrations/support/intercom", + "integrations/support/front" + ] + }, + { + "group": "Privacy", + "pages": [ + "integrations/privacy/overview", + "integrations/privacy/osano" + ] + } + ] + } + ] + } ] }, { - "group": "Organize", - "icon": "map", - "pages": [ - "organize/settings", - "organize/navigation", - "organize/pages", - "organize/hidden-pages" + "tab": "Guides", + "groups": [ + { + "group": "AI", + "icon": "bot", + "pages": [ + "guides/automate-agent", + "guides/geo", + "guides/claude-code", + "guides/cursor", + "guides/windsurf" + ] + }, + { + "group": "API docs", + "icon": "file-json", + "pages": [ + "guides/migrating-from-mdx" + ] + }, + { + "group": "Best practices", + "icon": "trophy", + "pages": [ + "guides/accessibility", + "guides/content-types", + "guides/improving-docs", + "guides/maintenance", + "guides/media", + "guides/navigation", + "guides/seo", + "guides/style-and-tone", + "guides/understand-your-audience" + ] + }, + { + "group": "Git", + "icon": "git-merge", + "pages": [ + "guides/git-concepts", + "guides/branches" + ] + } ] }, { - "group": "Customize", - "icon": "paint-bucket", - "pages": [ - "customize/custom-domain", - "customize/themes", - "customize/fonts", - "customize/custom-scripts", - "customize/react-components", + "tab": "API Reference", + "groups": [ + { + "group": "API reference", + "icon": "file-json", + "pages": [ + "api/introduction" + ] + }, { - "group": "Dashboard access", + "group": "Admin", + "icon": "activity", "pages": [ - "dashboard/sso", - "dashboard/permissions", - "dashboard/roles" + "api/update/trigger", + "api/update/status" ] }, - "customize/custom-404-page" + { + "group": "Agent", + "icon": "pen-line", + "pages": [ + "api/agent/create-agent-job", + "api/agent/get-agent-job", + "api/agent/get-all-jobs" + ] + }, + { + "group": "Assistant", + "icon": "bot-message-square", + "pages": [ + "api/assistant/create-assistant-message", + "api/assistant/search" + ] + } ] }, { - "group": "Create content", - "icon": "pen-line", - "pages": [ - "create/text", - "create/code", - "create/image-embeds", - "create/files", - "create/list-table", - { - "group": "Components", - "pages": [ - "components/accordions", - "components/banner", - "components/callouts", - "components/cards", - "components/code-groups", - "components/columns", - "components/examples", - "components/expandables", - "components/fields", - "components/frames", - "components/icons", - "components/mermaid-diagrams", - "components/panel", - "components/responses", - "components/steps", - "components/tabs", - "components/tooltips", - "components/update", - "components/view" - ] - }, - "create/reusable-snippets", - "create/broken-links", - "create/changelogs" + "tab": "Changelog", + "groups": [ + { + "group": "Changelog", + "icon": "calendar", + "pages": [ + "changelog" + ] + } + ] + } + ], + "language": "en" + }, + { + "tabs": [ + { + "tab": "Documentation", + "groups": [ + { + "group": "Commencer", + "icon": "rocket", + "pages": [ + "fr/index", + "fr/quickstart", + "fr/installation", + "fr/editor", + "fr/ai-native", + "fr/migration" + ] + }, + { + "group": "Organiser", + "icon": "map", + "pages": [ + "fr/organize/settings", + "fr/organize/navigation", + "fr/organize/pages", + "fr/organize/hidden-pages" + ] + }, + { + "group": "Personnaliser", + "icon": "paint-bucket", + "pages": [ + "fr/customize/custom-domain", + "fr/customize/themes", + "fr/customize/fonts", + "fr/customize/custom-scripts", + "fr/customize/react-components", + { + "group": "Accès au Dashboard", + "pages": [ + "fr/dashboard/sso", + "fr/dashboard/permissions", + "fr/dashboard/roles" + ] + }, + "fr/customize/custom-404-page" + ] + }, + { + "group": "Créer un objet", + "icon": "pen-line", + "pages": [ + "fr/create/text", + "fr/create/code", + "fr/create/image-embeds", + "fr/create/files", + "fr/create/list-table", + { + "group": "Composants", + "pages": [ + "fr/components/accordions", + "fr/components/banner", + "fr/components/callouts", + "fr/components/cards", + "fr/components/code-groups", + "fr/components/columns", + "fr/components/examples", + "fr/components/expandables", + "fr/components/fields", + "fr/components/frames", + "fr/components/icons", + "fr/components/mermaid-diagrams", + "fr/components/panel", + "fr/components/responses", + "fr/components/steps", + "fr/components/tabs", + "fr/components/tooltips", + "fr/components/update" + ] + }, + "fr/create/reusable-snippets", + "fr/create/broken-links", + "fr/create/changelogs" + ] + }, + { + "group": "Documenter des API", + "icon": "file-json", + "pages": [ + "fr/api-playground/overview", + "fr/api-playground/openapi-setup", + "fr/api-playground/complex-data-types", + "fr/api-playground/adding-sdk-examples", + "fr/api-playground/managing-page-visibility", + "fr/api-playground/multiple-responses", + { + "group": "MDX", + "pages": [ + "fr/api-playground/mdx/configuration", + "fr/api-playground/mdx/authentication" + ] + }, + { + "group": "AsyncAPI", + "pages": [ + "fr/api-playground/asyncapi/setup", + "fr/api-playground/asyncapi/playground" + ] + }, + "fr/api-playground/troubleshooting" + ] + }, + { + "group": "Déployer", + "icon": "boxes", + "pages": [ + "fr/deploy/deployments", + "fr/deploy/preview-deployments", + { + "group": "Sous-répertoire personnalisé", + "pages": [ + "fr/deploy/cloudflare", + "fr/deploy/route53-cloudfront", + "fr/deploy/vercel", + "fr/deploy/reverse-proxy", + "fr/deploy/csp-configuration" + ] + }, + "fr/deploy/authentication-setup", + "fr/deploy/personalization-setup", + "fr/deploy/monorepo", + "fr/deploy/ci", + "fr/deploy/github", + "fr/deploy/gitlab" + ] + }, + { + "group": "Optimiser", + "icon": "wrench", + "pages": [ + { + "group": "IA", + "pages": [ + "fr/ai/assistant", + "fr/ai/agent", + "fr/ai/llmstxt", + "fr/ai/contextual-menu", + "fr/ai/model-context-protocol", + "fr/ai/markdown-export" + ] + }, + { + "group": "Analyses", + "pages": [ + "fr/insights/overview", + "fr/insights/feedback" + ] + }, + "fr/optimize/seo", + "fr/optimize/pdf-exports", + { + "group": "Intégrations", + "pages": [ + { + "group": "Analytics", + "pages": [ + "fr/integrations/analytics/overview", + "fr/integrations/analytics/amplitude", + "fr/integrations/analytics/clearbit", + "fr/integrations/analytics/fathom", + "fr/integrations/analytics/google-analytics", + "fr/integrations/analytics/google-tag-manager", + "fr/integrations/analytics/heap", + "fr/integrations/analytics/hightouch", + "fr/integrations/analytics/hotjar", + "fr/integrations/analytics/logrocket", + "fr/integrations/analytics/mixpanel", + "fr/integrations/analytics/pirsch", + "fr/integrations/analytics/plausible", + "fr/integrations/analytics/posthog", + "fr/integrations/analytics/segment" + ] + }, + { + "group": "SDK", + "pages": [ + "fr/integrations/sdks/speakeasy", + "fr/integrations/sdks/stainless" + ] + }, + { + "group": "Assistance", + "pages": [ + "fr/integrations/support/overview", + "fr/integrations/support/intercom", + "fr/integrations/support/front" + ] + }, + { + "group": "Confidentialité", + "pages": [ + "fr/integrations/privacy/overview", + "fr/integrations/privacy/osano" + ] + } + ] + } + ] + } ] }, { - "group": "Document APIs", - "icon": "file-json", - "pages": [ - "api-playground/overview", - "api-playground/openapi-setup", - "api-playground/complex-data-types", - "api-playground/adding-sdk-examples", - "api-playground/managing-page-visibility", - "api-playground/multiple-responses", + "tab": "Guides", + "groups": [ + { + "group": "IA", + "icon": "bot", + "pages": [ + "fr/guides/automate-agent", + "fr/guides/geo", + "fr/guides/claude-code", + "fr/guides/cursor", + "fr/guides/windsurf" + ] + }, { - "group": "MDX", + "group": "Documentation de l'API", + "icon": "file-json", "pages": [ - "api-playground/mdx/configuration", - "api-playground/mdx/authentication" + "fr/guides/migrating-from-mdx" ] }, { - "group": "AsyncAPI", + "group": "Bonnes pratiques", + "icon": "trophy", "pages": [ - "api-playground/asyncapi/setup", - "api-playground/asyncapi/playground" + "fr/guides/accessibility", + "fr/guides/content-types", + "fr/guides/improving-docs", + "fr/guides/maintenance", + "fr/guides/media", + "fr/guides/navigation", + "fr/guides/seo", + "fr/guides/style-and-tone", + "fr/guides/understand-your-audience" ] }, - "api-playground/troubleshooting" + { + "group": "Git", + "icon": "git-merge", + "pages": [ + "fr/guides/git-concepts", + "fr/guides/branches" + ] + } ] }, { - "group": "Deploy", - "icon": "boxes", - "pages": [ - "deploy/deployments", - "deploy/preview-deployments", - { - "group": "Custom subdirectory", - "pages": [ - "deploy/cloudflare", - "deploy/route53-cloudfront", - "deploy/vercel", - "deploy/reverse-proxy", - "deploy/csp-configuration" - ] - }, - "deploy/authentication-setup", - "deploy/personalization-setup", - "deploy/monorepo", - "deploy/ci", - "deploy/github", - "deploy/gitlab" + "tab": "Référence de l'API", + "groups": [ + { + "group": "référence de l'API", + "icon": "file-json", + "pages": [ + "fr/api/introduction" + ] + }, + { + "group": "Admin", + "icon": "activity", + "pages": [ + "fr/api/update/trigger", + "fr/api/update/status" + ] + }, + { + "group": "Agent", + "icon": "pen-line", + "pages": [ + "fr/api/agent/create-agent-job", + "fr/api/agent/get-agent-job", + "fr/api/agent/get-all-jobs" + ] + }, + { + "group": "Assistant", + "icon": "bot-message-square", + "pages": [ + "fr/api/assistant/create-assistant-message", + "fr/api/assistant/search" + ] + } ] }, { - "group": "Optimize", - "icon": "wrench", - "pages": [ + "tab": "Journal des modifications", + "groups": [ { - "group": "AI", + "group": "Journal des modifications", + "icon": "calendar", + "pages": [ + "fr/changelog" + ] + } + ] + } + ], + "language": "fr" + }, + { + "tabs": [ + { + "tab": "Documentación", + "groups": [ + { + "group": "Comenzar", + "icon": "rocket", + "pages": [ + "es/index", + "es/quickstart", + "es/installation", + "es/editor", + "es/ai-native", + "es/migration" + ] + }, + { + "group": "Organizar", + "icon": "map", "pages": [ - "ai/assistant", - "ai/agent", - "ai/llmstxt", - "ai/contextual-menu", - "ai/model-context-protocol", - "ai/markdown-export" + "es/organize/settings", + "es/organize/navigation", + "es/organize/pages", + "es/organize/hidden-pages" ] }, { - "group": "Insights", + "group": "Personalizar", + "icon": "paint-bucket", "pages": [ - "insights/overview", - "insights/feedback" + "es/customize/custom-domain", + "es/customize/themes", + "es/customize/fonts", + "es/customize/custom-scripts", + "es/customize/react-components", + { + "group": "Acceso al dashboard", + "pages": [ + "es/dashboard/sso", + "es/dashboard/permissions", + "es/dashboard/roles" + ] + }, + "es/customize/custom-404-page" ] }, - "optimize/seo", - "optimize/pdf-exports", { - "group": "Integrations", + "group": "Crear contenido", + "icon": "pen-line", "pages": [ + "es/create/text", + "es/create/code", + "es/create/image-embeds", + "es/create/files", + "es/create/list-table", { - "group": "Analytics", + "group": "Componentes", "pages": [ - "integrations/analytics/overview", - "integrations/analytics/amplitude", - "integrations/analytics/clearbit", - "integrations/analytics/fathom", - "integrations/analytics/google-analytics", - "integrations/analytics/google-tag-manager", - "integrations/analytics/heap", - "integrations/analytics/hightouch", - "integrations/analytics/hotjar", - "integrations/analytics/logrocket", - "integrations/analytics/mixpanel", - "integrations/analytics/pirsch", - "integrations/analytics/plausible", - "integrations/analytics/posthog", - "integrations/analytics/segment" + "es/components/accordions", + "es/components/banner", + "es/components/callouts", + "es/components/cards", + "es/components/code-groups", + "es/components/columns", + "es/components/examples", + "es/components/expandables", + "es/components/fields", + "es/components/frames", + "es/components/icons", + "es/components/mermaid-diagrams", + "es/components/panel", + "es/components/responses", + "es/components/steps", + "es/components/tabs", + "es/components/tooltips", + "es/components/update" ] }, + "es/create/reusable-snippets", + "es/create/broken-links", + "es/create/changelogs" + ] + }, + { + "group": "Documentar APIs", + "icon": "file-json", + "pages": [ + "es/api-playground/overview", + "es/api-playground/openapi-setup", + "es/api-playground/complex-data-types", + "es/api-playground/adding-sdk-examples", + "es/api-playground/managing-page-visibility", + "es/api-playground/multiple-responses", { - "group": "SDKs", + "group": "MDX", "pages": [ - "integrations/sdks/speakeasy", - "integrations/sdks/stainless" + "es/api-playground/mdx/configuration", + "es/api-playground/mdx/authentication" ] }, { - "group": "Support", + "group": "AsyncAPI", "pages": [ - "integrations/support/overview", - "integrations/support/intercom", - "integrations/support/front" + "es/api-playground/asyncapi/setup", + "es/api-playground/asyncapi/playground" ] }, + "es/api-playground/troubleshooting" + ] + }, + { + "group": "Implementar", + "icon": "boxes", + "pages": [ + "es/deploy/deployments", + "es/deploy/preview-deployments", { - "group": "Privacy", + "group": "Subdirectorio personalizado", "pages": [ - "integrations/privacy/overview", - "integrations/privacy/osano" + "es/deploy/cloudflare", + "es/deploy/route53-cloudfront", + "es/deploy/vercel", + "es/deploy/reverse-proxy", + "es/deploy/csp-configuration" + ] + }, + "es/deploy/authentication-setup", + "es/deploy/personalization-setup", + "es/deploy/monorepo", + "es/deploy/ci", + "es/deploy/github", + "es/deploy/gitlab" + ] + }, + { + "group": "Optimizar", + "icon": "wrench", + "pages": [ + { + "group": "IA", + "pages": [ + "es/ai/assistant", + "es/ai/agent", + "es/ai/llmstxt", + "es/ai/contextual-menu", + "es/ai/model-context-protocol", + "es/ai/markdown-export" + ] + }, + { + "group": "Información detallada", + "pages": [ + "es/insights/overview", + "es/insights/feedback" + ] + }, + "es/optimize/seo", + "es/optimize/pdf-exports", + { + "group": "Integraciones", + "pages": [ + { + "group": "Analytics", + "pages": [ + "es/integrations/analytics/overview", + "es/integrations/analytics/amplitude", + "es/integrations/analytics/clearbit", + "es/integrations/analytics/fathom", + "es/integrations/analytics/google-analytics", + "es/integrations/analytics/google-tag-manager", + "es/integrations/analytics/heap", + "es/integrations/analytics/hightouch", + "es/integrations/analytics/hotjar", + "es/integrations/analytics/logrocket", + "es/integrations/analytics/mixpanel", + "es/integrations/analytics/pirsch", + "es/integrations/analytics/plausible", + "es/integrations/analytics/posthog", + "es/integrations/analytics/segment" + ] + }, + { + "group": "SDK", + "pages": [ + "es/integrations/sdks/speakeasy", + "es/integrations/sdks/stainless" + ] + }, + { + "group": "Soporte", + "pages": [ + "es/integrations/support/overview", + "es/integrations/support/intercom", + "es/integrations/support/front" + ] + }, + { + "group": "Privacidad", + "pages": [ + "es/integrations/privacy/overview", + "es/integrations/privacy/osano" + ] + } ] } ] } ] - } - ] - }, - { - "tab": "Guides", - "groups": [ - { - "group": "AI", - "icon": "bot", - "pages": [ - "guides/automate-agent", - "guides/geo", - "guides/claude-code", - "guides/cursor", - "guides/windsurf" - ] }, { - "group": "API docs", - "icon": "file-json", - "pages": [ - "guides/migrating-from-mdx" + "tab": "Guías", + "groups": [ + { + "group": "IA", + "icon": "bot", + "pages": [ + "es/guides/automate-agent", + "es/guides/geo", + "es/guides/claude-code", + "es/guides/cursor", + "es/guides/windsurf" + ] + }, + { + "group": "Documentación de la API", + "icon": "file-json", + "pages": [ + "es/guides/migrating-from-mdx" + ] + }, + { + "group": "Mejores prácticas", + "icon": "trophy", + "pages": [ + "es/guides/accessibility", + "es/guides/content-types", + "es/guides/improving-docs", + "es/guides/maintenance", + "es/guides/media", + "es/guides/navigation", + "es/guides/seo", + "es/guides/style-and-tone", + "es/guides/understand-your-audience" + ] + }, + { + "group": "Git", + "icon": "git-merge", + "pages": [ + "es/guides/git-concepts", + "es/guides/branches" + ] + } ] }, { - "group": "Best practices", - "icon": "trophy", - "pages": [ - "guides/accessibility", - "guides/content-types", - "guides/improving-docs", - "guides/maintenance", - "guides/media", - "guides/navigation", - "guides/seo", - "guides/style-and-tone", - "guides/understand-your-audience" + "tab": "Referencia de la API", + "groups": [ + { + "group": "Referencia de la API", + "icon": "file-json", + "pages": [ + "es/api/introduction" + ] + }, + { + "group": "Administrador", + "icon": "activity", + "pages": [ + "es/api/update/trigger", + "es/api/update/status" + ] + }, + { + "group": "Agente", + "icon": "pen-line", + "pages": [ + "es/api/agent/create-agent-job", + "es/api/agent/get-agent-job", + "es/api/agent/get-all-jobs" + ] + }, + { + "group": "assistant", + "icon": "bot-message-square", + "pages": [ + "es/api/assistant/create-assistant-message", + "es/api/assistant/search" + ] + } ] }, { - "group": "Git", - "icon": "git-merge", - "pages": [ - "guides/git-concepts", - "guides/branches" + "tab": "Cambios", + "groups": [ + { + "group": "Cambios", + "icon": "calendar", + "pages": [ + "es/changelog" + ] + } ] } - ] + ], + "language": "es" }, { - "tab": "API Reference", - "groups": [ + "tabs": [ { - "group": "API reference", - "icon": "file-json", - "pages": [ - "api/introduction" + "tab": "文档", + "groups": [ + { + "group": "开始使用", + "icon": "rocket", + "pages": [ + "zh/index", + "zh/quickstart", + "zh/installation", + "zh/editor", + "zh/ai-native", + "zh/migration" + ] + }, + { + "group": "组织", + "icon": "map", + "pages": [ + "zh/organize/settings", + "zh/organize/navigation", + "zh/organize/pages", + "zh/organize/hidden-pages" + ] + }, + { + "group": "自定义", + "icon": "paint-bucket", + "pages": [ + "zh/customize/custom-domain", + "zh/customize/themes", + "zh/customize/fonts", + "zh/customize/custom-scripts", + "zh/customize/react-components", + { + "group": "控制台访问", + "pages": [ + "zh/dashboard/sso", + "zh/dashboard/permissions", + "zh/dashboard/roles" + ] + }, + "zh/customize/custom-404-page" + ] + }, + { + "group": "创建对象", + "icon": "pen-line", + "pages": [ + "zh/create/text", + "zh/create/code", + "zh/create/image-embeds", + "zh/create/files", + "zh/create/list-table", + { + "group": "组件", + "pages": [ + "zh/components/accordions", + "zh/components/banner", + "zh/components/callouts", + "zh/components/cards", + "zh/components/code-groups", + "zh/components/columns", + "zh/components/examples", + "zh/components/expandables", + "zh/components/fields", + "zh/components/frames", + "zh/components/icons", + "zh/components/mermaid-diagrams", + "zh/components/panel", + "zh/components/responses", + "zh/components/steps", + "zh/components/tabs", + "zh/components/tooltips", + "zh/components/update" + ] + }, + "zh/create/reusable-snippets", + "zh/create/broken-links", + "zh/create/changelogs" + ] + }, + { + "group": "文档 API", + "icon": "file-json", + "pages": [ + "zh/api-playground/overview", + "zh/api-playground/openapi-setup", + "zh/api-playground/complex-data-types", + "zh/api-playground/adding-sdk-examples", + "zh/api-playground/managing-page-visibility", + "zh/api-playground/multiple-responses", + { + "group": "MDX", + "pages": [ + "zh/api-playground/mdx/configuration", + "zh/api-playground/mdx/authentication" + ] + }, + { + "group": "AsyncAPI", + "pages": [ + "zh/api-playground/asyncapi/setup", + "zh/api-playground/asyncapi/playground" + ] + }, + "zh/api-playground/troubleshooting" + ] + }, + { + "group": "部署", + "icon": "boxes", + "pages": [ + "zh/deploy/deployments", + "zh/deploy/preview-deployments", + { + "group": "自定义子目录", + "pages": [ + "zh/deploy/cloudflare", + "zh/deploy/route53-cloudfront", + "zh/deploy/vercel", + "zh/deploy/reverse-proxy", + "zh/deploy/csp-configuration" + ] + }, + "zh/deploy/authentication-setup", + "zh/deploy/personalization-setup", + "zh/deploy/monorepo", + "zh/deploy/ci", + "zh/deploy/github", + "zh/deploy/gitlab" + ] + }, + { + "group": "优化", + "icon": "wrench", + "pages": [ + { + "group": "人工智能", + "pages": [ + "zh/ai/assistant", + "zh/ai/agent", + "zh/ai/llmstxt", + "zh/ai/contextual-menu", + "zh/ai/model-context-protocol", + "zh/ai/markdown-export" + ] + }, + { + "group": "洞察", + "pages": [ + "zh/insights/overview", + "zh/insights/feedback" + ] + }, + "zh/optimize/seo", + "zh/optimize/pdf-exports", + { + "group": "集成", + "pages": [ + { + "group": "Analytics", + "pages": [ + "zh/integrations/analytics/overview", + "zh/integrations/analytics/amplitude", + "zh/integrations/analytics/clearbit", + "zh/integrations/analytics/fathom", + "zh/integrations/analytics/google-analytics", + "zh/integrations/analytics/google-tag-manager", + "zh/integrations/analytics/heap", + "zh/integrations/analytics/hightouch", + "zh/integrations/analytics/hotjar", + "zh/integrations/analytics/logrocket", + "zh/integrations/analytics/mixpanel", + "zh/integrations/analytics/pirsch", + "zh/integrations/analytics/plausible", + "zh/integrations/analytics/posthog", + "zh/integrations/analytics/segment" + ] + }, + { + "group": "SDK", + "pages": [ + "zh/integrations/sdks/speakeasy", + "zh/integrations/sdks/stainless" + ] + }, + { + "group": "支持", + "pages": [ + "zh/integrations/support/overview", + "zh/integrations/support/intercom", + "zh/integrations/support/front" + ] + }, + { + "group": "隐私", + "pages": [ + "zh/integrations/privacy/overview", + "zh/integrations/privacy/osano" + ] + } + ] + } + ] + } ] }, { - "group": "Admin", - "icon": "activity", - "pages": [ - "api/update/trigger", - "api/update/status" + "tab": "指南", + "groups": [ + { + "group": "人工智能", + "icon": "bot", + "pages": [ + "zh/guides/automate-agent", + "zh/guides/geo", + "zh/guides/claude-code", + "zh/guides/cursor", + "zh/guides/windsurf" + ] + }, + { + "group": "API 文档", + "icon": "file-json", + "pages": [ + "zh/guides/migrating-from-mdx" + ] + }, + { + "group": "最佳实践", + "icon": "trophy", + "pages": [ + "zh/guides/accessibility", + "zh/guides/content-types", + "zh/guides/improving-docs", + "zh/guides/maintenance", + "zh/guides/media", + "zh/guides/navigation", + "zh/guides/seo", + "zh/guides/style-and-tone", + "zh/guides/understand-your-audience" + ] + }, + { + "group": "Git", + "icon": "git-merge", + "pages": [ + "zh/guides/git-concepts", + "zh/guides/branches" + ] + } ] }, { - "group": "Agent", - "icon": "pen-line", - "pages": [ - "api/agent/create-agent-job", - "api/agent/get-agent-job", - "api/agent/get-all-jobs" + "tab": "API 参考", + "groups": [ + { + "group": "API 参考", + "icon": "file-json", + "pages": [ + "zh/api/introduction" + ] + }, + { + "group": "管理员", + "icon": "activity", + "pages": [ + "zh/api/update/trigger", + "zh/api/update/status" + ] + }, + { + "group": "代理", + "icon": "pen-line", + "pages": [ + "zh/api/agent/create-agent-job", + "zh/api/agent/get-agent-job", + "zh/api/agent/get-all-jobs" + ] + }, + { + "group": "AI 助手", + "icon": "bot-message-square", + "pages": [ + "zh/api/assistant/create-assistant-message", + "zh/api/assistant/search" + ] + } ] }, { - "group": "Assistant", - "icon": "bot-message-square", - "pages": [ - "api/assistant/create-assistant-message", - "api/assistant/search" - ] - } - ] - }, - { - "tab": "Changelog", - "groups": [ - { - "group": "Changelog", - "icon": "calendar", - "pages": [ - "changelog" + "tab": "更新日志", + "groups": [ + { + "group": "更新日志", + "icon": "calendar", + "pages": [ + "zh/changelog" + ] + } ] } - ] + ], + "language": "zh" } ] },