@onehat/data 1.7.10 → 1.7.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/data",
3
- "version": "1.7.10",
3
+ "version": "1.7.11",
4
4
  "description": "JS data modeling package with adapters for many storage mediums.",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -267,6 +267,10 @@ export default class Repository extends EventEmitter {
267
267
 
268
268
  this._createMethods();
269
269
 
270
+ if (this.schema.repository.initialize) {
271
+ this.schema.repository.initialize();
272
+ }
273
+
270
274
  this.isInitialized = true;
271
275
  this.emit('initialize');
272
276
  }