This commit is contained in:
Benjamin Toby 2026-04-18 06:02:43 +01:00
parent fbf3622b18
commit 0a3320ff83
3 changed files with 3 additions and 3 deletions

View File

@ -748,7 +748,7 @@ export type ServerQueryObject<T extends object = {
*/ */
fieldName?: string; fieldName?: string;
__query?: { __query?: {
[key in keyof T]: Omit<ServerQueryObject<T>, "__query">; [key: string]: Omit<ServerQueryObject<T>, "__query">;
}; };
vector?: boolean; vector?: boolean;
/** /**

View File

@ -1,6 +1,6 @@
{ {
"name": "@moduletrace/bun-sqlite", "name": "@moduletrace/bun-sqlite",
"version": "1.0.42", "version": "1.0.43",
"description": "SQLite manager for Bun", "description": "SQLite manager for Bun",
"author": "Benjamin Toby", "author": "Benjamin Toby",
"main": "dist/index.js", "main": "dist/index.js",

View File

@ -829,7 +829,7 @@ export type ServerQueryObject<
*/ */
fieldName?: string; fieldName?: string;
__query?: { __query?: {
[key in keyof T]: Omit<ServerQueryObject<T>, "__query">; [key: string]: Omit<ServerQueryObject<T>, "__query">;
}; };
vector?: boolean; vector?: boolean;
/** /**