@webiny/db 5.22.1 → 5.23.1-beta.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/index.js +2 -2
- package/package.json +4 -4
package/index.js
CHANGED
|
@@ -105,7 +105,7 @@ class Db {
|
|
|
105
105
|
|
|
106
106
|
async createLog(operation, args) {
|
|
107
107
|
if (!this.logTable) {
|
|
108
|
-
return;
|
|
108
|
+
return null;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
const data = getCreateLogData(args);
|
|
@@ -119,7 +119,7 @@ class Db {
|
|
|
119
119
|
|
|
120
120
|
async readLogs() {
|
|
121
121
|
if (!this.logTable) {
|
|
122
|
-
return;
|
|
122
|
+
return null;
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
return this.driver.readLogs({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/db",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.23.1-beta.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@babel/cli": "^7.16.0",
|
|
17
17
|
"@babel/core": "^7.16.0",
|
|
18
|
-
"@webiny/cli": "^5.
|
|
19
|
-
"@webiny/project-utils": "^5.
|
|
18
|
+
"@webiny/cli": "^5.23.1-beta.0",
|
|
19
|
+
"@webiny/project-utils": "^5.23.1-beta.0",
|
|
20
20
|
"rimraf": "^3.0.2",
|
|
21
21
|
"typescript": "^4.1.3"
|
|
22
22
|
},
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"build": "yarn webiny run build",
|
|
25
25
|
"watch": "yarn webiny run watch"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "05db67aebc2de3c33ba0622f730157ae14143b95"
|
|
28
28
|
}
|