@fugood/bricks-project 2.23.0-beta.40 → 2.23.0-beta.41
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.23.0-beta.
|
|
3
|
+
"version": "2.23.0-beta.41",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "bun 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": "ea7960d6a0df9672fc3e7e72212b8a274082c746"
|
|
18
18
|
}
|
|
@@ -133,6 +133,8 @@ Default property:
|
|
|
133
133
|
onError?: Array<EventAction>
|
|
134
134
|
}
|
|
135
135
|
outlets?: {
|
|
136
|
+
/* Server is listening */
|
|
137
|
+
isListening?: () => Data
|
|
136
138
|
/* Query of request */
|
|
137
139
|
requestQuery?: () => Data
|
|
138
140
|
/* Body of request */
|
|
@@ -156,7 +158,7 @@ export type GeneratorHTTPServer = Generator &
|
|
|
156
158
|
| SwitchCondData
|
|
157
159
|
| {
|
|
158
160
|
__typename: 'SwitchCondInnerStateOutlet'
|
|
159
|
-
outlet: 'requestQuery' | 'requestBody' | 'clientAddress'
|
|
161
|
+
outlet: 'isListening' | 'requestQuery' | 'requestBody' | 'clientAddress'
|
|
160
162
|
value: any
|
|
161
163
|
}
|
|
162
164
|
}>
|
|
@@ -104,6 +104,8 @@ Default property:
|
|
|
104
104
|
onError?: Array<EventAction>
|
|
105
105
|
}
|
|
106
106
|
outlets?: {
|
|
107
|
+
/* Server is listening */
|
|
108
|
+
isListening?: () => Data
|
|
107
109
|
/* Is server started */
|
|
108
110
|
started?: () => Data
|
|
109
111
|
/* Accepted connections */
|
|
@@ -129,7 +131,7 @@ export type GeneratorTCPServer = Generator &
|
|
|
129
131
|
| SwitchCondData
|
|
130
132
|
| {
|
|
131
133
|
__typename: 'SwitchCondInnerStateOutlet'
|
|
132
|
-
outlet: 'started' | 'connections' | 'lastData' | 'errorMessage'
|
|
134
|
+
outlet: 'isListening' | 'started' | 'connections' | 'lastData' | 'errorMessage'
|
|
133
135
|
value: any
|
|
134
136
|
}
|
|
135
137
|
}>
|