packages: regenerate all API reports with warnings

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-07-14 14:16:08 +02:00
parent d669e75d95
commit d9ce823b00
82 changed files with 3481 additions and 12 deletions
+15
View File
@@ -11,13 +11,18 @@ import { default as lunr_2 } from 'lunr';
import { SearchQuery } from '@backstage/search-common';
import { SearchResultSet } from '@backstage/search-common';
// Warning: (ae-missing-release-tag) "IndexBuilder" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export class IndexBuilder {
// Warning: (ae-forgotten-export) The symbol "IndexBuilderOptions" needs to be exported by the entry point index.d.ts
constructor({ logger, searchEngine }: IndexBuilderOptions);
// Warning: (ae-forgotten-export) The symbol "RegisterCollatorParameters" needs to be exported by the entry point index.d.ts
addCollator({
collator,
defaultRefreshIntervalSeconds,
}: RegisterCollatorParameters): void;
// Warning: (ae-forgotten-export) The symbol "RegisterDecoratorParameters" needs to be exported by the entry point index.d.ts
addDecorator({ decorator }: RegisterDecoratorParameters): void;
build(): Promise<{
scheduler: Scheduler;
@@ -26,6 +31,8 @@ export class IndexBuilder {
getSearchEngine(): SearchEngine;
}
// Warning: (ae-missing-release-tag) "LunrSearchEngine" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export class LunrSearchEngine implements SearchEngine {
constructor({ logger }: { logger: Logger_2 });
@@ -39,12 +46,18 @@ export class LunrSearchEngine implements SearchEngine {
protected lunrIndices: Record<string, lunr_2.Index>;
// (undocumented)
query(query: SearchQuery): Promise<SearchResultSet>;
// Warning: (ae-forgotten-export) The symbol "LunrQueryTranslator" needs to be exported by the entry point index.d.ts
//
// (undocumented)
setTranslator(translator: LunrQueryTranslator): void;
// Warning: (ae-forgotten-export) The symbol "QueryTranslator" needs to be exported by the entry point index.d.ts
//
// (undocumented)
protected translator: QueryTranslator;
}
// Warning: (ae-missing-release-tag) "Scheduler" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export class Scheduler {
constructor({ logger }: { logger: Logger_2 });
@@ -53,6 +66,8 @@ export class Scheduler {
stop(): void;
}
// Warning: (ae-missing-release-tag) "SearchEngine" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export interface SearchEngine {
index(type: string, documents: IndexableDocument[]): Promise<void>;