From 31addbbdda76b473cef3e4d649311f10b8428b24 Mon Sep 17 00:00:00 2001 From: Raffaello De Pieri Date: Thu, 1 Aug 2024 14:17:40 +0100 Subject: [PATCH] revert(StackOverflowQuestionsRequestParams): revert signature removing unecessary type in StackOverflowQuestionsRequestParams Signed-off-by: Raffaello De Pieri --- .../src/collators/StackOverflowQuestionsCollatorFactory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/search-backend-module-stack-overflow-collator/src/collators/StackOverflowQuestionsCollatorFactory.ts b/plugins/search-backend-module-stack-overflow-collator/src/collators/StackOverflowQuestionsCollatorFactory.ts index e8c7b41781..33ceb4f870 100644 --- a/plugins/search-backend-module-stack-overflow-collator/src/collators/StackOverflowQuestionsCollatorFactory.ts +++ b/plugins/search-backend-module-stack-overflow-collator/src/collators/StackOverflowQuestionsCollatorFactory.ts @@ -40,7 +40,7 @@ export interface StackOverflowDocument extends IndexableDocument { * @public */ export type StackOverflowQuestionsRequestParams = { - [key: string]: string | string[] | number | null; + [key: string]: string | string[] | number; }; /**