@fugood/bricks-project 2.22.0-beta.30 → 2.22.0-beta.31
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": "@fugood/bricks-project",
|
|
3
|
-
"version": "2.22.0-beta.
|
|
3
|
+
"version": "2.22.0-beta.31",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node scripts/build.js"
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"lodash": "^4.17.4",
|
|
15
15
|
"uuid": "^8.3.1"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "62a6707c07d0602c36f1f88df6baf07747da6c0a"
|
|
18
18
|
}
|
|
@@ -40,7 +40,9 @@ Default property:
|
|
|
40
40
|
"authType": "none",
|
|
41
41
|
"asyncMode": false,
|
|
42
42
|
"resStatusCode": 200,
|
|
43
|
-
"resContentType": "text/plain"
|
|
43
|
+
"resContentType": "text/plain",
|
|
44
|
+
"tls": false,
|
|
45
|
+
"tlsKeyPairPassword": ""
|
|
44
46
|
}
|
|
45
47
|
*/
|
|
46
48
|
property?: {
|
|
@@ -108,6 +110,12 @@ Default property:
|
|
|
108
110
|
sseEvent?: string | DataLink
|
|
109
111
|
/* SSE single request mode, block new request until the previous request is processed */
|
|
110
112
|
sseSingleRequest?: boolean | DataLink
|
|
113
|
+
/* Enable TLS (HTTPS) */
|
|
114
|
+
tls?: boolean | DataLink
|
|
115
|
+
/* Server side key pair (Base64 encoded PKCS #12) */
|
|
116
|
+
tlsKeyPair?: string | DataLink
|
|
117
|
+
/* Password of key pair, leave empty if no password */
|
|
118
|
+
tlsKeyPairPassword?: string | DataLink
|
|
111
119
|
}
|
|
112
120
|
events?: {
|
|
113
121
|
/* Event of HTTP server is ready */
|