Implement tsvector search support

This commit is contained in:
PrivateGER 2025-02-19 14:55:50 +01:00
parent d67eefaaf5
commit d82c8e8e97
No known key found for this signature in database
3 changed files with 63 additions and 1 deletions

View file

@ -254,7 +254,7 @@ export type Config = {
};
};
export type FulltextSearchProvider = 'sqlLike' | 'sqlPgroonga' | 'meilisearch';
export type FulltextSearchProvider = 'sqlLike' | 'sqlPgroonga' | 'meilisearch' | 'tsvector';
const _filename = fileURLToPath(import.meta.url);
const _dirname = dirname(_filename);