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