This commit is contained in:
Benjamin Toby 2026-04-02 07:33:04 +01:00
parent 7d320f26ef
commit eb41e95bd3
4 changed files with 5 additions and 1 deletions

View File

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

1
dist/types/index.js vendored
View File

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

View File

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

View File

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