@nattyjs/orm 0.0.1-beta.10 → 0.0.1-beta.12

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
@@ -649,6 +649,7 @@ class DbContext {
649
649
  }
650
650
  }
651
651
 
652
+ exports.DbConnectionContext = DbConnectionContext;
652
653
  exports.DbContext = DbContext;
653
654
  exports.DbSet = DbSet;
654
655
  exports.StoreProc = StoreProc;
package/dist/index.d.ts CHANGED
@@ -119,4 +119,4 @@ declare class StoreProc<SpName, Entity, SpParamterModel> {
119
119
  private get properties();
120
120
  }
121
121
 
122
- export { DbContext, DbSet, StoreProc };
122
+ export { DbConnectionContext, DbContext, DbSet, StoreProc };
package/dist/index.mjs CHANGED
@@ -633,4 +633,4 @@ class DbContext {
633
633
  }
634
634
  }
635
635
 
636
- export { DbContext, DbSet, StoreProc };
636
+ export { DbConnectionContext, DbContext, DbSet, StoreProc };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nattyjs/orm",
3
- "version": "0.0.1-beta.10",
3
+ "version": "0.0.1-beta.12",
4
4
  "description": "",
5
5
  "module": "./dist/index.mjs",
6
6
  "main": "./dist/index.cjs",
@@ -18,9 +18,9 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "mssql": "^9.1.1",
21
- "@nattyjs/core": "0.0.1-beta.10",
22
- "@nattyjs/common": "0.0.1-beta.10",
23
- "@nattyjs/entity": "0.0.1-beta.10",
24
- "@nattyjs/types": "0.0.1-beta.10"
21
+ "@nattyjs/core": "0.0.1-beta.12",
22
+ "@nattyjs/common": "0.0.1-beta.12",
23
+ "@nattyjs/entity": "0.0.1-beta.12",
24
+ "@nattyjs/types": "0.0.1-beta.12"
25
25
  }
26
26
  }