@twin.org/node-core 0.0.2-next.2 → 0.0.2-next.21

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