@twin.org/node-core 0.0.3-next.32 → 0.0.3-next.34
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 +61 -1
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/commands/bootstrapLegacy.js +7 -0
- package/dist/es/commands/bootstrapLegacy.js.map +1 -1
- package/dist/es/defaults.js +3 -1
- package/dist/es/defaults.js.map +1 -1
- package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
- package/dist/es/node.js +1 -1
- package/dist/es/node.js.map +1 -1
- package/dist/types/defaults.d.ts +1 -0
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +21 -0
- package/docs/changelog.md +249 -235
- package/docs/reference/index.md +1 -0
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +41 -0
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +61 -0
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +61 -0
- package/docs/reference/variables/URL_TRANSFORMER_ENCRYPTION_KEY_ID.md +3 -0
- package/locales/en.json +2 -1
- package/package.json +1 -1
package/docs/reference/index.md
CHANGED
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
- [SYNCHRONISED\_STORAGE\_BLOB\_STORAGE\_ENCRYPTION\_KEY\_ID](variables/SYNCHRONISED_STORAGE_BLOB_STORAGE_ENCRYPTION_KEY_ID.md)
|
|
34
34
|
- [TRUST\_VERIFICATION\_METHOD\_ID](variables/TRUST_VERIFICATION_METHOD_ID.md)
|
|
35
35
|
- [AUTH\_SIGNING\_KEY\_ID](variables/AUTH_SIGNING_KEY_ID.md)
|
|
36
|
+
- [URL\_TRANSFORMER\_ENCRYPTION\_KEY\_ID](variables/URL_TRANSFORMER_ENCRYPTION_KEY_ID.md)
|
|
36
37
|
- [CONTEXT\_ID\_HANDLER\_FEATURE\_DID](variables/CONTEXT_ID_HANDLER_FEATURE_DID.md)
|
|
37
38
|
- [CONTEXT\_ID\_HANDLER\_FEATURE\_TENANT](variables/CONTEXT_ID_HANDLER_FEATURE_TENANT.md)
|
|
38
39
|
- [ModuleProtocol](variables/ModuleProtocol.md)
|
|
@@ -1175,6 +1175,47 @@ Example: "dataspace/entities"
|
|
|
1175
1175
|
|
|
1176
1176
|
***
|
|
1177
1177
|
|
|
1178
|
+
### automationEnabled? {#automationenabled}
|
|
1179
|
+
|
|
1180
|
+
> `optional` **automationEnabled?**: `string`
|
|
1181
|
+
|
|
1182
|
+
Are the automation components enabled, defaults to false.
|
|
1183
|
+
|
|
1184
|
+
***
|
|
1185
|
+
|
|
1186
|
+
### healthEnabled? {#healthenabled}
|
|
1187
|
+
|
|
1188
|
+
> `optional` **healthEnabled?**: `string`
|
|
1189
|
+
|
|
1190
|
+
Are the health components enabled, defaults to false.
|
|
1191
|
+
|
|
1192
|
+
***
|
|
1193
|
+
|
|
1194
|
+
### urlTransformerEnabled? {#urltransformerenabled}
|
|
1195
|
+
|
|
1196
|
+
> `optional` **urlTransformerEnabled?**: `string`
|
|
1197
|
+
|
|
1198
|
+
Is the url transformer enabled, defaults to false.
|
|
1199
|
+
|
|
1200
|
+
***
|
|
1201
|
+
|
|
1202
|
+
### urlTransformerEncryptionKeyId? {#urltransformerencryptionkeyid}
|
|
1203
|
+
|
|
1204
|
+
> `optional` **urlTransformerEncryptionKeyId?**: `string`
|
|
1205
|
+
|
|
1206
|
+
The id of the key in the vault to use for encrypting parameters in url transformer.
|
|
1207
|
+
|
|
1208
|
+
***
|
|
1209
|
+
|
|
1210
|
+
### automationActionTypes? {#automationactiontypes}
|
|
1211
|
+
|
|
1212
|
+
> `optional` **automationActionTypes?**: `string`
|
|
1213
|
+
|
|
1214
|
+
The type of the automation action to create, comma separate for more than one connector.
|
|
1215
|
+
values: fetch
|
|
1216
|
+
|
|
1217
|
+
***
|
|
1218
|
+
|
|
1178
1219
|
### extensions? {#extensions}
|
|
1179
1220
|
|
|
1180
1221
|
> `optional` **extensions?**: `string`
|
|
@@ -1739,6 +1739,67 @@ Example: "dataspace/entities"
|
|
|
1739
1739
|
|
|
1740
1740
|
***
|
|
1741
1741
|
|
|
1742
|
+
### automationEnabled? {#automationenabled}
|
|
1743
|
+
|
|
1744
|
+
> `optional` **automationEnabled?**: `string`
|
|
1745
|
+
|
|
1746
|
+
Are the automation components enabled, defaults to false.
|
|
1747
|
+
|
|
1748
|
+
#### Inherited from
|
|
1749
|
+
|
|
1750
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`automationEnabled`](IEngineEnvironmentVariables.md#automationenabled)
|
|
1751
|
+
|
|
1752
|
+
***
|
|
1753
|
+
|
|
1754
|
+
### healthEnabled? {#healthenabled}
|
|
1755
|
+
|
|
1756
|
+
> `optional` **healthEnabled?**: `string`
|
|
1757
|
+
|
|
1758
|
+
Are the health components enabled, defaults to false.
|
|
1759
|
+
|
|
1760
|
+
#### Inherited from
|
|
1761
|
+
|
|
1762
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`healthEnabled`](IEngineEnvironmentVariables.md#healthenabled)
|
|
1763
|
+
|
|
1764
|
+
***
|
|
1765
|
+
|
|
1766
|
+
### urlTransformerEnabled? {#urltransformerenabled}
|
|
1767
|
+
|
|
1768
|
+
> `optional` **urlTransformerEnabled?**: `string`
|
|
1769
|
+
|
|
1770
|
+
Is the url transformer enabled, defaults to false.
|
|
1771
|
+
|
|
1772
|
+
#### Inherited from
|
|
1773
|
+
|
|
1774
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`urlTransformerEnabled`](IEngineEnvironmentVariables.md#urltransformerenabled)
|
|
1775
|
+
|
|
1776
|
+
***
|
|
1777
|
+
|
|
1778
|
+
### urlTransformerEncryptionKeyId? {#urltransformerencryptionkeyid}
|
|
1779
|
+
|
|
1780
|
+
> `optional` **urlTransformerEncryptionKeyId?**: `string`
|
|
1781
|
+
|
|
1782
|
+
The id of the key in the vault to use for encrypting parameters in url transformer.
|
|
1783
|
+
|
|
1784
|
+
#### Inherited from
|
|
1785
|
+
|
|
1786
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`urlTransformerEncryptionKeyId`](IEngineEnvironmentVariables.md#urltransformerencryptionkeyid)
|
|
1787
|
+
|
|
1788
|
+
***
|
|
1789
|
+
|
|
1790
|
+
### automationActionTypes? {#automationactiontypes}
|
|
1791
|
+
|
|
1792
|
+
> `optional` **automationActionTypes?**: `string`
|
|
1793
|
+
|
|
1794
|
+
The type of the automation action to create, comma separate for more than one connector.
|
|
1795
|
+
values: fetch
|
|
1796
|
+
|
|
1797
|
+
#### Inherited from
|
|
1798
|
+
|
|
1799
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`automationActionTypes`](IEngineEnvironmentVariables.md#automationactiontypes)
|
|
1800
|
+
|
|
1801
|
+
***
|
|
1802
|
+
|
|
1742
1803
|
### extensions? {#extensions}
|
|
1743
1804
|
|
|
1744
1805
|
> `optional` **extensions?**: `string`
|
|
@@ -1735,6 +1735,67 @@ Example: "dataspace/entities"
|
|
|
1735
1735
|
|
|
1736
1736
|
***
|
|
1737
1737
|
|
|
1738
|
+
### automationEnabled? {#automationenabled}
|
|
1739
|
+
|
|
1740
|
+
> `optional` **automationEnabled?**: `string`
|
|
1741
|
+
|
|
1742
|
+
Are the automation components enabled, defaults to false.
|
|
1743
|
+
|
|
1744
|
+
#### Inherited from
|
|
1745
|
+
|
|
1746
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`automationEnabled`](IEngineServerEnvironmentVariables.md#automationenabled)
|
|
1747
|
+
|
|
1748
|
+
***
|
|
1749
|
+
|
|
1750
|
+
### healthEnabled? {#healthenabled}
|
|
1751
|
+
|
|
1752
|
+
> `optional` **healthEnabled?**: `string`
|
|
1753
|
+
|
|
1754
|
+
Are the health components enabled, defaults to false.
|
|
1755
|
+
|
|
1756
|
+
#### Inherited from
|
|
1757
|
+
|
|
1758
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`healthEnabled`](IEngineServerEnvironmentVariables.md#healthenabled)
|
|
1759
|
+
|
|
1760
|
+
***
|
|
1761
|
+
|
|
1762
|
+
### urlTransformerEnabled? {#urltransformerenabled}
|
|
1763
|
+
|
|
1764
|
+
> `optional` **urlTransformerEnabled?**: `string`
|
|
1765
|
+
|
|
1766
|
+
Is the url transformer enabled, defaults to false.
|
|
1767
|
+
|
|
1768
|
+
#### Inherited from
|
|
1769
|
+
|
|
1770
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`urlTransformerEnabled`](IEngineServerEnvironmentVariables.md#urltransformerenabled)
|
|
1771
|
+
|
|
1772
|
+
***
|
|
1773
|
+
|
|
1774
|
+
### urlTransformerEncryptionKeyId? {#urltransformerencryptionkeyid}
|
|
1775
|
+
|
|
1776
|
+
> `optional` **urlTransformerEncryptionKeyId?**: `string`
|
|
1777
|
+
|
|
1778
|
+
The id of the key in the vault to use for encrypting parameters in url transformer.
|
|
1779
|
+
|
|
1780
|
+
#### Inherited from
|
|
1781
|
+
|
|
1782
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`urlTransformerEncryptionKeyId`](IEngineServerEnvironmentVariables.md#urltransformerencryptionkeyid)
|
|
1783
|
+
|
|
1784
|
+
***
|
|
1785
|
+
|
|
1786
|
+
### automationActionTypes? {#automationactiontypes}
|
|
1787
|
+
|
|
1788
|
+
> `optional` **automationActionTypes?**: `string`
|
|
1789
|
+
|
|
1790
|
+
The type of the automation action to create, comma separate for more than one connector.
|
|
1791
|
+
values: fetch
|
|
1792
|
+
|
|
1793
|
+
#### Inherited from
|
|
1794
|
+
|
|
1795
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`automationActionTypes`](IEngineServerEnvironmentVariables.md#automationactiontypes)
|
|
1796
|
+
|
|
1797
|
+
***
|
|
1798
|
+
|
|
1738
1799
|
### extensions? {#extensions}
|
|
1739
1800
|
|
|
1740
1801
|
> `optional` **extensions?**: `string`
|
package/locales/en.json
CHANGED
|
@@ -104,7 +104,8 @@
|
|
|
104
104
|
"attestationMethodCreate": "Creating attestation method for organisation identity",
|
|
105
105
|
"immutableProofMethodCreate": "Creating immutable proof method for organisation identity",
|
|
106
106
|
"adminIdentityCreate": "Creating admin user identity",
|
|
107
|
-
"adminUserCreate": "Creating admin user"
|
|
107
|
+
"adminUserCreate": "Creating admin user",
|
|
108
|
+
"urlTransformParamKeyAdd": "Adding URL transform parameter encryption key"
|
|
108
109
|
}
|
|
109
110
|
},
|
|
110
111
|
"identity-create": {
|