@sprucelabs/data-stores 28.1.7 → 28.1.8

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.
@@ -21,6 +21,7 @@ export * from './cursors/CursorPager';
21
21
  export { default as CursorPagerFaker } from './cursors/CursorPagerFaker';
22
22
  export * from './cursors/CursorPager';
23
23
  export { default as DatabaseFieldMapperPlugin } from './plugins/DatabaseFieldMapperPlugin';
24
+ export { default as normalizeIndex } from './databases/normalizeIndex';
24
25
  /**
25
26
  * @deprecated databaseAssertUtil -> databaseAssert
26
27
  */
@@ -21,6 +21,7 @@ export * from './cursors/CursorPager.js';
21
21
  export { default as CursorPagerFaker } from './cursors/CursorPagerFaker.js';
22
22
  export * from './cursors/CursorPager.js';
23
23
  export { default as DatabaseFieldMapperPlugin } from './plugins/DatabaseFieldMapperPlugin.js';
24
+ export { default as normalizeIndex } from './databases/normalizeIndex.js';
24
25
  /**
25
26
  * @deprecated databaseAssertUtil -> databaseAssert
26
27
  */
package/build/index.d.ts CHANGED
@@ -21,6 +21,7 @@ export * from './cursors/CursorPager';
21
21
  export { default as CursorPagerFaker } from './cursors/CursorPagerFaker';
22
22
  export * from './cursors/CursorPager';
23
23
  export { default as DatabaseFieldMapperPlugin } from './plugins/DatabaseFieldMapperPlugin';
24
+ export { default as normalizeIndex } from './databases/normalizeIndex';
24
25
  /**
25
26
  * @deprecated databaseAssertUtil -> databaseAssert
26
27
  */
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.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;
20
+ exports.BatchArrayCursor = exports.BatchCursorImpl = exports.storePluginAssert = exports.databaseAssert = exports.databaseAssertUtil = exports.normalizeIndex = 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");
@@ -55,6 +55,8 @@ Object.defineProperty(exports, "CursorPagerFaker", { enumerable: true, get: func
55
55
  __exportStar(require("./cursors/CursorPager"), exports);
56
56
  var DatabaseFieldMapperPlugin_1 = require("./plugins/DatabaseFieldMapperPlugin");
57
57
  Object.defineProperty(exports, "DatabaseFieldMapperPlugin", { enumerable: true, get: function () { return __importDefault(DatabaseFieldMapperPlugin_1).default; } });
58
+ var normalizeIndex_1 = require("./databases/normalizeIndex");
59
+ Object.defineProperty(exports, "normalizeIndex", { enumerable: true, get: function () { return __importDefault(normalizeIndex_1).default; } });
58
60
  /**
59
61
  * @deprecated databaseAssertUtil -> databaseAssert
60
62
  */
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "28.1.7",
6
+ "version": "28.1.8",
7
7
  "files": [
8
8
  "build/**/*",
9
9
  "!build/__tests__",