Skip to content

Commit 31708f7

Browse files
committed
fix #115
1 parent 8b99031 commit 31708f7

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/db/db.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,8 @@ export class Db extends HierarchicalLogger<CommandEventMap> {
728728
defaultId: options?.defaultId,
729729
indexing: options?.indexing as any,
730730
vector: options?.vector,
731+
lexical: options?.lexical,
732+
rerank: options?.rerank,
731733
},
732734
},
733735
};

src/documents/collections/types/filter.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ export type CollectionFilterOps<Elem> = {
6868
$lte?: Elem,
6969
$gt?: Elem,
7070
$gte?: Elem,
71+
$match?: string,
7172
} & (
7273
any[] extends Elem ? CollectionArrayFilterOps<Elem> : EmptyObj
7374
)

0 commit comments

Comments
 (0)