@nattyjs/orm 0.0.1-beta.22 → 0.0.1-beta.24

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
@@ -345,6 +345,9 @@ class SqlDbTransaction {
345
345
  }
346
346
 
347
347
  const connectionCacheContainer = new class {
348
+ constructor() {
349
+ this.connectionPoolState = {};
350
+ }
348
351
  getCacheKey(config) {
349
352
  return `${config.server}-${config.database}`;
350
353
  }
package/dist/index.mjs CHANGED
@@ -329,6 +329,9 @@ class SqlDbTransaction {
329
329
  }
330
330
 
331
331
  const connectionCacheContainer = new class {
332
+ constructor() {
333
+ this.connectionPoolState = {};
334
+ }
332
335
  getCacheKey(config) {
333
336
  return `${config.server}-${config.database}`;
334
337
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nattyjs/orm",
3
- "version": "0.0.1-beta.22",
3
+ "version": "0.0.1-beta.24",
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.22",
22
- "@nattyjs/common": "0.0.1-beta.22",
23
- "@nattyjs/entity": "0.0.1-beta.22",
24
- "@nattyjs/types": "0.0.1-beta.22"
21
+ "@nattyjs/core": "0.0.1-beta.24",
22
+ "@nattyjs/common": "0.0.1-beta.24",
23
+ "@nattyjs/entity": "0.0.1-beta.24",
24
+ "@nattyjs/types": "0.0.1-beta.24"
25
25
  }
26
26
  }