querysub 0.10.0 → 0.12.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "querysub",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"test2": "yarn typenode ./src/4-dom/qreactTest.tsx --local D:/repos/shard/"
|
|
46
46
|
},
|
|
47
47
|
"bin": {
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
48
|
+
"querysub-deploy": "./bin/deploy.js",
|
|
49
|
+
"querysub-server": "./bin/server.js",
|
|
50
|
+
"querysub-function": "./bin/function.js"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"dependency-cruiser": "^12.11.0",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import { SocketFunction } from "socket-function/SocketFunction";
|
|
6
6
|
import { SocketRegistered } from "socket-function/SocketFunctionTypes";
|
|
7
|
-
import { errorToUndefined, errorToUndefinedSilent, timeoutToUndefinedSilent } from "../errors";
|
|
7
|
+
import { errorToUndefined, errorToUndefinedSilent, timeoutToUndefined, timeoutToUndefinedSilent } from "../errors";
|
|
8
8
|
import { getAllNodeIds } from "../-f-node-discovery/NodeDiscovery";
|
|
9
9
|
import { green, red, yellow } from "socket-function/src/formatting/logColors";
|
|
10
10
|
import { shuffle } from "../misc/random";
|
|
@@ -179,7 +179,7 @@ export class NodeViewer extends qreact.Component {
|
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
let builtinGroups = {
|
|
182
|
-
"Default": ["buttons", "devToolsURL", "ip", "uptime", "Heap", "All Memory", "Blocking Lag", "port", "threadId", "machineId", "apiError"],
|
|
182
|
+
"Default": ["buttons", "devToolsURL", "ip", "uptime", "Heap", "All Memory", "Blocking Lag", "port", "threadId", "machineId", "apiError", "live_entryPoint"],
|
|
183
183
|
};
|
|
184
184
|
// Column => group
|
|
185
185
|
let builtInGroupsLookup = new Map<string, string>();
|