Compare commits

...

2 Commits

Author SHA1 Message Date
7e972a39f9
v1.5.4 2023-07-15 02:11:25 +03:00
d19aec3371
Fix typings & re-export 2023-07-15 02:10:56 +03:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
export { MessageBroker, BrokerOptions } from './src/MessageBroker.js'; export { MessageBroker, BrokerOptions } from './src/MessageBroker.js';
export { MariaDB, MariaOptions } from './src/MariaDB.js'; export { MariaDB, MariaOptions } from './src/MariaDB.js';
export { MongoDB, MongoOptions } from './src/MongoDB.js'; export { MongoDB, MongoOptions } from './src/MongoDB.js';
export { ObjectId, Document, DeleteResult, Collection, Filter } from 'mongodb'; export { ObjectId, Document, DeleteResult, Collection, Filter, UpdateFilter } from 'mongodb';

View File

@ -1,6 +1,6 @@
{ {
"name": "@navy.gif/wrappers", "name": "@navy.gif/wrappers",
"version": "1.5.3", "version": "1.5.4",
"description": "Various wrapper classes I use in my projects", "description": "Various wrapper classes I use in my projects",
"repository": "https://git.corgi.wtf/Navy.gif/wrappers.git", "repository": "https://git.corgi.wtf/Navy.gif/wrappers.git",
"author": "Navy.gif", "author": "Navy.gif",

View File

@ -36,7 +36,7 @@ type MariaError = {
sqlMessage:string sqlMessage:string
} & Error } & Error
type Values = (string | number | (string | number)[] | (string | number)[][])[] type Values = ((string | number | null | boolean) | (string | number | null | boolean)[] | (string | number | null | boolean)[][])[];
type QueryOptions = { type QueryOptions = {
node?: string, node?: string,
timeout?: number, timeout?: number,