webpack-dev-server 4.7.4 → 4.8.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/README.md +43 -6
- package/bin/cli-flags.js +13 -5
- package/client/index.js +1 -1
- package/client/modules/sockjs-client/index.js +76 -1120
- package/client/socket.js +5 -2
- package/client/utils/createSocketURL.js +1 -1
- package/client/utils/parseURL.js +1 -1
- package/client/utils/stripAnsi.js +20 -0
- package/lib/Server.js +13 -7
- package/lib/options.json +52 -31
- package/package.json +29 -29
- package/types/bin/cli-flags.d.ts +36 -14
- package/types/lib/Server.d.ts +391 -583
- package/types/lib/servers/WebsocketServer.d.ts +1 -1
- package/client/modules/strip-ansi/index.js +0 -119
package/client/socket.js
CHANGED
|
@@ -9,8 +9,11 @@ typeof __webpack_dev_server_client__ !== "undefined" ? typeof __webpack_dev_serv
|
|
|
9
9
|
/* eslint-enable camelcase */
|
|
10
10
|
|
|
11
11
|
var retries = 0;
|
|
12
|
-
var maxRetries = 10;
|
|
13
|
-
|
|
12
|
+
var maxRetries = 10; // Initialized client is exported so external consumers can utilize the same instance
|
|
13
|
+
// It is mutable to enforce singleton
|
|
14
|
+
// eslint-disable-next-line import/no-mutable-exports
|
|
15
|
+
|
|
16
|
+
export var client = null;
|
|
14
17
|
/**
|
|
15
18
|
* @param {string} url
|
|
16
19
|
* @param {{ [handler: string]: (data?: any, params?: any) => any }} handlers
|
package/client/utils/parseURL.js
CHANGED
|
@@ -9,7 +9,7 @@ function parseURL(resourceQuery) {
|
|
|
9
9
|
var options = {};
|
|
10
10
|
|
|
11
11
|
if (typeof resourceQuery === "string" && resourceQuery !== "") {
|
|
12
|
-
var searchParams = resourceQuery.
|
|
12
|
+
var searchParams = resourceQuery.slice(1).split("&");
|
|
13
13
|
|
|
14
14
|
for (var i = 0; i < searchParams.length; i++) {
|
|
15
15
|
var pair = searchParams[i].split("=");
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
var ansiRegex = new RegExp(["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)", "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))"].join("|"), "g");
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
|
|
5
|
+
* Adapted from code originally released by Sindre Sorhus
|
|
6
|
+
* Licensed the MIT License
|
|
7
|
+
*
|
|
8
|
+
* @param {string} string
|
|
9
|
+
* @return {string}
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
function stripAnsi(string) {
|
|
13
|
+
if (typeof string !== "string") {
|
|
14
|
+
throw new TypeError("Expected a `string`, got `".concat(typeof string, "`"));
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
return string.replace(ansiRegex, "");
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default stripAnsi;
|
package/lib/Server.js
CHANGED
|
@@ -29,8 +29,8 @@ const schema = require("./options.json");
|
|
|
29
29
|
/** @typedef {import("chokidar").WatchOptions} WatchOptions */
|
|
30
30
|
/** @typedef {import("chokidar").FSWatcher} FSWatcher */
|
|
31
31
|
/** @typedef {import("connect-history-api-fallback").Options} ConnectHistoryApiFallbackOptions */
|
|
32
|
-
/** @typedef {import("bonjour").Bonjour} Bonjour */
|
|
33
|
-
/** @typedef {import("bonjour").
|
|
32
|
+
/** @typedef {import("bonjour-service").Bonjour} Bonjour */
|
|
33
|
+
/** @typedef {import("bonjour-service").Service} BonjourOptions */
|
|
34
34
|
/** @typedef {import("http-proxy-middleware").RequestHandler} RequestHandler */
|
|
35
35
|
/** @typedef {import("http-proxy-middleware").Options} HttpProxyMiddlewareOptions */
|
|
36
36
|
/** @typedef {import("http-proxy-middleware").Filter} HttpProxyMiddlewareOptionsFilter */
|
|
@@ -188,7 +188,7 @@ const schema = require("./options.json");
|
|
|
188
188
|
* @property {"auto" | "all" | string | string[]} [allowedHosts]
|
|
189
189
|
* @property {boolean | ConnectHistoryApiFallbackOptions} [historyApiFallback]
|
|
190
190
|
* @property {boolean} [setupExitSignals]
|
|
191
|
-
* @property {boolean | BonjourOptions} [bonjour]
|
|
191
|
+
* @property {boolean | Record<string, never> | BonjourOptions} [bonjour]
|
|
192
192
|
* @property {string | string[] | WatchFiles | Array<string | WatchFiles>} [watchFiles]
|
|
193
193
|
* @property {boolean | string | Static | Array<string | Static>} [static]
|
|
194
194
|
* @property {boolean | ServerOptions} [https]
|
|
@@ -1133,13 +1133,15 @@ class Server {
|
|
|
1133
1133
|
|
|
1134
1134
|
// cert is more than 30 days old, kill it with fire
|
|
1135
1135
|
if ((now - Number(certificateStat.ctime)) / certificateTtl > 30) {
|
|
1136
|
-
const
|
|
1136
|
+
const { promisify } = require("util");
|
|
1137
|
+
const rimraf = require("rimraf");
|
|
1138
|
+
const del = promisify(rimraf);
|
|
1137
1139
|
|
|
1138
1140
|
this.logger.info(
|
|
1139
1141
|
"SSL certificate is more than 30 days old. Removing..."
|
|
1140
1142
|
);
|
|
1141
1143
|
|
|
1142
|
-
await del(
|
|
1144
|
+
await del(certificatePath);
|
|
1143
1145
|
|
|
1144
1146
|
certificateExists = false;
|
|
1145
1147
|
}
|
|
@@ -2592,14 +2594,18 @@ class Server {
|
|
|
2592
2594
|
* @returns {void}
|
|
2593
2595
|
*/
|
|
2594
2596
|
runBonjour() {
|
|
2597
|
+
const { Bonjour } = require("bonjour-service");
|
|
2595
2598
|
/**
|
|
2596
2599
|
* @private
|
|
2597
|
-
* @type {
|
|
2600
|
+
* @type {Bonjour | undefined}
|
|
2598
2601
|
*/
|
|
2599
|
-
this.bonjour =
|
|
2602
|
+
this.bonjour = new Bonjour();
|
|
2600
2603
|
this.bonjour.publish({
|
|
2604
|
+
// @ts-expect-error
|
|
2601
2605
|
name: `Webpack Dev Server ${os.hostname()}:${this.options.port}`,
|
|
2606
|
+
// @ts-expect-error
|
|
2602
2607
|
port: /** @type {number} */ (this.options.port),
|
|
2608
|
+
// @ts-expect-error
|
|
2603
2609
|
type:
|
|
2604
2610
|
/** @type {ServerConfiguration} */
|
|
2605
2611
|
(this.options.server).type === "http" ? "http" : "https",
|
package/lib/options.json
CHANGED
|
@@ -28,7 +28,10 @@
|
|
|
28
28
|
"Bonjour": {
|
|
29
29
|
"anyOf": [
|
|
30
30
|
{
|
|
31
|
-
"type": "boolean"
|
|
31
|
+
"type": "boolean",
|
|
32
|
+
"cli": {
|
|
33
|
+
"negatedDescription": "Disallows to broadcasts dev server via ZeroConf networking on start."
|
|
34
|
+
}
|
|
32
35
|
},
|
|
33
36
|
{
|
|
34
37
|
"type": "object",
|
|
@@ -37,17 +40,17 @@
|
|
|
37
40
|
}
|
|
38
41
|
],
|
|
39
42
|
"description": "Allows to broadcasts dev server via ZeroConf networking on start.",
|
|
40
|
-
"link": " https://webpack.js.org/configuration/dev-server/#devserverbonjour"
|
|
41
|
-
"cli": {
|
|
42
|
-
"negatedDescription": "Disallows to broadcasts dev server via ZeroConf networking on start."
|
|
43
|
-
}
|
|
43
|
+
"link": " https://webpack.js.org/configuration/dev-server/#devserverbonjour"
|
|
44
44
|
},
|
|
45
45
|
"Client": {
|
|
46
46
|
"description": "Allows to specify options for client script in the browser or disable client script.",
|
|
47
47
|
"link": "https://webpack.js.org/configuration/dev-server/#devserverclient",
|
|
48
48
|
"anyOf": [
|
|
49
49
|
{
|
|
50
|
-
"enum": [false]
|
|
50
|
+
"enum": [false],
|
|
51
|
+
"cli": {
|
|
52
|
+
"negatedDescription": "Disables client script."
|
|
53
|
+
}
|
|
51
54
|
},
|
|
52
55
|
{
|
|
53
56
|
"type": "object",
|
|
@@ -87,7 +90,7 @@
|
|
|
87
90
|
"link": "https://webpack.js.org/configuration/dev-server/#overlay",
|
|
88
91
|
"type": "boolean",
|
|
89
92
|
"cli": {
|
|
90
|
-
"negatedDescription": "Disables
|
|
93
|
+
"negatedDescription": "Disables the full-screen overlay in the browser when there are compiler errors or warnings."
|
|
91
94
|
}
|
|
92
95
|
},
|
|
93
96
|
{
|
|
@@ -96,11 +99,17 @@
|
|
|
96
99
|
"properties": {
|
|
97
100
|
"errors": {
|
|
98
101
|
"description": "Enables a full-screen overlay in the browser when there are compiler errors.",
|
|
99
|
-
"type": "boolean"
|
|
102
|
+
"type": "boolean",
|
|
103
|
+
"cli": {
|
|
104
|
+
"negatedDescription": "Disables the full-screen overlay in the browser when there are compiler errors."
|
|
105
|
+
}
|
|
100
106
|
},
|
|
101
107
|
"warnings": {
|
|
102
108
|
"description": "Enables a full-screen overlay in the browser when there are compiler warnings.",
|
|
103
|
-
"type": "boolean"
|
|
109
|
+
"type": "boolean",
|
|
110
|
+
"cli": {
|
|
111
|
+
"negatedDescription": "Disables the full-screen overlay in the browser when there are compiler warnings."
|
|
112
|
+
}
|
|
104
113
|
}
|
|
105
114
|
}
|
|
106
115
|
}
|
|
@@ -119,16 +128,16 @@
|
|
|
119
128
|
"link": "https://webpack.js.org/configuration/dev-server/#reconnect",
|
|
120
129
|
"anyOf": [
|
|
121
130
|
{
|
|
122
|
-
"type": "boolean"
|
|
131
|
+
"type": "boolean",
|
|
132
|
+
"cli": {
|
|
133
|
+
"negatedDescription": "Tells dev-server to not to try to reconnect the client."
|
|
134
|
+
}
|
|
123
135
|
},
|
|
124
136
|
{
|
|
125
137
|
"type": "number",
|
|
126
138
|
"minimum": 0
|
|
127
139
|
}
|
|
128
|
-
]
|
|
129
|
-
"cli": {
|
|
130
|
-
"negatedDescription": "Tells dev-server to not to try to connect the client."
|
|
131
|
-
}
|
|
140
|
+
]
|
|
132
141
|
},
|
|
133
142
|
"ClientWebSocketTransport": {
|
|
134
143
|
"anyOf": [
|
|
@@ -448,7 +457,10 @@
|
|
|
448
457
|
"HistoryApiFallback": {
|
|
449
458
|
"anyOf": [
|
|
450
459
|
{
|
|
451
|
-
"type": "boolean"
|
|
460
|
+
"type": "boolean",
|
|
461
|
+
"cli": {
|
|
462
|
+
"negatedDescription": "Disallows to proxy requests through a specified index page."
|
|
463
|
+
}
|
|
452
464
|
},
|
|
453
465
|
{
|
|
454
466
|
"type": "object",
|
|
@@ -475,17 +487,17 @@
|
|
|
475
487
|
"Hot": {
|
|
476
488
|
"anyOf": [
|
|
477
489
|
{
|
|
478
|
-
"type": "boolean"
|
|
490
|
+
"type": "boolean",
|
|
491
|
+
"cli": {
|
|
492
|
+
"negatedDescription": "Disables Hot Module Replacement."
|
|
493
|
+
}
|
|
479
494
|
},
|
|
480
495
|
{
|
|
481
496
|
"enum": ["only"]
|
|
482
497
|
}
|
|
483
498
|
],
|
|
484
499
|
"description": "Enables Hot Module Replacement.",
|
|
485
|
-
"link": "https://webpack.js.org/configuration/dev-server/#devserverhot"
|
|
486
|
-
"cli": {
|
|
487
|
-
"negatedDescription": "Disables Hot Module Replacement."
|
|
488
|
-
}
|
|
500
|
+
"link": "https://webpack.js.org/configuration/dev-server/#devserverhot"
|
|
489
501
|
},
|
|
490
502
|
"IPC": {
|
|
491
503
|
"anyOf": [
|
|
@@ -731,7 +743,10 @@
|
|
|
731
743
|
},
|
|
732
744
|
"requestCert": {
|
|
733
745
|
"type": "boolean",
|
|
734
|
-
"description": "Request for an SSL certificate."
|
|
746
|
+
"description": "Request for an SSL certificate.",
|
|
747
|
+
"cli": {
|
|
748
|
+
"negatedDescription": "Does not request for an SSL certificate."
|
|
749
|
+
}
|
|
735
750
|
},
|
|
736
751
|
"ca": {
|
|
737
752
|
"anyOf": [
|
|
@@ -916,7 +931,10 @@
|
|
|
916
931
|
}
|
|
917
932
|
},
|
|
918
933
|
{
|
|
919
|
-
"type": "boolean"
|
|
934
|
+
"type": "boolean",
|
|
935
|
+
"cli": {
|
|
936
|
+
"negatedDescription": "Disallows to configure options for serving static files from directory."
|
|
937
|
+
}
|
|
920
938
|
},
|
|
921
939
|
{
|
|
922
940
|
"$ref": "#/definitions/StaticString"
|
|
@@ -962,7 +980,10 @@
|
|
|
962
980
|
"serveIndex": {
|
|
963
981
|
"anyOf": [
|
|
964
982
|
{
|
|
965
|
-
"type": "boolean"
|
|
983
|
+
"type": "boolean",
|
|
984
|
+
"cli": {
|
|
985
|
+
"negatedDescription": "Does not tell dev server to use serveIndex middleware."
|
|
986
|
+
}
|
|
966
987
|
},
|
|
967
988
|
{
|
|
968
989
|
"type": "object",
|
|
@@ -970,15 +991,15 @@
|
|
|
970
991
|
}
|
|
971
992
|
],
|
|
972
993
|
"description": "Tells dev server to use serveIndex middleware when enabled.",
|
|
973
|
-
"cli": {
|
|
974
|
-
"negatedDescription": "Does not tell dev server to use serveIndex middleware."
|
|
975
|
-
},
|
|
976
994
|
"link": "https://webpack.js.org/configuration/dev-server/#serveindex"
|
|
977
995
|
},
|
|
978
996
|
"watch": {
|
|
979
997
|
"anyOf": [
|
|
980
998
|
{
|
|
981
|
-
"type": "boolean"
|
|
999
|
+
"type": "boolean",
|
|
1000
|
+
"cli": {
|
|
1001
|
+
"negatedDescription": "Does not watch for files in static content directory."
|
|
1002
|
+
}
|
|
982
1003
|
},
|
|
983
1004
|
{
|
|
984
1005
|
"type": "object",
|
|
@@ -987,9 +1008,6 @@
|
|
|
987
1008
|
}
|
|
988
1009
|
],
|
|
989
1010
|
"description": "Watches for files in static content directory.",
|
|
990
|
-
"cli": {
|
|
991
|
-
"negatedDescription": "Does not watch for files in static content directory."
|
|
992
|
-
},
|
|
993
1011
|
"link": "https://webpack.js.org/configuration/dev-server/#watch"
|
|
994
1012
|
}
|
|
995
1013
|
}
|
|
@@ -1082,7 +1100,10 @@
|
|
|
1082
1100
|
"WebSocketServerEnum": {
|
|
1083
1101
|
"anyOf": [
|
|
1084
1102
|
{
|
|
1085
|
-
"enum": [false]
|
|
1103
|
+
"enum": [false],
|
|
1104
|
+
"cli": {
|
|
1105
|
+
"negatedDescription": "Disallows to set web socket server and options."
|
|
1106
|
+
}
|
|
1086
1107
|
},
|
|
1087
1108
|
{
|
|
1088
1109
|
"$ref": "#/definitions/WebSocketServerType"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webpack-dev-server",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.8.0",
|
|
4
4
|
"description": "Serves a webpack app. Updates the browser on changes.",
|
|
5
5
|
"bin": "bin/webpack-dev-server.js",
|
|
6
6
|
"main": "lib/Server.js",
|
|
@@ -40,53 +40,53 @@
|
|
|
40
40
|
"@types/express": "^4.17.13",
|
|
41
41
|
"@types/serve-index": "^1.9.1",
|
|
42
42
|
"@types/sockjs": "^0.3.33",
|
|
43
|
-
"@types/ws": "^8.
|
|
43
|
+
"@types/ws": "^8.5.1",
|
|
44
44
|
"ansi-html-community": "^0.0.8",
|
|
45
|
-
"bonjour": "^
|
|
45
|
+
"bonjour-service": "^1.0.11",
|
|
46
46
|
"chokidar": "^3.5.3",
|
|
47
47
|
"colorette": "^2.0.10",
|
|
48
48
|
"compression": "^1.7.4",
|
|
49
49
|
"connect-history-api-fallback": "^1.6.0",
|
|
50
50
|
"default-gateway": "^6.0.3",
|
|
51
|
-
"
|
|
52
|
-
"express": "^4.17.1",
|
|
51
|
+
"express": "^4.17.3",
|
|
53
52
|
"graceful-fs": "^4.2.6",
|
|
54
53
|
"html-entities": "^2.3.2",
|
|
55
|
-
"http-proxy-middleware": "^2.0.
|
|
54
|
+
"http-proxy-middleware": "^2.0.3",
|
|
56
55
|
"ipaddr.js": "^2.0.1",
|
|
57
56
|
"open": "^8.0.9",
|
|
58
57
|
"p-retry": "^4.5.0",
|
|
59
58
|
"portfinder": "^1.0.28",
|
|
59
|
+
"rimraf": "^3.0.2",
|
|
60
60
|
"schema-utils": "^4.0.0",
|
|
61
|
-
"selfsigned": "^2.0.
|
|
61
|
+
"selfsigned": "^2.0.1",
|
|
62
62
|
"serve-index": "^1.9.1",
|
|
63
63
|
"sockjs": "^0.3.21",
|
|
64
64
|
"spdy": "^4.0.2",
|
|
65
|
-
"strip-ansi": "^7.0.0",
|
|
66
65
|
"webpack-dev-middleware": "^5.3.1",
|
|
67
66
|
"ws": "^8.4.2"
|
|
68
67
|
},
|
|
69
68
|
"devDependencies": {
|
|
70
|
-
"@babel/cli": "^7.
|
|
71
|
-
"@babel/core": "^7.
|
|
72
|
-
"@babel/eslint-parser": "^7.
|
|
69
|
+
"@babel/cli": "^7.17.3",
|
|
70
|
+
"@babel/core": "^7.17.5",
|
|
71
|
+
"@babel/eslint-parser": "^7.17.0",
|
|
73
72
|
"@babel/plugin-transform-object-assign": "^7.14.5",
|
|
74
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
73
|
+
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
75
74
|
"@babel/preset-env": "^7.16.11",
|
|
76
|
-
"@babel/runtime": "^7.
|
|
77
|
-
"@commitlint/cli": "^16.
|
|
78
|
-
"@commitlint/config-conventional": "^16.
|
|
75
|
+
"@babel/runtime": "^7.17.2",
|
|
76
|
+
"@commitlint/cli": "^16.2.3",
|
|
77
|
+
"@commitlint/config-conventional": "^16.2.1",
|
|
79
78
|
"@types/compression": "^1.7.2",
|
|
80
79
|
"@types/default-gateway": "^3.0.1",
|
|
80
|
+
"@types/rimraf": "^3.0.2",
|
|
81
81
|
"@types/sockjs-client": "^1.5.1",
|
|
82
82
|
"acorn": "^8.2.4",
|
|
83
|
-
"babel-jest": "^27.
|
|
84
|
-
"babel-loader": "^8.2.
|
|
85
|
-
"body-parser": "^1.19.
|
|
86
|
-
"core-js": "^3.21.
|
|
83
|
+
"babel-jest": "^27.5.1",
|
|
84
|
+
"babel-loader": "^8.2.4",
|
|
85
|
+
"body-parser": "^1.19.2",
|
|
86
|
+
"core-js": "^3.21.1",
|
|
87
87
|
"css-loader": "^5.2.4",
|
|
88
|
-
"eslint": "^8.
|
|
89
|
-
"eslint-config-prettier": "^8.
|
|
88
|
+
"eslint": "^8.12.0",
|
|
89
|
+
"eslint-config-prettier": "^8.4.0",
|
|
90
90
|
"eslint-config-webpack": "^1.2.5",
|
|
91
91
|
"eslint-plugin-import": "^2.23.2",
|
|
92
92
|
"execa": "^5.1.1",
|
|
@@ -94,27 +94,27 @@
|
|
|
94
94
|
"html-webpack-plugin": "^4.5.2",
|
|
95
95
|
"http-proxy": "^1.18.1",
|
|
96
96
|
"husky": "^7.0.0",
|
|
97
|
-
"jest": "^27.
|
|
97
|
+
"jest": "^27.5.1",
|
|
98
98
|
"klona": "^2.0.4",
|
|
99
99
|
"less": "^4.1.1",
|
|
100
100
|
"less-loader": "^7.3.0",
|
|
101
|
-
"lint-staged": "^12.3.
|
|
102
|
-
"marked": "^
|
|
101
|
+
"lint-staged": "^12.3.4",
|
|
102
|
+
"marked": "^4.0.12",
|
|
103
103
|
"memfs": "^3.2.2",
|
|
104
104
|
"npm-run-all": "^4.1.5",
|
|
105
|
-
"prettier": "^2.
|
|
106
|
-
"puppeteer": "^13.1
|
|
105
|
+
"prettier": "^2.6.1",
|
|
106
|
+
"puppeteer": "^13.4.1",
|
|
107
107
|
"require-from-string": "^2.0.2",
|
|
108
108
|
"rimraf": "^3.0.2",
|
|
109
|
-
"sockjs-client": "^1.
|
|
109
|
+
"sockjs-client": "^1.6.0",
|
|
110
110
|
"standard-version": "^9.3.0",
|
|
111
111
|
"strip-ansi-v6": "npm:strip-ansi@^6.0.0",
|
|
112
112
|
"style-loader": "^2.0.0",
|
|
113
113
|
"supertest": "^6.1.3",
|
|
114
114
|
"tcp-port-used": "^1.0.2",
|
|
115
|
-
"typescript": "^4.
|
|
115
|
+
"typescript": "^4.6.3",
|
|
116
116
|
"url-loader": "^4.1.1",
|
|
117
|
-
"webpack": "^5.
|
|
117
|
+
"webpack": "^5.71.0",
|
|
118
118
|
"webpack-cli": "^4.7.2",
|
|
119
119
|
"webpack-merge": "^5.8.0"
|
|
120
120
|
},
|
package/types/bin/cli-flags.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ declare const _exports: {
|
|
|
45
45
|
client: {
|
|
46
46
|
configs: {
|
|
47
47
|
description: string;
|
|
48
|
+
negatedDescription: string;
|
|
48
49
|
multiple: boolean;
|
|
49
50
|
path: string;
|
|
50
51
|
type: string;
|
|
@@ -83,6 +84,7 @@ declare const _exports: {
|
|
|
83
84
|
type: string;
|
|
84
85
|
multiple: boolean;
|
|
85
86
|
description: string;
|
|
87
|
+
negatedDescription: string;
|
|
86
88
|
path: string;
|
|
87
89
|
}[];
|
|
88
90
|
description: string;
|
|
@@ -94,6 +96,7 @@ declare const _exports: {
|
|
|
94
96
|
type: string;
|
|
95
97
|
multiple: boolean;
|
|
96
98
|
description: string;
|
|
99
|
+
negatedDescription: string;
|
|
97
100
|
path: string;
|
|
98
101
|
}[];
|
|
99
102
|
description: string;
|
|
@@ -113,13 +116,21 @@ declare const _exports: {
|
|
|
113
116
|
multiple: boolean;
|
|
114
117
|
};
|
|
115
118
|
"client-reconnect": {
|
|
116
|
-
configs:
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
119
|
+
configs: (
|
|
120
|
+
| {
|
|
121
|
+
type: string;
|
|
122
|
+
multiple: boolean;
|
|
123
|
+
description: string;
|
|
124
|
+
negatedDescription: string;
|
|
125
|
+
path: string;
|
|
126
|
+
}
|
|
127
|
+
| {
|
|
128
|
+
type: string;
|
|
129
|
+
multiple: boolean;
|
|
130
|
+
description: string;
|
|
131
|
+
path: string;
|
|
132
|
+
}
|
|
133
|
+
)[];
|
|
123
134
|
description: string;
|
|
124
135
|
simpleType: string;
|
|
125
136
|
multiple: boolean;
|
|
@@ -247,6 +258,7 @@ declare const _exports: {
|
|
|
247
258
|
type: string;
|
|
248
259
|
multiple: boolean;
|
|
249
260
|
description: string;
|
|
261
|
+
negatedDescription: string;
|
|
250
262
|
path: string;
|
|
251
263
|
}[];
|
|
252
264
|
description: string;
|
|
@@ -287,7 +299,6 @@ declare const _exports: {
|
|
|
287
299
|
values: string[];
|
|
288
300
|
multiple: boolean;
|
|
289
301
|
description: string;
|
|
290
|
-
negatedDescription: string;
|
|
291
302
|
path: string;
|
|
292
303
|
}
|
|
293
304
|
)[];
|
|
@@ -770,6 +781,7 @@ declare const _exports: {
|
|
|
770
781
|
"server-options-request-cert": {
|
|
771
782
|
configs: {
|
|
772
783
|
description: string;
|
|
784
|
+
negatedDescription: string;
|
|
773
785
|
multiple: boolean;
|
|
774
786
|
path: string;
|
|
775
787
|
type: string;
|
|
@@ -791,12 +803,21 @@ declare const _exports: {
|
|
|
791
803
|
simpleType: string;
|
|
792
804
|
};
|
|
793
805
|
static: {
|
|
794
|
-
configs:
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
806
|
+
configs: (
|
|
807
|
+
| {
|
|
808
|
+
type: string;
|
|
809
|
+
multiple: boolean;
|
|
810
|
+
description: string;
|
|
811
|
+
path: string;
|
|
812
|
+
}
|
|
813
|
+
| {
|
|
814
|
+
type: string;
|
|
815
|
+
multiple: boolean;
|
|
816
|
+
description: string;
|
|
817
|
+
negatedDescription: string;
|
|
818
|
+
path: string;
|
|
819
|
+
}
|
|
820
|
+
)[];
|
|
800
821
|
description: string;
|
|
801
822
|
simpleType: string;
|
|
802
823
|
multiple: boolean;
|
|
@@ -895,6 +916,7 @@ declare const _exports: {
|
|
|
895
916
|
configs: (
|
|
896
917
|
| {
|
|
897
918
|
description: string;
|
|
919
|
+
negatedDescription: string;
|
|
898
920
|
multiple: boolean;
|
|
899
921
|
path: string;
|
|
900
922
|
type: string;
|