From f7e6a2fbc7cd1a7c24016b205a77117e77000b42 Mon Sep 17 00:00:00 2001 From: Nikolas Skoufis Date: Sun, 27 Feb 2022 18:49:59 +1100 Subject: [PATCH] Add updated api report Signed-off-by: Nikolas Skoufis --- plugins/techdocs-backend/api-report.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plugins/techdocs-backend/api-report.md b/plugins/techdocs-backend/api-report.md index 5d106cfafb..28700b245b 100644 --- a/plugins/techdocs-backend/api-report.md +++ b/plugins/techdocs-backend/api-report.md @@ -6,6 +6,7 @@ import { CatalogApi } from '@backstage/catalog-client'; import { Config } from '@backstage/config'; import { DocumentCollator } from '@backstage/search-common'; +import { Entity } from '@backstage/catalog-model'; import express from 'express'; import { GeneratorBuilder } from '@backstage/techdocs-common'; import { Knex } from 'knex'; @@ -51,6 +52,7 @@ export type OutOfTheBoxDeploymentOptions = { database?: Knex; config: Config; cache: PluginCacheManager; + docsBuildStrategy?: DocsBuildStrategy; }; // @public @@ -60,6 +62,7 @@ export type RecommendedDeploymentOptions = { discovery: PluginEndpointDiscovery; config: Config; cache: PluginCacheManager; + docsBuildStrategy?: DocsBuildStrategy; }; // @public @@ -81,4 +84,8 @@ export type TechDocsCollatorOptions = { export { TechDocsDocument }; export * from '@backstage/techdocs-common'; + +// Warnings were encountered during analysis: +// +// src/service/router.d.ts:24:5 - (ae-forgotten-export) The symbol "DocsBuildStrategy" needs to be exported by the entry point index.d.ts ```