@twin.org/node-core 0.9.4 → 0.9.5-next.2
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/es/builders/engineEnvBuilder.js +554 -378
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/builders/engineServerEnvBuilder.js +5 -2
- package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
- package/dist/es/builders/helper/envHelpers.js +40 -9
- package/dist/es/builders/helper/envHelpers.js.map +1 -1
- package/dist/es/cli.js +1 -1
- package/dist/es/cli.js.map +1 -1
- package/dist/es/commands/bootstrapDev.js +3 -3
- package/dist/es/commands/bootstrapDev.js.map +1 -1
- package/dist/es/commands/help.js +1 -1
- package/dist/es/commands/help.js.map +1 -1
- package/dist/es/commands/identityCreate.js +2 -2
- package/dist/es/commands/identityCreate.js.map +1 -1
- package/dist/es/commands/identityVerificationMethodCreate.js +2 -2
- package/dist/es/commands/identityVerificationMethodCreate.js.map +1 -1
- package/dist/es/commands/userCreate.js +1 -1
- package/dist/es/commands/userCreate.js.map +1 -1
- package/dist/es/commands/vaultKeyCreate.js +1 -1
- package/dist/es/commands/vaultKeyCreate.js.map +1 -1
- package/dist/es/commands/vaultKeyImport.js +1 -1
- package/dist/es/commands/vaultKeyImport.js.map +1 -1
- package/dist/es/defaults.js +51 -0
- package/dist/es/defaults.js.map +1 -1
- package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
- package/dist/es/models/IEngineServerEnvironmentVariables.js.map +1 -1
- package/dist/es/models/deprecatedEnvironmentVariableKeys.js +16 -0
- package/dist/es/models/deprecatedEnvironmentVariableKeys.js.map +1 -0
- package/dist/es/models/engineEnvironmentVariableKeys.js +26 -5
- package/dist/es/models/engineEnvironmentVariableKeys.js.map +1 -1
- package/dist/es/models/engineServerEnvironmentVariableKeys.js +1 -0
- package/dist/es/models/engineServerEnvironmentVariableKeys.js.map +1 -1
- package/dist/es/node.js +40 -21
- package/dist/es/node.js.map +1 -1
- package/dist/types/builders/engineEnvBuilder.d.ts +7 -0
- package/dist/types/builders/helper/envHelpers.d.ts +59 -2
- package/dist/types/defaults.d.ts +27 -0
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +115 -18
- package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +4 -0
- package/dist/types/models/deprecatedEnvironmentVariableKeys.d.ts +7 -0
- package/docs/changelog.md +169 -0
- package/docs/reference/functions/isMailboxEnabled.md +20 -0
- package/docs/reference/index.md +6 -0
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +221 -32
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +8 -0
- package/docs/reference/variables/COMPONENT_FACTORY_TYPE_NAME.md +5 -0
- package/docs/reference/variables/DEFAULT_HEALTH_EXCLUDE_CLONE_COMPONENTS.md +9 -0
- package/docs/reference/variables/DEFAULT_TRACING_FACADE_COMPONENT_EXCLUDE_TYPES.md +8 -0
- package/docs/reference/variables/DEFAULT_TRACING_FACADE_FACTORIES.md +5 -0
- package/docs/reference/variables/TRACING_FACADE_NAME.md +5 -0
- package/locales/en.json +3 -1
- package/package.json +35 -34
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,174 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.5-next.2](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.5-next.1...node-core-v0.9.5-next.2) (2026-09-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* configure which factories receive tracing facades ([#412](https://github.com/iotaledger/twin-node/issues/412)) ([da56bcb](https://github.com/iotaledger/twin-node/commit/da56bcbeba04d1091b3cd237624951c31ff9c185))
|
|
9
|
+
|
|
10
|
+
## [0.9.5-next.1](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.5-next.0...node-core-v0.9.5-next.1) (2026-09-14)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* add additional env vars ([#328](https://github.com/iotaledger/twin-node/issues/328)) ([6ca8718](https://github.com/iotaledger/twin-node/commit/6ca87184bc4d78829c957ea055d3c281aca6cf9f))
|
|
16
|
+
* add automation ([cfc63b4](https://github.com/iotaledger/twin-node/commit/cfc63b465c139280f696877df21d54dc6a065a7e))
|
|
17
|
+
* add background task max dispatch count ([f0965a0](https://github.com/iotaledger/twin-node/commit/f0965a004dc0e0a856fc0fe1e58330f84e09aa3b))
|
|
18
|
+
* add CLI commands and remove automated bootstrap code ([#69](https://github.com/iotaledger/twin-node/issues/69)) ([6e40933](https://github.com/iotaledger/twin-node/commit/6e40933d8bb820b380e1074fc88feeedca0ef7d9))
|
|
19
|
+
* add context id features ([#53](https://github.com/iotaledger/twin-node/issues/53)) ([827adf5](https://github.com/iotaledger/twin-node/commit/827adf52cb87fca53cec52b27e67f7a9dba2c088))
|
|
20
|
+
* add data space connector ([5a57087](https://github.com/iotaledger/twin-node/commit/5a57087d938265d3a4a812ff7c83d130ea4e103c))
|
|
21
|
+
* add dataspace endpoint tests for app-datasets, transfers, and data plane ([#213](https://github.com/iotaledger/twin-node/issues/213)) ([5641a78](https://github.com/iotaledger/twin-node/commit/5641a781bf17a1914912f3162116d7c5f5c0dca2))
|
|
22
|
+
* add dsp sweep vars ([#340](https://github.com/iotaledger/twin-node/issues/340)) ([5487c13](https://github.com/iotaledger/twin-node/commit/5487c13197fcd386206ec37f9f342c55ec5b1176))
|
|
23
|
+
* add extensions support ([476d5a8](https://github.com/iotaledger/twin-node/commit/476d5a864026a2f78e5b02bc9eb81359777a4a45))
|
|
24
|
+
* add immutable proof task worker idle timeout env var ([#409](https://github.com/iotaledger/twin-node/issues/409)) ([12a524e](https://github.com/iotaledger/twin-node/commit/12a524e44d353cbfa690e522c139ec7083baefab))
|
|
25
|
+
* add isDefault flag to logging connectors ([358e839](https://github.com/iotaledger/twin-node/commit/358e8394819dab9832d3a9ebfac74b897b7d5f40))
|
|
26
|
+
* add logging otel ([2adf4e4](https://github.com/iotaledger/twin-node/commit/2adf4e44fd2ef4cce43f354da2187719c72cc3cd))
|
|
27
|
+
* add module cache and improve resolution ([482be05](https://github.com/iotaledger/twin-node/commit/482be056c37a598033250ea8a7288a33cf3470b4))
|
|
28
|
+
* add module override for better local import resolution ([ba00d17](https://github.com/iotaledger/twin-node/commit/ba00d17beea0a9a1851c89ad7c6a33256051c818))
|
|
29
|
+
* add mutex settings ([#222](https://github.com/iotaledger/twin-node/issues/222)) ([492c55f](https://github.com/iotaledger/twin-node/commit/492c55f67d5f70c2a4a27dfdb2700a644ee87955))
|
|
30
|
+
* add new endpoints ([cc6e30d](https://github.com/iotaledger/twin-node/commit/cc6e30d85f7ed8018697462a7100e5c2f4e8f407))
|
|
31
|
+
* add notarization ([#121](https://github.com/iotaledger/twin-node/issues/121)) ([b2a11df](https://github.com/iotaledger/twin-node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
|
|
32
|
+
* add obligation enforcers and multi instance support ([#89](https://github.com/iotaledger/twin-node/issues/89)) ([d81af99](https://github.com/iotaledger/twin-node/commit/d81af99b8c4db6e9a1370b7065bf6d9d222c71ed))
|
|
33
|
+
* add outlook connector ([cf7ee0b](https://github.com/iotaledger/twin-node/commit/cf7ee0b73042cb33e693f3677386ca94567bb6e4))
|
|
34
|
+
* add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
|
|
35
|
+
* add standalone federated catalogue example config and endpoint tests ([#235](https://github.com/iotaledger/twin-node/issues/235)) ([ffb51dd](https://github.com/iotaledger/twin-node/commit/ffb51ddda5188c2f21b8ce65343b39a28f4eee4b))
|
|
36
|
+
* add support for dynamodb connection timeout ([63051b0](https://github.com/iotaledger/twin-node/commit/63051b0d22138079115dfac921e7f0c45eaad34e))
|
|
37
|
+
* add tenant override ([#337](https://github.com/iotaledger/twin-node/issues/337)) ([b4ea765](https://github.com/iotaledger/twin-node/commit/b4ea7656e2557c19053365dd5d4af14d0d945cd5))
|
|
38
|
+
* add tracing ([#344](https://github.com/iotaledger/twin-node/issues/344)) ([4fa71cd](https://github.com/iotaledger/twin-node/commit/4fa71cd0eafd7d708df15c8f0a85323fecd05561))
|
|
39
|
+
* add tracing console connector ([#373](https://github.com/iotaledger/twin-node/issues/373)) ([fb36cb8](https://github.com/iotaledger/twin-node/commit/fb36cb8bebc2e8c1b94fa332cead8283ca5d636a))
|
|
40
|
+
* add tracing support ([a4986fc](https://github.com/iotaledger/twin-node/commit/a4986fc4af603ee461ec8d18ff502dddbc43edec))
|
|
41
|
+
* add trust and rights management plugin support ([cdeb504](https://github.com/iotaledger/twin-node/commit/cdeb504ee5986a347466162b9afa781645b4a54c))
|
|
42
|
+
* add trust ttl ([#73](https://github.com/iotaledger/twin-node/issues/73)) ([911cee7](https://github.com/iotaledger/twin-node/commit/911cee771bba490143bb1574ca8360f7cf8baa1a))
|
|
43
|
+
* add validate-locales ([1a19dcb](https://github.com/iotaledger/twin-node/commit/1a19dcb005c2f0e3103e290db28c48a3464094cb))
|
|
44
|
+
* add vault prefix configuration ([#75](https://github.com/iotaledger/twin-node/issues/75)) ([1d4afb1](https://github.com/iotaledger/twin-node/commit/1d4afb1b1a8aa60795898eeb9e7f5153c279527d))
|
|
45
|
+
* add well-known endpoint ([38cbab2](https://github.com/iotaledger/twin-node/commit/38cbab20631666d3bae8b0b5ae346a3488148b1d))
|
|
46
|
+
* adding npm and https protocols to load extensions ([#45](https://github.com/iotaledger/twin-node/issues/45)) ([33940b7](https://github.com/iotaledger/twin-node/commit/33940b7e771a0c5af32c18d442deb26a8631fd02))
|
|
47
|
+
* additional cli commands ([#269](https://github.com/iotaledger/twin-node/issues/269)) ([c9e7c93](https://github.com/iotaledger/twin-node/commit/c9e7c939aedfceed9cbe501f2dc936e84289ed62))
|
|
48
|
+
* additional env vars and validation ([#324](https://github.com/iotaledger/twin-node/issues/324)) ([6b01e8c](https://github.com/iotaledger/twin-node/commit/6b01e8c10f9aa7181f51f13534d8164db3e7322d))
|
|
49
|
+
* additional options for enabling components ([e13d772](https://github.com/iotaledger/twin-node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
|
|
50
|
+
* additional route logging env vars ([7152c88](https://github.com/iotaledger/twin-node/commit/7152c887c3ba76778e2d9e68ba57198b8d81d802))
|
|
51
|
+
* additional stop interlock ([b3a2757](https://github.com/iotaledger/twin-node/commit/b3a2757325af0e7b258a9f97f1b52e86087e6301))
|
|
52
|
+
* align node module with dataspace rename and control plane integ… ([#95](https://github.com/iotaledger/twin-node/issues/95)) ([8129868](https://github.com/iotaledger/twin-node/commit/812986886fb5d779dd380956c4e6cc47c2d73530))
|
|
53
|
+
* auth fix ([a8e59e9](https://github.com/iotaledger/twin-node/commit/a8e59e947735180c9edee041f87af5e1e125e3c6))
|
|
54
|
+
* authentication services ([#118](https://github.com/iotaledger/twin-node/issues/118)) ([311a7f8](https://github.com/iotaledger/twin-node/commit/311a7f882db1e50a83e94d2dae32fefc68debb47))
|
|
55
|
+
* bootstrap legacy skip ([469d950](https://github.com/iotaledger/twin-node/commit/469d9505bd0497c271ba291641f63786200cb548))
|
|
56
|
+
* bootstrap-legacy rename ([#310](https://github.com/iotaledger/twin-node/issues/310)) ([53af8a2](https://github.com/iotaledger/twin-node/commit/53af8a2e797e90bb601416215247cd8649dd6220))
|
|
57
|
+
* bump [@twin](https://github.com/twin).org/* to latest next ([#172](https://github.com/iotaledger/twin-node/issues/172)) ([45862d5](https://github.com/iotaledger/twin-node/commit/45862d555e4958f1c12da357817b7b87642d7aba))
|
|
58
|
+
* bump dependencies ([#216](https://github.com/iotaledger/twin-node/issues/216)) ([a005824](https://github.com/iotaledger/twin-node/commit/a005824fe3e4a734543f613d8a7cc1275fec4572))
|
|
59
|
+
* cache the npm root to increase startup speed ([f10ea9e](https://github.com/iotaledger/twin-node/commit/f10ea9e22cc202f320df5fb21507b886c1f7345b))
|
|
60
|
+
* cli tenant-token command ([#177](https://github.com/iotaledger/twin-node/issues/177)) ([b3f68a4](https://github.com/iotaledger/twin-node/commit/b3f68a4972d065e865372230c078b4657dfabc1a))
|
|
61
|
+
* clone mode ([#360](https://github.com/iotaledger/twin-node/issues/360)) ([8bb56fb](https://github.com/iotaledger/twin-node/commit/8bb56fb6a4b138c2ff0d1267d1be4f8c24f492a6))
|
|
62
|
+
* component update ([9a3fdab](https://github.com/iotaledger/twin-node/commit/9a3fdab250e0dc8b8aa52479d5c72517de8d6c0f))
|
|
63
|
+
* component update ([8bf10da](https://github.com/iotaledger/twin-node/commit/8bf10da2e3e29f22afddd9cb55a26f343555e106))
|
|
64
|
+
* configure web server body limits from the environment ([#356](https://github.com/iotaledger/twin-node/issues/356)) ([f196ad3](https://github.com/iotaledger/twin-node/commit/f196ad368559515184e37a99d6876570074ebcd5))
|
|
65
|
+
* custom plugin timeout ([#395](https://github.com/iotaledger/twin-node/issues/395)) ([d4a33ba](https://github.com/iotaledger/twin-node/commit/d4a33ba10a54c6dfab0b845b386201ac326df88a))
|
|
66
|
+
* custom REST paths ([#99](https://github.com/iotaledger/twin-node/issues/99)) ([dcab1b2](https://github.com/iotaledger/twin-node/commit/dcab1b2b23c13b4c9f39c3c1c67284f56e732bd1))
|
|
67
|
+
* dataspace plane path ([#272](https://github.com/iotaledger/twin-node/issues/272)) ([5998eeb](https://github.com/iotaledger/twin-node/commit/5998eeb6fa1392ae753eb6bafeccefa1fb690573))
|
|
68
|
+
* don't override existing env vars with env files ([ebccac2](https://github.com/iotaledger/twin-node/commit/ebccac297c3156076f17c246a8abd994f8f20e61))
|
|
69
|
+
* dspace well-known endpoint test ([615bf55](https://github.com/iotaledger/twin-node/commit/615bf55de9e05ed410ed18348735cf4d6f392fe7))
|
|
70
|
+
* email ingestion ([#379](https://github.com/iotaledger/twin-node/issues/379)) ([12da79d](https://github.com/iotaledger/twin-node/commit/12da79dc9b167e288c555d4f1909a61c190eee4d))
|
|
71
|
+
* endpoints-runner ([#153](https://github.com/iotaledger/twin-node/issues/153)) ([cca42d0](https://github.com/iotaledger/twin-node/commit/cca42d07d6655d401c909308e8b73606fef05248))
|
|
72
|
+
* enhanced cli commands ([#288](https://github.com/iotaledger/twin-node/issues/288)) ([479fb34](https://github.com/iotaledger/twin-node/commit/479fb3448c493a134aee35b69ae39458e493a4ad))
|
|
73
|
+
* env var simplification ([460b0f2](https://github.com/iotaledger/twin-node/commit/460b0f20a73cb482f7443af502f261d5f9d01759))
|
|
74
|
+
* env var validation ([#243](https://github.com/iotaledger/twin-node/issues/243)) ([569945a](https://github.com/iotaledger/twin-node/commit/569945a751eb52d008a681777a3cba881af1b9a4))
|
|
75
|
+
* env vars consistency ([1823b7a](https://github.com/iotaledger/twin-node/commit/1823b7aeae5dc7484861534b851080afda64d869))
|
|
76
|
+
* env-prefix option and user-update cli command ([#83](https://github.com/iotaledger/twin-node/issues/83)) ([fc48efa](https://github.com/iotaledger/twin-node/commit/fc48efa7ad72173def048170c3afb5eeb9f1b292))
|
|
77
|
+
* envListToArray use explicitly default value ([#401](https://github.com/iotaledger/twin-node/issues/401)) ([25f6ede](https://github.com/iotaledger/twin-node/commit/25f6ede762916a986e61b28124076aa87fd4a15c))
|
|
78
|
+
* eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
|
|
79
|
+
* expose gasBudget and gasReservationDuration as configurable env vars ([#286](https://github.com/iotaledger/twin-node/issues/286)) ([d678b27](https://github.com/iotaledger/twin-node/commit/d678b27d629930a6ce85eeab9caf89d1187c3461))
|
|
80
|
+
* federated catalogue trust mode ([#194](https://github.com/iotaledger/twin-node/issues/194)) ([c18e6fb](https://github.com/iotaledger/twin-node/commit/c18e6fbe0014eb5faf8084d16169d86f3d3b23a6))
|
|
81
|
+
* file logging config ([#287](https://github.com/iotaledger/twin-node/issues/287)) ([a567b25](https://github.com/iotaledger/twin-node/commit/a567b253cbb8b9af872bb0e494c013212f4f55a2))
|
|
82
|
+
* first metrics in the core and app for testing ([#139](https://github.com/iotaledger/twin-node/issues/139)) ([abe17bb](https://github.com/iotaledger/twin-node/commit/abe17bb9a6261dcb7fd46253221182fbb1dc2259))
|
|
83
|
+
* health and url transformer ([#131](https://github.com/iotaledger/twin-node/issues/131)) ([3658903](https://github.com/iotaledger/twin-node/commit/36589036b9bea120880fc395b0d123a89032cf40))
|
|
84
|
+
* health exclude config ([#403](https://github.com/iotaledger/twin-node/issues/403)) ([646024b](https://github.com/iotaledger/twin-node/commit/646024b0ebe0f6f11630da2ab4b48e9ea6c2970b))
|
|
85
|
+
* identity profile information source ([dbb53d1](https://github.com/iotaledger/twin-node/commit/dbb53d145f517070d864f37650a6dbc1f3e9c3a8))
|
|
86
|
+
* immutable proof config ([#307](https://github.com/iotaledger/twin-node/issues/307)) ([9257495](https://github.com/iotaledger/twin-node/commit/92574953329647756aa6ab4cca80b1707e14a33f))
|
|
87
|
+
* immutable proof gate and additional config ([#157](https://github.com/iotaledger/twin-node/issues/157)) ([1d1fbb7](https://github.com/iotaledger/twin-node/commit/1d1fbb7c53525af848761dc25b42e9e676929972))
|
|
88
|
+
* improve bootstrapping and shutdown behaviour ([#66](https://github.com/iotaledger/twin-node/issues/66)) ([65b3452](https://github.com/iotaledger/twin-node/commit/65b345240334bfff48b52e136cc486cd7ac7f290))
|
|
89
|
+
* improve error handling for extensions and logging ([bd84fde](https://github.com/iotaledger/twin-node/commit/bd84fde67e5a9db6ac66730397992401ca52e88c))
|
|
90
|
+
* improve node logging ([63d6ea6](https://github.com/iotaledger/twin-node/commit/63d6ea661c2c76985d98addb8d905ad6f0c7f164))
|
|
91
|
+
* improve node logging ([c25b9c6](https://github.com/iotaledger/twin-node/commit/c25b9c6779bdb76f341df072c39b4c2fae4565a3))
|
|
92
|
+
* improved cli commands ([#206](https://github.com/iotaledger/twin-node/issues/206)) ([cf00850](https://github.com/iotaledger/twin-node/commit/cf0085023a66e187aaaaf3889128c845c73a1faf))
|
|
93
|
+
* migration options ([#293](https://github.com/iotaledger/twin-node/issues/293)) ([91acc88](https://github.com/iotaledger/twin-node/commit/91acc881f665be0177b2e895e2810dd4d6145105))
|
|
94
|
+
* migration testing ([#199](https://github.com/iotaledger/twin-node/issues/199)) ([97a731c](https://github.com/iotaledger/twin-node/commit/97a731c520d66ab0588d80987a0f88d388ce51ae))
|
|
95
|
+
* multi-tenant env wiring, trust auto-enable, tenant-token vault key, engine-driven callbackPath ([#128](https://github.com/iotaledger/twin-node/issues/128)) ([0de4d35](https://github.com/iotaledger/twin-node/commit/0de4d356fb2f825afae5469005d475700f510ee4))
|
|
96
|
+
* new tenant auth mechanisms ([#168](https://github.com/iotaledger/twin-node/issues/168)) ([686f111](https://github.com/iotaledger/twin-node/commit/686f1118e79e6f26a8dc72a5e9172584057f4518))
|
|
97
|
+
* organization identifiers ([#203](https://github.com/iotaledger/twin-node/issues/203)) ([1a6b176](https://github.com/iotaledger/twin-node/commit/1a6b1760d9f8e43a769407668426c70e1c8e1aa8))
|
|
98
|
+
* pool env vars ([#331](https://github.com/iotaledger/twin-node/issues/331)) ([338ea61](https://github.com/iotaledger/twin-node/commit/338ea612b37aa4d15971c8a09def47bee9395d0c))
|
|
99
|
+
* publish nightly soak reports as a web-hosted dashboard ([#378](https://github.com/iotaledger/twin-node/issues/378)) ([e6984f9](https://github.com/iotaledger/twin-node/commit/e6984f9183e50b78e10de2124b94e3c22c7306ca))
|
|
100
|
+
* refactor testing ([fc28140](https://github.com/iotaledger/twin-node/commit/fc28140c6a398d31e092752ef53fa490da167794))
|
|
101
|
+
* register task scheduler when immutable proof is enabled ([#320](https://github.com/iotaledger/twin-node/issues/320)) ([b1d9c81](https://github.com/iotaledger/twin-node/commit/b1d9c81e0ec267292c6eaba8a6228eff1c41a9f0))
|
|
102
|
+
* remove dap and darp ([36c3ffb](https://github.com/iotaledger/twin-node/commit/36c3ffb31af65a0e3025859dab675efeee043155))
|
|
103
|
+
* remove hosting component ([#219](https://github.com/iotaledger/twin-node/issues/219)) ([fb2fea4](https://github.com/iotaledger/twin-node/commit/fb2fea46f57aab9252ee1491499e84b8ad46533e))
|
|
104
|
+
* remove mutex timeout from logger ([e5a5407](https://github.com/iotaledger/twin-node/commit/e5a540725fa97b523f88589f582501f41b982d5b))
|
|
105
|
+
* remove old mutex timeouts ([fe6444a](https://github.com/iotaledger/twin-node/commit/fe6444af1a2e53cf6bce8517dbb8352e8b07bb31))
|
|
106
|
+
* remove set-tenant ([#186](https://github.com/iotaledger/twin-node/issues/186)) ([1fc1909](https://github.com/iotaledger/twin-node/commit/1fc1909e6335dea51dfec3bb91fba4badaa9790a))
|
|
107
|
+
* rest metrics ([#341](https://github.com/iotaledger/twin-node/issues/341)) ([ebec573](https://github.com/iotaledger/twin-node/commit/ebec5736bb66adfd97f7d73912bec1ce7392e5f8))
|
|
108
|
+
* separate script directory from exec directory ([f6bb4db](https://github.com/iotaledger/twin-node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
|
|
109
|
+
* silent telemetry and tracing options ([#351](https://github.com/iotaledger/twin-node/issues/351)) ([3a5752f](https://github.com/iotaledger/twin-node/commit/3a5752fc0bf8a028b3ebfc34878524ac799fb81e))
|
|
110
|
+
* support public origin and hosting service ([#77](https://github.com/iotaledger/twin-node/issues/77)) ([3b9039f](https://github.com/iotaledger/twin-node/commit/3b9039fcba7f7038c06f8fd6a5ccc9fdbbf535b3))
|
|
111
|
+
* telemetry and deprecated variables ([198f43f](https://github.com/iotaledger/twin-node/commit/198f43fd2d94e2f6721924365b73c0af3020e31d))
|
|
112
|
+
* telemetry batching ([#347](https://github.com/iotaledger/twin-node/issues/347)) ([5d5b0a9](https://github.com/iotaledger/twin-node/commit/5d5b0a91396298fe774ae26193b0595875cd118a))
|
|
113
|
+
* telemetry tracing multi ([#357](https://github.com/iotaledger/twin-node/issues/357)) ([b6412ac](https://github.com/iotaledger/twin-node/commit/b6412ac3141a94a0f9f7d1dd391451ac9247e862))
|
|
114
|
+
* tenant-id in user create and update ([#148](https://github.com/iotaledger/twin-node/issues/148)) ([1143e30](https://github.com/iotaledger/twin-node/commit/1143e30fb0d2056d113367d0c5ea251f07695da1))
|
|
115
|
+
* typescript 6 update ([ce2e3ca](https://github.com/iotaledger/twin-node/commit/ce2e3ca5219587709f7b9cf6c65909b48fba11b5))
|
|
116
|
+
* update background tasks and add fedcat filters ([1fd297e](https://github.com/iotaledger/twin-node/commit/1fd297e29f60b5bb3909638b68e326c5b0e2d77d))
|
|
117
|
+
* update components ([a2643b9](https://github.com/iotaledger/twin-node/commit/a2643b9ce7e338e4853237a6daba7fa58d9fc5c8))
|
|
118
|
+
* update components ([35cdfdc](https://github.com/iotaledger/twin-node/commit/35cdfdcba2b52599b4db3afd8c9e6dd17468b21e))
|
|
119
|
+
* update context usage ([2215440](https://github.com/iotaledger/twin-node/commit/2215440801dea3955885b6579ad9b98b7a5d87ea))
|
|
120
|
+
* update dependencies ([34a5d51](https://github.com/iotaledger/twin-node/commit/34a5d5100140f6e642e8aaa1b4da5304b8ce6f0a))
|
|
121
|
+
* update dependencies ([64c8ea8](https://github.com/iotaledger/twin-node/commit/64c8ea8c8b5e918f7ad419c4e3b8d08faf5e3fdd))
|
|
122
|
+
* update dependencies ([aab05b5](https://github.com/iotaledger/twin-node/commit/aab05b552152a208a504fb9a080603f1990d4f79))
|
|
123
|
+
* update dependencies ([6cb3d3a](https://github.com/iotaledger/twin-node/commit/6cb3d3a63f7b976f80074ddecfba034b7e92f919))
|
|
124
|
+
* update dependencies ([#178](https://github.com/iotaledger/twin-node/issues/178)) ([0d346ec](https://github.com/iotaledger/twin-node/commit/0d346ec57f43f418b73fe71fcd2b187d769a53e9))
|
|
125
|
+
* update dependencies ([#316](https://github.com/iotaledger/twin-node/issues/316)) ([f3fe328](https://github.com/iotaledger/twin-node/commit/f3fe3281a80f34763c923eacca58364273a550b7))
|
|
126
|
+
* update docs ([61e5a00](https://github.com/iotaledger/twin-node/commit/61e5a004089a0c11ec03e354b076604ecdeb4817))
|
|
127
|
+
* update document management components ([ed2c065](https://github.com/iotaledger/twin-node/commit/ed2c065a5030a7233f3623818d7325d85654ef0d))
|
|
128
|
+
* update engine ([a40b377](https://github.com/iotaledger/twin-node/commit/a40b37726c3b61c6bb40265ec0006d1071ffac7e))
|
|
129
|
+
* update engine ([4b438e2](https://github.com/iotaledger/twin-node/commit/4b438e22c27d784ee6cc964b7cb4401e9699ab16))
|
|
130
|
+
* update engine dependency ([db290df](https://github.com/iotaledger/twin-node/commit/db290df3b18374f7d86da575c6048657b98c355b))
|
|
131
|
+
* update engine dependency ([3494c31](https://github.com/iotaledger/twin-node/commit/3494c3144fd5ce6d3a9f2936c7890ab36795aeaa))
|
|
132
|
+
* update for livez endpoint ([9fc2e6a](https://github.com/iotaledger/twin-node/commit/9fc2e6ade38b3ec9591399a633d02b1e5fe07910))
|
|
133
|
+
* update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
|
|
134
|
+
* update logging retention units in config ([0b9bb69](https://github.com/iotaledger/twin-node/commit/0b9bb696db0722f6b33e37e1ebd1f4d6ffbcf7cc))
|
|
135
|
+
* update order of logging ([2161938](https://github.com/iotaledger/twin-node/commit/2161938c969b18e4678459a69090287e5ccdb404))
|
|
136
|
+
* update order of logging ([b295f31](https://github.com/iotaledger/twin-node/commit/b295f315f7c5b611d229d9e5314d414da05828b9))
|
|
137
|
+
* update rights management ([5c992c6](https://github.com/iotaledger/twin-node/commit/5c992c6b0d72f3eeaa39ee267e096d9a3f477f4e))
|
|
138
|
+
* update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
|
|
139
|
+
* update rights management dependencies ([97ad02e](https://github.com/iotaledger/twin-node/commit/97ad02e4b74cfe5e722f74da2fc2229bbf004c0a))
|
|
140
|
+
* update tests ([f15bc1f](https://github.com/iotaledger/twin-node/commit/f15bc1fb9fc1a7a9b6611ad42591d9c02e078cfb))
|
|
141
|
+
* update tests ([633797e](https://github.com/iotaledger/twin-node/commit/633797e3c4766ad7e47c472c153456c60e1a6ba2))
|
|
142
|
+
* update to latest engine ([00d4974](https://github.com/iotaledger/twin-node/commit/00d4974f9cfb02bf48505cfb4af4a7aba1df4b3d))
|
|
143
|
+
* updated context id features ([ef7be07](https://github.com/iotaledger/twin-node/commit/ef7be07d44dccdeacf10f90cb4ffde0303faa6fa))
|
|
144
|
+
* updating linting ([feacd17](https://github.com/iotaledger/twin-node/commit/feacd178bb025bcd29a0ae6e4b8e79f23a989169))
|
|
145
|
+
* use core env helpers ([568fbc5](https://github.com/iotaledger/twin-node/commit/568fbc53906b022bc8465ffb941a160075d88e96))
|
|
146
|
+
* use features instead of disableNodeIdentity ([2e6109b](https://github.com/iotaledger/twin-node/commit/2e6109bd1de825e0f5396fc120d99ad7b3929852))
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
### Bug Fixes
|
|
150
|
+
|
|
151
|
+
* bootstrap legacy fails on second run ([c0a4e6d](https://github.com/iotaledger/twin-node/commit/c0a4e6d6f8d1bf385412a22fed2a0974e219abaa))
|
|
152
|
+
* bootstrap vault key skip logic ([#112](https://github.com/iotaledger/twin-node/issues/112)) ([4084368](https://github.com/iotaledger/twin-node/commit/4084368f0762c3a1b8e214ac30f5545297c88ea6))
|
|
153
|
+
* bump [@twin](https://github.com/twin).org deps to next.30 stack, fix node-core route snapshot ([#159](https://github.com/iotaledger/twin-node/issues/159)) ([73ad77f](https://github.com/iotaledger/twin-node/commit/73ad77f862050cb8dfcf42c484332bdacf026092))
|
|
154
|
+
* example typo for vault-key-create ([eed5844](https://github.com/iotaledger/twin-node/commit/eed58448b8e6d057fa964822d337cb2898d5bb54))
|
|
155
|
+
* immutable proof requirements ([2940579](https://github.com/iotaledger/twin-node/commit/29405798b24053c017adaaf08a2537ea6b1c8d0f))
|
|
156
|
+
* improve calculation of execution directory ([106d65d](https://github.com/iotaledger/twin-node/commit/106d65d7ad5524e2e147b681d68f9476c024cfaa))
|
|
157
|
+
* only register DID context keys when nodeIdentityEnabled is true ([#140](https://github.com/iotaledger/twin-node/issues/140)) ([21f1c10](https://github.com/iotaledger/twin-node/commit/21f1c107adbd715518414f7255ead970b809b4b3))
|
|
158
|
+
* optional private key in identity create ([325ebd8](https://github.com/iotaledger/twin-node/commit/325ebd859d95b3078107e76f1806cded078a0ce1))
|
|
159
|
+
* org identity verification methods ([18f158b](https://github.com/iotaledger/twin-node/commit/18f158b2f63930e20e94437c17ed43421771a458))
|
|
160
|
+
* recover tenant id on bootstrap-legacy restart when TENANT_ID is unset ([#198](https://github.com/iotaledger/twin-node/issues/198)) ([d9451e1](https://github.com/iotaledger/twin-node/commit/d9451e188fe4fd20d5cfd0408b0dc226ddf25cd8))
|
|
161
|
+
* register dataspace control plane rest client as multi-instance ([#191](https://github.com/iotaledger/twin-node/issues/191)) ([4548f5c](https://github.com/iotaledger/twin-node/commit/4548f5c6e7f1d65fd147e502e57d5686e60e5195))
|
|
162
|
+
* set dataspace control-plane callbackPath in node env builder ([#237](https://github.com/iotaledger/twin-node/issues/237)) ([2eac214](https://github.com/iotaledger/twin-node/commit/2eac21438e9f4b4a0bf84f30ebc864bd424aac35))
|
|
163
|
+
* stalled timeout now is provided in seconds ([#241](https://github.com/iotaledger/twin-node/issues/241)) ([ebd827d](https://github.com/iotaledger/twin-node/commit/ebd827d02a9a4f8ad4f4c84d064d02831ef015cb))
|
|
164
|
+
* support load-env for tenant-token cli command ([34059c0](https://github.com/iotaledger/twin-node/commit/34059c052a685decdd689beb16d2b250e9a83643))
|
|
165
|
+
* synchronised storage construction ([#102](https://github.com/iotaledger/twin-node/issues/102)) ([58b61e9](https://github.com/iotaledger/twin-node/commit/58b61e9a67f499a35bea17e5d2dc6a1efc2cb893))
|
|
166
|
+
* test endpoints ([2b83ed0](https://github.com/iotaledger/twin-node/commit/2b83ed0d4f1da473a525a95202e01d9680c7d26c))
|
|
167
|
+
* test with latest dependencies ([91123b7](https://github.com/iotaledger/twin-node/commit/91123b71d0e7b51700a5d5452b2a0c9fc5c5256e))
|
|
168
|
+
* update dependencies ([#279](https://github.com/iotaledger/twin-node/issues/279)) ([2c0de07](https://github.com/iotaledger/twin-node/commit/2c0de07a15541e73612ba5bd62f4f566e4efca34))
|
|
169
|
+
* use async getStore in tests ([2189df4](https://github.com/iotaledger/twin-node/commit/2189df49a57637ba8effdee50965473f0a814c6c))
|
|
170
|
+
* wire includeErrorStack debug flag into auth and tenant processor configs ([#313](https://github.com/iotaledger/twin-node/issues/313)) ([3c69c51](https://github.com/iotaledger/twin-node/commit/3c69c51bfdd65305efe2fbe9da508e684a4245d1))
|
|
171
|
+
|
|
3
172
|
## [0.9.4](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.4...node-core-v0.9.4) (2026-09-14)
|
|
4
173
|
|
|
5
174
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Function: isMailboxEnabled()
|
|
2
|
+
|
|
3
|
+
> **isMailboxEnabled**(`envVars`): `boolean`
|
|
4
|
+
|
|
5
|
+
Checks if the mailbox subsystem is enabled.
|
|
6
|
+
Returns true when any component that depends on the mailbox subsystem is enabled.
|
|
7
|
+
|
|
8
|
+
## Parameters
|
|
9
|
+
|
|
10
|
+
### envVars
|
|
11
|
+
|
|
12
|
+
[`IEngineEnvironmentVariables`](../interfaces/IEngineEnvironmentVariables.md)
|
|
13
|
+
|
|
14
|
+
The environment variables.
|
|
15
|
+
|
|
16
|
+
## Returns
|
|
17
|
+
|
|
18
|
+
`boolean`
|
|
19
|
+
|
|
20
|
+
True if mailbox is enabled.
|
package/docs/reference/index.md
CHANGED
|
@@ -36,6 +36,11 @@
|
|
|
36
36
|
- [AUTH\_SIGNING\_KEY\_ID](variables/AUTH_SIGNING_KEY_ID.md)
|
|
37
37
|
- [CONTEXT\_ID\_HANDLER\_FEATURE\_DID](variables/CONTEXT_ID_HANDLER_FEATURE_DID.md)
|
|
38
38
|
- [CONTEXT\_ID\_HANDLER\_FEATURE\_TENANT](variables/CONTEXT_ID_HANDLER_FEATURE_TENANT.md)
|
|
39
|
+
- [DEFAULT\_HEALTH\_EXCLUDE\_CLONE\_COMPONENTS](variables/DEFAULT_HEALTH_EXCLUDE_CLONE_COMPONENTS.md)
|
|
40
|
+
- [TRACING\_FACADE\_NAME](variables/TRACING_FACADE_NAME.md)
|
|
41
|
+
- [COMPONENT\_FACTORY\_TYPE\_NAME](variables/COMPONENT_FACTORY_TYPE_NAME.md)
|
|
42
|
+
- [DEFAULT\_TRACING\_FACADE\_FACTORIES](variables/DEFAULT_TRACING_FACADE_FACTORIES.md)
|
|
43
|
+
- [DEFAULT\_TRACING\_FACADE\_COMPONENT\_EXCLUDE\_TYPES](variables/DEFAULT_TRACING_FACADE_COMPONENT_EXCLUDE_TYPES.md)
|
|
39
44
|
- [ModuleProtocol](variables/ModuleProtocol.md)
|
|
40
45
|
|
|
41
46
|
## Functions
|
|
@@ -50,6 +55,7 @@
|
|
|
50
55
|
- [isAutomationRequired](functions/isAutomationRequired.md)
|
|
51
56
|
- [isTelemetryEnabled](functions/isTelemetryEnabled.md)
|
|
52
57
|
- [isTracingEnabled](functions/isTracingEnabled.md)
|
|
58
|
+
- [isMailboxEnabled](functions/isMailboxEnabled.md)
|
|
53
59
|
- [buildEngineServerConfiguration](functions/buildEngineServerConfiguration.md)
|
|
54
60
|
- [isAuthEntityStorageRequired](functions/isAuthEntityStorageRequired.md)
|
|
55
61
|
- [extensionsConfiguration](functions/extensionsConfiguration.md)
|
|
@@ -887,11 +887,11 @@ The type of event bus component: service.
|
|
|
887
887
|
|
|
888
888
|
***
|
|
889
889
|
|
|
890
|
-
###
|
|
890
|
+
### emailProtocolConnector? {#emailprotocolconnector}
|
|
891
891
|
|
|
892
|
-
> `optional` **
|
|
892
|
+
> `optional` **emailProtocolConnector?**: `string`
|
|
893
893
|
|
|
894
|
-
|
|
894
|
+
The email protocol connector types, comma-separated: pop3, imap, gmail, outlook.
|
|
895
895
|
|
|
896
896
|
***
|
|
897
897
|
|
|
@@ -947,7 +947,47 @@ The applications for the push notifications reference a separate json with @json
|
|
|
947
947
|
|
|
948
948
|
> `optional` **messagingEmailConnector?**: `string`
|
|
949
949
|
|
|
950
|
-
The type of messaging email connector: entity-storage, aws.
|
|
950
|
+
The type of messaging email connector: entity-storage, aws, smtp.
|
|
951
|
+
|
|
952
|
+
***
|
|
953
|
+
|
|
954
|
+
### smtpHost? {#smtphost}
|
|
955
|
+
|
|
956
|
+
> `optional` **smtpHost?**: `string`
|
|
957
|
+
|
|
958
|
+
SMTP server hostname or IP address.
|
|
959
|
+
|
|
960
|
+
***
|
|
961
|
+
|
|
962
|
+
### smtpPort? {#smtpport}
|
|
963
|
+
|
|
964
|
+
> `optional` **smtpPort?**: `string`
|
|
965
|
+
|
|
966
|
+
SMTP server port, defaults to 587.
|
|
967
|
+
|
|
968
|
+
***
|
|
969
|
+
|
|
970
|
+
### smtpSecure? {#smtpsecure}
|
|
971
|
+
|
|
972
|
+
> `optional` **smtpSecure?**: `string`
|
|
973
|
+
|
|
974
|
+
Whether the SMTP connector uses TLS.
|
|
975
|
+
|
|
976
|
+
***
|
|
977
|
+
|
|
978
|
+
### smtpUsername? {#smtpusername}
|
|
979
|
+
|
|
980
|
+
> `optional` **smtpUsername?**: `string`
|
|
981
|
+
|
|
982
|
+
SMTP authentication username.
|
|
983
|
+
|
|
984
|
+
***
|
|
985
|
+
|
|
986
|
+
### smtpPassword? {#smtppassword}
|
|
987
|
+
|
|
988
|
+
> `optional` **smtpPassword?**: `string`
|
|
989
|
+
|
|
990
|
+
SMTP authentication password.
|
|
951
991
|
|
|
952
992
|
***
|
|
953
993
|
|
|
@@ -1061,11 +1101,49 @@ The maximum number of metric values to hold in the write-ahead cache for the tel
|
|
|
1061
1101
|
|
|
1062
1102
|
***
|
|
1063
1103
|
|
|
1064
|
-
###
|
|
1104
|
+
### telemetryFlushTimeout? {#telemetryflushtimeout}
|
|
1105
|
+
|
|
1106
|
+
> `optional` **telemetryFlushTimeout?**: `string`
|
|
1107
|
+
|
|
1108
|
+
How long in milliseconds the telemetry connector waits for its background thread to confirm
|
|
1109
|
+
a flush before a read continues without it.
|
|
1065
1110
|
|
|
1066
|
-
|
|
1111
|
+
#### Default
|
|
1067
1112
|
|
|
1068
|
-
|
|
1113
|
+
```ts
|
|
1114
|
+
30000
|
|
1115
|
+
```
|
|
1116
|
+
|
|
1117
|
+
***
|
|
1118
|
+
|
|
1119
|
+
### telemetryTaskCoalesce? {#telemetrytaskcoalesce}
|
|
1120
|
+
|
|
1121
|
+
> `optional` **telemetryTaskCoalesce?**: `string`
|
|
1122
|
+
|
|
1123
|
+
How long in milliseconds the telemetry connector holds values so several share a single
|
|
1124
|
+
background task, instead of creating one task per value. Set to 0 to disable coalescing.
|
|
1125
|
+
|
|
1126
|
+
#### Default
|
|
1127
|
+
|
|
1128
|
+
```ts
|
|
1129
|
+
1000
|
|
1130
|
+
```
|
|
1131
|
+
|
|
1132
|
+
***
|
|
1133
|
+
|
|
1134
|
+
### telemetryTaskStallTimeout? {#telemetrytaskstalltimeout}
|
|
1135
|
+
|
|
1136
|
+
> `optional` **telemetryTaskStallTimeout?**: `string`
|
|
1137
|
+
|
|
1138
|
+
How long in milliseconds the telemetry connector allows with tasks outstanding and none of
|
|
1139
|
+
them completing before its background thread is treated as stalled and replaced. Set to 0
|
|
1140
|
+
to disable the check.
|
|
1141
|
+
|
|
1142
|
+
#### Default
|
|
1143
|
+
|
|
1144
|
+
```ts
|
|
1145
|
+
60000
|
|
1146
|
+
```
|
|
1069
1147
|
|
|
1070
1148
|
***
|
|
1071
1149
|
|
|
@@ -1109,7 +1187,69 @@ A list of components to exclude from tracing, can be a comma separated list of c
|
|
|
1109
1187
|
|
|
1110
1188
|
> `optional` **tracingConnector?**: `string`
|
|
1111
1189
|
|
|
1112
|
-
The type of tracing connector, comma-separated for multiple: entity-storage, open-telemetry, silent.
|
|
1190
|
+
The type of tracing connector, comma-separated for multiple: entity-storage, open-telemetry, console, silent.
|
|
1191
|
+
|
|
1192
|
+
***
|
|
1193
|
+
|
|
1194
|
+
### facade? {#facade}
|
|
1195
|
+
|
|
1196
|
+
> `optional` **facade?**: `string`
|
|
1197
|
+
|
|
1198
|
+
The type of facade to activate, comma-separated for multiple: tracing. When this is not set no
|
|
1199
|
+
facades are activated.
|
|
1200
|
+
|
|
1201
|
+
***
|
|
1202
|
+
|
|
1203
|
+
### tracingFacadeFactories? {#tracingfacadefactories}
|
|
1204
|
+
|
|
1205
|
+
> `optional` **tracingFacadeFactories?**: `string`
|
|
1206
|
+
|
|
1207
|
+
The factories the tracing facade is activated on, as a comma separated list of factory type names
|
|
1208
|
+
e.g. "component,vault", replacing the default set rather than adding to it. Only applies when the
|
|
1209
|
+
tracing facade is activated.
|
|
1210
|
+
|
|
1211
|
+
***
|
|
1212
|
+
|
|
1213
|
+
### tracingFacadeComponentExcludeTypes? {#tracingfacadecomponentexcludetypes}
|
|
1214
|
+
|
|
1215
|
+
> `optional` **tracingFacadeComponentExcludeTypes?**: `string`
|
|
1216
|
+
|
|
1217
|
+
Additional instance types the tracing facade is not applied to in the component factory, as a comma
|
|
1218
|
+
separated list of regular expressions matched anywhere in the type name e.g. "^my-tracing-service$".
|
|
1219
|
+
These extend the types which are always excluded, "tracing", "telemetry", "metrics", "logging" and
|
|
1220
|
+
"platform", they do not replace them.
|
|
1221
|
+
|
|
1222
|
+
***
|
|
1223
|
+
|
|
1224
|
+
### tracingFacadeExcludeParams? {#tracingfacadeexcludeparams}
|
|
1225
|
+
|
|
1226
|
+
> `optional` **tracingFacadeExcludeParams?**: `string`
|
|
1227
|
+
|
|
1228
|
+
Additional parameter names the tracing facade does not record, as a comma separated list
|
|
1229
|
+
e.g. "ssn,accountNumber". These extend the names which are always excluded, they do not
|
|
1230
|
+
replace them.
|
|
1231
|
+
|
|
1232
|
+
***
|
|
1233
|
+
|
|
1234
|
+
### tracingFacadeExcludeMethods? {#tracingfacadeexcludemethods}
|
|
1235
|
+
|
|
1236
|
+
> `optional` **tracingFacadeExcludeMethods?**: `string`
|
|
1237
|
+
|
|
1238
|
+
Additional method names the tracing facade does not record a span for, as a comma separated
|
|
1239
|
+
list e.g. "health,ping". These extend the names which are always excluded, they do not
|
|
1240
|
+
replace them.
|
|
1241
|
+
|
|
1242
|
+
***
|
|
1243
|
+
|
|
1244
|
+
### tracingFacadeIncludeObjects? {#tracingfacadeincludeobjects}
|
|
1245
|
+
|
|
1246
|
+
> `optional` **tracingFacadeIncludeObjects?**: `string`
|
|
1247
|
+
|
|
1248
|
+
The object values the tracing facade records, as a comma separated list of patterns matched
|
|
1249
|
+
against the end of "parameter" or "parameter.property", where the returned value is named
|
|
1250
|
+
"resolved" e.g. "filter.id,resolved.id". Naming the parameter records the whole object
|
|
1251
|
+
including any secrets it holds, naming a property records only that property. Object
|
|
1252
|
+
parameters and returned objects are omitted unless matched here.
|
|
1113
1253
|
|
|
1114
1254
|
***
|
|
1115
1255
|
|
|
@@ -1145,14 +1285,6 @@ The span processor: batch (default) or simple. Only used when TWIN_TRACING_CONNE
|
|
|
1145
1285
|
|
|
1146
1286
|
***
|
|
1147
1287
|
|
|
1148
|
-
### tracingMutexTimeout? {#tracingmutextimeout}
|
|
1149
|
-
|
|
1150
|
-
> `optional` **tracingMutexTimeout?**: `string`
|
|
1151
|
-
|
|
1152
|
-
The mutex timeout in milliseconds for the tracing connector.
|
|
1153
|
-
|
|
1154
|
-
***
|
|
1155
|
-
|
|
1156
1288
|
### faucetConnector? {#faucetconnector}
|
|
1157
1289
|
|
|
1158
1290
|
> `optional` **faucetConnector?**: `string`
|
|
@@ -1404,6 +1536,21 @@ Set to -1 to retain failures forever.
|
|
|
1404
1536
|
|
|
1405
1537
|
***
|
|
1406
1538
|
|
|
1539
|
+
### immutableProofTaskWorkerIdleTimeout? {#immutableprooftaskworkeridletimeout}
|
|
1540
|
+
|
|
1541
|
+
> `optional` **immutableProofTaskWorkerIdleTimeout?**: `string`
|
|
1542
|
+
|
|
1543
|
+
How long in seconds the proof task worker stays idle before it shuts down.
|
|
1544
|
+
Set to 0 to shut it down after every task, or -1 to never shut it down.
|
|
1545
|
+
|
|
1546
|
+
#### Default
|
|
1547
|
+
|
|
1548
|
+
```ts
|
|
1549
|
+
60
|
|
1550
|
+
```
|
|
1551
|
+
|
|
1552
|
+
***
|
|
1553
|
+
|
|
1407
1554
|
### immutableProofSweepInterval? {#immutableproofsweepinterval}
|
|
1408
1555
|
|
|
1409
1556
|
> `optional` **immutableProofSweepInterval?**: `string`
|
|
@@ -1498,14 +1645,6 @@ The identity verification method id to use with attestation.
|
|
|
1498
1645
|
|
|
1499
1646
|
***
|
|
1500
1647
|
|
|
1501
|
-
### dataProcessingEnabled? {#dataprocessingenabled}
|
|
1502
|
-
|
|
1503
|
-
> `optional` **dataProcessingEnabled?**: `string`
|
|
1504
|
-
|
|
1505
|
-
Is the data processing enabled, defaults to false.
|
|
1506
|
-
|
|
1507
|
-
***
|
|
1508
|
-
|
|
1509
1648
|
### dataConverterConnectors? {#dataconverterconnectors}
|
|
1510
1649
|
|
|
1511
1650
|
> `optional` **dataConverterConnectors?**: `string`
|
|
@@ -1943,6 +2082,64 @@ The interval in seconds for running the application health lifecycle (init, appl
|
|
|
1943
2082
|
|
|
1944
2083
|
***
|
|
1945
2084
|
|
|
2085
|
+
### healthExcludeCloneComponents? {#healthexcludeclonecomponents}
|
|
2086
|
+
|
|
2087
|
+
> `optional` **healthExcludeCloneComponents?**: `string`
|
|
2088
|
+
|
|
2089
|
+
Comma separated list of regular expressions matched against the engine component type keys,
|
|
2090
|
+
any which match are excluded from the engine clone used by the application health background
|
|
2091
|
+
task. Defaults to the component groups which provide no application health checks.
|
|
2092
|
+
|
|
2093
|
+
***
|
|
2094
|
+
|
|
2095
|
+
### backgroundTaskMaxSystemWorkerCount? {#backgroundtaskmaxsystemworkercount}
|
|
2096
|
+
|
|
2097
|
+
> `optional` **backgroundTaskMaxSystemWorkerCount?**: `string`
|
|
2098
|
+
|
|
2099
|
+
The maximum number of workers to use for processing background tasks, defaults to twice the number of CPU cores.
|
|
2100
|
+
|
|
2101
|
+
***
|
|
2102
|
+
|
|
2103
|
+
### backgroundTaskInterval? {#backgroundtaskinterval}
|
|
2104
|
+
|
|
2105
|
+
> `optional` **backgroundTaskInterval?**: `string`
|
|
2106
|
+
|
|
2107
|
+
The interval in milliseconds to leave between background tasks, defaults to 100.
|
|
2108
|
+
|
|
2109
|
+
***
|
|
2110
|
+
|
|
2111
|
+
### backgroundTaskRetryInterval? {#backgroundtaskretryinterval}
|
|
2112
|
+
|
|
2113
|
+
> `optional` **backgroundTaskRetryInterval?**: `string`
|
|
2114
|
+
|
|
2115
|
+
The interval in milliseconds to leave between background task retries, defaults to 5000.
|
|
2116
|
+
|
|
2117
|
+
***
|
|
2118
|
+
|
|
2119
|
+
### backgroundTaskCleanupInterval? {#backgroundtaskcleanupinterval}
|
|
2120
|
+
|
|
2121
|
+
> `optional` **backgroundTaskCleanupInterval?**: `string`
|
|
2122
|
+
|
|
2123
|
+
The interval in milliseconds between sweeps removing retained background tasks, defaults to 120000.
|
|
2124
|
+
|
|
2125
|
+
***
|
|
2126
|
+
|
|
2127
|
+
### backgroundTaskWorkerShutdownTimeout? {#backgroundtaskworkershutdowntimeout}
|
|
2128
|
+
|
|
2129
|
+
> `optional` **backgroundTaskWorkerShutdownTimeout?**: `string`
|
|
2130
|
+
|
|
2131
|
+
The time in milliseconds to wait for each handler's workers to shut down before terminating them, defaults to 5000.
|
|
2132
|
+
|
|
2133
|
+
***
|
|
2134
|
+
|
|
2135
|
+
### backgroundTaskMaxDispatchCount? {#backgroundtaskmaxdispatchcount}
|
|
2136
|
+
|
|
2137
|
+
> `optional` **backgroundTaskMaxDispatchCount?**: `string`
|
|
2138
|
+
|
|
2139
|
+
The maximum dispatches of a background task attempt before it is failed as interrupted, defaults to 3, set to -1 for no limit.
|
|
2140
|
+
|
|
2141
|
+
***
|
|
2142
|
+
|
|
1946
2143
|
### automationActionTypes? {#automationactiontypes}
|
|
1947
2144
|
|
|
1948
2145
|
> `optional` **automationActionTypes?**: `string`
|
|
@@ -1992,14 +2189,6 @@ The mutex timeout in milliseconds for the document management component.
|
|
|
1992
2189
|
|
|
1993
2190
|
***
|
|
1994
2191
|
|
|
1995
|
-
### loggingMutexTimeout? {#loggingmutextimeout}
|
|
1996
|
-
|
|
1997
|
-
> `optional` **loggingMutexTimeout?**: `string`
|
|
1998
|
-
|
|
1999
|
-
The mutex timeout in milliseconds for the logging component.
|
|
2000
|
-
|
|
2001
|
-
***
|
|
2002
|
-
|
|
2003
2192
|
### entityStorageMutexTimeout? {#entitystoragemutextimeout}
|
|
2004
2193
|
|
|
2005
2194
|
> `optional` **entityStorageMutexTimeout?**: `string`
|
|
@@ -68,6 +68,14 @@ The public origin URL for the API e.g. https://api.example.com:1234
|
|
|
68
68
|
|
|
69
69
|
***
|
|
70
70
|
|
|
71
|
+
### fastifyPluginTimeout? {#fastifyplugintimeout}
|
|
72
|
+
|
|
73
|
+
> `optional` **fastifyPluginTimeout?**: `string`
|
|
74
|
+
|
|
75
|
+
The time in milliseconds Fastify waits for a plugin to load before failing, defaults to 30000.
|
|
76
|
+
|
|
77
|
+
***
|
|
78
|
+
|
|
71
79
|
### authAdminProcessorType? {#authadminprocessortype}
|
|
72
80
|
|
|
73
81
|
> `optional` **authAdminProcessorType?**: `string`
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Variable: DEFAULT\_HEALTH\_EXCLUDE\_CLONE\_COMPONENTS
|
|
2
|
+
|
|
3
|
+
> `const` **DEFAULT\_HEALTH\_EXCLUDE\_CLONE\_COMPONENTS**: `string`[]
|
|
4
|
+
|
|
5
|
+
The default component types excluded from the engine clone used by the application health
|
|
6
|
+
background task. Each entry is a regular expression matched against the engine config type keys.
|
|
7
|
+
None of the components in these groups implement healthApplication, and nothing that does
|
|
8
|
+
implement it depends on them, so keeping them out of the clone removes the cost of constructing
|
|
9
|
+
and starting them in the health worker.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Variable: DEFAULT\_TRACING\_FACADE\_COMPONENT\_EXCLUDE\_TYPES
|
|
2
|
+
|
|
3
|
+
> `const` **DEFAULT\_TRACING\_FACADE\_COMPONENT\_EXCLUDE\_TYPES**: `string`[]
|
|
4
|
+
|
|
5
|
+
The instance types the tracing facade is never applied to in the component factory, matched as
|
|
6
|
+
regular expressions anywhere in the type name. The facade resolves the tracing and logging
|
|
7
|
+
components while recording a span, so wrapping those results in an endless call chain. The
|
|
8
|
+
remaining patterns cover the high volume infrastructure services whose spans carry little value.
|
package/locales/en.json
CHANGED
|
@@ -98,7 +98,9 @@
|
|
|
98
98
|
},
|
|
99
99
|
"warn": {
|
|
100
100
|
"node": {
|
|
101
|
-
"unknownEnvVars": "Unknown environment variable properties [{keys}], they will be ignored. Check for typos in variable names, for custom variables use the {prefix}ENV_ALLOW_LIST."
|
|
101
|
+
"unknownEnvVars": "Unknown environment variable properties [{keys}], they will be ignored. Check for typos in variable names, for custom variables use the {prefix}ENV_ALLOW_LIST.",
|
|
102
|
+
"deprecatedEnvVar": "The environment variable \"{key}\" is deprecated and no longer has any effect, please use {replacements} instead. This variable will be removed in a future release.",
|
|
103
|
+
"deprecatedEnvVarNoReplacement": "The environment variable \"{key}\" is deprecated and no longer has any effect. This variable will be removed in a future release."
|
|
102
104
|
}
|
|
103
105
|
},
|
|
104
106
|
"node": {
|