Skip to content

Commit 9d4e134

Browse files
committed
commit updated generated files
We currently don't rebuild them in CI, so it is useful to commit the _generrated files
1 parent 0e592cb commit 9d4e134

File tree

3 files changed

+7
-230
lines changed

3 files changed

+7
-230
lines changed

src/component/_generated/api.d.ts

Lines changed: 0 additions & 225 deletions
This file was deleted.

src/component/_generated/api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import type * as lib_tupleKey from "../lib/tupleKey.js";
2222
import type * as lib_xxhash from "../lib/xxhash.js";
2323
import type * as query from "../query.js";
2424
import type * as streams_cellRange from "../streams/cellRange.js";
25+
import type * as streams_constants from "../streams/constants.js";
2526
import type * as streams_databaseRange from "../streams/databaseRange.js";
2627
import type * as streams_filterKeyRange from "../streams/filterKeyRange.js";
2728
import 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;

src/component/_generated/component.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
};

0 commit comments

Comments
 (0)