feat(core): introduced lucene style search

This commit is contained in:
2025-04-06 13:49:56 +00:00
parent 7a08700451
commit 408b2cce4a
24 changed files with 9080 additions and 5317 deletions

View File

@@ -0,0 +1,5 @@
import * as plugins from './plugins.js';
export const getNewUniqueId = async (prefixArg?: string) => {
return plugins.smartunique.uni(prefixArg);
};