From befbc9f8680b1bacb8ad7c8de86bb3ecdfa61cd0 Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Wed, 7 Jan 2026 16:47:04 -0600 Subject: [PATCH] feat(api): enable tag-based generation for clustered Add useTagBasedGeneration: true to clustered config to properly generate tag-based API documentation pages for the management API, consistent with cloud-dedicated and cloud-serverless configurations. --- api-docs/scripts/generate-openapi-articles.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/api-docs/scripts/generate-openapi-articles.ts b/api-docs/scripts/generate-openapi-articles.ts index 26fae9013..ba8b6f910 100644 --- a/api-docs/scripts/generate-openapi-articles.ts +++ b/api-docs/scripts/generate-openapi-articles.ts @@ -755,10 +755,7 @@ const productConfigs: ProductConfigMap = { useTagBasedGeneration: true, }, 'cloud-serverless': { - specFile: path.join( - API_DOCS_ROOT, - 'influxdb3/cloud-serverless/v2/ref.yml' - ), + specFile: path.join(API_DOCS_ROOT, 'influxdb3/cloud-serverless/v2/ref.yml'), pagesDir: path.join(DOCS_ROOT, 'content/influxdb3/cloud-serverless'), description: 'InfluxDB Cloud Serverless', menuKey: 'influxdb3_cloud_serverless', @@ -774,6 +771,7 @@ const productConfigs: ProductConfigMap = { description: 'InfluxDB Clustered', menuKey: 'influxdb3_clustered', skipParentMenu: true, + useTagBasedGeneration: true, }, };