dataply 0.0.3 → 0.0.4
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 +2 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -46,6 +46,7 @@ __export(src_exports, {
|
|
|
46
46
|
SerializeStrategyAsync: () => SerializeStrategyAsync,
|
|
47
47
|
SerializeStrategySync: () => SerializeStrategySync,
|
|
48
48
|
StringComparator: () => StringComparator,
|
|
49
|
+
Transaction: () => Transaction,
|
|
49
50
|
ValueComparator: () => ValueComparator
|
|
50
51
|
});
|
|
51
52
|
module.exports = __toCommonJS(src_exports);
|
|
@@ -6606,5 +6607,6 @@ var GlobalTransaction = class {
|
|
|
6606
6607
|
SerializeStrategyAsync,
|
|
6607
6608
|
SerializeStrategySync,
|
|
6608
6609
|
StringComparator,
|
|
6610
|
+
Transaction,
|
|
6609
6611
|
ValueComparator
|
|
6610
6612
|
});
|
package/dist/types/index.d.ts
CHANGED
|
@@ -4,4 +4,5 @@ export * from 'cache-entanglement';
|
|
|
4
4
|
export type { DataplyOptions } from './types';
|
|
5
5
|
export { Dataply } from './core/Dataply';
|
|
6
6
|
export { DataplyAPI } from './core/DataplyAPI';
|
|
7
|
+
export { Transaction } from './core/transaction/Transaction';
|
|
7
8
|
export { GlobalTransaction } from './core/transaction/GlobalTransaction';
|