From 8be6c23b6c4fe11bb42bf671840ce0ae89731112 Mon Sep 17 00:00:00 2001 From: Federico Morreale Date: Thu, 5 Oct 2023 17:22:19 +0200 Subject: [PATCH] fix: add maxTermLength to config.d.ts Signed-off-by: Federico Morreale --- plugins/search-backend/config.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/search-backend/config.d.ts b/plugins/search-backend/config.d.ts index 3dbdf78dfe..25ae59d273 100644 --- a/plugins/search-backend/config.d.ts +++ b/plugins/search-backend/config.d.ts @@ -22,6 +22,11 @@ export interface Config { */ maxPageLimit?: number; + /** + * Sets the maximum term length for the search string. Defaults to 100. + */ + maxTermLength?: number; + /** * Options related to the search integration with the Backstage permissions system */