diff --git a/dist/types/index.d.ts b/dist/types/index.d.ts index dfe5fce..e4eaf1c 100644 --- a/dist/types/index.d.ts +++ b/dist/types/index.d.ts @@ -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; diff --git a/dist/types/index.js b/dist/types/index.js index 391067f..d87c723 100644 --- a/dist/types/index.js +++ b/dist/types/index.js @@ -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 = [ diff --git a/package.json b/package.json index 2add75d..59024b5 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/types/index.ts b/src/types/index.ts index 6ab280d..0f963b6 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -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 = {