File tree Expand file tree Collapse file tree 3 files changed +7
-230
lines changed
Expand file tree Collapse file tree 3 files changed +7
-230
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import type * as lib_tupleKey from "../lib/tupleKey.js";
2222import type * as lib_xxhash from "../lib/xxhash.js" ;
2323import type * as query from "../query.js" ;
2424import type * as streams_cellRange from "../streams/cellRange.js" ;
25+ import type * as streams_constants from "../streams/constants.js" ;
2526import type * as streams_databaseRange from "../streams/databaseRange.js" ;
2627import type * as streams_filterKeyRange from "../streams/filterKeyRange.js" ;
2728import type * as streams_intersection from "../streams/intersection.js" ;
@@ -51,6 +52,7 @@ const fullApi: ApiFromModules<{
5152 "lib/xxhash" : typeof lib_xxhash ;
5253 query : typeof query ;
5354 "streams/cellRange" : typeof streams_cellRange ;
55+ "streams/constants" : typeof streams_constants ;
5456 "streams/databaseRange" : typeof streams_databaseRange ;
5557 "streams/filterKeyRange" : typeof streams_filterKeyRange ;
5658 "streams/intersection" : typeof streams_intersection ;
Original file line number Diff line number Diff line change @@ -147,6 +147,11 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
147147 "query" ,
148148 "internal" ,
149149 {
150+ filtering : Array < {
151+ filterKey : string ;
152+ filterValue : string | number | boolean | null | bigint ;
153+ occur : "should" | "must" ;
154+ } > ;
150155 levelMod : number ;
151156 logLevel : "DEBUG" | "INFO" | "WARN" | "ERROR" ;
152157 maxDistance ?: number ;
@@ -155,11 +160,6 @@ export type ComponentApi<Name extends string | undefined = string | undefined> =
155160 minLevel : number ;
156161 nextCursor ?: string ;
157162 point : { latitude : number ; longitude : number } ;
158- filtering : Array < {
159- filterKey : string ;
160- filterValue : string | number | boolean | null | bigint ;
161- occur : "should" | "must" ;
162- } > ;
163163 sorting : {
164164 interval : { endExclusive ?: number ; startInclusive ?: number } ;
165165 } ;
You can’t perform that action at this time.
0 commit comments