@twin.org/node-core 0.0.2-next.14 → 0.0.2-next.15
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 +56 -74
- package/dist/esm/index.mjs +58 -76
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +20 -0
- package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +2 -5
- package/dist/types/models/INodeEnvironmentVariables.d.ts +1 -2
- package/docs/changelog.md +7 -0
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +41 -1
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +1522 -10
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +179 -131
- package/package.json +1 -1
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @twin.org/node-core - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.15](https://github.com/twinfoundation/node/compare/node-core-v0.0.2-next.14...node-core-v0.0.2-next.15) (2025-09-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* additional options for enabling components ([e13d772](https://github.com/twinfoundation/node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
|
|
9
|
+
|
|
3
10
|
## [0.0.2-next.14](https://github.com/twinfoundation/node/compare/node-core-v0.0.2-next.13...node-core-v0.0.2-next.14) (2025-09-25)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -4,7 +4,7 @@ The engine core environment variables.
|
|
|
4
4
|
|
|
5
5
|
## Extended by
|
|
6
6
|
|
|
7
|
-
- [`
|
|
7
|
+
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md)
|
|
8
8
|
|
|
9
9
|
## Properties
|
|
10
10
|
|
|
@@ -739,6 +739,14 @@ The identity verification method id to use with attestation.
|
|
|
739
739
|
|
|
740
740
|
***
|
|
741
741
|
|
|
742
|
+
### dataProcessingEnabled?
|
|
743
|
+
|
|
744
|
+
> `optional` **dataProcessingEnabled**: `string`
|
|
745
|
+
|
|
746
|
+
Is the data processing enabled, defaults to false.
|
|
747
|
+
|
|
748
|
+
***
|
|
749
|
+
|
|
742
750
|
### dataConverterConnectors?
|
|
743
751
|
|
|
744
752
|
> `optional` **dataConverterConnectors**: `string`
|
|
@@ -755,6 +763,30 @@ The type of the default data extractor, can be a comma separated list: json-path
|
|
|
755
763
|
|
|
756
764
|
***
|
|
757
765
|
|
|
766
|
+
### auditableItemGraphEnabled?
|
|
767
|
+
|
|
768
|
+
> `optional` **auditableItemGraphEnabled**: `string`
|
|
769
|
+
|
|
770
|
+
Is the auditable item graph enabled, defaults to false.
|
|
771
|
+
|
|
772
|
+
***
|
|
773
|
+
|
|
774
|
+
### auditableItemStreamEnabled?
|
|
775
|
+
|
|
776
|
+
> `optional` **auditableItemStreamEnabled**: `string`
|
|
777
|
+
|
|
778
|
+
Is the auditable item stream enabled, defaults to false.
|
|
779
|
+
|
|
780
|
+
***
|
|
781
|
+
|
|
782
|
+
### documentManagementEnabled?
|
|
783
|
+
|
|
784
|
+
> `optional` **documentManagementEnabled**: `string`
|
|
785
|
+
|
|
786
|
+
Is the document management enabled, defaults to false.
|
|
787
|
+
|
|
788
|
+
***
|
|
789
|
+
|
|
758
790
|
### synchronisedStorageEnabled?
|
|
759
791
|
|
|
760
792
|
> `optional` **synchronisedStorageEnabled**: `string`
|
|
@@ -983,6 +1015,14 @@ Use the @json: prefix to specify the path to the JSON configuration file.
|
|
|
983
1015
|
|
|
984
1016
|
***
|
|
985
1017
|
|
|
1018
|
+
### vcAuthenticationEnabled?
|
|
1019
|
+
|
|
1020
|
+
> `optional` **vcAuthenticationEnabled**: `string`
|
|
1021
|
+
|
|
1022
|
+
Enable verifiable credential authentication for the API.
|
|
1023
|
+
|
|
1024
|
+
***
|
|
1025
|
+
|
|
986
1026
|
### vcAuthenticationVerificationMethodId?
|
|
987
1027
|
|
|
988
1028
|
> `optional` **vcAuthenticationVerificationMethodId**: `string`
|