From b52165efa045ac1974ee8ca11f22746d3cee1b80 Mon Sep 17 00:00:00 2001 From: Mark Banner Date: Thu, 12 Sep 2024 09:42:14 +0100 Subject: [PATCH] Rename return object for the filter function --- components/search/src/search.udl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/search/src/search.udl b/components/search/src/search.udl index 2bddfab2a..5827b8eb5 100644 --- a/components/search/src/search.udl +++ b/components/search/src/search.udl @@ -115,7 +115,7 @@ dictionary SearchEngineDefinition { * Details of the search engines to display to the user, generated as a result * of processing the search configuration. */ -dictionary FilteredSearchEngines { +dictionary RefinedConfig { /// A list of engines, with the default engine first, and the rest in the /// order defined by the configuration. sequence engines; @@ -199,7 +199,7 @@ interface SearchEngineSelector { /// and returns the set of engines and parameters that should be presented /// to the user. [Throws=SearchApiError] - FilteredSearchEngines filter_engine_configuration( + RefinedConfig filter_engine_configuration( SearchUserEnvironment user_environment );