baja-lite 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/sql.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "baja-lite",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "some util for self",
|
|
5
5
|
"homepage": "https://github.com/void-soul/baja-lite",
|
|
6
6
|
"repository": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@msgpack/msgpack": "3.1.2",
|
|
39
39
|
"@types/request-promise": "4.1.51",
|
|
40
40
|
"axios": "1.11.0",
|
|
41
|
-
"baja-lite-field": "1.4.
|
|
41
|
+
"baja-lite-field": "1.4.20",
|
|
42
42
|
"decimal.js": "10.6.0",
|
|
43
43
|
"html-parse-stringify": "3.0.1",
|
|
44
44
|
"iterare": "1.2.1",
|
package/sql.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ExtensionCodec } from "@msgpack/msgpack";
|
|
2
2
|
import { _columns, _columnsNoId, _def, _deleteState, _fields, _ids, _index, _logicIds, _stateFileName, AField, DBType, EnumMap, FieldOption } from 'baja-lite-field';
|
|
3
|
+
import pino from 'pino';
|
|
3
4
|
import { XML } from './convert-xml.js';
|
|
4
5
|
export declare const extensionCodec: ExtensionCodec<undefined>;
|
|
5
6
|
declare const _daoDBName: unique symbol;
|
|
@@ -25,7 +26,7 @@ export declare const _GlobalSqlOption: unique symbol;
|
|
|
25
26
|
export declare const _EventBus: unique symbol;
|
|
26
27
|
export declare const _path: unique symbol;
|
|
27
28
|
export declare const _fs: unique symbol;
|
|
28
|
-
export declare const logger:
|
|
29
|
+
export declare const logger: pino.Logger<never, boolean>;
|
|
29
30
|
export declare enum MapperIfUndefined {
|
|
30
31
|
Null = 0,
|
|
31
32
|
Skip = 1,
|