From 455c828c78e4ffb080e517f740582cff54fa744b Mon Sep 17 00:00:00 2001 From: Emma Indal Date: Mon, 24 May 2021 10:28:30 +0200 Subject: [PATCH] update api report Signed-off-by: Emma Indal Signed-off-by: Eric Peterson --- packages/search-common/api-report.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/search-common/api-report.md b/packages/search-common/api-report.md index 76bd937a1c..35a868849d 100644 --- a/packages/search-common/api-report.md +++ b/packages/search-common/api-report.md @@ -15,7 +15,7 @@ export interface DocumentCollator { // @public export interface DocumentDecorator { // (undocumented) - execute(documents: IndexableDocument[]): Promise; + execute(type: string, documents: IndexableDocument[]): Promise; } // @public @@ -41,6 +41,8 @@ export interface SearchQuery { export interface SearchResult { // (undocumented) document: IndexableDocument; + // (undocumented) + type: string; } // @public (undocumented)