@twin.org/node-core 0.0.3-next.9 → 0.9.0-next.1

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.
Files changed (230) hide show
  1. package/README.md +3 -1
  2. package/dist/es/builders/engineEnvBuilder.js +470 -174
  3. package/dist/es/builders/engineEnvBuilder.js.map +1 -1
  4. package/dist/es/builders/engineServerEnvBuilder.js +87 -39
  5. package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
  6. package/dist/es/builders/extensionsBuilder.js +3 -3
  7. package/dist/es/builders/extensionsBuilder.js.map +1 -1
  8. package/dist/es/cli.js +254 -0
  9. package/dist/es/cli.js.map +1 -0
  10. package/dist/es/commands/bootstrapLegacy.js +312 -0
  11. package/dist/es/commands/bootstrapLegacy.js.map +1 -0
  12. package/dist/es/commands/help.js +86 -0
  13. package/dist/es/commands/help.js.map +1 -0
  14. package/dist/es/commands/identityCreate.js +377 -0
  15. package/dist/es/commands/identityCreate.js.map +1 -0
  16. package/dist/es/commands/identityImports.js +83 -0
  17. package/dist/es/commands/identityImports.js.map +1 -0
  18. package/dist/es/commands/identityVerifiableCredentialCreate.js +146 -0
  19. package/dist/es/commands/identityVerifiableCredentialCreate.js.map +1 -0
  20. package/dist/es/commands/identityVerificationMethodCreate.js +231 -0
  21. package/dist/es/commands/identityVerificationMethodCreate.js.map +1 -0
  22. package/dist/es/commands/identityVerificationMethodImport.js +127 -0
  23. package/dist/es/commands/identityVerificationMethodImport.js.map +1 -0
  24. package/dist/es/commands/nodeSetIdentity.js +69 -0
  25. package/dist/es/commands/nodeSetIdentity.js.map +1 -0
  26. package/dist/es/commands/removeTenantOrgAlias.js +83 -0
  27. package/dist/es/commands/removeTenantOrgAlias.js.map +1 -0
  28. package/dist/es/commands/setNodeOrgId.js +62 -0
  29. package/dist/es/commands/setNodeOrgId.js.map +1 -0
  30. package/dist/es/commands/setTenantOrgId.js +99 -0
  31. package/dist/es/commands/setTenantOrgId.js.map +1 -0
  32. package/dist/es/commands/tenantCreate.js +165 -0
  33. package/dist/es/commands/tenantCreate.js.map +1 -0
  34. package/dist/es/commands/tenantImport.js +108 -0
  35. package/dist/es/commands/tenantImport.js.map +1 -0
  36. package/dist/es/commands/tenantUpdate.js +108 -0
  37. package/dist/es/commands/tenantUpdate.js.map +1 -0
  38. package/dist/es/commands/userCreate.js +239 -0
  39. package/dist/es/commands/userCreate.js.map +1 -0
  40. package/dist/es/commands/userUpdate.js +154 -0
  41. package/dist/es/commands/userUpdate.js.map +1 -0
  42. package/dist/es/commands/vaultKeyCreate.js +191 -0
  43. package/dist/es/commands/vaultKeyCreate.js.map +1 -0
  44. package/dist/es/commands/vaultKeyImport.js +105 -0
  45. package/dist/es/commands/vaultKeyImport.js.map +1 -0
  46. package/dist/es/defaults.js +37 -2
  47. package/dist/es/defaults.js.map +1 -1
  48. package/dist/es/index.js +13 -4
  49. package/dist/es/index.js.map +1 -1
  50. package/dist/es/models/IBootstrapLegacyEnvironmentVariables.js +4 -0
  51. package/dist/es/models/IBootstrapLegacyEnvironmentVariables.js.map +1 -0
  52. package/dist/es/models/ICliArgs.js +4 -0
  53. package/dist/es/models/ICliArgs.js.map +1 -0
  54. package/dist/es/models/ICliCommand.js +2 -0
  55. package/dist/es/models/ICliCommand.js.map +1 -0
  56. package/dist/es/models/ICliCommandDefinition.js +2 -0
  57. package/dist/es/models/ICliCommandDefinition.js.map +1 -0
  58. package/dist/es/models/ICliCommandDefinitionParam.js +2 -0
  59. package/dist/es/models/ICliCommandDefinitionParam.js.map +1 -0
  60. package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
  61. package/dist/es/models/IEngineServerEnvironmentVariables.js +2 -0
  62. package/dist/es/models/IEngineServerEnvironmentVariables.js.map +1 -1
  63. package/dist/es/models/IEnvironmentVariables.js +2 -0
  64. package/dist/es/models/IEnvironmentVariables.js.map +1 -0
  65. package/dist/es/models/INodeEngineState.js.map +1 -1
  66. package/dist/es/models/INodeEnvironmentVariables.js +2 -0
  67. package/dist/es/models/INodeEnvironmentVariables.js.map +1 -1
  68. package/dist/es/models/INodeOptions.js.map +1 -1
  69. package/dist/es/models/bootstrapLegacyEnvironmentVariableKeys.js +24 -0
  70. package/dist/es/models/bootstrapLegacyEnvironmentVariableKeys.js.map +1 -0
  71. package/dist/es/models/cliCommandParamType.js +4 -0
  72. package/dist/es/models/cliCommandParamType.js.map +1 -0
  73. package/dist/es/models/engineEnvironmentVariableKeys.js +202 -0
  74. package/dist/es/models/engineEnvironmentVariableKeys.js.map +1 -0
  75. package/dist/es/models/engineServerEnvironmentVariableKeys.js +35 -0
  76. package/dist/es/models/engineServerEnvironmentVariableKeys.js.map +1 -0
  77. package/dist/es/models/nodeEnvironmentVariableKeys.js +18 -0
  78. package/dist/es/models/nodeEnvironmentVariableKeys.js.map +1 -0
  79. package/dist/es/models/nodeExtensionInitialiseEngineMethod.js +2 -0
  80. package/dist/es/models/nodeExtensionInitialiseEngineMethod.js.map +1 -0
  81. package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js +2 -0
  82. package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js.map +1 -0
  83. package/dist/es/models/nodeExtensionInitialiseMethod.js +2 -0
  84. package/dist/es/models/nodeExtensionInitialiseMethod.js.map +1 -0
  85. package/dist/es/models/nodeExtensionShutdownMethod.js +4 -0
  86. package/dist/es/models/nodeExtensionShutdownMethod.js.map +1 -0
  87. package/dist/es/node.js +180 -42
  88. package/dist/es/node.js.map +1 -1
  89. package/dist/es/start.js +189 -0
  90. package/dist/es/start.js.map +1 -0
  91. package/dist/es/utils.js +24 -27
  92. package/dist/es/utils.js.map +1 -1
  93. package/dist/types/builders/engineEnvBuilder.d.ts +60 -5
  94. package/dist/types/builders/engineServerEnvBuilder.d.ts +12 -3
  95. package/dist/types/builders/extensionsBuilder.d.ts +8 -8
  96. package/dist/types/cli.d.ts +56 -0
  97. package/dist/types/commands/bootstrapLegacy.d.ts +20 -0
  98. package/dist/types/commands/help.d.ts +24 -0
  99. package/dist/types/commands/identityCreate.d.ts +45 -0
  100. package/dist/types/commands/identityImports.d.ts +25 -0
  101. package/dist/types/commands/identityVerifiableCredentialCreate.d.ts +43 -0
  102. package/dist/types/commands/identityVerificationMethodCreate.d.ts +47 -0
  103. package/dist/types/commands/identityVerificationMethodImport.d.ts +32 -0
  104. package/dist/types/commands/nodeSetIdentity.d.ts +23 -0
  105. package/dist/types/commands/removeTenantOrgAlias.d.ts +24 -0
  106. package/dist/types/commands/setNodeOrgId.d.ts +24 -0
  107. package/dist/types/commands/setTenantOrgId.d.ts +38 -0
  108. package/dist/types/commands/tenantCreate.d.ts +41 -0
  109. package/dist/types/commands/tenantImport.d.ts +29 -0
  110. package/dist/types/commands/tenantUpdate.d.ts +29 -0
  111. package/dist/types/commands/userCreate.d.ts +51 -0
  112. package/dist/types/commands/userUpdate.d.ts +40 -0
  113. package/dist/types/commands/vaultKeyCreate.d.ts +43 -0
  114. package/dist/types/commands/vaultKeyImport.d.ts +29 -0
  115. package/dist/types/defaults.d.ts +30 -2
  116. package/dist/types/index.d.ts +13 -4
  117. package/dist/types/models/IBootstrapLegacyEnvironmentVariables.d.ts +56 -0
  118. package/dist/types/models/ICliArgs.d.ts +20 -0
  119. package/dist/types/models/ICliCommand.d.ts +17 -0
  120. package/dist/types/models/ICliCommandDefinition.d.ts +46 -0
  121. package/dist/types/models/ICliCommandDefinitionParam.d.ts +35 -0
  122. package/dist/types/models/IEngineEnvironmentVariables.d.ts +199 -96
  123. package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +9 -2
  124. package/dist/types/models/IEnvironmentVariables.d.ts +8 -0
  125. package/dist/types/models/INodeEngineState.d.ts +2 -9
  126. package/dist/types/models/INodeEnvironmentVariables.d.ts +1 -40
  127. package/dist/types/models/INodeOptions.d.ts +9 -5
  128. package/dist/types/models/bootstrapLegacyEnvironmentVariableKeys.d.ts +4 -0
  129. package/dist/types/models/cliCommandParamType.d.ts +4 -0
  130. package/dist/types/models/engineEnvironmentVariableKeys.d.ts +4 -0
  131. package/dist/types/models/engineServerEnvironmentVariableKeys.d.ts +7 -0
  132. package/dist/types/models/nodeEnvironmentVariableKeys.d.ts +5 -0
  133. package/dist/types/models/nodeExtensionInitialiseEngineMethod.d.ts +8 -0
  134. package/dist/types/models/nodeExtensionInitialiseEngineServerMethod.d.ts +9 -0
  135. package/dist/types/models/nodeExtensionInitialiseMethod.d.ts +9 -0
  136. package/dist/types/models/nodeExtensionShutdownMethod.d.ts +6 -0
  137. package/dist/types/node.d.ts +8 -7
  138. package/dist/types/{server.d.ts → start.d.ts} +6 -3
  139. package/dist/types/utils.d.ts +9 -10
  140. package/docs/changelog.md +854 -186
  141. package/docs/examples.md +99 -1
  142. package/docs/reference/functions/buildConfiguration.md +3 -3
  143. package/docs/reference/functions/buildEngineConfiguration.md +1 -7
  144. package/docs/reference/functions/buildEngineServerConfiguration.md +1 -1
  145. package/docs/reference/functions/constructCliCommand.md +27 -0
  146. package/docs/reference/functions/executeCommand.md +29 -0
  147. package/docs/reference/functions/extensionsConfiguration.md +1 -1
  148. package/docs/reference/functions/extensionsInitialiseEngine.md +2 -2
  149. package/docs/reference/functions/extensionsInitialiseEngineServer.md +2 -2
  150. package/docs/reference/functions/getEnvDefaults.md +19 -0
  151. package/docs/reference/functions/getScriptDirectory.md +19 -0
  152. package/docs/reference/functions/initialiseLocales.md +2 -0
  153. package/docs/reference/functions/isAuthEntityStorageRequired.md +20 -0
  154. package/docs/reference/functions/isAutomationRequired.md +20 -0
  155. package/docs/reference/functions/isBackgroundTasksRequired.md +20 -0
  156. package/docs/reference/functions/isFederatedCatalogueRequired.md +20 -0
  157. package/docs/reference/functions/isImmutableProofRequired.md +20 -0
  158. package/docs/reference/functions/isRightsManagementRequired.md +23 -0
  159. package/docs/reference/functions/isTaskSchedulerRequired.md +20 -0
  160. package/docs/reference/functions/isTelemetryRequired.md +20 -0
  161. package/docs/reference/functions/isTrustRequired.md +20 -0
  162. package/docs/reference/functions/loadJsonFile.md +1 -1
  163. package/docs/reference/functions/loadTextFile.md +1 -1
  164. package/docs/reference/functions/overrideModuleImport.md +1 -1
  165. package/docs/reference/functions/parseCommandLineArgs.md +19 -0
  166. package/docs/reference/functions/processEnvOptions.md +27 -0
  167. package/docs/reference/functions/registerCommands.md +9 -0
  168. package/docs/reference/functions/resolvePackageEntryPoint.md +2 -2
  169. package/docs/reference/functions/run.md +8 -2
  170. package/docs/reference/functions/shutdownExtensions.md +2 -2
  171. package/docs/reference/functions/start.md +10 -4
  172. package/docs/reference/functions/substituteEnvOptions.md +25 -0
  173. package/docs/reference/index.md +26 -14
  174. package/docs/reference/interfaces/IBootstrapLegacyEnvironmentVariables.md +117 -0
  175. package/docs/reference/interfaces/ICacheMetadata.md +3 -3
  176. package/docs/reference/interfaces/ICliArgs.md +35 -0
  177. package/docs/reference/interfaces/ICliCommand.md +23 -0
  178. package/docs/reference/interfaces/ICliCommandDefinition.md +101 -0
  179. package/docs/reference/interfaces/ICliCommandDefinitionParam.md +65 -0
  180. package/docs/reference/interfaces/IEngineEnvironmentVariables.md +553 -365
  181. package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +41 -1746
  182. package/docs/reference/interfaces/IModuleProtocol.md +3 -3
  183. package/docs/reference/interfaces/INodeEngineState.md +6 -21
  184. package/docs/reference/interfaces/INodeEnvironmentVariables.md +10 -1967
  185. package/docs/reference/interfaces/INodeOptions.md +46 -38
  186. package/docs/reference/interfaces/IProtocolHandlerResult.md +2 -2
  187. package/docs/reference/type-aliases/CliCommandParamType.md +5 -0
  188. package/docs/reference/type-aliases/IEnvironmentVariables.md +5 -0
  189. package/docs/reference/type-aliases/NodeExtensionInitialiseEngineMethod.md +3 -1
  190. package/docs/reference/type-aliases/NodeExtensionInitialiseEngineServerMethod.md +3 -1
  191. package/docs/reference/type-aliases/NodeExtensionInitialiseMethod.md +4 -2
  192. package/docs/reference/type-aliases/NodeExtensionShutdownMethod.md +3 -1
  193. package/docs/reference/variables/ATTESTATION_VERIFICATION_METHOD_ID.md +2 -0
  194. package/docs/reference/variables/AUTH_SIGNING_KEY_ID.md +2 -0
  195. package/docs/reference/variables/BLOB_STORAGE_ENCRYPTION_KEY_ID.md +2 -0
  196. package/docs/reference/variables/CONTEXT_ID_HANDLER_FEATURE_DID.md +2 -0
  197. package/docs/reference/variables/CONTEXT_ID_HANDLER_FEATURE_TENANT.md +2 -0
  198. package/docs/reference/variables/IMMUTABLE_PROOF_VERIFICATION_METHOD_ID.md +2 -0
  199. package/docs/reference/variables/ModuleProtocol.md +5 -5
  200. package/docs/reference/variables/TRUST_VERIFICATION_METHOD_ID.md +5 -0
  201. package/locales/en.json +680 -30
  202. package/package.json +30 -27
  203. package/dist/es/bootstrap.js +0 -383
  204. package/dist/es/bootstrap.js.map +0 -1
  205. package/dist/es/identity.js +0 -182
  206. package/dist/es/identity.js.map +0 -1
  207. package/dist/es/models/nodeExtensionMethods.js +0 -2
  208. package/dist/es/models/nodeExtensionMethods.js.map +0 -1
  209. package/dist/es/models/nodeFeatures.js +0 -21
  210. package/dist/es/models/nodeFeatures.js.map +0 -1
  211. package/dist/es/server.js +0 -81
  212. package/dist/es/server.js.map +0 -1
  213. package/dist/types/bootstrap.d.ts +0 -68
  214. package/dist/types/identity.d.ts +0 -14
  215. package/dist/types/models/nodeExtensionMethods.d.ts +0 -27
  216. package/dist/types/models/nodeFeatures.d.ts +0 -21
  217. package/docs/detailed-guide.md +0 -129
  218. package/docs/reference/functions/bootstrap.md +0 -29
  219. package/docs/reference/functions/bootstrapAuth.md +0 -35
  220. package/docs/reference/functions/bootstrapBlobEncryption.md +0 -35
  221. package/docs/reference/functions/bootstrapImmutableProofMethod.md +0 -35
  222. package/docs/reference/functions/bootstrapNodeAdminUser.md +0 -35
  223. package/docs/reference/functions/bootstrapNodeId.md +0 -35
  224. package/docs/reference/functions/bootstrapSynchronisedStorage.md +0 -35
  225. package/docs/reference/functions/bootstrapTenantId.md +0 -35
  226. package/docs/reference/functions/getFeatures.md +0 -19
  227. package/docs/reference/type-aliases/NodeFeatures.md +0 -5
  228. package/docs/reference/variables/NodeFeatures.md +0 -25
  229. package/docs/reference/variables/SYNCHRONISED_STORAGE_BLOB_STORAGE_ENCRYPTION_KEY_ID.md +0 -3
  230. package/docs/reference/variables/VC_AUTHENTICATION_VERIFICATION_METHOD_ID.md +0 -3
