@nattyjs/orm 0.0.1-beta.62 → 0.0.1-beta.64

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/index.cjs CHANGED
@@ -987,6 +987,7 @@ class DbContext {
987
987
  this.onConfiguring(this.dbConnectionInfo);
988
988
  this.onDbSetRegistering();
989
989
  this.onSpRegistering();
990
+ this.onDbFuncRegistering();
990
991
  }
991
992
  onDbSetRegistering(dbSets) {
992
993
  if (dbSets)
package/dist/index.mjs CHANGED
@@ -970,6 +970,7 @@ class DbContext {
970
970
  this.onConfiguring(this.dbConnectionInfo);
971
971
  this.onDbSetRegistering();
972
972
  this.onSpRegistering();
973
+ this.onDbFuncRegistering();
973
974
  }
974
975
  onDbSetRegistering(dbSets) {
975
976
  if (dbSets)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nattyjs/orm",
3
- "version": "0.0.1-beta.62",
3
+ "version": "0.0.1-beta.64",
4
4
  "description": "",
5
5
  "module": "./dist/index.mjs",
6
6
  "main": "./dist/index.cjs",
@@ -19,9 +19,9 @@
19
19
  "dependencies": {
20
20
  "pg": "8.16.0",
21
21
  "mssql": "^9.1.1",
22
- "@nattyjs/core": "0.0.1-beta.62",
23
- "@nattyjs/common": "0.0.1-beta.62",
24
- "@nattyjs/entity": "0.0.1-beta.62",
25
- "@nattyjs/types": "0.0.1-beta.62"
22
+ "@nattyjs/core": "0.0.1-beta.64",
23
+ "@nattyjs/common": "0.0.1-beta.64",
24
+ "@nattyjs/entity": "0.0.1-beta.64",
25
+ "@nattyjs/types": "0.0.1-beta.64"
26
26
  }
27
27
  }