querysub 0.336.0 → 0.337.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.336.0",
3
+ "version": "0.337.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",
@@ -8,29 +8,6 @@
8
8
  "type": "git",
9
9
  "url": "https://github.com/sliftist/shard.git"
10
10
  },
11
- "dependencies": {
12
- "@types/fs-ext": "^2.0.3",
13
- "@types/node-forge": "^1.3.1",
14
- "@types/pako": "^2.0.3",
15
- "@types/yargs": "^15.0.5",
16
- "acme-client": "^5.0.0",
17
- "cbor-x": "^1.6.0",
18
- "chalk": "^5.2.0",
19
- "diskusage": "^1.2.0",
20
- "fs-ext": "^2.0.0",
21
- "js-sha256": "https://github.com/sliftist/js-sha256",
22
- "js-sha512": "^0.9.0",
23
- "node-forge": "https://github.com/sliftist/forge#e618181b469b07bdc70b968b0391beb8ef5fecd6",
24
- "pako": "^2.1.0",
25
- "socket-function": "^0.142.0",
26
- "terser": "^5.31.0",
27
- "typesafecss": "^0.22.0",
28
- "yaml": "^2.5.0",
29
- "yargs": "^15.3.1"
30
- },
31
- "optionalDependencies": {
32
- "rdtsc-now": "^0.4.2"
33
- },
34
11
  "scripts": {
35
12
  "servershardedtest": "yarn server --authority ./pathremain.json & yarn server --authority ./patha.json & yarn server --authority ./pathb.json & yarn server --authority ./pathc.json & yarn server --authority ./pathd.json",
36
13
  "type": "yarn tsc --noEmit",
@@ -59,6 +36,29 @@
59
36
  "error-email": "./bin/error-email.js",
60
37
  "error-im": "./bin/error-im.js"
61
38
  },
39
+ "dependencies": {
40
+ "@types/fs-ext": "^2.0.3",
41
+ "@types/node-forge": "^1.3.1",
42
+ "@types/pako": "^2.0.3",
43
+ "@types/yargs": "^15.0.5",
44
+ "acme-client": "^5.0.0",
45
+ "cbor-x": "^1.6.0",
46
+ "chalk": "^5.2.0",
47
+ "diskusage": "^1.2.0",
48
+ "fs-ext": "^2.0.0",
49
+ "js-sha256": "https://github.com/sliftist/js-sha256",
50
+ "js-sha512": "^0.9.0",
51
+ "node-forge": "https://github.com/sliftist/forge#e618181b469b07bdc70b968b0391beb8ef5fecd6",
52
+ "pako": "^2.1.0",
53
+ "socket-function": "^0.143.0",
54
+ "terser": "^5.31.0",
55
+ "typesafecss": "^0.22.0",
56
+ "yaml": "^2.5.0",
57
+ "yargs": "^15.3.1"
58
+ },
59
+ "optionalDependencies": {
60
+ "rdtsc-now": "^0.4.2"
61
+ },
62
62
  "devDependencies": {
63
63
  "dependency-cruiser": "^12.11.0",
64
64
  "open": "^8.4.0",
@@ -57,6 +57,7 @@ export async function registerManagementPages2(config: {
57
57
  }>;
58
58
  pages: {
59
59
  componentName: string;
60
+ // If provided, we will import and then expose this controller. This reduces the number of controllers that are exposed by default.
60
61
  controllerName?: string;
61
62
  getModule: () => Promise<any>;
62
63
 
@@ -93,7 +94,6 @@ export async function registerManagementPages2(config: {
93
94
  inputPages.push({
94
95
  title: "Error Digests",
95
96
  componentName: "ErrorDigestPage",
96
- controllerName: "ErrorDigestController",
97
97
  getModule: () => import("./logs/errorNotifications/ErrorDigestPage"),
98
98
  });
99
99
  inputPages.push({