From 40b643b2ca0f0ad84e66afdcbaf9e7d6f307535f Mon Sep 17 00:00:00 2001 From: Shivam Kumar Date: Thu, 26 Feb 2026 18:14:15 +0530 Subject: [PATCH 1/3] SCAL-298466-2-test changed branch name --- scripts/Converter/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Converter/index.ts b/scripts/Converter/index.ts index 05a35fb45..f6091ddf8 100644 --- a/scripts/Converter/index.ts +++ b/scripts/Converter/index.ts @@ -1035,7 +1035,7 @@ const main = async () => { cliOptions.typeDocFilePath = cliOptions.typeDocFilePath.replace( '{branch}', - cliOptions.branch, + 'SCAL-298466', ); console.log('Script options : ', cliOptions); From 8fd0e53d0859fa13ebbc39e4ca708a5539e87efe Mon Sep 17 00:00:00 2001 From: Shivam Kumar Date: Thu, 26 Feb 2026 23:23:10 +0530 Subject: [PATCH 2/3] SCAL-298466-2 removed the bug of script generation --- scripts/Converter/index.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/Converter/index.ts b/scripts/Converter/index.ts index f6091ddf8..907f852b0 100644 --- a/scripts/Converter/index.ts +++ b/scripts/Converter/index.ts @@ -758,7 +758,7 @@ class TypeDocParser { let content = ''; if (node.indexSignature?.parameters) { content += 'Index Signature Parameters\n\n'; - node.indexSignature.parameters + content += node.indexSignature.parameters .map(this.convertTypeDocNode) .join('\n\n'); } else if (node.signatures) { @@ -771,7 +771,11 @@ class TypeDocParser { }); } else if (node.children) { content += 'Parameters\n\n'; - content += node.children.map(this.convertTypeDocNode).join('\n\n'); + content += node.children + .map((child) => + this.handleParameterNode(child as ParameterNode), + ) + .join('\n\n'); } return content; From c614f8b1d2460ff196a4b4f22d5d05b301300660 Mon Sep 17 00:00:00 2001 From: Shivam Kumar Date: Thu, 26 Feb 2026 23:46:49 +0530 Subject: [PATCH 3/3] SCAL-298466-2 removed bug for the developer docs site --- scripts/Converter/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Converter/index.ts b/scripts/Converter/index.ts index 907f852b0..8742111e2 100644 --- a/scripts/Converter/index.ts +++ b/scripts/Converter/index.ts @@ -1039,7 +1039,7 @@ const main = async () => { cliOptions.typeDocFilePath = cliOptions.typeDocFilePath.replace( '{branch}', - 'SCAL-298466', + cliOptions.branch, ); console.log('Script options : ', cliOptions);