dbgate-api 4.8.1 → 4.8.2
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dbgate-api",
|
|
3
3
|
"main": "src/index.js",
|
|
4
|
-
"version": "4.8.
|
|
4
|
+
"version": "4.8.2",
|
|
5
5
|
"homepage": "https://dbgate.org/",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"compare-versions": "^3.6.0",
|
|
26
26
|
"cors": "^2.8.5",
|
|
27
27
|
"cross-env": "^6.0.3",
|
|
28
|
-
"dbgate-query-splitter": "^4.8.
|
|
29
|
-
"dbgate-sqltree": "^4.8.
|
|
30
|
-
"dbgate-tools": "^4.8.
|
|
28
|
+
"dbgate-query-splitter": "^4.8.2",
|
|
29
|
+
"dbgate-sqltree": "^4.8.2",
|
|
30
|
+
"dbgate-tools": "^4.8.2",
|
|
31
31
|
"diff": "^5.0.0",
|
|
32
32
|
"diff2html": "^3.4.13",
|
|
33
33
|
"eslint": "^6.8.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@types/fs-extra": "^9.0.11",
|
|
65
65
|
"@types/lodash": "^4.14.149",
|
|
66
|
-
"dbgate-types": "^4.8.
|
|
66
|
+
"dbgate-types": "^4.8.2",
|
|
67
67
|
"env-cmd": "^10.1.0",
|
|
68
68
|
"node-loader": "^1.0.2",
|
|
69
69
|
"nodemon": "^2.0.2",
|
|
@@ -176,8 +176,8 @@ module.exports = {
|
|
|
176
176
|
},
|
|
177
177
|
|
|
178
178
|
loadKeys_meta: true,
|
|
179
|
-
async loadKeys({ conid, database, root }) {
|
|
180
|
-
return this.loadDataCore('loadKeys', { conid, database, root });
|
|
179
|
+
async loadKeys({ conid, database, root, filter }) {
|
|
180
|
+
return this.loadDataCore('loadKeys', { conid, database, root, filter });
|
|
181
181
|
},
|
|
182
182
|
|
|
183
183
|
exportKeys_meta: true,
|
package/src/currentVersion.js
CHANGED
|
@@ -197,8 +197,8 @@ async function handleCollectionData({ msgid, options }) {
|
|
|
197
197
|
return handleDriverDataCore(msgid, driver => driver.readCollection(systemConnection, options));
|
|
198
198
|
}
|
|
199
199
|
|
|
200
|
-
async function handleLoadKeys({ msgid, root }) {
|
|
201
|
-
return handleDriverDataCore(msgid, driver => driver.loadKeys(systemConnection, root));
|
|
200
|
+
async function handleLoadKeys({ msgid, root, filter }) {
|
|
201
|
+
return handleDriverDataCore(msgid, driver => driver.loadKeys(systemConnection, root, filter));
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
async function handleExportKeys({ msgid, options }) {
|