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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (230) hide show
  1. package/README.md +3 -1
  2. package/dist/es/builders/engineEnvBuilder.js +470 -174
  3. package/dist/es/builders/engineEnvBuilder.js.map +1 -1
  4. package/dist/es/builders/engineServerEnvBuilder.js +87 -39
  5. package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
  6. package/dist/es/builders/extensionsBuilder.js +3 -3
  7. package/dist/es/builders/extensionsBuilder.js.map +1 -1
  8. package/dist/es/cli.js +254 -0
  9. package/dist/es/cli.js.map +1 -0
  10. package/dist/es/commands/bootstrapLegacy.js +312 -0
  11. package/dist/es/commands/bootstrapLegacy.js.map +1 -0
  12. package/dist/es/commands/help.js +86 -0
  13. package/dist/es/commands/help.js.map +1 -0
  14. package/dist/es/commands/identityCreate.js +377 -0
  15. package/dist/es/commands/identityCreate.js.map +1 -0
  16. package/dist/es/commands/identityImports.js +83 -0
  17. package/dist/es/commands/identityImports.js.map +1 -0
  18. package/dist/es/commands/identityVerifiableCredentialCreate.js +146 -0
  19. package/dist/es/commands/identityVerifiableCredentialCreate.js.map +1 -0
  20. package/dist/es/commands/identityVerificationMethodCreate.js +231 -0
  21. package/dist/es/commands/identityVerificationMethodCreate.js.map +1 -0
  22. package/dist/es/commands/identityVerificationMethodImport.js +127 -0
  23. package/dist/es/commands/identityVerificationMethodImport.js.map +1 -0
  24. package/dist/es/commands/nodeSetIdentity.js +69 -0
  25. package/dist/es/commands/nodeSetIdentity.js.map +1 -0
  26. package/dist/es/commands/removeTenantOrgAlias.js +83 -0
  27. package/dist/es/commands/removeTenantOrgAlias.js.map +1 -0
  28. package/dist/es/commands/setNodeOrgId.js +62 -0
  29. package/dist/es/commands/setNodeOrgId.js.map +1 -0
  30. package/dist/es/commands/setTenantOrgId.js +99 -0
  31. package/dist/es/commands/setTenantOrgId.js.map +1 -0
  32. package/dist/es/commands/tenantCreate.js +165 -0
  33. package/dist/es/commands/tenantCreate.js.map +1 -0
  34. package/dist/es/commands/tenantImport.js +108 -0
  35. package/dist/es/commands/tenantImport.js.map +1 -0
  36. package/dist/es/commands/tenantUpdate.js +108 -0
  37. package/dist/es/commands/tenantUpdate.js.map +1 -0
  38. package/dist/es/commands/userCreate.js +239 -0
  39. package/dist/es/commands/userCreate.js.map +1 -0
  40. package/dist/es/commands/userUpdate.js +154 -0
  41. package/dist/es/commands/userUpdate.js.map +1 -0
  42. package/dist/es/commands/vaultKeyCreate.js +191 -0
  43. package/dist/es/commands/vaultKeyCreate.js.map +1 -0
  44. package/dist/es/commands/vaultKeyImport.js +105 -0
  45. package/dist/es/commands/vaultKeyImport.js.map +1 -0
  46. package/dist/es/defaults.js +37 -2
  47. package/dist/es/defaults.js.map +1 -1
  48. package/dist/es/index.js +13 -4
  49. package/dist/es/index.js.map +1 -1
  50. package/dist/es/models/IBootstrapLegacyEnvironmentVariables.js +4 -0
  51. package/dist/es/models/IBootstrapLegacyEnvironmentVariables.js.map +1 -0
  52. package/dist/es/models/ICliArgs.js +4 -0
  53. package/dist/es/models/ICliArgs.js.map +1 -0
  54. package/dist/es/models/ICliCommand.js +2 -0
  55. package/dist/es/models/ICliCommand.js.map +1 -0
  56. package/dist/es/models/ICliCommandDefinition.js +2 -0
  57. package/dist/es/models/ICliCommandDefinition.js.map +1 -0
  58. package/dist/es/models/ICliCommandDefinitionParam.js +2 -0
  59. package/dist/es/models/ICliCommandDefinitionParam.js.map +1 -0
  60. package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
  61. package/dist/es/models/IEngineServerEnvironmentVariables.js +2 -0
  62. package/dist/es/models/IEngineServerEnvironmentVariables.js.map +1 -1
  63. package/dist/es/models/IEnvironmentVariables.js +2 -0
  64. package/dist/es/models/IEnvironmentVariables.js.map +1 -0
  65. package/dist/es/models/INodeEngineState.js.map +1 -1
  66. package/dist/es/models/INodeEnvironmentVariables.js +2 -0
  67. package/dist/es/models/INodeEnvironmentVariables.js.map +1 -1
  68. package/dist/es/models/INodeOptions.js.map +1 -1
  69. package/dist/es/models/bootstrapLegacyEnvironmentVariableKeys.js +24 -0
  70. package/dist/es/models/bootstrapLegacyEnvironmentVariableKeys.js.map +1 -0
  71. package/dist/es/models/cliCommandParamType.js +4 -0
  72. package/dist/es/models/cliCommandParamType.js.map +1 -0
  73. package/dist/es/models/engineEnvironmentVariableKeys.js +202 -0
  74. package/dist/es/models/engineEnvironmentVariableKeys.js.map +1 -0
  75. package/dist/es/models/engineServerEnvironmentVariableKeys.js +35 -0
  76. package/dist/es/models/engineServerEnvironmentVariableKeys.js.map +1 -0
  77. package/dist/es/models/nodeEnvironmentVariableKeys.js +18 -0
  78. package/dist/es/models/nodeEnvironmentVariableKeys.js.map +1 -0
  79. package/dist/es/models/nodeExtensionInitialiseEngineMethod.js +2 -0
  80. package/dist/es/models/nodeExtensionInitialiseEngineMethod.js.map +1 -0
  81. package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js +2 -0
  82. package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js.map +1 -0
  83. package/dist/es/models/nodeExtensionInitialiseMethod.js +2 -0
  84. package/dist/es/models/nodeExtensionInitialiseMethod.js.map +1 -0
  85. package/dist/es/models/nodeExtensionShutdownMethod.js +4 -0
  86. package/dist/es/models/nodeExtensionShutdownMethod.js.map +1 -0
  87. package/dist/es/node.js +180 -42
  88. package/dist/es/node.js.map +1 -1
  89. package/dist/es/start.js +189 -0
  90. package/dist/es/start.js.map +1 -0
  91. package/dist/es/utils.js +24 -27
  92. package/dist/es/utils.js.map +1 -1
  93. package/dist/types/builders/engineEnvBuilder.d.ts +60 -5
  94. package/dist/types/builders/engineServerEnvBuilder.d.ts +12 -3
  95. package/dist/types/builders/extensionsBuilder.d.ts +8 -8
  96. package/dist/types/cli.d.ts +56 -0
  97. package/dist/types/commands/bootstrapLegacy.d.ts +20 -0
  98. package/dist/types/commands/help.d.ts +24 -0
  99. package/dist/types/commands/identityCreate.d.ts +45 -0
  100. package/dist/types/commands/identityImports.d.ts +25 -0
  101. package/dist/types/commands/identityVerifiableCredentialCreate.d.ts +43 -0
  102. package/dist/types/commands/identityVerificationMethodCreate.d.ts +47 -0
  103. package/dist/types/commands/identityVerificationMethodImport.d.ts +32 -0
  104. package/dist/types/commands/nodeSetIdentity.d.ts +23 -0
  105. package/dist/types/commands/removeTenantOrgAlias.d.ts +24 -0
  106. package/dist/types/commands/setNodeOrgId.d.ts +24 -0
  107. package/dist/types/commands/setTenantOrgId.d.ts +38 -0
  108. package/dist/types/commands/tenantCreate.d.ts +41 -0
  109. package/dist/types/commands/tenantImport.d.ts +29 -0
  110. package/dist/types/commands/tenantUpdate.d.ts +29 -0
  111. package/dist/types/commands/userCreate.d.ts +51 -0
  112. package/dist/types/commands/userUpdate.d.ts +40 -0
  113. package/dist/types/commands/vaultKeyCreate.d.ts +43 -0
  114. package/dist/types/commands/vaultKeyImport.d.ts +29 -0
  115. package/dist/types/defaults.d.ts +30 -2
  116. package/dist/types/index.d.ts +13 -4
  117. package/dist/types/models/IBootstrapLegacyEnvironmentVariables.d.ts +56 -0
  118. package/dist/types/models/ICliArgs.d.ts +20 -0
  119. package/dist/types/models/ICliCommand.d.ts +17 -0
  120. package/dist/types/models/ICliCommandDefinition.d.ts +46 -0
  121. package/dist/types/models/ICliCommandDefinitionParam.d.ts +35 -0
  122. package/dist/types/models/IEngineEnvironmentVariables.d.ts +199 -96
  123. package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +9 -2
  124. package/dist/types/models/IEnvironmentVariables.d.ts +8 -0
  125. package/dist/types/models/INodeEngineState.d.ts +2 -9
  126. package/dist/types/models/INodeEnvironmentVariables.d.ts +1 -40
  127. package/dist/types/models/INodeOptions.d.ts +9 -5
  128. package/dist/types/models/bootstrapLegacyEnvironmentVariableKeys.d.ts +4 -0
  129. package/dist/types/models/cliCommandParamType.d.ts +4 -0
  130. package/dist/types/models/engineEnvironmentVariableKeys.d.ts +4 -0
  131. package/dist/types/models/engineServerEnvironmentVariableKeys.d.ts +7 -0
  132. package/dist/types/models/nodeEnvironmentVariableKeys.d.ts +5 -0
  133. package/dist/types/models/nodeExtensionInitialiseEngineMethod.d.ts +8 -0
  134. package/dist/types/models/nodeExtensionInitialiseEngineServerMethod.d.ts +9 -0
  135. package/dist/types/models/nodeExtensionInitialiseMethod.d.ts +9 -0
  136. package/dist/types/models/nodeExtensionShutdownMethod.d.ts +6 -0
  137. package/dist/types/node.d.ts +8 -7
  138. package/dist/types/{server.d.ts → start.d.ts} +6 -3
  139. package/dist/types/utils.d.ts +9 -10
  140. package/docs/changelog.md +883 -186
  141. package/docs/examples.md +99 -1
  142. package/docs/reference/functions/buildConfiguration.md +3 -3
  143. package/docs/reference/functions/buildEngineConfiguration.md +1 -7
  144. package/docs/reference/functions/buildEngineServerConfiguration.md +1 -1
  145. package/docs/reference/functions/constructCliCommand.md +27 -0
  146. package/docs/reference/functions/executeCommand.md +29 -0
  147. package/docs/reference/functions/extensionsConfiguration.md +1 -1
  148. package/docs/reference/functions/extensionsInitialiseEngine.md +2 -2
  149. package/docs/reference/functions/extensionsInitialiseEngineServer.md +2 -2
  150. package/docs/reference/functions/getEnvDefaults.md +19 -0
  151. package/docs/reference/functions/getScriptDirectory.md +19 -0
  152. package/docs/reference/functions/initialiseLocales.md +2 -0
  153. package/docs/reference/functions/isAuthEntityStorageRequired.md +20 -0
  154. package/docs/reference/functions/isAutomationRequired.md +20 -0
  155. package/docs/reference/functions/isBackgroundTasksRequired.md +20 -0
  156. package/docs/reference/functions/isFederatedCatalogueRequired.md +20 -0
  157. package/docs/reference/functions/isImmutableProofRequired.md +20 -0
  158. package/docs/reference/functions/isRightsManagementRequired.md +23 -0
  159. package/docs/reference/functions/isTaskSchedulerRequired.md +20 -0
  160. package/docs/reference/functions/isTelemetryRequired.md +20 -0
  161. package/docs/reference/functions/isTrustRequired.md +20 -0
  162. package/docs/reference/functions/loadJsonFile.md +1 -1
  163. package/docs/reference/functions/loadTextFile.md +1 -1
  164. package/docs/reference/functions/overrideModuleImport.md +1 -1
  165. package/docs/reference/functions/parseCommandLineArgs.md +19 -0
  166. package/docs/reference/functions/processEnvOptions.md +27 -0
  167. package/docs/reference/functions/registerCommands.md +9 -0
  168. package/docs/reference/functions/resolvePackageEntryPoint.md +2 -2
  169. package/docs/reference/functions/run.md +8 -2
  170. package/docs/reference/functions/shutdownExtensions.md +2 -2
  171. package/docs/reference/functions/start.md +10 -4
  172. package/docs/reference/functions/substituteEnvOptions.md +25 -0
  173. package/docs/reference/index.md +26 -14
  174. package/docs/reference/interfaces/IBootstrapLegacyEnvironmentVariables.md +117 -0
  175. package/docs/reference/interfaces/ICacheMetadata.md +3 -3
  176. package/docs/reference/interfaces/ICliArgs.md +35 -0
  177. package/docs/reference/interfaces/ICliCommand.md +23 -0
  178. package/docs/reference/interfaces/ICliCommandDefinition.md +101 -0
  179. package/docs/reference/interfaces/ICliCommandDefinitionParam.md +65 -0
  180. package/docs/reference/interfaces/IEngineEnvironmentVariables.md +553 -365
  181. package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +41 -1746
  182. package/docs/reference/interfaces/IModuleProtocol.md +3 -3
  183. package/docs/reference/interfaces/INodeEngineState.md +6 -21
  184. package/docs/reference/interfaces/INodeEnvironmentVariables.md +10 -1967
  185. package/docs/reference/interfaces/INodeOptions.md +46 -38
  186. package/docs/reference/interfaces/IProtocolHandlerResult.md +2 -2
  187. package/docs/reference/type-aliases/CliCommandParamType.md +5 -0
  188. package/docs/reference/type-aliases/IEnvironmentVariables.md +5 -0
  189. package/docs/reference/type-aliases/NodeExtensionInitialiseEngineMethod.md +3 -1
  190. package/docs/reference/type-aliases/NodeExtensionInitialiseEngineServerMethod.md +3 -1
  191. package/docs/reference/type-aliases/NodeExtensionInitialiseMethod.md +4 -2
  192. package/docs/reference/type-aliases/NodeExtensionShutdownMethod.md +3 -1
  193. package/docs/reference/variables/ATTESTATION_VERIFICATION_METHOD_ID.md +2 -0
  194. package/docs/reference/variables/AUTH_SIGNING_KEY_ID.md +2 -0
  195. package/docs/reference/variables/BLOB_STORAGE_ENCRYPTION_KEY_ID.md +2 -0
  196. package/docs/reference/variables/CONTEXT_ID_HANDLER_FEATURE_DID.md +2 -0
  197. package/docs/reference/variables/CONTEXT_ID_HANDLER_FEATURE_TENANT.md +2 -0
  198. package/docs/reference/variables/IMMUTABLE_PROOF_VERIFICATION_METHOD_ID.md +2 -0
  199. package/docs/reference/variables/ModuleProtocol.md +5 -5
  200. package/docs/reference/variables/TRUST_VERIFICATION_METHOD_ID.md +5 -0
  201. package/locales/en.json +680 -30
  202. package/package.json +30 -27
  203. package/dist/es/bootstrap.js +0 -383
  204. package/dist/es/bootstrap.js.map +0 -1
  205. package/dist/es/identity.js +0 -182
  206. package/dist/es/identity.js.map +0 -1
  207. package/dist/es/models/nodeExtensionMethods.js +0 -2
  208. package/dist/es/models/nodeExtensionMethods.js.map +0 -1
  209. package/dist/es/models/nodeFeatures.js +0 -21
  210. package/dist/es/models/nodeFeatures.js.map +0 -1
  211. package/dist/es/server.js +0 -81
  212. package/dist/es/server.js.map +0 -1
  213. package/dist/types/bootstrap.d.ts +0 -68
  214. package/dist/types/identity.d.ts +0 -14
  215. package/dist/types/models/nodeExtensionMethods.d.ts +0 -27
  216. package/dist/types/models/nodeFeatures.d.ts +0 -21
  217. package/docs/detailed-guide.md +0 -129
  218. package/docs/reference/functions/bootstrap.md +0 -29
  219. package/docs/reference/functions/bootstrapAuth.md +0 -35
  220. package/docs/reference/functions/bootstrapBlobEncryption.md +0 -35
  221. package/docs/reference/functions/bootstrapImmutableProofMethod.md +0 -35
  222. package/docs/reference/functions/bootstrapNodeAdminUser.md +0 -35
  223. package/docs/reference/functions/bootstrapNodeId.md +0 -35
  224. package/docs/reference/functions/bootstrapSynchronisedStorage.md +0 -35
  225. package/docs/reference/functions/bootstrapTenantId.md +0 -35
  226. package/docs/reference/functions/getFeatures.md +0 -19
  227. package/docs/reference/type-aliases/NodeFeatures.md +0 -5
  228. package/docs/reference/variables/NodeFeatures.md +0 -25
  229. package/docs/reference/variables/SYNCHRONISED_STORAGE_BLOB_STORAGE_ENCRYPTION_KEY_ID.md +0 -3
  230. package/docs/reference/variables/VC_AUTHENTICATION_VERIFICATION_METHOD_ID.md +0 -3
