From 0ee3278085420b2406fb34f804d2fea25e870d39 Mon Sep 17 00:00:00 2001 From: Savvas Papageorgiadis <50584606+papsavas@users.noreply.github.com> Date: Mon, 20 Nov 2023 20:41:44 +0200 Subject: [PATCH] chore(search): export languages (#2651) --- packages/search/lib/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/search/lib/index.ts b/packages/search/lib/index.ts index 296136021e..0f84c11466 100644 --- a/packages/search/lib/index.ts +++ b/packages/search/lib/index.ts @@ -1,5 +1,5 @@ export { default } from './commands'; -export { RediSearchSchema, SchemaFieldTypes, SchemaTextFieldPhonetics, SearchReply, VectorAlgorithms } from './commands'; -export { AggregateSteps, AggregateGroupByReducers } from './commands/AGGREGATE'; +export { RediSearchSchema, RedisSearchLanguages, SchemaFieldTypes, SchemaTextFieldPhonetics, SearchReply, VectorAlgorithms } from './commands'; +export { AggregateGroupByReducers, AggregateSteps } from './commands/AGGREGATE'; export { SearchOptions } from './commands/SEARCH';