update API reports for search-backend-node

Signed-off-by: Brian Phillips <28457+brianphillips@users.noreply.github.com>
This commit is contained in:
Brian Phillips
2024-05-15 11:25:48 -05:00
parent 5b6f979d86
commit c31ad6bee3
@@ -32,20 +32,21 @@ export const searchIndexRegistryExtensionPoint: ExtensionPoint<SearchIndexRegist
// @alpha
export interface SearchIndexService {
build(options: SearchIndexServiceBuildOptions): void;
getDocumentTypes(): Record<string, DocumentTypeInfo>;
start(options: SearchIndexServiceStartOptions): Promise<void>;
start(): Promise<void>;
stop(): Promise<void>;
}
// @alpha
export const searchIndexServiceRef: ServiceRef<SearchIndexService, 'plugin'>;
// @alpha
export type SearchIndexServiceStartOptions = {
export type SearchIndexServiceBuildOptions = {
searchEngine: SearchEngine;
collators: RegisterCollatorParameters[];
decorators: RegisterDecoratorParameters[];
};
// @alpha
export const searchIndexServiceRef: ServiceRef<SearchIndexService, 'plugin'>;
// (No @packageDocumentation comment for this package)
```