@@ -2,1827 +2,122 @@
2
2
 
3
3
  The engine server environment variables.
4
4
 
5
- ## Extends
6
-
7
- - [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md)
8
-
9
- ## Extended by
10
-
11
- - [`INodeEnvironmentVariables`](INodeEnvironmentVariables.md)
12
-
13
5
  ## Properties
14
6
 
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
- ### awsDynamodbConnectionTimeoutMs?
185
-
186
- > `optional` **awsDynamodbConnectionTimeoutMs**: `string`
187
-
188
- AWS Dynamo DB connection timeout.
189
-
190
- #### Inherited from
191
-
192
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbConnectionTimeoutMs`](IEngineEnvironmentVariables.md#awsdynamodbconnectiontimeoutms)
193
-
194
- ***
195
-
196
- ### azureCosmosdbKey?
197
-
198
- > `optional` **azureCosmosdbKey**: `string`
199
-
200
- Azure Cosmos DB key.
201
-
202
- #### Inherited from
203
-
204
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbKey`](IEngineEnvironmentVariables.md#azurecosmosdbkey)
205
-
206
- ***
207
-
208
- ### azureCosmosdbContainerId?
209
-
210
- > `optional` **azureCosmosdbContainerId**: `string`
211
-
212
- Azure Cosmos DB container id.
213
-
214
- #### Inherited from
215
-
216
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbContainerId`](IEngineEnvironmentVariables.md#azurecosmosdbcontainerid)
217
-
218
- ***
219
-
220
- ### azureCosmosdbDatabaseId?
221
-
222
- > `optional` **azureCosmosdbDatabaseId**: `string`
223
-
224
- Azure Cosmos DB database id.
225
-
226
- #### Inherited from
227
-
228
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbDatabaseId`](IEngineEnvironmentVariables.md#azurecosmosdbdatabaseid)
229
-
230
- ***
231
-
232
- ### azureCosmosdbEndpoint?
233
-
234
- > `optional` **azureCosmosdbEndpoint**: `string`
235
-
236
- Azure Cosmos DB endpoint.
237
-
238
- #### Inherited from
239
-
240
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbEndpoint`](IEngineEnvironmentVariables.md#azurecosmosdbendpoint)
241
-
242
- ***
243
-
244
- ### gcpFirestoreCollectionName?
245
-
246
- > `optional` **gcpFirestoreCollectionName**: `string`
247
-
248
- GCP Firestore collection name.
249
-
250
- #### Inherited from
251
-
252
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreCollectionName`](IEngineEnvironmentVariables.md#gcpfirestorecollectionname)
253
-
254
- ***
255
-
256
- ### gcpFirestoreCredentials?
257
-
258
- > `optional` **gcpFirestoreCredentials**: `string`
259
-
260
- GCP Firestore credentials.
261
-
262
- #### Inherited from
263
-
264
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreCredentials`](IEngineEnvironmentVariables.md#gcpfirestorecredentials)
265
-
266
- ***
267
-
268
- ### gcpFirestoreDatabaseId?
269
-
270
- > `optional` **gcpFirestoreDatabaseId**: `string`
271
-
272
- GCP Firestore database id.
273
-
274
- #### Inherited from
275
-
276
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreDatabaseId`](IEngineEnvironmentVariables.md#gcpfirestoredatabaseid)
277
-
278
- ***
279
-
280
- ### gcpFirestoreApiEndpoint?
281
-
282
- > `optional` **gcpFirestoreApiEndpoint**: `string`
283
-
284
- GCP Firestore endpoint.
285
-
286
- #### Inherited from
287
-
288
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreApiEndpoint`](IEngineEnvironmentVariables.md#gcpfirestoreapiendpoint)
289
-
290
- ***
291
-
292
- ### gcpFirestoreProjectId?
293
-
294
- > `optional` **gcpFirestoreProjectId**: `string`
295
-
296
- GCP Firestore project id.
297
-
298
- #### Inherited from
299
-
300
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreProjectId`](IEngineEnvironmentVariables.md#gcpfirestoreprojectid)
301
-
302
- ***
303
-
304
- ### scylladbHosts?
305
-
306
- > `optional` **scylladbHosts**: `string`
307
-
308
- ScyllaDB hosts as comma separated string.
309
-
310
- #### Inherited from
311
-
312
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`scylladbHosts`](IEngineEnvironmentVariables.md#scylladbhosts)
313
-
314
- ***
315
-
316
- ### scylladbKeyspace?
317
-
318
- > `optional` **scylladbKeyspace**: `string`
319
-
320
- ScyllaDB keyspace.
321
-
322
- #### Inherited from
323
-
324
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`scylladbKeyspace`](IEngineEnvironmentVariables.md#scylladbkeyspace)
325
-
326
- ***
327
-
328
- ### scylladbLocalDataCenter?
329
-
330
- > `optional` **scylladbLocalDataCenter**: `string`
331
-
332
- ScyllaDB local data center.
333
-
334
- #### Inherited from
335
-
336
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`scylladbLocalDataCenter`](IEngineEnvironmentVariables.md#scylladblocaldatacenter)
337
-
338
- ***
7
+ ### port? {#port}
339
8
 
340
- ### scylladbPort?
9
+ > `optional` **port?**: `string`
341
10
 
342
- > `optional` **scylladbPort**: `string`
343
-
344
- ScyllaDB port.
345
-
346
- #### Inherited from
347
-
348
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`scylladbPort`](IEngineEnvironmentVariables.md#scylladbport)
349
-
350
- ***
351
-
352
- ### mySqlHost?
353
-
354
- > `optional` **mySqlHost**: `string`
355
-
356
- MySQL host.
357
-
358
- #### Inherited from
359
-
360
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlHost`](IEngineEnvironmentVariables.md#mysqlhost)
361
-
362
- ***
363
-
364
- ### mySqlPort?
365
-
366
- > `optional` **mySqlPort**: `number`
367
-
368
- MySQL port.
369
-
370
- #### Inherited from
371
-
372
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlPort`](IEngineEnvironmentVariables.md#mysqlport)
373
-
374
- ***
375
-
376
- ### mySqlUser?
377
-
378
- > `optional` **mySqlUser**: `string`
379
-
380
- MySQL username.
381
-
382
- #### Inherited from
383
-
384
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlUser`](IEngineEnvironmentVariables.md#mysqluser)
385
-
386
- ***
387
-
388
- ### mySqlPassword?
389
-
390
- > `optional` **mySqlPassword**: `string`
391
-
392
- MySQL password.
393
-
394
- #### Inherited from
395
-
396
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlPassword`](IEngineEnvironmentVariables.md#mysqlpassword)
11
+ The port to serve the API from.
397
12
 
398
13
  ***
399
14
 
400
- ### mySqlDatabase?
15
+ ### host? {#host}
401
16
 
402
- > `optional` **mySqlDatabase**: `string`
17
+ > `optional` **host?**: `string`
403
18
 
404
- MySQL Database.
405
-
406
- #### Inherited from
407
-
408
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlDatabase`](IEngineEnvironmentVariables.md#mysqldatabase)
19
+ The host to serve the API from.
409
20
 
410
21
  ***
411
22
 
412
- ### mongoDbHost?
413
-
414
- > `optional` **mongoDbHost**: `string`
23
+ ### corsOrigins? {#corsorigins}
415
24
 
416
- MongoDB host.
25
+ > `optional` **corsOrigins?**: `string`
417
26
 
418
- #### Inherited from
419
-
420
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbHost`](IEngineEnvironmentVariables.md#mongodbhost)
27
+ The CORS origins to allow, defaults to *.
421
28
 
422
29
  ***
423
30
 
424
- ### mongoDbPort?
425
-
426
- > `optional` **mongoDbPort**: `number`
427
-
428
- MongoDB port.
31
+ ### httpMethods? {#httpmethods}
429
32
 
430
- #### Inherited from
33
+ > `optional` **httpMethods?**: `string`
431
34
 
432
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbPort`](IEngineEnvironmentVariables.md#mongodbport)
35
+ The CORS methods to allow, defaults to GET, POST, PUT, DELETE, OPTIONS.
433
36
 
434
37
  ***
435
38
 
436
- ### mongoDbUser?
437
-
438
- > `optional` **mongoDbUser**: `string`
39
+ ### httpAllowedHeaders? {#httpallowedheaders}
439
40
 
440
- MongoDB username.
41
+ > `optional` **httpAllowedHeaders?**: `string`
441
42
 
442
- #### Inherited from
443
-
444
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbUser`](IEngineEnvironmentVariables.md#mongodbuser)
43
+ The CORS headers to allow.
445
44
 
446
45
  ***
447
46
 
448
- ### mongoDbPassword?
47
+ ### httpExposedHeaders? {#httpexposedheaders}
449
48
 
450
- > `optional` **mongoDbPassword**: `string`
49
+ > `optional` **httpExposedHeaders?**: `string`
451
50
 
452
- MongoDB password.
453
-
454
- #### Inherited from
455
-
456
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbPassword`](IEngineEnvironmentVariables.md#mongodbpassword)
51
+ The CORS headers to expose.
457
52
 
458
53
  ***
459
54
 
460
- ### mongoDbDatabase?
461
-
462
- > `optional` **mongoDbDatabase**: `string`
55
+ ### publicOrigin? {#publicorigin}
463
56
 
464
- MongoDB Database.
57
+ > `optional` **publicOrigin?**: `string`
465
58
 
466
- #### Inherited from
467
-
468
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbDatabase`](IEngineEnvironmentVariables.md#mongodbdatabase)
59
+ The public origin URL for the API e.g. https://api.example.com:1234
469
60
 
470
61
  ***
471
62
 
472
- ### postgreSqlHost?
473
-
474
- > `optional` **postgreSqlHost**: `string`
63
+ ### authAdminProcessorType? {#authadminprocessortype}
475
64
 
476
- PostgreSQl host.
65
+ > `optional` **authAdminProcessorType?**: `string`
477
66
 
478
- #### Inherited from
479
-
480
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlHost`](IEngineEnvironmentVariables.md#postgresqlhost)
67
+ The type of auth admin processor to use on the API: entity-storage.
481
68
 
482
69
  ***
483
70
 
484
- ### postgreSqlPort?
71
+ ### authProcessorType? {#authprocessortype}
485
72
 
486
- > `optional` **postgreSqlPort**: `number`
73
+ > `optional` **authProcessorType?**: `string`
487
74
 
488
- PostgreSQl port.
489
-
490
- #### Inherited from
491
-
492
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlPort`](IEngineEnvironmentVariables.md#postgresqlport)
75
+ The type of auth processor to use on the API: entity-storage.
493
76
 
494
77
  ***
495
78
 
496
- ### postgreSqlUser?
497
-
498
- > `optional` **postgreSqlUser**: `string`
79
+ ### authSigningKeyId? {#authsigningkeyid}
499
80
 
500
- PostgreSQl username.
81
+ > `optional` **authSigningKeyId?**: `string`
501
82
 
502
- #### Inherited from
503
-
504
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlUser`](IEngineEnvironmentVariables.md#postgresqluser)
83
+ The id of the key in the vault to use for signing in auth operations.
505
84
 
506
85
  ***
507
86
 
508
- ### postgreSqlPassword?
509
-
510
- > `optional` **postgreSqlPassword**: `string`
511
-
512
- PostgreSQl password.
513
-
514
- #### Inherited from
515
-
516
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlPassword`](IEngineEnvironmentVariables.md#postgresqlpassword)
517
-
518
- ***
87
+ ### authApiKeyHeader? {#authapikeyheader}
519
88
 
520
- ### postgreSqlDatabase?
89
+ > `optional` **authApiKeyHeader?**: `string`
521
90
 
522
- > `optional` **postgreSqlDatabase**: `string`
523
-
524
- PostgreSQl Database.
525
-
526
- #### Inherited from
527
-
528
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlDatabase`](IEngineEnvironmentVariables.md#postgresqldatabase)
529
-
530
- ***
531
-
532
- ### ipfsBearerToken?
533
-
534
- > `optional` **ipfsBearerToken**: `string`
535
-
536
- The security token for accessing IPFS API.
537
-
538
- #### Inherited from
539
-
540
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`ipfsBearerToken`](IEngineEnvironmentVariables.md#ipfsbearertoken)
541
-
542
- ***
543
-
544
- ### ipfsApiUrl?
545
-
546
- > `optional` **ipfsApiUrl**: `string`
547
-
548
- The url for accessing IPFS API.
549
-
550
- #### Inherited from
551
-
552
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`ipfsApiUrl`](IEngineEnvironmentVariables.md#ipfsapiurl)
553
-
554
- ***
555
-
556
- ### blobStorageConnectorType?
557
-
558
- > `optional` **blobStorageConnectorType**: `string`
559
-
560
- The type of the entity storage to create, comma separate for more than one connector.
561
- values: memory, file, ipfs, aws-s3, azure-storage, gcp-storage.
562
-
563
- #### Inherited from
564
-
565
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageConnectorType`](IEngineEnvironmentVariables.md#blobstorageconnectortype)
566
-
567
- ***
568
-
569
- ### blobStorageConnectorDefault?
570
-
571
- > `optional` **blobStorageConnectorDefault**: `string`
572
-
573
- The default blob storage connector to use, defaults to the first one in the list.
574
-
575
- #### Inherited from
576
-
577
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageConnectorDefault`](IEngineEnvironmentVariables.md#blobstorageconnectordefault)
578
-
579
- ***
580
-
581
- ### blobStorageConnectorPublic?
582
-
583
- > `optional` **blobStorageConnectorPublic**: `string`
584
-
585
- Blog storage connector which has public access.
586
-
587
- #### Inherited from
588
-
589
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageConnectorPublic`](IEngineEnvironmentVariables.md#blobstorageconnectorpublic)
590
-
591
- ***
592
-
593
- ### blobStorageEnableEncryption?
594
-
595
- > `optional` **blobStorageEnableEncryption**: `string`
596
-
597
- Enable encryption for the blob storage.
598
-
599
- #### Inherited from
600
-
601
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageEnableEncryption`](IEngineEnvironmentVariables.md#blobstorageenableencryption)
602
-
603
- ***
604
-
605
- ### blobStorageEncryptionKeyId?
606
-
607
- > `optional` **blobStorageEncryptionKeyId**: `string`
608
-
609
- The id of the encryption key for the blob storage.
610
-
611
- #### Inherited from
612
-
613
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageEncryptionKeyId`](IEngineEnvironmentVariables.md#blobstorageencryptionkeyid)
614
-
615
- ***
616
-
617
- ### blobStorageSymmetricEncryptionKey?
618
-
619
- > `optional` **blobStorageSymmetricEncryptionKey**: `string`
620
-
621
- A symmetric encryption key for the blob storage, should be ChaCha20Poly1305 in base64 format.
622
- If encryption is enabled but a key is not provided one will be generated.
623
-
624
- #### Inherited from
625
-
626
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageSymmetricEncryptionKey`](IEngineEnvironmentVariables.md#blobstoragesymmetricencryptionkey)
627
-
628
- ***
629
-
630
- ### blobStoragePrefix?
631
-
632
- > `optional` **blobStoragePrefix**: `string`
633
-
634
- A prefix for all the blobs in blob-storage, can be empty.
635
-
636
- #### Inherited from
637
-
638
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStoragePrefix`](IEngineEnvironmentVariables.md#blobstorageprefix)
639
-
640
- ***
641
-
642
- ### awsS3Region?
643
-
644
- > `optional` **awsS3Region**: `string`
645
-
646
- AWS S3 region.
647
-
648
- #### Inherited from
649
-
650
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3Region`](IEngineEnvironmentVariables.md#awss3region)
651
-
652
- ***
653
-
654
- ### awsS3BucketName?
655
-
656
- > `optional` **awsS3BucketName**: `string`
657
-
658
- AWS S3 bucket name.
659
-
660
- #### Inherited from
661
-
662
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3BucketName`](IEngineEnvironmentVariables.md#awss3bucketname)
663
-
664
- ***
665
-
666
- ### awsS3AuthMode?
667
-
668
- > `optional` **awsS3AuthMode**: `string`
669
-
670
- AWS S3 auth mode, either credentials or pod, defaults to credentials.
671
-
672
- #### Inherited from
673
-
674
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3AuthMode`](IEngineEnvironmentVariables.md#awss3authmode)
675
-
676
- ***
677
-
678
- ### awsS3AccessKeyId?
679
-
680
- > `optional` **awsS3AccessKeyId**: `string`
681
-
682
- AWS S3 access key id.
683
-
684
- #### Inherited from
685
-
686
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3AccessKeyId`](IEngineEnvironmentVariables.md#awss3accesskeyid)
687
-
688
- ***
689
-
690
- ### awsS3SecretAccessKey?
691
-
692
- > `optional` **awsS3SecretAccessKey**: `string`
693
-
694
- AWS S3 secret access key.
695
-
696
- #### Inherited from
697
-
698
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3SecretAccessKey`](IEngineEnvironmentVariables.md#awss3secretaccesskey)
699
-
700
- ***
701
-
702
- ### awsS3Endpoint?
703
-
704
- > `optional` **awsS3Endpoint**: `string`
705
-
706
- AWS S3 endpoint.
707
-
708
- #### Inherited from
709
-
710
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3Endpoint`](IEngineEnvironmentVariables.md#awss3endpoint)
711
-
712
- ***
713
-
714
- ### azureStorageAccountKey?
715
-
716
- > `optional` **azureStorageAccountKey**: `string`
717
-
718
- Azure Storage account key.
719
-
720
- #### Inherited from
721
-
722
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageAccountKey`](IEngineEnvironmentVariables.md#azurestorageaccountkey)
723
-
724
- ***
725
-
726
- ### azureStorageAccountName?
727
-
728
- > `optional` **azureStorageAccountName**: `string`
729
-
730
- Azure Storage account name.
731
-
732
- #### Inherited from
733
-
734
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageAccountName`](IEngineEnvironmentVariables.md#azurestorageaccountname)
735
-
736
- ***
737
-
738
- ### azureStorageContainerName?
739
-
740
- > `optional` **azureStorageContainerName**: `string`
741
-
742
- Azure Storage container.
743
-
744
- #### Inherited from
745
-
746
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageContainerName`](IEngineEnvironmentVariables.md#azurestoragecontainername)
747
-
748
- ***
749
-
750
- ### azureStorageEndpoint?
751
-
752
- > `optional` **azureStorageEndpoint**: `string`
753
-
754
- Azure Storage endpoint.
755
-
756
- #### Inherited from
757
-
758
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageEndpoint`](IEngineEnvironmentVariables.md#azurestorageendpoint)
759
-
760
- ***
761
-
762
- ### gcpStorageBucketName?
763
-
764
- > `optional` **gcpStorageBucketName**: `string`
765
-
766
- GCP Storage bucket.
767
-
768
- #### Inherited from
769
-
770
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageBucketName`](IEngineEnvironmentVariables.md#gcpstoragebucketname)
771
-
772
- ***
773
-
774
- ### gcpStorageCredentials?
775
-
776
- > `optional` **gcpStorageCredentials**: `string`
777
-
778
- GCP Storage credentials.
779
-
780
- #### Inherited from
781
-
782
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageCredentials`](IEngineEnvironmentVariables.md#gcpstoragecredentials)
783
-
784
- ***
785
-
786
- ### gcpStorageEndpoint?
787
-
788
- > `optional` **gcpStorageEndpoint**: `string`
789
-
790
- GCP Storage endpoint.
791
-
792
- #### Inherited from
793
-
794
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageEndpoint`](IEngineEnvironmentVariables.md#gcpstorageendpoint)
795
-
796
- ***
797
-
798
- ### gcpStorageProjectId?
799
-
800
- > `optional` **gcpStorageProjectId**: `string`
801
-
802
- GCP Storage project id.
803
-
804
- #### Inherited from
805
-
806
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageProjectId`](IEngineEnvironmentVariables.md#gcpstorageprojectid)
807
-
808
- ***
809
-
810
- ### vaultConnector?
811
-
812
- > `optional` **vaultConnector**: `string`
813
-
814
- The type of the default vault connector: entity-storage, hashicorp.
815
-
816
- #### Inherited from
817
-
818
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`vaultConnector`](IEngineEnvironmentVariables.md#vaultconnector)
819
-
820
- ***
821
-
822
- ### hashicorpVaultToken?
823
-
824
- > `optional` **hashicorpVaultToken**: `string`
825
-
826
- Hashicorp Vault token.
827
-
828
- #### Inherited from
829
-
830
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`hashicorpVaultToken`](IEngineEnvironmentVariables.md#hashicorpvaulttoken)
831
-
832
- ***
833
-
834
- ### hashicorpVaultEndpoint?
835
-
836
- > `optional` **hashicorpVaultEndpoint**: `string`
837
-
838
- Hashicorp Vault endpoint.
839
-
840
- #### Inherited from
841
-
842
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`hashicorpVaultEndpoint`](IEngineEnvironmentVariables.md#hashicorpvaultendpoint)
843
-
844
- ***
845
-
846
- ### loggingConnector?
847
-
848
- > `optional` **loggingConnector**: `string`
849
-
850
- The type of logging task connector, can be a comma separated list: console, entity-storage.
851
-
852
- #### Inherited from
853
-
854
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`loggingConnector`](IEngineEnvironmentVariables.md#loggingconnector)
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)
1239
-
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
- ### federatedCatalogueFilters?
1451
-
1452
- > `optional` **federatedCatalogueFilters**: `string`
1453
-
1454
- Federated catalog filters, command separated list of filters to add.
1455
-
1456
- #### Inherited from
1457
-
1458
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueFilters`](IEngineEnvironmentVariables.md#federatedcataloguefilters)
1459
-
1460
- ***
1461
-
1462
- ### trustEnabled?
1463
-
1464
- > `optional` **trustEnabled**: `string`
1465
-
1466
- Is the trust management enabled, defaults to false.
1467
-
1468
- #### Inherited from
1469
-
1470
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustEnabled`](IEngineEnvironmentVariables.md#trustenabled)
1471
-
1472
- ***
1473
-
1474
- ### trustGenerators?
1475
-
1476
- > `optional` **trustGenerators**: `string`
1477
-
1478
- The trust generators to add to the factory, comma separated list.
1479
-
1480
- #### Inherited from
1481
-
1482
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustGenerators`](IEngineEnvironmentVariables.md#trustgenerators)
1483
-
1484
- ***
1485
-
1486
- ### trustVerifiers?
1487
-
1488
- > `optional` **trustVerifiers**: `string`
1489
-
1490
- The trust verifiers to add to the factory, comma separated list.
1491
-
1492
- #### Inherited from
1493
-
1494
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustVerifiers`](IEngineEnvironmentVariables.md#trustverifiers)
1495
-
1496
- ***
1497
-
1498
- ### trustVerificationMethodId?
1499
-
1500
- > `optional` **trustVerificationMethodId**: `string`
1501
-
1502
- The verification method to use for trust identities.
1503
- Defaults to node-authentication-assertion.
1504
-
1505
- #### Inherited from
1506
-
1507
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`trustVerificationMethodId`](IEngineEnvironmentVariables.md#trustverificationmethodid)
1508
-
1509
- ***
1510
-
1511
- ### rightsManagementEnabled?
1512
-
1513
- > `optional` **rightsManagementEnabled**: `string`
1514
-
1515
- Is the rights management enabled, defaults to false.
1516
-
1517
- #### Inherited from
1518
-
1519
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementEnabled`](IEngineEnvironmentVariables.md#rightsmanagementenabled)
1520
-
1521
- ***
1522
-
1523
- ### rightsManagementBaseCallbackUrl?
1524
-
1525
- > `optional` **rightsManagementBaseCallbackUrl**: `string`
1526
-
1527
- What is the base callback url for rights management negotiations e.g. https://my-node/rights-management.
1528
-
1529
- #### Inherited from
1530
-
1531
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementBaseCallbackUrl`](IEngineEnvironmentVariables.md#rightsmanagementbasecallbackurl)
1532
-
1533
- ***
1534
-
1535
- ### rightsManagementPolicyInformationSources?
1536
-
1537
- > `optional` **rightsManagementPolicyInformationSources**: `string`
1538
-
1539
- The rights management policy information sources to add to the factory.
1540
-
1541
- #### Inherited from
1542
-
1543
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyInformationSources`](IEngineEnvironmentVariables.md#rightsmanagementpolicyinformationsources)
1544
-
1545
- ***
1546
-
1547
- ### rightsManagementPolicyNegotiators?
1548
-
1549
- > `optional` **rightsManagementPolicyNegotiators**: `string`
1550
-
1551
- The rights management policy negotiators sources to add to the factory.
1552
-
1553
- #### Inherited from
1554
-
1555
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyNegotiators`](IEngineEnvironmentVariables.md#rightsmanagementpolicynegotiators)
1556
-
1557
- ***
1558
-
1559
- ### rightsManagementPolicyRequesters?
1560
-
1561
- > `optional` **rightsManagementPolicyRequesters**: `string`
1562
-
1563
- The rights management policy requesters to add to the factory.
1564
-
1565
- #### Inherited from
1566
-
1567
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyRequesters`](IEngineEnvironmentVariables.md#rightsmanagementpolicyrequesters)
1568
-
1569
- ***
1570
-
1571
- ### rightsManagementPolicyExecutionActions?
1572
-
1573
- > `optional` **rightsManagementPolicyExecutionActions**: `string`
1574
-
1575
- The rights management policy execution actions to add to the factory.
1576
-
1577
- #### Inherited from
1578
-
1579
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyExecutionActions`](IEngineEnvironmentVariables.md#rightsmanagementpolicyexecutionactions)
1580
-
1581
- ***
1582
-
1583
- ### rightsManagementPolicyEnforcementProcessors?
1584
-
1585
- > `optional` **rightsManagementPolicyEnforcementProcessors**: `string`
1586
-
1587
- The rights management policy enforcement processors to add to the factory.
1588
-
1589
- #### Inherited from
1590
-
1591
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyEnforcementProcessors`](IEngineEnvironmentVariables.md#rightsmanagementpolicyenforcementprocessors)
1592
-
1593
- ***
1594
-
1595
- ### rightsManagementPolicyArbiters?
1596
-
1597
- > `optional` **rightsManagementPolicyArbiters**: `string`
1598
-
1599
- The rights management policy arbiters to add to the factory.
1600
-
1601
- #### Inherited from
1602
-
1603
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementPolicyArbiters`](IEngineEnvironmentVariables.md#rightsmanagementpolicyarbiters)
1604
-
1605
- ***
1606
-
1607
- ### rightsManagementDataAccessHandlers?
1608
-
1609
- > `optional` **rightsManagementDataAccessHandlers**: `string`
1610
-
1611
- The rights management data access handlers to add to the factory.
1612
-
1613
- #### Inherited from
1614
-
1615
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementDataAccessHandlers`](IEngineEnvironmentVariables.md#rightsmanagementdataaccesshandlers)
1616
-
1617
- ***
1618
-
1619
- ### backgroundTasksEnabled?
1620
-
1621
- > `optional` **backgroundTasksEnabled**: `string`
1622
-
1623
- Are background tasks enabled, defaults to false.
1624
-
1625
- #### Inherited from
1626
-
1627
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`backgroundTasksEnabled`](IEngineEnvironmentVariables.md#backgroundtasksenabled)
1628
-
1629
- ***
1630
-
1631
- ### taskSchedulerEnabled?
1632
-
1633
- > `optional` **taskSchedulerEnabled**: `string`
1634
-
1635
- Is the task scheduler enabled, defaults to false.
1636
-
1637
- #### Inherited from
1638
-
1639
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`taskSchedulerEnabled`](IEngineEnvironmentVariables.md#taskschedulerenabled)
1640
-
1641
- ***
1642
-
1643
- ### dataSpaceConnectorEnabled?
1644
-
1645
- > `optional` **dataSpaceConnectorEnabled**: `string`
1646
-
1647
- Is the data space connector enabled, defaults to false.
1648
-
1649
- #### Inherited from
1650
-
1651
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataSpaceConnectorEnabled`](IEngineEnvironmentVariables.md#dataspaceconnectorenabled)
1652
-
1653
- ***
1654
-
1655
- ### dataSpaceConnectorRetainActivityLogsFor?
1656
-
1657
- > `optional` **dataSpaceConnectorRetainActivityLogsFor**: `string`
1658
-
1659
- The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
1660
-
1661
- #### Default
1662
-
1663
- ```ts
1664
- 10
1665
- ```
1666
-
1667
- #### Inherited from
1668
-
1669
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataSpaceConnectorRetainActivityLogsFor`](IEngineEnvironmentVariables.md#dataspaceconnectorretainactivitylogsfor)
1670
-
1671
- ***
1672
-
1673
- ### dataSpaceConnectorActivityLogsCleanUpInterval?
1674
-
1675
- > `optional` **dataSpaceConnectorActivityLogsCleanUpInterval**: `string`
1676
-
1677
- The interval for cleaning up the activity logs.
1678
-
1679
- #### Default
1680
-
1681
- ```ts
1682
- 60
1683
- ```
1684
-
1685
- #### Inherited from
1686
-
1687
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataSpaceConnectorActivityLogsCleanUpInterval`](IEngineEnvironmentVariables.md#dataspaceconnectoractivitylogscleanupinterval)
1688
-
1689
- ***
1690
-
1691
- ### vcAuthenticationEnabled?
1692
-
1693
- > `optional` **vcAuthenticationEnabled**: `string`
1694
-
1695
- Enable verifiable credential authentication for the API.
1696
-
1697
- #### Inherited from
1698
-
1699
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`vcAuthenticationEnabled`](IEngineEnvironmentVariables.md#vcauthenticationenabled)
1700
-
1701
- ***
1702
-
1703
- ### vcAuthenticationVerificationMethodId?
1704
-
1705
- > `optional` **vcAuthenticationVerificationMethodId**: `string`
1706
-
1707
- Verifiable credential assertion for node to node communication.
1708
- Defaults to node-authentication-assertion.
1709
-
1710
- #### Inherited from
1711
-
1712
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`vcAuthenticationVerificationMethodId`](IEngineEnvironmentVariables.md#vcauthenticationverificationmethodid)
1713
-
1714
- ***
1715
-
1716
- ### extensions?
1717
-
1718
- > `optional` **extensions**: `string`
1719
-
1720
- A comma separated list of additional node extensions to load, the initialiseExtension method will be called for each extension.
1721
-
1722
- #### Inherited from
1723
-
1724
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`extensions`](IEngineEnvironmentVariables.md#extensions)
1725
-
1726
- ***
1727
-
1728
- ### port?
1729
-
1730
- > `optional` **port**: `string`
1731
-
1732
- The port to serve the API from.
1733
-
1734
- ***
1735
-
1736
- ### host?
1737
-
1738
- > `optional` **host**: `string`
1739
-
1740
- The host to serve the API from.
1741
-
1742
- ***
1743
-
1744
- ### corsOrigins?
1745
-
1746
- > `optional` **corsOrigins**: `string`
1747
-
1748
- The CORS origins to allow, defaults to *.
1749
-
1750
- ***
1751
-
1752
- ### httpMethods?
1753
-
1754
- > `optional` **httpMethods**: `string`
1755
-
1756
- The CORS methods to allow, defaults to GET, POST, PUT, DELETE, OPTIONS.
1757
-
1758
- ***
1759
-
1760
- ### httpAllowedHeaders?
1761
-
1762
- > `optional` **httpAllowedHeaders**: `string`
1763
-
1764
- The CORS headers to allow.
1765
-
1766
- ***
1767
-
1768
- ### httpExposedHeaders?
1769
-
1770
- > `optional` **httpExposedHeaders**: `string`
1771
-
1772
- The CORS headers to expose.
1773
-
1774
- ***
1775
-
1776
- ### authAdminProcessorType?
1777
-
1778
- > `optional` **authAdminProcessorType**: `string`
1779
-
1780
- The type of auth admin processor to use on the API: entity-storage.
1781
-
1782
- ***
1783
-
1784
- ### authProcessorType?
1785
-
1786
- > `optional` **authProcessorType**: `string`
1787
-
1788
- The type of auth processor to use on the API: entity-storage.
1789
-
1790
- ***
1791
-
1792
- ### authSigningKeyId?
1793
-
1794
- > `optional` **authSigningKeyId**: `string`
1795
-
1796
- The id of the key in the vault to use for signing in auth operations.
91
+ The HTTP header name used to pass the API key on requests, defaults to x-api-key.
1797
92
 
1798
93
  ***
1799
94
 
1800
- ### mimeTypeProcessors?
95
+ ### mimeTypeProcessors? {#mimetypeprocessors}
1801
96
 
1802
- > `optional` **mimeTypeProcessors**: `string`
97
+ > `optional` **mimeTypeProcessors?**: `string`
1803
98
 
1804
99
  Additional MIME type processors to include, comma separated.
1805
100
 
1806
101
  ***
1807
102
 
1808
- ### routeLoggingIncludeBody?
103
+ ### routeLoggingIncludeBody? {#routeloggingincludebody}
1809
104
 
1810
- > `optional` **routeLoggingIncludeBody**: `string`
105
+ > `optional` **routeLoggingIncludeBody?**: `string`
1811
106
 
1812
107
  Include the body in the REST logging output, useful for debugging.
1813
108
 
1814
109
  ***
1815
110
 
1816
- ### routeLoggingFullBase64?
111
+ ### routeLoggingFullBase64? {#routeloggingfullbase64}
1817
112
 
1818
- > `optional` **routeLoggingFullBase64**: `string`
113
+ > `optional` **routeLoggingFullBase64?**: `string`
1819
114
 
1820
115
  Include the full base 64 output in the REST logging output, useful for debugging.
1821
116
 
1822
117
  ***
1823
118
 
1824
- ### routeLoggingObfuscateProperties?
119
+ ### routeLoggingObfuscateProperties? {#routeloggingobfuscateproperties}
1825
120
 
1826
- > `optional` **routeLoggingObfuscateProperties**: `string`
121
+ > `optional` **routeLoggingObfuscateProperties?**: `string`
1827
122
 
1828
123
  List of properties to obfuscate in the REST logging output, comma separated.