@twin.org/engine-server-types 0.0.2-next.2 → 0.0.2-next.4
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/dist/cjs/index.cjs +2 -2
- package/dist/esm/index.mjs +2 -2
- package/docs/changelog.md +30 -0
- package/package.json +3 -3
package/dist/cjs/index.cjs
CHANGED
|
@@ -287,7 +287,7 @@ function initialiseRestRouteProcessorComponent(engineCore, context, instanceConf
|
|
|
287
287
|
}
|
|
288
288
|
else if (type === RestRouteProcessorType.Logging) {
|
|
289
289
|
component = new apiProcessors.LoggingProcessor({
|
|
290
|
-
|
|
290
|
+
loggingComponentType: context.defaultTypes.loggingComponent,
|
|
291
291
|
config: {
|
|
292
292
|
...instanceConfig.options?.config
|
|
293
293
|
}
|
|
@@ -379,7 +379,7 @@ function initialiseSocketRouteProcessorComponent(engineCore, context, instanceCo
|
|
|
379
379
|
}
|
|
380
380
|
else if (type === SocketRouteProcessorType.Logging) {
|
|
381
381
|
component = new apiProcessors.LoggingProcessor({
|
|
382
|
-
|
|
382
|
+
loggingComponentType: context.defaultTypes.loggingComponent,
|
|
383
383
|
config: {
|
|
384
384
|
...instanceConfig.options?.config
|
|
385
385
|
}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -285,7 +285,7 @@ function initialiseRestRouteProcessorComponent(engineCore, context, instanceConf
|
|
|
285
285
|
}
|
|
286
286
|
else if (type === RestRouteProcessorType.Logging) {
|
|
287
287
|
component = new LoggingProcessor({
|
|
288
|
-
|
|
288
|
+
loggingComponentType: context.defaultTypes.loggingComponent,
|
|
289
289
|
config: {
|
|
290
290
|
...instanceConfig.options?.config
|
|
291
291
|
}
|
|
@@ -377,7 +377,7 @@ function initialiseSocketRouteProcessorComponent(engineCore, context, instanceCo
|
|
|
377
377
|
}
|
|
378
378
|
else if (type === SocketRouteProcessorType.Logging) {
|
|
379
379
|
component = new LoggingProcessor({
|
|
380
|
-
|
|
380
|
+
loggingComponentType: context.defaultTypes.loggingComponent,
|
|
381
381
|
config: {
|
|
382
382
|
...instanceConfig.options?.config
|
|
383
383
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @twin.org/engine-server-types - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.4](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.3...engine-server-types-v0.0.2-next.4) (2025-07-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add default logging component for web server ([8ad94f0](https://github.com/twinfoundation/engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/engine-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
16
|
+
* @twin.org/engine-types bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
17
|
+
|
|
18
|
+
## [0.0.2-next.3](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.2...engine-server-types-v0.0.2-next.3) (2025-07-24)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Miscellaneous Chores
|
|
22
|
+
|
|
23
|
+
* **engine-server-types:** Synchronize repo versions
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Dependencies
|
|
27
|
+
|
|
28
|
+
* The following workspace dependencies were updated
|
|
29
|
+
* dependencies
|
|
30
|
+
* @twin.org/engine-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
31
|
+
* @twin.org/engine-types bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
32
|
+
|
|
3
33
|
## [0.0.2-next.2](https://github.com/twinfoundation/engine/compare/engine-server-types-v0.0.2-next.1...engine-server-types-v0.0.2-next.2) (2025-07-21)
|
|
4
34
|
|
|
5
35
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/engine-server-types",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.4",
|
|
4
4
|
"description": "Server types to use in an engine server.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"@twin.org/api-server-fastify": "next",
|
|
24
24
|
"@twin.org/api-service": "next",
|
|
25
25
|
"@twin.org/core": "next",
|
|
26
|
-
"@twin.org/engine-models": "0.0.2-next.
|
|
27
|
-
"@twin.org/engine-types": "0.0.2-next.
|
|
26
|
+
"@twin.org/engine-models": "0.0.2-next.4",
|
|
27
|
+
"@twin.org/engine-types": "0.0.2-next.4",
|
|
28
28
|
"@twin.org/entity": "next",
|
|
29
29
|
"@twin.org/nameof": "next"
|
|
30
30
|
},
|