@sprucelabs/data-stores 26.2.0 → 26.2.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.
@@ -20,6 +20,7 @@ export { default as CursorPager } from './cursors/CursorPager';
20
20
  export * from './cursors/CursorPager';
21
21
  export { default as CursorPagerFaker } from './cursors/CursorPagerFaker';
22
22
  export * from './cursors/CursorPager';
23
+ export { default as DatabaseFieldMapperPlugin } from './plugins/DatabaseFieldMapperPlugin';
23
24
  /**
24
25
  * @deprecated databaseAssertUtil -> databaseAssert
25
26
  */
@@ -20,6 +20,7 @@ export { default as CursorPager } from './cursors/CursorPager.js';
20
20
  export * from './cursors/CursorPager.js';
21
21
  export { default as CursorPagerFaker } from './cursors/CursorPagerFaker.js';
22
22
  export * from './cursors/CursorPager.js';
23
+ export { default as DatabaseFieldMapperPlugin } from './plugins/DatabaseFieldMapperPlugin.js';
23
24
  /**
24
25
  * @deprecated databaseAssertUtil -> databaseAssert
25
26
  */
package/build/index.d.ts CHANGED
@@ -20,6 +20,7 @@ export { default as CursorPager } from './cursors/CursorPager';
20
20
  export * from './cursors/CursorPager';
21
21
  export { default as CursorPagerFaker } from './cursors/CursorPagerFaker';
22
22
  export * from './cursors/CursorPager';
23
+ export { default as DatabaseFieldMapperPlugin } from './plugins/DatabaseFieldMapperPlugin';
23
24
  /**
24
25
  * @deprecated databaseAssertUtil -> databaseAssert
25
26
  */
package/build/index.js CHANGED
@@ -17,7 +17,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
17
17
  return (mod && mod.__esModule) ? mod : { "default": mod };
18
18
  };
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.BatchArrayCursor = exports.BatchCursorImpl = exports.storePluginAssert = exports.databaseAssert = exports.databaseAssertUtil = exports.CursorPagerFaker = exports.CursorPager = exports.generateId = exports.DataStoresError = exports.mongoUtil = exports.NeDbDatabase = exports.MongoDatabase = exports.StoreLoader = exports.DatabaseFactory = exports.StoreFactory = exports.AbstractStore = exports.DatabaseFixture = exports.AbstractDatabaseTest = void 0;
20
+ exports.BatchArrayCursor = exports.BatchCursorImpl = exports.storePluginAssert = exports.databaseAssert = exports.databaseAssertUtil = exports.DatabaseFieldMapperPlugin = exports.CursorPagerFaker = exports.CursorPager = exports.generateId = exports.DataStoresError = exports.mongoUtil = exports.NeDbDatabase = exports.MongoDatabase = exports.StoreLoader = exports.DatabaseFactory = exports.StoreFactory = exports.AbstractStore = exports.DatabaseFixture = exports.AbstractDatabaseTest = void 0;
21
21
  var AbstractDatabaseTest_1 = require("./tests/AbstractDatabaseTest");
22
22
  Object.defineProperty(exports, "AbstractDatabaseTest", { enumerable: true, get: function () { return __importDefault(AbstractDatabaseTest_1).default; } });
23
23
  var DatabaseFixture_1 = require("./fixtures/DatabaseFixture");
@@ -53,6 +53,8 @@ __exportStar(require("./cursors/CursorPager"), exports);
53
53
  var CursorPagerFaker_1 = require("./cursors/CursorPagerFaker");
54
54
  Object.defineProperty(exports, "CursorPagerFaker", { enumerable: true, get: function () { return __importDefault(CursorPagerFaker_1).default; } });
55
55
  __exportStar(require("./cursors/CursorPager"), exports);
56
+ var DatabaseFieldMapperPlugin_1 = require("./plugins/DatabaseFieldMapperPlugin");
57
+ Object.defineProperty(exports, "DatabaseFieldMapperPlugin", { enumerable: true, get: function () { return __importDefault(DatabaseFieldMapperPlugin_1).default; } });
56
58
  /**
57
59
  * @deprecated databaseAssertUtil -> databaseAssert
58
60
  */
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "26.2.0",
6
+ "version": "26.2.1",
7
7
  "files": [
8
8
  "build/**/*",
9
9
  "!build/__tests__",