dataply 0.0.26-alpha.2 → 0.0.26-alpha.3
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/dist/cjs/index.js +4 -0
- package/dist/types/index.d.ts +2 -1
- package/package.json +2 -2
package/dist/cjs/index.js
CHANGED
|
@@ -49,6 +49,8 @@ __export(src_exports, {
|
|
|
49
49
|
IndexPageManager: () => IndexPageManager,
|
|
50
50
|
InvertedWeakMap: () => InvertedWeakMap,
|
|
51
51
|
LRUMap: () => LRUMap2,
|
|
52
|
+
Logger: () => Logger,
|
|
53
|
+
LoggerManager: () => LoggerManager,
|
|
52
54
|
MVCCStrategy: () => MVCCStrategy2,
|
|
53
55
|
MVCCTransaction: () => MVCCTransaction2,
|
|
54
56
|
MetadataPageManager: () => MetadataPageManager,
|
|
@@ -10722,6 +10724,8 @@ var GlobalTransaction = class {
|
|
|
10722
10724
|
IndexPageManager,
|
|
10723
10725
|
InvertedWeakMap,
|
|
10724
10726
|
LRUMap,
|
|
10727
|
+
Logger,
|
|
10728
|
+
LoggerManager,
|
|
10725
10729
|
MVCCStrategy,
|
|
10726
10730
|
MVCCTransaction,
|
|
10727
10731
|
MetadataPageManager,
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2,9 +2,10 @@ export * from 'serializable-bptree';
|
|
|
2
2
|
export * from 'ryoiki';
|
|
3
3
|
export * from 'cache-entanglement';
|
|
4
4
|
export * from 'mvcc-api';
|
|
5
|
-
export type { DataplyOptions } from './types';
|
|
5
|
+
export type { DataplyOptions, LogLevel } from './types';
|
|
6
6
|
export * from './core/Page';
|
|
7
7
|
export { Dataply } from './core/Dataply';
|
|
8
8
|
export { DataplyAPI } from './core/DataplyAPI';
|
|
9
9
|
export { Transaction } from './core/transaction/Transaction';
|
|
10
10
|
export { GlobalTransaction } from './core/transaction/GlobalTransaction';
|
|
11
|
+
export { Logger, LoggerManager } from './core/Logger';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dataply",
|
|
3
|
-
"version": "0.0.26-alpha.
|
|
3
|
+
"version": "0.0.26-alpha.3",
|
|
4
4
|
"description": "A lightweight storage engine for Node.js with support for MVCC, WAL.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "izure <admin@izure.org>",
|
|
@@ -51,4 +51,4 @@
|
|
|
51
51
|
"ryoiki": "^1.2.0",
|
|
52
52
|
"serializable-bptree": "^8.4.0"
|
|
53
53
|
}
|
|
54
|
-
}
|
|
54
|
+
}
|