Updates
This commit is contained in:
parent
1a96c95f7c
commit
1a52f1927f
2
dist/types/index.d.ts
vendored
2
dist/types/index.d.ts
vendored
@ -102,6 +102,8 @@ export declare const BUN_SQLITE_DATATYPES: readonly [{
|
|||||||
readonly value: "INTEGER";
|
readonly value: "INTEGER";
|
||||||
}, {
|
}, {
|
||||||
readonly value: "BLOB";
|
readonly value: "BLOB";
|
||||||
|
}, {
|
||||||
|
readonly value: "REAL";
|
||||||
}];
|
}];
|
||||||
export type BUN_SQLITE_FieldSchemaType = {
|
export type BUN_SQLITE_FieldSchemaType = {
|
||||||
id?: number | string;
|
id?: number | string;
|
||||||
|
|||||||
1
dist/types/index.js
vendored
1
dist/types/index.js
vendored
@ -29,6 +29,7 @@ export const BUN_SQLITE_DATATYPES = [
|
|||||||
{ value: "TEXT" },
|
{ value: "TEXT" },
|
||||||
{ value: "INTEGER" },
|
{ value: "INTEGER" },
|
||||||
{ value: "BLOB" },
|
{ value: "BLOB" },
|
||||||
|
{ value: "REAL" },
|
||||||
];
|
];
|
||||||
export const ServerQueryOperators = ["AND", "OR"];
|
export const ServerQueryOperators = ["AND", "OR"];
|
||||||
export const ServerQueryEqualities = [
|
export const ServerQueryEqualities = [
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@moduletrace/bun-sqlite",
|
"name": "@moduletrace/bun-sqlite",
|
||||||
"version": "1.0.17",
|
"version": "1.0.18",
|
||||||
"description": "SQLite manager for Bun",
|
"description": "SQLite manager for Bun",
|
||||||
"author": "Benjamin Toby",
|
"author": "Benjamin Toby",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|||||||
@ -103,6 +103,7 @@ export const BUN_SQLITE_DATATYPES = [
|
|||||||
{ value: "TEXT" },
|
{ value: "TEXT" },
|
||||||
{ value: "INTEGER" },
|
{ value: "INTEGER" },
|
||||||
{ value: "BLOB" },
|
{ value: "BLOB" },
|
||||||
|
{ value: "REAL" },
|
||||||
] as const;
|
] as const;
|
||||||
|
|
||||||
export type BUN_SQLITE_FieldSchemaType = {
|
export type BUN_SQLITE_FieldSchemaType = {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user