This commit is contained in:
Benjamin Toby 2026-04-04 16:49:01 +01:00
parent 1a96c95f7c
commit 1a52f1927f
4 changed files with 5 additions and 1 deletions

View File

@ -102,6 +102,8 @@ export declare const BUN_SQLITE_DATATYPES: readonly [{
readonly value: "INTEGER";
}, {
readonly value: "BLOB";
}, {
readonly value: "REAL";
}];
export type BUN_SQLITE_FieldSchemaType = {
id?: number | string;

1
dist/types/index.js vendored
View File

@ -29,6 +29,7 @@ export const BUN_SQLITE_DATATYPES = [
{ value: "TEXT" },
{ value: "INTEGER" },
{ value: "BLOB" },
{ value: "REAL" },
];
export const ServerQueryOperators = ["AND", "OR"];
export const ServerQueryEqualities = [

View File

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

View File

@ -103,6 +103,7 @@ export const BUN_SQLITE_DATATYPES = [
{ value: "TEXT" },
{ value: "INTEGER" },
{ value: "BLOB" },
{ value: "REAL" },
] as const;
export type BUN_SQLITE_FieldSchemaType = {