From 591dc81ff8ae46956b25e38859b6c89e5b02980d Mon Sep 17 00:00:00 2001 From: Andre Wanlin <67169551+awanlin@users.noreply.github.com> Date: Tue, 10 Jan 2023 13:57:19 -0600 Subject: [PATCH] Update API Report Signed-off-by: Andre Wanlin <67169551+awanlin@users.noreply.github.com> --- plugins/techdocs-node/api-report.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/plugins/techdocs-node/api-report.md b/plugins/techdocs-node/api-report.md index 68a7b80152..12c918a047 100644 --- a/plugins/techdocs-node/api-report.md +++ b/plugins/techdocs-node/api-report.md @@ -54,7 +54,9 @@ export type GeneratorRunOptions = { etag?: string; logger: Logger; logStream?: Writable; - siteName?: string; + siteOptions?: { + name?: string; + }; }; // @public @@ -89,7 +91,9 @@ export const getLocationForEntity: ( // @public export const getMkdocsYml: ( inputDir: string, - siteName?: string, + siteOptions?: { + name?: string; + }, ) => Promise<{ path: string; content: string;