mvcc-api 1.2.5 → 1.2.6

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.
@@ -22,6 +22,8 @@ var src_exports = {};
22
22
  __export(src_exports, {
23
23
  AsyncMVCCStrategy: () => AsyncMVCCStrategy,
24
24
  AsyncMVCCTransaction: () => AsyncMVCCTransaction,
25
+ MVCCStrategy: () => MVCCStrategy,
26
+ MVCCTransaction: () => MVCCTransaction,
25
27
  SyncMVCCStrategy: () => SyncMVCCStrategy,
26
28
  SyncMVCCTransaction: () => SyncMVCCTransaction
27
29
  });
@@ -1125,6 +1125,8 @@ var AsyncMVCCTransaction = class _AsyncMVCCTransaction extends MVCCTransaction {
1125
1125
  export {
1126
1126
  AsyncMVCCStrategy,
1127
1127
  AsyncMVCCTransaction,
1128
+ MVCCStrategy,
1129
+ MVCCTransaction,
1128
1130
  SyncMVCCStrategy,
1129
1131
  SyncMVCCTransaction
1130
1132
  };
@@ -1,2 +1,4 @@
1
+ export { TransactionEntry, TransactionConflict, TransactionMergeFailure, TransactionResult } from './types';
2
+ export * from './core/base';
1
3
  export * from './core/sync';
2
4
  export * from './core/async';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mvcc-api",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "Multiversion Concurrency Control (MVCC) API for TypeScript",
5
5
  "license": "MIT",
6
6
  "author": "izure <admin@izure.org>",