@@ -2,1968 +2,11 @@
2
2
 
3
3
  The environment variables for the node.
4
4
 
5
- ## Extends
6
-
7
- - [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md)
8
-
9
5
  ## Properties
10
6
 
11
- ### debug?
12
-
13
- > `optional` **debug**: `string`
14
-
15
- Start the engine in debug mode.
16
-
17
- #### Inherited from
18
-
19
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`debug`](IEngineServerEnvironmentVariables.md#debug)
20
-
21
- ***
22
-
23
- ### storageFileRoot?
24
-
25
- > `optional` **storageFileRoot**: `string`
26
-
27
- The root directory for storing items like state file.
28
-
29
- #### Inherited from
30
-
31
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`storageFileRoot`](IEngineServerEnvironmentVariables.md#storagefileroot)
32
-
33
- ***
34
-
35
- ### stateFilename?
36
-
37
- > `optional` **stateFilename**: `string`
38
-
39
- The name of the state file.
40
-
41
- #### Inherited from
42
-
43
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`stateFilename`](IEngineServerEnvironmentVariables.md#statefilename)
44
-
45
- ***
46
-
47
- ### tenantEnabled?
48
-
49
- > `optional` **tenantEnabled**: `string`
50
-
51
- Is multi-tenant support enabled, defaults to false.
52
-
53
- #### Inherited from
54
-
55
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`tenantEnabled`](IEngineServerEnvironmentVariables.md#tenantenabled)
56
-
57
- ***
58
-
59
- ### tenantId?
60
-
61
- > `optional` **tenantId**: `string`
62
-
63
- A tenant id to use as a default for the node.
64
-
65
- #### Inherited from
66
-
67
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`tenantId`](IEngineServerEnvironmentVariables.md#tenantid)
68
-
69
- ***
70
-
71
- ### tenantApiKey?
72
-
73
- > `optional` **tenantApiKey**: `string`
74
-
75
- A tenant api key to use as a default for the node.
76
-
77
- #### Inherited from
78
-
79
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`tenantApiKey`](IEngineServerEnvironmentVariables.md#tenantapikey)
80
-
81
- ***
82
-
83
- ### entityStorageConnectorType?
84
-
85
- > `optional` **entityStorageConnectorType**: `string`
86
-
87
- The type of the entity storage to create, comma separate for more than one connector.
88
- values: file, memory, aws-dynamodb, azure-cosmosdb, gcp-firestoredb, scylladb, mysql, mongodb, postgresql
89
-
90
- #### Inherited from
91
-
92
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`entityStorageConnectorType`](IEngineServerEnvironmentVariables.md#entitystorageconnectortype)
93
-
94
- ***
95
-
96
- ### entityStorageConnectorDefault?
97
-
98
- > `optional` **entityStorageConnectorDefault**: `string`
99
-
100
- The default entity storage connector to use, defaults to the first one in the list.
101
-
102
- #### Inherited from
103
-
104
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`entityStorageConnectorDefault`](IEngineServerEnvironmentVariables.md#entitystorageconnectordefault)
105
-
106
- ***
107
-
108
- ### entityStorageTablePrefix?
109
-
110
- > `optional` **entityStorageTablePrefix**: `string`
111
-
112
- A prefix for all the table in entity-storage, can be empty.
113
-
114
- #### Inherited from
115
-
116
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`entityStorageTablePrefix`](IEngineServerEnvironmentVariables.md#entitystoragetableprefix)
117
-
118
- ***
119
-
120
- ### awsDynamodbAuthMode?
121
-
122
- > `optional` **awsDynamodbAuthMode**: `string`
123
-
124
- AWS DynamoDB auth mode, either credentials or pod.
125
-
126
- #### Inherited from
127
-
128
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsDynamodbAuthMode`](IEngineServerEnvironmentVariables.md#awsdynamodbauthmode)
129
-
130
- ***
131
-
132
- ### awsDynamodbAccessKeyId?
133
-
134
- > `optional` **awsDynamodbAccessKeyId**: `string`
135
-
136
- AWS Dynamo DB access key id.
137
-
138
- #### Inherited from
139
-
140
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsDynamodbAccessKeyId`](IEngineServerEnvironmentVariables.md#awsdynamodbaccesskeyid)
141
-
142
- ***
143
-
144
- ### awsDynamodbEndpoint?
145
-
146
- > `optional` **awsDynamodbEndpoint**: `string`
147
-
148
- AWS Dynamo DB Endpoint if running local instance.
149
-
150
- #### Inherited from
151
-
152
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsDynamodbEndpoint`](IEngineServerEnvironmentVariables.md#awsdynamodbendpoint)
153
-
154
- ***
155
-
156
- ### awsDynamodbRegion?
157
-
158
- > `optional` **awsDynamodbRegion**: `string`
159
-
160
- AWS Dynamo DB region.
161
-
162
- #### Inherited from
163
-
164
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsDynamodbRegion`](IEngineServerEnvironmentVariables.md#awsdynamodbregion)
165
-
166
- ***
167
-
168
- ### awsDynamodbSecretAccessKey?
169
-
170
- > `optional` **awsDynamodbSecretAccessKey**: `string`
171
-
172
- AWS Dynamo DB secret access key.
173
-
174
- #### Inherited from
175
-
176
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsDynamodbSecretAccessKey`](IEngineServerEnvironmentVariables.md#awsdynamodbsecretaccesskey)
177
-
178
- ***
179
-
180
- ### awsDynamodbConnectionTimeoutMs?
181
-
182
- > `optional` **awsDynamodbConnectionTimeoutMs**: `string`
183
-
184
- AWS Dynamo DB connection timeout.
185
-
186
- #### Inherited from
187
-
188
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsDynamodbConnectionTimeoutMs`](IEngineServerEnvironmentVariables.md#awsdynamodbconnectiontimeoutms)
189
-
190
- ***
191
-
192
- ### azureCosmosdbKey?
193
-
194
- > `optional` **azureCosmosdbKey**: `string`
195
-
196
- Azure Cosmos DB key.
197
-
198
- #### Inherited from
199
-
200
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`azureCosmosdbKey`](IEngineServerEnvironmentVariables.md#azurecosmosdbkey)
201
-
202
- ***
203
-
204
- ### azureCosmosdbContainerId?
205
-
206
- > `optional` **azureCosmosdbContainerId**: `string`
207
-
208
- Azure Cosmos DB container id.
209
-
210
- #### Inherited from
211
-
212
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`azureCosmosdbContainerId`](IEngineServerEnvironmentVariables.md#azurecosmosdbcontainerid)
213
-
214
- ***
215
-
216
- ### azureCosmosdbDatabaseId?
217
-
218
- > `optional` **azureCosmosdbDatabaseId**: `string`
219
-
220
- Azure Cosmos DB database id.
221
-
222
- #### Inherited from
223
-
224
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`azureCosmosdbDatabaseId`](IEngineServerEnvironmentVariables.md#azurecosmosdbdatabaseid)
225
-
226
- ***
227
-
228
- ### azureCosmosdbEndpoint?
229
-
230
- > `optional` **azureCosmosdbEndpoint**: `string`
231
-
232
- Azure Cosmos DB endpoint.
233
-
234
- #### Inherited from
235
-
236
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`azureCosmosdbEndpoint`](IEngineServerEnvironmentVariables.md#azurecosmosdbendpoint)
237
-
238
- ***
239
-
240
- ### gcpFirestoreCollectionName?
241
-
242
- > `optional` **gcpFirestoreCollectionName**: `string`
243
-
244
- GCP Firestore collection name.
245
-
246
- #### Inherited from
247
-
248
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`gcpFirestoreCollectionName`](IEngineServerEnvironmentVariables.md#gcpfirestorecollectionname)
249
-
250
- ***
251
-
252
- ### gcpFirestoreCredentials?
253
-
254
- > `optional` **gcpFirestoreCredentials**: `string`
255
-
256
- GCP Firestore credentials.
257
-
258
- #### Inherited from
259
-
260
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`gcpFirestoreCredentials`](IEngineServerEnvironmentVariables.md#gcpfirestorecredentials)
261
-
262
- ***
263
-
264
- ### gcpFirestoreDatabaseId?
265
-
266
- > `optional` **gcpFirestoreDatabaseId**: `string`
267
-
268
- GCP Firestore database id.
269
-
270
- #### Inherited from
271
-
272
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`gcpFirestoreDatabaseId`](IEngineServerEnvironmentVariables.md#gcpfirestoredatabaseid)
273
-
274
- ***
275
-
276
- ### gcpFirestoreApiEndpoint?
277
-
278
- > `optional` **gcpFirestoreApiEndpoint**: `string`
279
-
280
- GCP Firestore endpoint.
281
-
282
- #### Inherited from
283
-
284
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`gcpFirestoreApiEndpoint`](IEngineServerEnvironmentVariables.md#gcpfirestoreapiendpoint)
285
-
286
- ***
287
-
288
- ### gcpFirestoreProjectId?
289
-
290
- > `optional` **gcpFirestoreProjectId**: `string`
291
-
292
- GCP Firestore project id.
293
-
294
- #### Inherited from
295
-
296
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`gcpFirestoreProjectId`](IEngineServerEnvironmentVariables.md#gcpfirestoreprojectid)
297
-
298
- ***
299
-
300
- ### scylladbHosts?
301
-
302
- > `optional` **scylladbHosts**: `string`
303
-
304
- ScyllaDB hosts as comma separated string.
305
-
306
- #### Inherited from
307
-
308
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`scylladbHosts`](IEngineServerEnvironmentVariables.md#scylladbhosts)
309
-
310
- ***
311
-
312
- ### scylladbKeyspace?
313
-
314
- > `optional` **scylladbKeyspace**: `string`
315
-
316
- ScyllaDB keyspace.
317
-
318
- #### Inherited from
319
-
320
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`scylladbKeyspace`](IEngineServerEnvironmentVariables.md#scylladbkeyspace)
321
-
322
- ***
323
-
324
- ### scylladbLocalDataCenter?
325
-
326
- > `optional` **scylladbLocalDataCenter**: `string`
327
-
328
- ScyllaDB local data center.
329
-
330
- #### Inherited from
331
-
332
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`scylladbLocalDataCenter`](IEngineServerEnvironmentVariables.md#scylladblocaldatacenter)
333
-
334
- ***
335
-
336
- ### scylladbPort?
337
-
338
- > `optional` **scylladbPort**: `string`
339
-
340
- ScyllaDB port.
341
-
342
- #### Inherited from
343
-
344
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`scylladbPort`](IEngineServerEnvironmentVariables.md#scylladbport)
345
-
346
- ***
347
-
348
- ### mySqlHost?
349
-
350
- > `optional` **mySqlHost**: `string`
351
-
352
- MySQL host.
353
-
354
- #### Inherited from
355
-
356
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mySqlHost`](IEngineServerEnvironmentVariables.md#mysqlhost)
357
-
358
- ***
359
-
360
- ### mySqlPort?
361
-
362
- > `optional` **mySqlPort**: `number`
363
-
364
- MySQL port.
365
-
366
- #### Inherited from
367
-
368
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mySqlPort`](IEngineServerEnvironmentVariables.md#mysqlport)
369
-
370
- ***
371
-
372
- ### mySqlUser?
373
-
374
- > `optional` **mySqlUser**: `string`
375
-
376
- MySQL username.
377
-
378
- #### Inherited from
379
-
380
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mySqlUser`](IEngineServerEnvironmentVariables.md#mysqluser)
381
-
382
- ***
383
-
384
- ### mySqlPassword?
385
-
386
- > `optional` **mySqlPassword**: `string`
387
-
388
- MySQL password.
389
-
390
- #### Inherited from
391
-
392
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mySqlPassword`](IEngineServerEnvironmentVariables.md#mysqlpassword)
393
-
394
- ***
395
-
396
- ### mySqlDatabase?
397
-
398
- > `optional` **mySqlDatabase**: `string`
399
-
400
- MySQL Database.
401
-
402
- #### Inherited from
403
-
404
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mySqlDatabase`](IEngineServerEnvironmentVariables.md#mysqldatabase)
405
-
406
- ***
407
-
408
- ### mongoDbHost?
409
-
410
- > `optional` **mongoDbHost**: `string`
411
-
412
- MongoDB host.
413
-
414
- #### Inherited from
415
-
416
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mongoDbHost`](IEngineServerEnvironmentVariables.md#mongodbhost)
417
-
418
- ***
419
-
420
- ### mongoDbPort?
421
-
422
- > `optional` **mongoDbPort**: `number`
423
-
424
- MongoDB port.
425
-
426
- #### Inherited from
427
-
428
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mongoDbPort`](IEngineServerEnvironmentVariables.md#mongodbport)
429
-
430
- ***
431
-
432
- ### mongoDbUser?
433
-
434
- > `optional` **mongoDbUser**: `string`
435
-
436
- MongoDB username.
437
-
438
- #### Inherited from
439
-
440
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mongoDbUser`](IEngineServerEnvironmentVariables.md#mongodbuser)
441
-
442
- ***
443
-
444
- ### mongoDbPassword?
445
-
446
- > `optional` **mongoDbPassword**: `string`
447
-
448
- MongoDB password.
449
-
450
- #### Inherited from
451
-
452
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mongoDbPassword`](IEngineServerEnvironmentVariables.md#mongodbpassword)
453
-
454
- ***
455
-
456
- ### mongoDbDatabase?
457
-
458
- > `optional` **mongoDbDatabase**: `string`
459
-
460
- MongoDB Database.
461
-
462
- #### Inherited from
463
-
464
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mongoDbDatabase`](IEngineServerEnvironmentVariables.md#mongodbdatabase)
465
-
466
- ***
467
-
468
- ### postgreSqlHost?
469
-
470
- > `optional` **postgreSqlHost**: `string`
471
-
472
- PostgreSQl host.
473
-
474
- #### Inherited from
475
-
476
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`postgreSqlHost`](IEngineServerEnvironmentVariables.md#postgresqlhost)
477
-
478
- ***
479
-
480
- ### postgreSqlPort?
481
-
482
- > `optional` **postgreSqlPort**: `number`
483
-
484
- PostgreSQl port.
485
-
486
- #### Inherited from
487
-
488
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`postgreSqlPort`](IEngineServerEnvironmentVariables.md#postgresqlport)
489
-
490
- ***
491
-
492
- ### postgreSqlUser?
493
-
494
- > `optional` **postgreSqlUser**: `string`
495
-
496
- PostgreSQl username.
497
-
498
- #### Inherited from
499
-
500
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`postgreSqlUser`](IEngineServerEnvironmentVariables.md#postgresqluser)
501
-
502
- ***
503
-
504
- ### postgreSqlPassword?
505
-
506
- > `optional` **postgreSqlPassword**: `string`
507
-
508
- PostgreSQl password.
509
-
510
- #### Inherited from
511
-
512
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`postgreSqlPassword`](IEngineServerEnvironmentVariables.md#postgresqlpassword)
513
-
514
- ***
515
-
516
- ### postgreSqlDatabase?
517
-
518
- > `optional` **postgreSqlDatabase**: `string`
519
-
520
- PostgreSQl Database.
521
-
522
- #### Inherited from
523
-
524
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`postgreSqlDatabase`](IEngineServerEnvironmentVariables.md#postgresqldatabase)
525
-
526
- ***
527
-
528
- ### ipfsBearerToken?
529
-
530
- > `optional` **ipfsBearerToken**: `string`
531
-
532
- The security token for accessing IPFS API.
533
-
534
- #### Inherited from
535
-
536
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`ipfsBearerToken`](IEngineServerEnvironmentVariables.md#ipfsbearertoken)
537
-
538
- ***
539
-
540
- ### ipfsApiUrl?
541
-
542
- > `optional` **ipfsApiUrl**: `string`
543
-
544
- The url for accessing IPFS API.
545
-
546
- #### Inherited from
547
-
548
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`ipfsApiUrl`](IEngineServerEnvironmentVariables.md#ipfsapiurl)
549
-
550
- ***
551
-
552
- ### blobStorageConnectorType?
553
-
554
- > `optional` **blobStorageConnectorType**: `string`
555
-
556
- The type of the entity storage to create, comma separate for more than one connector.
557
- values: memory, file, ipfs, aws-s3, azure-storage, gcp-storage.
558
-
559
- #### Inherited from
560
-
561
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`blobStorageConnectorType`](IEngineServerEnvironmentVariables.md#blobstorageconnectortype)
562
-
563
- ***
564
-
565
- ### blobStorageConnectorDefault?
566
-
567
- > `optional` **blobStorageConnectorDefault**: `string`
568
-
569
- The default blob storage connector to use, defaults to the first one in the list.
570
-
571
- #### Inherited from
572
-
573
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`blobStorageConnectorDefault`](IEngineServerEnvironmentVariables.md#blobstorageconnectordefault)
574
-
575
- ***
576
-
577
- ### blobStorageConnectorPublic?
578
-
579
- > `optional` **blobStorageConnectorPublic**: `string`
580
-
581
- Blog storage connector which has public access.
582
-
583
- #### Inherited from
584
-
585
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`blobStorageConnectorPublic`](IEngineServerEnvironmentVariables.md#blobstorageconnectorpublic)
586
-
587
- ***
588
-
589
- ### blobStorageEnableEncryption?
590
-
591
- > `optional` **blobStorageEnableEncryption**: `string`
592
-
593
- Enable encryption for the blob storage.
594
-
595
- #### Inherited from
596
-
597
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`blobStorageEnableEncryption`](IEngineServerEnvironmentVariables.md#blobstorageenableencryption)
598
-
599
- ***
600
-
601
- ### blobStorageEncryptionKeyId?
602
-
603
- > `optional` **blobStorageEncryptionKeyId**: `string`
604
-
605
- The id of the encryption key for the blob storage.
606
-
607
- #### Inherited from
608
-
609
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`blobStorageEncryptionKeyId`](IEngineServerEnvironmentVariables.md#blobstorageencryptionkeyid)
610
-
611
- ***
612
-
613
- ### blobStorageSymmetricEncryptionKey?
614
-
615
- > `optional` **blobStorageSymmetricEncryptionKey**: `string`
616
-
617
- A symmetric encryption key for the blob storage, should be ChaCha20Poly1305 in base64 format.
618
- If encryption is enabled but a key is not provided one will be generated.
619
-
620
- #### Inherited from
621
-
622
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`blobStorageSymmetricEncryptionKey`](IEngineServerEnvironmentVariables.md#blobstoragesymmetricencryptionkey)
623
-
624
- ***
625
-
626
- ### blobStoragePrefix?
627
-
628
- > `optional` **blobStoragePrefix**: `string`
629
-
630
- A prefix for all the blobs in blob-storage, can be empty.
631
-
632
- #### Inherited from
633
-
634
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`blobStoragePrefix`](IEngineServerEnvironmentVariables.md#blobstorageprefix)
635
-
636
- ***
637
-
638
- ### awsS3Region?
639
-
640
- > `optional` **awsS3Region**: `string`
641
-
642
- AWS S3 region.
643
-
644
- #### Inherited from
645
-
646
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsS3Region`](IEngineServerEnvironmentVariables.md#awss3region)
647
-
648
- ***
649
-
650
- ### awsS3BucketName?
651
-
652
- > `optional` **awsS3BucketName**: `string`
653
-
654
- AWS S3 bucket name.
655
-
656
- #### Inherited from
657
-
658
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsS3BucketName`](IEngineServerEnvironmentVariables.md#awss3bucketname)
659
-
660
- ***
661
-
662
- ### awsS3AuthMode?
663
-
664
- > `optional` **awsS3AuthMode**: `string`
665
-
666
- AWS S3 auth mode, either credentials or pod, defaults to credentials.
667
-
668
- #### Inherited from
669
-
670
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsS3AuthMode`](IEngineServerEnvironmentVariables.md#awss3authmode)
671
-
672
- ***
673
-
674
- ### awsS3AccessKeyId?
675
-
676
- > `optional` **awsS3AccessKeyId**: `string`
677
-
678
- AWS S3 access key id.
679
-
680
- #### Inherited from
681
-
682
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsS3AccessKeyId`](IEngineServerEnvironmentVariables.md#awss3accesskeyid)
683
-
684
- ***
685
-
686
- ### awsS3SecretAccessKey?
687
-
688
- > `optional` **awsS3SecretAccessKey**: `string`
689
-
690
- AWS S3 secret access key.
691
-
692
- #### Inherited from
693
-
694
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsS3SecretAccessKey`](IEngineServerEnvironmentVariables.md#awss3secretaccesskey)
695
-
696
- ***
697
-
698
- ### awsS3Endpoint?
699
-
700
- > `optional` **awsS3Endpoint**: `string`
701
-
702
- AWS S3 endpoint.
703
-
704
- #### Inherited from
705
-
706
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsS3Endpoint`](IEngineServerEnvironmentVariables.md#awss3endpoint)
707
-
708
- ***
709
-
710
- ### azureStorageAccountKey?
711
-
712
- > `optional` **azureStorageAccountKey**: `string`
713
-
714
- Azure Storage account key.
715
-
716
- #### Inherited from
717
-
718
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`azureStorageAccountKey`](IEngineServerEnvironmentVariables.md#azurestorageaccountkey)
719
-
720
- ***
721
-
722
- ### azureStorageAccountName?
723
-
724
- > `optional` **azureStorageAccountName**: `string`
725
-
726
- Azure Storage account name.
727
-
728
- #### Inherited from
729
-
730
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`azureStorageAccountName`](IEngineServerEnvironmentVariables.md#azurestorageaccountname)
731
-
732
- ***
733
-
734
- ### azureStorageContainerName?
735
-
736
- > `optional` **azureStorageContainerName**: `string`
737
-
738
- Azure Storage container.
739
-
740
- #### Inherited from
741
-
742
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`azureStorageContainerName`](IEngineServerEnvironmentVariables.md#azurestoragecontainername)
743
-
744
- ***
745
-
746
- ### azureStorageEndpoint?
747
-
748
- > `optional` **azureStorageEndpoint**: `string`
749
-
750
- Azure Storage endpoint.
751
-
752
- #### Inherited from
753
-
754
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`azureStorageEndpoint`](IEngineServerEnvironmentVariables.md#azurestorageendpoint)
755
-
756
- ***
757
-
758
- ### gcpStorageBucketName?
759
-
760
- > `optional` **gcpStorageBucketName**: `string`
761
-
762
- GCP Storage bucket.
763
-
764
- #### Inherited from
765
-
766
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`gcpStorageBucketName`](IEngineServerEnvironmentVariables.md#gcpstoragebucketname)
767
-
768
- ***
769
-
770
- ### gcpStorageCredentials?
771
-
772
- > `optional` **gcpStorageCredentials**: `string`
773
-
774
- GCP Storage credentials.
775
-
776
- #### Inherited from
777
-
778
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`gcpStorageCredentials`](IEngineServerEnvironmentVariables.md#gcpstoragecredentials)
779
-
780
- ***
781
-
782
- ### gcpStorageEndpoint?
783
-
784
- > `optional` **gcpStorageEndpoint**: `string`
785
-
786
- GCP Storage endpoint.
787
-
788
- #### Inherited from
789
-
790
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`gcpStorageEndpoint`](IEngineServerEnvironmentVariables.md#gcpstorageendpoint)
791
-
792
- ***
793
-
794
- ### gcpStorageProjectId?
795
-
796
- > `optional` **gcpStorageProjectId**: `string`
797
-
798
- GCP Storage project id.
799
-
800
- #### Inherited from
801
-
802
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`gcpStorageProjectId`](IEngineServerEnvironmentVariables.md#gcpstorageprojectid)
803
-
804
- ***
805
-
806
- ### vaultConnector?
807
-
808
- > `optional` **vaultConnector**: `string`
809
-
810
- The type of the default vault connector: entity-storage, hashicorp.
811
-
812
- #### Inherited from
813
-
814
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`vaultConnector`](IEngineServerEnvironmentVariables.md#vaultconnector)
815
-
816
- ***
817
-
818
- ### hashicorpVaultToken?
819
-
820
- > `optional` **hashicorpVaultToken**: `string`
821
-
822
- Hashicorp Vault token.
823
-
824
- #### Inherited from
825
-
826
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`hashicorpVaultToken`](IEngineServerEnvironmentVariables.md#hashicorpvaulttoken)
827
-
828
- ***
829
-
830
- ### hashicorpVaultEndpoint?
831
-
832
- > `optional` **hashicorpVaultEndpoint**: `string`
833
-
834
- Hashicorp Vault endpoint.
835
-
836
- #### Inherited from
837
-
838
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`hashicorpVaultEndpoint`](IEngineServerEnvironmentVariables.md#hashicorpvaultendpoint)
839
-
840
- ***
841
-
842
- ### loggingConnector?
843
-
844
- > `optional` **loggingConnector**: `string`
845
-
846
- The type of logging task connector, can be a comma separated list: console, entity-storage.
847
-
848
- #### Inherited from
849
-
850
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`loggingConnector`](IEngineServerEnvironmentVariables.md#loggingconnector)
851
-
852
- ***
853
-
854
- ### eventBusConnector?
855
-
856
- > `optional` **eventBusConnector**: `string`
857
-
858
- The type of event bus connector: local.
859
-
860
- #### Inherited from
861
-
862
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`eventBusConnector`](IEngineServerEnvironmentVariables.md#eventbusconnector)
863
-
864
- ***
865
-
866
- ### eventBusComponent?
867
-
868
- > `optional` **eventBusComponent**: `string`
869
-
870
- The type of event bus component: service.
871
-
872
- #### Inherited from
873
-
874
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`eventBusComponent`](IEngineServerEnvironmentVariables.md#eventbuscomponent)
875
-
876
- ***
877
-
878
- ### messagingEnabled?
879
-
880
- > `optional` **messagingEnabled**: `string`
881
-
882
- Are the messaging components enabled, defaults to false.
883
-
884
- #### Inherited from
885
-
886
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`messagingEnabled`](IEngineServerEnvironmentVariables.md#messagingenabled)
887
-
888
- ***
889
-
890
- ### awsSesRegion?
891
-
892
- > `optional` **awsSesRegion**: `string`
893
-
894
- AWS SES region.
895
-
896
- #### Inherited from
897
-
898
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsSesRegion`](IEngineServerEnvironmentVariables.md#awssesregion)
899
-
900
- ***
901
-
902
- ### awsSesAuthMode?
903
-
904
- > `optional` **awsSesAuthMode**: `string`
905
-
906
- AWS SES auth mode, either credentials or pod, defaults to credentials.
907
-
908
- #### Inherited from
909
-
910
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsSesAuthMode`](IEngineServerEnvironmentVariables.md#awssesauthmode)
911
-
912
- ***
913
-
914
- ### awsSesSecretAccessKey?
915
-
916
- > `optional` **awsSesSecretAccessKey**: `string`
917
-
918
- AWS SES secret access key.
919
-
920
- #### Inherited from
921
-
922
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsSesSecretAccessKey`](IEngineServerEnvironmentVariables.md#awssessecretaccesskey)
923
-
924
- ***
925
-
926
- ### awsSesAccessKeyId?
927
-
928
- > `optional` **awsSesAccessKeyId**: `string`
929
-
930
- AWS SES access key id.
931
-
932
- #### Inherited from
933
-
934
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsSesAccessKeyId`](IEngineServerEnvironmentVariables.md#awssesaccesskeyid)
935
-
936
- ***
937
-
938
- ### awsSesEndpoint?
939
-
940
- > `optional` **awsSesEndpoint**: `string`
941
-
942
- AWS SES endpoint.
943
-
944
- #### Inherited from
945
-
946
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsSesEndpoint`](IEngineServerEnvironmentVariables.md#awssesendpoint)
947
-
948
- ***
949
-
950
- ### awsMessagingPushNotificationApplications?
951
-
952
- > `optional` **awsMessagingPushNotificationApplications**: `string`
953
-
954
- The applications for the push notifications JSON stringified array of IAwsApplicationSettings.
955
-
956
- #### Inherited from
957
-
958
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsMessagingPushNotificationApplications`](IEngineServerEnvironmentVariables.md#awsmessagingpushnotificationapplications)
959
-
960
- ***
961
-
962
- ### messagingEmailConnector?
963
-
964
- > `optional` **messagingEmailConnector**: `string`
965
-
966
- The type of messaging email connector: entity-storage, aws.
967
-
968
- #### Inherited from
969
-
970
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`messagingEmailConnector`](IEngineServerEnvironmentVariables.md#messagingemailconnector)
971
-
972
- ***
973
-
974
- ### messagingSmsConnector?
975
-
976
- > `optional` **messagingSmsConnector**: `string`
977
-
978
- The type of messaging sms connector: entity-storage, aws.
979
-
980
- #### Inherited from
981
-
982
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`messagingSmsConnector`](IEngineServerEnvironmentVariables.md#messagingsmsconnector)
983
-
984
- ***
985
-
986
- ### messagingPushNotificationConnector?
987
-
988
- > `optional` **messagingPushNotificationConnector**: `string`
989
-
990
- The type of messaging push notification connector: entity-storage, aws.
991
-
992
- #### Inherited from
993
-
994
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`messagingPushNotificationConnector`](IEngineServerEnvironmentVariables.md#messagingpushnotificationconnector)
995
-
996
- ***
997
-
998
- ### telemetryConnector?
999
-
1000
- > `optional` **telemetryConnector**: `string`
1001
-
1002
- The type of telemetry connector: entity-storage.
1003
-
1004
- #### Inherited from
1005
-
1006
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`telemetryConnector`](IEngineServerEnvironmentVariables.md#telemetryconnector)
1007
-
1008
- ***
1009
-
1010
- ### faucetConnector?
1011
-
1012
- > `optional` **faucetConnector**: `string`
1013
-
1014
- The type of faucet connector: entity-storage, iota.
1015
-
1016
- #### Inherited from
1017
-
1018
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`faucetConnector`](IEngineServerEnvironmentVariables.md#faucetconnector)
1019
-
1020
- ***
1021
-
1022
- ### walletConnector?
1023
-
1024
- > `optional` **walletConnector**: `string`
1025
-
1026
- The type of wallet connector: entity-storage, iota.
1027
-
1028
- #### Inherited from
1029
-
1030
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`walletConnector`](IEngineServerEnvironmentVariables.md#walletconnector)
1031
-
1032
- ***
1033
-
1034
- ### nftConnector?
1035
-
1036
- > `optional` **nftConnector**: `string`
1037
-
1038
- The type of NFT connector: entity-storage, iota.
1039
-
1040
- #### Inherited from
1041
-
1042
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`nftConnector`](IEngineServerEnvironmentVariables.md#nftconnector)
1043
-
1044
- ***
1045
-
1046
- ### identityConnector?
1047
-
1048
- > `optional` **identityConnector**: `string`
1049
-
1050
- The type of identity connector: entity-storage, iota.
1051
-
1052
- #### Inherited from
1053
-
1054
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`identityConnector`](IEngineServerEnvironmentVariables.md#identityconnector)
1055
-
1056
- ***
1057
-
1058
- ### identityResolverConnector?
1059
-
1060
- > `optional` **identityResolverConnector**: `string`
1061
-
1062
- The type of identity resolver connector: entity-storage, iota.
1063
-
1064
- #### Inherited from
1065
-
1066
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`identityResolverConnector`](IEngineServerEnvironmentVariables.md#identityresolverconnector)
1067
-
1068
- ***
1069
-
1070
- ### verifiableStorageConnector?
1071
-
1072
- > `optional` **verifiableStorageConnector**: `string`
1073
-
1074
- The type of verifiable storage connector: entity-storage, iota.
1075
-
1076
- #### Inherited from
1077
-
1078
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`verifiableStorageConnector`](IEngineServerEnvironmentVariables.md#verifiablestorageconnector)
1079
-
1080
- ***
1081
-
1082
- ### iotaFaucetEndpoint?
1083
-
1084
- > `optional` **iotaFaucetEndpoint**: `string`
1085
-
1086
- IOTA Faucet Endpoint.
1087
-
1088
- #### Inherited from
1089
-
1090
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`iotaFaucetEndpoint`](IEngineServerEnvironmentVariables.md#iotafaucetendpoint)
1091
-
1092
- ***
1093
-
1094
- ### iotaNodeEndpoint?
1095
-
1096
- > `optional` **iotaNodeEndpoint**: `string`
1097
-
1098
- IOTA Node Endpoint.
1099
-
1100
- #### Inherited from
1101
-
1102
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`iotaNodeEndpoint`](IEngineServerEnvironmentVariables.md#iotanodeendpoint)
1103
-
1104
- ***
1105
-
1106
- ### iotaNetwork?
1107
-
1108
- > `optional` **iotaNetwork**: `string`
1109
-
1110
- IOTA network.
1111
-
1112
- #### Inherited from
1113
-
1114
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`iotaNetwork`](IEngineServerEnvironmentVariables.md#iotanetwork)
1115
-
1116
- ***
1117
-
1118
- ### iotaCoinType?
1119
-
1120
- > `optional` **iotaCoinType**: `string`
1121
-
1122
- IOTA coin type.
1123
-
1124
- #### Inherited from
1125
-
1126
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`iotaCoinType`](IEngineServerEnvironmentVariables.md#iotacointype)
1127
-
1128
- ***
1129
-
1130
- ### iotaExplorerEndpoint?
1131
-
1132
- > `optional` **iotaExplorerEndpoint**: `string`
1133
-
1134
- IOTA Explorer Endpoint.
1135
-
1136
- #### Inherited from
1137
-
1138
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`iotaExplorerEndpoint`](IEngineServerEnvironmentVariables.md#iotaexplorerendpoint)
1139
-
1140
- ***
1141
-
1142
- ### iotaGasStationEndpoint?
1143
-
1144
- > `optional` **iotaGasStationEndpoint**: `string`
1145
-
1146
- IOTA Gas Station Endpoint.
1147
-
1148
- #### Inherited from
1149
-
1150
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`iotaGasStationEndpoint`](IEngineServerEnvironmentVariables.md#iotagasstationendpoint)
1151
-
1152
- ***
1153
-
1154
- ### iotaGasStationAuthToken?
1155
-
1156
- > `optional` **iotaGasStationAuthToken**: `string`
1157
-
1158
- IOTA Gas Station Authentication Token.
1159
-
1160
- #### Inherited from
1161
-
1162
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`iotaGasStationAuthToken`](IEngineServerEnvironmentVariables.md#iotagasstationauthtoken)
1163
-
1164
- ***
1165
-
1166
- ### universalResolverEndpoint?
1167
-
1168
- > `optional` **universalResolverEndpoint**: `string`
1169
-
1170
- Universal Resolver Endpoint.
1171
-
1172
- #### Inherited from
1173
-
1174
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`universalResolverEndpoint`](IEngineServerEnvironmentVariables.md#universalresolverendpoint)
1175
-
1176
- ***
1177
-
1178
- ### identityProfileConnector?
1179
-
1180
- > `optional` **identityProfileConnector**: `string`
1181
-
1182
- The type of identity profile connector: entity-storage.
1183
-
1184
- #### Inherited from
1185
-
1186
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`identityProfileConnector`](IEngineServerEnvironmentVariables.md#identityprofileconnector)
1187
-
1188
- ***
1189
-
1190
- ### immutableProofVerificationMethodId?
1191
-
1192
- > `optional` **immutableProofVerificationMethodId**: `string`
1193
-
1194
- The identity verification method id to use with immutable proofs.
1195
-
1196
- #### Inherited from
1197
-
1198
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`immutableProofVerificationMethodId`](IEngineServerEnvironmentVariables.md#immutableproofverificationmethodid)
1199
-
1200
- ***
1201
-
1202
- ### attestationConnector?
1203
-
1204
- > `optional` **attestationConnector**: `string`
1205
-
1206
- The type of attestation connector: entity-storage, iota.
1207
-
1208
- #### Inherited from
1209
-
1210
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`attestationConnector`](IEngineServerEnvironmentVariables.md#attestationconnector)
1211
-
1212
- ***
1213
-
1214
- ### attestationVerificationMethodId?
1215
-
1216
- > `optional` **attestationVerificationMethodId**: `string`
1217
-
1218
- The identity verification method id to use with attestation.
1219
-
1220
- #### Inherited from
1221
-
1222
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`attestationVerificationMethodId`](IEngineServerEnvironmentVariables.md#attestationverificationmethodid)
1223
-
1224
- ***
1225
-
1226
- ### dataProcessingEnabled?
1227
-
1228
- > `optional` **dataProcessingEnabled**: `string`
1229
-
1230
- Is the data processing enabled, defaults to false.
1231
-
1232
- #### Inherited from
1233
-
1234
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`dataProcessingEnabled`](IEngineServerEnvironmentVariables.md#dataprocessingenabled)
1235
-
1236
- ***
1237
-
1238
- ### dataConverterConnectors?
1239
-
1240
- > `optional` **dataConverterConnectors**: `string`
1241
-
1242
- The type of the default data converters, can be a comma separated list: json, xml.
1243
-
1244
- #### Inherited from
1245
-
1246
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`dataConverterConnectors`](IEngineServerEnvironmentVariables.md#dataconverterconnectors)
1247
-
1248
- ***
1249
-
1250
- ### dataExtractorConnectors?
1251
-
1252
- > `optional` **dataExtractorConnectors**: `string`
1253
-
1254
- The type of the default data extractor, can be a comma separated list: json-path.
1255
-
1256
- #### Inherited from
1257
-
1258
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`dataExtractorConnectors`](IEngineServerEnvironmentVariables.md#dataextractorconnectors)
1259
-
1260
- ***
1261
-
1262
- ### auditableItemGraphEnabled?
1263
-
1264
- > `optional` **auditableItemGraphEnabled**: `string`
1265
-
1266
- Is the auditable item graph enabled, defaults to false.
1267
-
1268
- #### Inherited from
1269
-
1270
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`auditableItemGraphEnabled`](IEngineServerEnvironmentVariables.md#auditableitemgraphenabled)
1271
-
1272
- ***
1273
-
1274
- ### auditableItemStreamEnabled?
1275
-
1276
- > `optional` **auditableItemStreamEnabled**: `string`
1277
-
1278
- Is the auditable item stream enabled, defaults to false.
1279
-
1280
- #### Inherited from
1281
-
1282
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`auditableItemStreamEnabled`](IEngineServerEnvironmentVariables.md#auditableitemstreamenabled)
1283
-
1284
- ***
1285
-
1286
- ### documentManagementEnabled?
1287
-
1288
- > `optional` **documentManagementEnabled**: `string`
1289
-
1290
- Is the document management enabled, defaults to false.
1291
-
1292
- #### Inherited from
1293
-
1294
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`documentManagementEnabled`](IEngineServerEnvironmentVariables.md#documentmanagementenabled)
1295
-
1296
- ***
1297
-
1298
- ### synchronisedStorageEnabled?
1299
-
1300
- > `optional` **synchronisedStorageEnabled**: `string`
1301
-
1302
- Is the synchronised storage enabled, defaults to false.
1303
-
1304
- #### Inherited from
1305
-
1306
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`synchronisedStorageEnabled`](IEngineServerEnvironmentVariables.md#synchronisedstorageenabled)
1307
-
1308
- ***
1309
-
1310
- ### synchronisedStorageTrustedUrl?
1311
-
1312
- > `optional` **synchronisedStorageTrustedUrl**: `string`
1313
-
1314
- Url which points to the api for a trusted synchronised storage node, not required if this is a trusted node.
1315
-
1316
- #### Inherited from
1317
-
1318
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`synchronisedStorageTrustedUrl`](IEngineServerEnvironmentVariables.md#synchronisedstoragetrustedurl)
1319
-
1320
- ***
1321
-
1322
- ### synchronisedStorageVerifiableStorageKeyId?
1323
-
1324
- > `optional` **synchronisedStorageVerifiableStorageKeyId**: `string`
1325
-
1326
- The key for the smart contract which contains the verifiable storage pointer store for synchronised storage.
1327
- This only required if using a custom verifiable storage item, otherwise it will default to the network name.
1328
-
1329
- #### Inherited from
1330
-
1331
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`synchronisedStorageVerifiableStorageKeyId`](IEngineServerEnvironmentVariables.md#synchronisedstorageverifiablestoragekeyid)
1332
-
1333
- ***
1334
-
1335
- ### synchronisedStorageBlobStorageEncryptionKeyId?
1336
-
1337
- > `optional` **synchronisedStorageBlobStorageEncryptionKeyId**: `string`
1338
-
1339
- The key from the vault which is used to encrypt the synchronised storage blobs.
1340
- Only required for trusted nodes, as regular nodes will request from the trusted nodes.
1341
- Defaults to synchronised-storage-blob-encryption
1342
-
1343
- #### Inherited from
1344
-
1345
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`synchronisedStorageBlobStorageEncryptionKeyId`](IEngineServerEnvironmentVariables.md#synchronisedstorageblobstorageencryptionkeyid)
1346
-
1347
- ***
1348
-
1349
- ### synchronisedStorageBlobStorageKey?
1350
-
1351
- > `optional` **synchronisedStorageBlobStorageKey**: `string`
1352
-
1353
- The key used for blob encryption, should be ChaCha20Poly1305 encoded as base64.
1354
- Only required for trusted nodes, as regular nodes will not write encrypted data.
1355
-
1356
- #### Inherited from
1357
-
1358
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`synchronisedStorageBlobStorageKey`](IEngineServerEnvironmentVariables.md#synchronisedstorageblobstoragekey)
1359
-
1360
- ***
1361
-
1362
- ### synchronisedStorageEntityUpdateIntervalMinutes?
1363
-
1364
- > `optional` **synchronisedStorageEntityUpdateIntervalMinutes**: `string`
1365
-
1366
- How often to check for entity updates in minutes.
1367
-
1368
- #### Default
1369
-
1370
- ```ts
1371
- 5
1372
- ```
1373
-
1374
- #### Inherited from
1375
-
1376
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`synchronisedStorageEntityUpdateIntervalMinutes`](IEngineServerEnvironmentVariables.md#synchronisedstorageentityupdateintervalminutes)
1377
-
1378
- ***
1379
-
1380
- ### synchronisedStorageConsolidationIntervalMinutes?
1381
-
1382
- > `optional` **synchronisedStorageConsolidationIntervalMinutes**: `string`
1383
-
1384
- Interval to perform consolidation of changesets, only used if this is a trusted node.
1385
-
1386
- #### Default
1387
-
1388
- ```ts
1389
- 60
1390
- ```
1391
-
1392
- #### Inherited from
1393
-
1394
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`synchronisedStorageConsolidationIntervalMinutes`](IEngineServerEnvironmentVariables.md#synchronisedstorageconsolidationintervalminutes)
1395
-
1396
- ***
1397
-
1398
- ### synchronisedStorageConsolidationBatchSize?
1399
-
1400
- > `optional` **synchronisedStorageConsolidationBatchSize**: `string`
1401
-
1402
- The number of entities to process in a single consolidation batch, only used if this is a trusted node.
1403
-
1404
- #### Default
1405
-
1406
- ```ts
1407
- 1000
1408
- ```
1409
-
1410
- #### Inherited from
1411
-
1412
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`synchronisedStorageConsolidationBatchSize`](IEngineServerEnvironmentVariables.md#synchronisedstorageconsolidationbatchsize)
1413
-
1414
- ***
1415
-
1416
- ### synchronisedStorageMaxConsolidations?
1417
-
1418
- > `optional` **synchronisedStorageMaxConsolidations**: `string`
1419
-
1420
- The maximum number of consolidations to keep in storage, only used if this is a trusted node.
1421
-
1422
- #### Default
1423
-
1424
- ```ts
1425
- 5
1426
- ```
1427
-
1428
- #### Inherited from
1429
-
1430
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`synchronisedStorageMaxConsolidations`](IEngineServerEnvironmentVariables.md#synchronisedstoragemaxconsolidations)
1431
-
1432
- ***
1433
-
1434
- ### federatedCatalogueEnabled?
1435
-
1436
- > `optional` **federatedCatalogueEnabled**: `string`
1437
-
1438
- Is the federated catalogue enabled, defaults to false.
1439
-
1440
- #### Inherited from
1441
-
1442
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`federatedCatalogueEnabled`](IEngineServerEnvironmentVariables.md#federatedcatalogueenabled)
1443
-
1444
- ***
1445
-
1446
- ### federatedCatalogueFilters?
1447
-
1448
- > `optional` **federatedCatalogueFilters**: `string`
1449
-
1450
- Federated catalog filters, command separated list of filters to add.
1451
-
1452
- #### Inherited from
1453
-
1454
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`federatedCatalogueFilters`](IEngineServerEnvironmentVariables.md#federatedcataloguefilters)
1455
-
1456
- ***
1457
-
1458
- ### trustEnabled?
1459
-
1460
- > `optional` **trustEnabled**: `string`
1461
-
1462
- Is the trust management enabled, defaults to false.
1463
-
1464
- #### Inherited from
1465
-
1466
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`trustEnabled`](IEngineServerEnvironmentVariables.md#trustenabled)
1467
-
1468
- ***
1469
-
1470
- ### trustGenerators?
1471
-
1472
- > `optional` **trustGenerators**: `string`
1473
-
1474
- The trust generators to add to the factory, comma separated list.
1475
-
1476
- #### Inherited from
1477
-
1478
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`trustGenerators`](IEngineServerEnvironmentVariables.md#trustgenerators)
1479
-
1480
- ***
1481
-
1482
- ### trustVerifiers?
1483
-
1484
- > `optional` **trustVerifiers**: `string`
1485
-
1486
- The trust verifiers to add to the factory, comma separated list.
1487
-
1488
- #### Inherited from
1489
-
1490
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`trustVerifiers`](IEngineServerEnvironmentVariables.md#trustverifiers)
1491
-
1492
- ***
1493
-
1494
- ### trustVerificationMethodId?
1495
-
1496
- > `optional` **trustVerificationMethodId**: `string`
1497
-
1498
- The verification method to use for trust identities.
1499
- Defaults to node-authentication-assertion.
1500
-
1501
- #### Inherited from
1502
-
1503
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`trustVerificationMethodId`](IEngineServerEnvironmentVariables.md#trustverificationmethodid)
1504
-
1505
- ***
1506
-
1507
- ### rightsManagementEnabled?
1508
-
1509
- > `optional` **rightsManagementEnabled**: `string`
1510
-
1511
- Is the rights management enabled, defaults to false.
1512
-
1513
- #### Inherited from
1514
-
1515
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementEnabled`](IEngineServerEnvironmentVariables.md#rightsmanagementenabled)
1516
-
1517
- ***
1518
-
1519
- ### rightsManagementBaseCallbackUrl?
1520
-
1521
- > `optional` **rightsManagementBaseCallbackUrl**: `string`
1522
-
1523
- What is the base callback url for rights management negotiations e.g. https://my-node/rights-management.
1524
-
1525
- #### Inherited from
1526
-
1527
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementBaseCallbackUrl`](IEngineServerEnvironmentVariables.md#rightsmanagementbasecallbackurl)
1528
-
1529
- ***
1530
-
1531
- ### rightsManagementPolicyInformationSources?
1532
-
1533
- > `optional` **rightsManagementPolicyInformationSources**: `string`
1534
-
1535
- The rights management policy information sources to add to the factory.
1536
-
1537
- #### Inherited from
1538
-
1539
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyInformationSources`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicyinformationsources)
1540
-
1541
- ***
1542
-
1543
- ### rightsManagementPolicyNegotiators?
1544
-
1545
- > `optional` **rightsManagementPolicyNegotiators**: `string`
1546
-
1547
- The rights management policy negotiators sources to add to the factory.
1548
-
1549
- #### Inherited from
1550
-
1551
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyNegotiators`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicynegotiators)
1552
-
1553
- ***
1554
-
1555
- ### rightsManagementPolicyRequesters?
1556
-
1557
- > `optional` **rightsManagementPolicyRequesters**: `string`
1558
-
1559
- The rights management policy requesters to add to the factory.
1560
-
1561
- #### Inherited from
1562
-
1563
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyRequesters`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicyrequesters)
1564
-
1565
- ***
1566
-
1567
- ### rightsManagementPolicyExecutionActions?
1568
-
1569
- > `optional` **rightsManagementPolicyExecutionActions**: `string`
1570
-
1571
- The rights management policy execution actions to add to the factory.
1572
-
1573
- #### Inherited from
1574
-
1575
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyExecutionActions`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicyexecutionactions)
1576
-
1577
- ***
1578
-
1579
- ### rightsManagementPolicyEnforcementProcessors?
1580
-
1581
- > `optional` **rightsManagementPolicyEnforcementProcessors**: `string`
1582
-
1583
- The rights management policy enforcement processors to add to the factory.
1584
-
1585
- #### Inherited from
1586
-
1587
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyEnforcementProcessors`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicyenforcementprocessors)
1588
-
1589
- ***
1590
-
1591
- ### rightsManagementPolicyArbiters?
1592
-
1593
- > `optional` **rightsManagementPolicyArbiters**: `string`
1594
-
1595
- The rights management policy arbiters to add to the factory.
1596
-
1597
- #### Inherited from
1598
-
1599
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyArbiters`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicyarbiters)
1600
-
1601
- ***
1602
-
1603
- ### rightsManagementDataAccessHandlers?
1604
-
1605
- > `optional` **rightsManagementDataAccessHandlers**: `string`
1606
-
1607
- The rights management data access handlers to add to the factory.
1608
-
1609
- #### Inherited from
1610
-
1611
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementDataAccessHandlers`](IEngineServerEnvironmentVariables.md#rightsmanagementdataaccesshandlers)
1612
-
1613
- ***
1614
-
1615
- ### backgroundTasksEnabled?
1616
-
1617
- > `optional` **backgroundTasksEnabled**: `string`
1618
-
1619
- Are background tasks enabled, defaults to false.
1620
-
1621
- #### Inherited from
1622
-
1623
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`backgroundTasksEnabled`](IEngineServerEnvironmentVariables.md#backgroundtasksenabled)
1624
-
1625
- ***
1626
-
1627
- ### taskSchedulerEnabled?
1628
-
1629
- > `optional` **taskSchedulerEnabled**: `string`
1630
-
1631
- Is the task scheduler enabled, defaults to false.
1632
-
1633
- #### Inherited from
1634
-
1635
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`taskSchedulerEnabled`](IEngineServerEnvironmentVariables.md#taskschedulerenabled)
1636
-
1637
- ***
1638
-
1639
- ### dataSpaceConnectorEnabled?
1640
-
1641
- > `optional` **dataSpaceConnectorEnabled**: `string`
1642
-
1643
- Is the data space connector enabled, defaults to false.
1644
-
1645
- #### Inherited from
1646
-
1647
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`dataSpaceConnectorEnabled`](IEngineServerEnvironmentVariables.md#dataspaceconnectorenabled)
1648
-
1649
- ***
1650
-
1651
- ### dataSpaceConnectorRetainActivityLogsFor?
1652
-
1653
- > `optional` **dataSpaceConnectorRetainActivityLogsFor**: `string`
1654
-
1655
- The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
1656
-
1657
- #### Default
1658
-
1659
- ```ts
1660
- 10
1661
- ```
1662
-
1663
- #### Inherited from
1664
-
1665
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`dataSpaceConnectorRetainActivityLogsFor`](IEngineServerEnvironmentVariables.md#dataspaceconnectorretainactivitylogsfor)
1666
-
1667
- ***
1668
-
1669
- ### dataSpaceConnectorActivityLogsCleanUpInterval?
1670
-
1671
- > `optional` **dataSpaceConnectorActivityLogsCleanUpInterval**: `string`
1672
-
1673
- The interval for cleaning up the activity logs.
1674
-
1675
- #### Default
1676
-
1677
- ```ts
1678
- 60
1679
- ```
1680
-
1681
- #### Inherited from
1682
-
1683
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`dataSpaceConnectorActivityLogsCleanUpInterval`](IEngineServerEnvironmentVariables.md#dataspaceconnectoractivitylogscleanupinterval)
1684
-
1685
- ***
1686
-
1687
- ### vcAuthenticationEnabled?
1688
-
1689
- > `optional` **vcAuthenticationEnabled**: `string`
1690
-
1691
- Enable verifiable credential authentication for the API.
1692
-
1693
- #### Inherited from
1694
-
1695
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`vcAuthenticationEnabled`](IEngineServerEnvironmentVariables.md#vcauthenticationenabled)
1696
-
1697
- ***
1698
-
1699
- ### vcAuthenticationVerificationMethodId?
1700
-
1701
- > `optional` **vcAuthenticationVerificationMethodId**: `string`
1702
-
1703
- Verifiable credential assertion for node to node communication.
1704
- Defaults to node-authentication-assertion.
1705
-
1706
- #### Inherited from
1707
-
1708
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`vcAuthenticationVerificationMethodId`](IEngineServerEnvironmentVariables.md#vcauthenticationverificationmethodid)
1709
-
1710
- ***
1711
-
1712
- ### extensions?
1713
-
1714
- > `optional` **extensions**: `string`
1715
-
1716
- A comma separated list of additional node extensions to load, the initialiseExtension method will be called for each extension.
1717
-
1718
- #### Inherited from
1719
-
1720
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`extensions`](IEngineServerEnvironmentVariables.md#extensions)
1721
-
1722
- ***
1723
-
1724
- ### port?
1725
-
1726
- > `optional` **port**: `string`
1727
-
1728
- The port to serve the API from.
1729
-
1730
- #### Inherited from
1731
-
1732
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`port`](IEngineServerEnvironmentVariables.md#port)
1733
-
1734
- ***
1735
-
1736
- ### host?
1737
-
1738
- > `optional` **host**: `string`
1739
-
1740
- The host to serve the API from.
1741
-
1742
- #### Inherited from
1743
-
1744
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`host`](IEngineServerEnvironmentVariables.md#host)
1745
-
1746
- ***
1747
-
1748
- ### corsOrigins?
1749
-
1750
- > `optional` **corsOrigins**: `string`
1751
-
1752
- The CORS origins to allow, defaults to *.
1753
-
1754
- #### Inherited from
1755
-
1756
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`corsOrigins`](IEngineServerEnvironmentVariables.md#corsorigins)
1757
-
1758
- ***
1759
-
1760
- ### httpMethods?
1761
-
1762
- > `optional` **httpMethods**: `string`
1763
-
1764
- The CORS methods to allow, defaults to GET, POST, PUT, DELETE, OPTIONS.
1765
-
1766
- #### Inherited from
1767
-
1768
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`httpMethods`](IEngineServerEnvironmentVariables.md#httpmethods)
1769
-
1770
- ***
1771
-
1772
- ### httpAllowedHeaders?
1773
-
1774
- > `optional` **httpAllowedHeaders**: `string`
1775
-
1776
- The CORS headers to allow.
1777
-
1778
- #### Inherited from
1779
-
1780
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`httpAllowedHeaders`](IEngineServerEnvironmentVariables.md#httpallowedheaders)
1781
-
1782
- ***
1783
-
1784
- ### httpExposedHeaders?
1785
-
1786
- > `optional` **httpExposedHeaders**: `string`
1787
-
1788
- The CORS headers to expose.
1789
-
1790
- #### Inherited from
1791
-
1792
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`httpExposedHeaders`](IEngineServerEnvironmentVariables.md#httpexposedheaders)
1793
-
1794
- ***
1795
-
1796
- ### authAdminProcessorType?
1797
-
1798
- > `optional` **authAdminProcessorType**: `string`
1799
-
1800
- The type of auth admin processor to use on the API: entity-storage.
1801
-
1802
- #### Inherited from
1803
-
1804
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`authAdminProcessorType`](IEngineServerEnvironmentVariables.md#authadminprocessortype)
1805
-
1806
- ***
1807
-
1808
- ### authProcessorType?
1809
-
1810
- > `optional` **authProcessorType**: `string`
1811
-
1812
- The type of auth processor to use on the API: entity-storage.
1813
-
1814
- #### Inherited from
1815
-
1816
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`authProcessorType`](IEngineServerEnvironmentVariables.md#authprocessortype)
1817
-
1818
- ***
1819
-
1820
- ### authSigningKeyId?
1821
-
1822
- > `optional` **authSigningKeyId**: `string`
1823
-
1824
- The id of the key in the vault to use for signing in auth operations.
1825
-
1826
- #### Inherited from
1827
-
1828
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`authSigningKeyId`](IEngineServerEnvironmentVariables.md#authsigningkeyid)
1829
-
1830
- ***
1831
-
1832
- ### mimeTypeProcessors?
1833
-
1834
- > `optional` **mimeTypeProcessors**: `string`
1835
-
1836
- Additional MIME type processors to include, comma separated.
1837
-
1838
- #### Inherited from
1839
-
1840
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mimeTypeProcessors`](IEngineServerEnvironmentVariables.md#mimetypeprocessors)
1841
-
1842
- ***
1843
-
1844
- ### routeLoggingIncludeBody?
1845
-
1846
- > `optional` **routeLoggingIncludeBody**: `string`
1847
-
1848
- Include the body in the REST logging output, useful for debugging.
1849
-
1850
- #### Inherited from
1851
-
1852
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`routeLoggingIncludeBody`](IEngineServerEnvironmentVariables.md#routeloggingincludebody)
1853
-
1854
- ***
1855
-
1856
- ### routeLoggingFullBase64?
1857
-
1858
- > `optional` **routeLoggingFullBase64**: `string`
1859
-
1860
- Include the full base 64 output in the REST logging output, useful for debugging.
1861
-
1862
- #### Inherited from
1863
-
1864
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`routeLoggingFullBase64`](IEngineServerEnvironmentVariables.md#routeloggingfullbase64)
1865
-
1866
- ***
1867
-
1868
- ### routeLoggingObfuscateProperties?
1869
-
1870
- > `optional` **routeLoggingObfuscateProperties**: `string`
1871
-
1872
- List of properties to obfuscate in the REST logging output, comma separated.
1873
-
1874
- #### Inherited from
1875
-
1876
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`routeLoggingObfuscateProperties`](IEngineServerEnvironmentVariables.md#routeloggingobfuscateproperties)
1877
-
1878
- ***
1879
-
1880
- ### features?
1881
-
1882
- > `optional` **features**: `string`
1883
-
1884
- The features that are enabled on the node.
1885
-
1886
- #### Default
1887
-
1888
- ```ts
1889
- []
1890
- ```
1891
-
1892
- ***
1893
-
1894
- ### nodeIdentity?
1895
-
1896
- > `optional` **nodeIdentity**: `string`
1897
-
1898
- The identity of the node which, if empty and node-identity feature is enabled it will be generated.
1899
-
1900
- ***
1901
-
1902
- ### nodeMnemonic?
1903
-
1904
- > `optional` **nodeMnemonic**: `string`
1905
-
1906
- The mnemonic for the identity, if empty and node-identity feature is enabled it will be randomly generated.
1907
-
1908
- ***
1909
-
1910
- ### organizationIdentity?
1911
-
1912
- > `optional` **organizationIdentity**: `string`
1913
-
1914
- If the node-admin-user feature is enabled, this will be the organization of the user, if one is not provided it will be generated
1915
-
1916
- ***
1917
-
1918
- ### organizationMnemonic?
1919
-
1920
- > `optional` **organizationMnemonic**: `string`
1921
-
1922
- The mnemonic for the organization, if empty and node-admin-user feature is enabled it will be randomly generated.
1923
-
1924
- ***
1925
-
1926
- ### adminUserIdentity?
1927
-
1928
- > `optional` **adminUserIdentity**: `string`
1929
-
1930
- If the node-admin-user feature is enabled, this will be the identity of the user, if one is not provided it will be generated
1931
-
1932
- ***
1933
-
1934
- ### adminUserMnemonic?
1935
-
1936
- > `optional` **adminUserMnemonic**: `string`
1937
-
1938
- The mnemonic for the admin user, if empty and node-admin-user feature is enabled it will be randomly generated.
1939
-
1940
- ***
1941
-
1942
- ### adminUserName?
1943
-
1944
- > `optional` **adminUserName**: `string`
1945
-
1946
- If the node-admin-user feature is enabled, this will be the name of the user.
1947
-
1948
- #### Default
1949
-
1950
- ```ts
1951
- admin@node
1952
- ```
1953
-
1954
- ***
1955
-
1956
- ### adminUserPassword?
1957
-
1958
- > `optional` **adminUserPassword**: `string`
1959
-
1960
- If the node-admin-user feature is enabled, this will be the password of the user, if empty it will be randomly generated.
1961
-
1962
- ***
1963
-
1964
- ### extensionsMaxSizeMb?
7
+ ### extensionsMaxSizeMb? {#extensionsmaxsizemb}
1965
8
 
1966
- > `optional` **extensionsMaxSizeMb**: `number`
9
+ > `optional` **extensionsMaxSizeMb?**: `number`
1967
10
 
1968
11
  Maximum size in MB for HTTPS extensions downloads.
1969
12
 
@@ -1975,9 +18,9 @@ Maximum size in MB for HTTPS extensions downloads.
1975
18
 
1976
19
  ***
1977
20
 
1978
- ### extensionsClearCache?
21
+ ### extensionsClearCache? {#extensionsclearcache}
1979
22
 
1980
- > `optional` **extensionsClearCache**: `boolean`
23
+ > `optional` **extensionsClearCache?**: `boolean`
1981
24
 
1982
25
  Whether to clear the extensions cache on startup.
1983
26
 
@@ -1989,9 +32,9 @@ false
1989
32
 
1990
33
  ***
1991
34
 
1992
- ### extensionsCacheDirectory?
35
+ ### extensionsCacheDirectory? {#extensionscachedirectory}
1993
36
 
1994
- > `optional` **extensionsCacheDirectory**: `string`
37
+ > `optional` **extensionsCacheDirectory?**: `string`
1995
38
 
1996
39
  Custom directory for extensions cache storage.
1997
40
 
@@ -2003,9 +46,9 @@ Custom directory for extensions cache storage.
2003
46
 
2004
47
  ***
2005
48
 
2006
- ### extensionsCacheTtlHours?
49
+ ### extensionsCacheTtlHours? {#extensionscachettlhours}
2007
50
 
2008
- > `optional` **extensionsCacheTtlHours**: `number`
51
+ > `optional` **extensionsCacheTtlHours?**: `number`
2009
52
 
2010
53
  TTL in hours for HTTPS extensions cache.
2011
54
 
@@ -2017,9 +60,9 @@ TTL in hours for HTTPS extensions cache.
2017
60
 
2018
61
  ***
2019
62
 
2020
- ### extensionsForceRefresh?
63
+ ### extensionsForceRefresh? {#extensionsforcerefresh}
2021
64
 
2022
- > `optional` **extensionsForceRefresh**: `boolean`
65
+ > `optional` **extensionsForceRefresh?**: `boolean`
2023
66
 
2024
67
  Force refresh of all cached extensions.
2025
68