Update readme files and api reports

Co-authored-by: Emma Indal <emma.indahl@gmail.com>
Signed-off-by: Camila Belo <camilaibs@gmail.com>
This commit is contained in:
Camila Belo
2023-03-20 13:16:34 +01:00
parent ab61195ea9
commit 9d66746737
8 changed files with 54 additions and 32 deletions
@@ -3,24 +3,12 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { DocumentCollatorFactory } from '@backstage/plugin-search-common';
import { DocumentDecoratorFactory } from '@backstage/plugin-search-common';
import { DocumentTypeInfo } from '@backstage/plugin-search-common';
import { ExtensionPoint } from '@backstage/backend-plugin-api';
import { RegisterCollatorParameters } from '@backstage/plugin-search-backend-node';
import { RegisterDecoratorParameters } from '@backstage/plugin-search-backend-node';
import { SearchEngine } from '@backstage/plugin-search-common';
import { ServiceRef } from '@backstage/backend-plugin-api';
import { TaskRunner } from '@backstage/backend-tasks';
// @public
export interface RegisterCollatorParameters {
factory: DocumentCollatorFactory;
schedule: TaskRunner;
}
// @public
export interface RegisterDecoratorParameters {
factory: DocumentDecoratorFactory;
}
// @alpha
export interface SearchEngineRegistryExtensionPoint {
+1 -9
View File
@@ -31,7 +31,7 @@ import { createExtensionPoint } from '@backstage/backend-plugin-api';
import {
RegisterCollatorParameters,
RegisterDecoratorParameters,
} from './types';
} from '@backstage/plugin-search-backend-node';
import { IndexBuilder } from './IndexBuilder';
@@ -157,11 +157,3 @@ export const searchIndexRegistryExtensionPoint =
createExtensionPoint<SearchIndexRegistryExtensionPoint>({
id: 'search.index.registry',
});
/**
* @alpha
*/
export type {
RegisterCollatorParameters,
RegisterDecoratorParameters,
} from './types';