@sqb/connect 4.1.5 → 4.2.0
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/orm/base-entity.js +1 -1
- package/package.json +4 -4
package/dist/orm/base-entity.js
CHANGED
|
@@ -21,7 +21,7 @@ class BaseEntity {
|
|
|
21
21
|
return !!(repo && repo.exists(this));
|
|
22
22
|
}
|
|
23
23
|
toJSON() {
|
|
24
|
-
// this method is
|
|
24
|
+
// this method is a placeholder and will be overwritten by declareEntity() method
|
|
25
25
|
return this;
|
|
26
26
|
}
|
|
27
27
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sqb/connect",
|
|
3
3
|
"description": "Multi-dialect database connection framework written with TypeScript",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.2.0",
|
|
5
5
|
"author": "Panates",
|
|
6
6
|
"contributors": [
|
|
7
7
|
"Eray Hanoglu <e.hanoglu@panates.com>"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"debug": "^4.3.4",
|
|
34
|
-
"lightning-pool": "^3.1.
|
|
34
|
+
"lightning-pool": "^3.1.4",
|
|
35
35
|
"lodash": "^4.17.21",
|
|
36
36
|
"putil-isplainobject": "^1.1.4",
|
|
37
37
|
"putil-merge": "^3.8.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"putil-varhelpers": "^1.6.4",
|
|
41
41
|
"reflect-metadata": "^0.1.13",
|
|
42
42
|
"strict-typed-events": "^2.2.0",
|
|
43
|
-
"ts-gems": "^2.
|
|
43
|
+
"ts-gems": "^2.2.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/debug": "^4.1.7",
|
|
47
47
|
"@types/lodash": "^4.14.182"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@sqb/builder": "^4.1.
|
|
50
|
+
"@sqb/builder": "^4.1.5"
|
|
51
51
|
},
|
|
52
52
|
"main": "dist/index.js",
|
|
53
53
|
"types": "dist/index.d.ts",
|