@twin.org/node-core 0.0.1-next.9 → 0.0.2-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +1141 -53
- package/dist/esm/index.mjs +1141 -57
- package/dist/types/bootstrap.d.ts +9 -10
- package/dist/types/builders/engineEnvBuilder.d.ts +8 -0
- package/dist/types/builders/engineServerEnvBuilder.d.ts +13 -0
- package/dist/types/index.d.ts +6 -3
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +389 -0
- package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +49 -0
- package/dist/types/models/{INodeVariables.d.ts → INodeEnvironmentVariables.d.ts} +3 -3
- package/dist/types/models/{IRunOptions.d.ts → INodeOptions.d.ts} +17 -1
- package/dist/types/node.d.ts +22 -3
- package/dist/types/server.d.ts +7 -14
- package/dist/types/utils.d.ts +8 -2
- package/docs/changelog.md +68 -0
- package/docs/reference/functions/bootstrap.md +2 -2
- package/docs/reference/functions/bootstrapAttestationMethod.md +2 -2
- package/docs/reference/functions/bootstrapAuth.md +2 -2
- package/docs/reference/functions/bootstrapBlobEncryption.md +2 -2
- package/docs/reference/functions/bootstrapImmutableProofMethod.md +2 -2
- package/docs/reference/functions/bootstrapNodeIdentity.md +2 -2
- package/docs/reference/functions/bootstrapNodeUser.md +2 -2
- package/docs/reference/functions/buildConfiguration.md +30 -0
- package/docs/reference/functions/buildEngineConfiguration.md +19 -0
- package/docs/reference/functions/buildEngineServerConfiguration.md +37 -0
- package/docs/reference/functions/getFeatures.md +1 -1
- package/docs/reference/functions/loadJsonFile.md +25 -0
- package/docs/reference/functions/run.md +3 -3
- package/docs/reference/functions/start.md +9 -39
- package/docs/reference/index.md +8 -3
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +775 -0
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +95 -0
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +1343 -0
- package/docs/reference/interfaces/{IRunOptions.md → INodeOptions.md} +38 -1
- package/locales/en.json +0 -1
- package/package.json +1 -1
- package/dist/types/models/INodeState.d.ts +0 -10
- package/docs/reference/interfaces/INodeState.md +0 -15
- package/docs/reference/interfaces/INodeVariables.md +0 -59
|
@@ -0,0 +1,1343 @@
|
|
|
1
|
+
# Interface: INodeEnvironmentVariables
|
|
2
|
+
|
|
3
|
+
The environment variables for the node.
|
|
4
|
+
|
|
5
|
+
## Extends
|
|
6
|
+
|
|
7
|
+
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md)
|
|
8
|
+
|
|
9
|
+
## Properties
|
|
10
|
+
|
|
11
|
+
### debug?
|
|
12
|
+
|
|
13
|
+
> `optional` **debug**: `string`
|
|
14
|
+
|
|
15
|
+
Start the engine in debug mode.
|
|
16
|
+
|
|
17
|
+
#### Inherited from
|
|
18
|
+
|
|
19
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`debug`](IEngineEnvironmentVariables.md#debug)
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### storageFileRoot?
|
|
24
|
+
|
|
25
|
+
> `optional` **storageFileRoot**: `string`
|
|
26
|
+
|
|
27
|
+
The root directory for storing items like state file.
|
|
28
|
+
|
|
29
|
+
#### Inherited from
|
|
30
|
+
|
|
31
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`storageFileRoot`](IEngineEnvironmentVariables.md#storagefileroot)
|
|
32
|
+
|
|
33
|
+
***
|
|
34
|
+
|
|
35
|
+
### stateFilename?
|
|
36
|
+
|
|
37
|
+
> `optional` **stateFilename**: `string`
|
|
38
|
+
|
|
39
|
+
The name of the state file.
|
|
40
|
+
|
|
41
|
+
#### Inherited from
|
|
42
|
+
|
|
43
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`stateFilename`](IEngineEnvironmentVariables.md#statefilename)
|
|
44
|
+
|
|
45
|
+
***
|
|
46
|
+
|
|
47
|
+
### entityStorageConnectorType?
|
|
48
|
+
|
|
49
|
+
> `optional` **entityStorageConnectorType**: `string`
|
|
50
|
+
|
|
51
|
+
The type of the default entity storage: file, memory, aws-dynamodb, azure-cosmosdb, gcp-firestoredb, scylladb, mysql, mongodb, postgresql.
|
|
52
|
+
|
|
53
|
+
#### Inherited from
|
|
54
|
+
|
|
55
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`entityStorageConnectorType`](IEngineEnvironmentVariables.md#entitystorageconnectortype)
|
|
56
|
+
|
|
57
|
+
***
|
|
58
|
+
|
|
59
|
+
### entityStorageTablePrefix?
|
|
60
|
+
|
|
61
|
+
> `optional` **entityStorageTablePrefix**: `string`
|
|
62
|
+
|
|
63
|
+
A prefix for all the table in entity-storage, can be empty.
|
|
64
|
+
|
|
65
|
+
#### Inherited from
|
|
66
|
+
|
|
67
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`entityStorageTablePrefix`](IEngineEnvironmentVariables.md#entitystoragetableprefix)
|
|
68
|
+
|
|
69
|
+
***
|
|
70
|
+
|
|
71
|
+
### entityFileEnable?
|
|
72
|
+
|
|
73
|
+
> `optional` **entityFileEnable**: `string`
|
|
74
|
+
|
|
75
|
+
Enable the file entity storage connector.
|
|
76
|
+
|
|
77
|
+
#### Inherited from
|
|
78
|
+
|
|
79
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`entityFileEnable`](IEngineEnvironmentVariables.md#entityfileenable)
|
|
80
|
+
|
|
81
|
+
***
|
|
82
|
+
|
|
83
|
+
### entityMemoryEnable?
|
|
84
|
+
|
|
85
|
+
> `optional` **entityMemoryEnable**: `string`
|
|
86
|
+
|
|
87
|
+
Enable the memory entity storage connector.
|
|
88
|
+
|
|
89
|
+
#### Inherited from
|
|
90
|
+
|
|
91
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`entityMemoryEnable`](IEngineEnvironmentVariables.md#entitymemoryenable)
|
|
92
|
+
|
|
93
|
+
***
|
|
94
|
+
|
|
95
|
+
### awsDynamodbAccessKeyId?
|
|
96
|
+
|
|
97
|
+
> `optional` **awsDynamodbAccessKeyId**: `string`
|
|
98
|
+
|
|
99
|
+
AWS Dynamo DB access key id.
|
|
100
|
+
|
|
101
|
+
#### Inherited from
|
|
102
|
+
|
|
103
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbAccessKeyId`](IEngineEnvironmentVariables.md#awsdynamodbaccesskeyid)
|
|
104
|
+
|
|
105
|
+
***
|
|
106
|
+
|
|
107
|
+
### awsDynamodbEndpoint?
|
|
108
|
+
|
|
109
|
+
> `optional` **awsDynamodbEndpoint**: `string`
|
|
110
|
+
|
|
111
|
+
AWS Dynamo DB Endpoint if running local instance.
|
|
112
|
+
|
|
113
|
+
#### Inherited from
|
|
114
|
+
|
|
115
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbEndpoint`](IEngineEnvironmentVariables.md#awsdynamodbendpoint)
|
|
116
|
+
|
|
117
|
+
***
|
|
118
|
+
|
|
119
|
+
### awsDynamodbRegion?
|
|
120
|
+
|
|
121
|
+
> `optional` **awsDynamodbRegion**: `string`
|
|
122
|
+
|
|
123
|
+
AWS Dynamo DB region.
|
|
124
|
+
|
|
125
|
+
#### Inherited from
|
|
126
|
+
|
|
127
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbRegion`](IEngineEnvironmentVariables.md#awsdynamodbregion)
|
|
128
|
+
|
|
129
|
+
***
|
|
130
|
+
|
|
131
|
+
### awsDynamodbSecretAccessKey?
|
|
132
|
+
|
|
133
|
+
> `optional` **awsDynamodbSecretAccessKey**: `string`
|
|
134
|
+
|
|
135
|
+
AWS Dynamo DB secret access key.
|
|
136
|
+
|
|
137
|
+
#### Inherited from
|
|
138
|
+
|
|
139
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsDynamodbSecretAccessKey`](IEngineEnvironmentVariables.md#awsdynamodbsecretaccesskey)
|
|
140
|
+
|
|
141
|
+
***
|
|
142
|
+
|
|
143
|
+
### azureCosmosdbKey?
|
|
144
|
+
|
|
145
|
+
> `optional` **azureCosmosdbKey**: `string`
|
|
146
|
+
|
|
147
|
+
Azure Cosmos DB key.
|
|
148
|
+
|
|
149
|
+
#### Inherited from
|
|
150
|
+
|
|
151
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbKey`](IEngineEnvironmentVariables.md#azurecosmosdbkey)
|
|
152
|
+
|
|
153
|
+
***
|
|
154
|
+
|
|
155
|
+
### azureCosmosdbContainerId?
|
|
156
|
+
|
|
157
|
+
> `optional` **azureCosmosdbContainerId**: `string`
|
|
158
|
+
|
|
159
|
+
Azure Cosmos DB container id.
|
|
160
|
+
|
|
161
|
+
#### Inherited from
|
|
162
|
+
|
|
163
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbContainerId`](IEngineEnvironmentVariables.md#azurecosmosdbcontainerid)
|
|
164
|
+
|
|
165
|
+
***
|
|
166
|
+
|
|
167
|
+
### azureCosmosdbDatabaseId?
|
|
168
|
+
|
|
169
|
+
> `optional` **azureCosmosdbDatabaseId**: `string`
|
|
170
|
+
|
|
171
|
+
Azure Cosmos DB database id.
|
|
172
|
+
|
|
173
|
+
#### Inherited from
|
|
174
|
+
|
|
175
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbDatabaseId`](IEngineEnvironmentVariables.md#azurecosmosdbdatabaseid)
|
|
176
|
+
|
|
177
|
+
***
|
|
178
|
+
|
|
179
|
+
### azureCosmosdbEndpoint?
|
|
180
|
+
|
|
181
|
+
> `optional` **azureCosmosdbEndpoint**: `string`
|
|
182
|
+
|
|
183
|
+
Azure Cosmos DB endpoint.
|
|
184
|
+
|
|
185
|
+
#### Inherited from
|
|
186
|
+
|
|
187
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureCosmosdbEndpoint`](IEngineEnvironmentVariables.md#azurecosmosdbendpoint)
|
|
188
|
+
|
|
189
|
+
***
|
|
190
|
+
|
|
191
|
+
### gcpFirestoreCollectionName?
|
|
192
|
+
|
|
193
|
+
> `optional` **gcpFirestoreCollectionName**: `string`
|
|
194
|
+
|
|
195
|
+
GCP Firestore collection name.
|
|
196
|
+
|
|
197
|
+
#### Inherited from
|
|
198
|
+
|
|
199
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreCollectionName`](IEngineEnvironmentVariables.md#gcpfirestorecollectionname)
|
|
200
|
+
|
|
201
|
+
***
|
|
202
|
+
|
|
203
|
+
### gcpFirestoreCredentials?
|
|
204
|
+
|
|
205
|
+
> `optional` **gcpFirestoreCredentials**: `string`
|
|
206
|
+
|
|
207
|
+
GCP Firestore credentials.
|
|
208
|
+
|
|
209
|
+
#### Inherited from
|
|
210
|
+
|
|
211
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreCredentials`](IEngineEnvironmentVariables.md#gcpfirestorecredentials)
|
|
212
|
+
|
|
213
|
+
***
|
|
214
|
+
|
|
215
|
+
### gcpFirestoreDatabaseId?
|
|
216
|
+
|
|
217
|
+
> `optional` **gcpFirestoreDatabaseId**: `string`
|
|
218
|
+
|
|
219
|
+
GCP Firestore database id.
|
|
220
|
+
|
|
221
|
+
#### Inherited from
|
|
222
|
+
|
|
223
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreDatabaseId`](IEngineEnvironmentVariables.md#gcpfirestoredatabaseid)
|
|
224
|
+
|
|
225
|
+
***
|
|
226
|
+
|
|
227
|
+
### gcpFirestoreApiEndpoint?
|
|
228
|
+
|
|
229
|
+
> `optional` **gcpFirestoreApiEndpoint**: `string`
|
|
230
|
+
|
|
231
|
+
GCP Firestore endpoint.
|
|
232
|
+
|
|
233
|
+
#### Inherited from
|
|
234
|
+
|
|
235
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreApiEndpoint`](IEngineEnvironmentVariables.md#gcpfirestoreapiendpoint)
|
|
236
|
+
|
|
237
|
+
***
|
|
238
|
+
|
|
239
|
+
### gcpFirestoreProjectId?
|
|
240
|
+
|
|
241
|
+
> `optional` **gcpFirestoreProjectId**: `string`
|
|
242
|
+
|
|
243
|
+
GCP Firestore project id.
|
|
244
|
+
|
|
245
|
+
#### Inherited from
|
|
246
|
+
|
|
247
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpFirestoreProjectId`](IEngineEnvironmentVariables.md#gcpfirestoreprojectid)
|
|
248
|
+
|
|
249
|
+
***
|
|
250
|
+
|
|
251
|
+
### scylladbHosts?
|
|
252
|
+
|
|
253
|
+
> `optional` **scylladbHosts**: `string`
|
|
254
|
+
|
|
255
|
+
ScyllaDB hosts as comma separated string.
|
|
256
|
+
|
|
257
|
+
#### Inherited from
|
|
258
|
+
|
|
259
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`scylladbHosts`](IEngineEnvironmentVariables.md#scylladbhosts)
|
|
260
|
+
|
|
261
|
+
***
|
|
262
|
+
|
|
263
|
+
### scylladbKeyspace?
|
|
264
|
+
|
|
265
|
+
> `optional` **scylladbKeyspace**: `string`
|
|
266
|
+
|
|
267
|
+
ScyllaDB keyspace.
|
|
268
|
+
|
|
269
|
+
#### Inherited from
|
|
270
|
+
|
|
271
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`scylladbKeyspace`](IEngineEnvironmentVariables.md#scylladbkeyspace)
|
|
272
|
+
|
|
273
|
+
***
|
|
274
|
+
|
|
275
|
+
### scylladbLocalDataCenter?
|
|
276
|
+
|
|
277
|
+
> `optional` **scylladbLocalDataCenter**: `string`
|
|
278
|
+
|
|
279
|
+
ScyllaDB local data center.
|
|
280
|
+
|
|
281
|
+
#### Inherited from
|
|
282
|
+
|
|
283
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`scylladbLocalDataCenter`](IEngineEnvironmentVariables.md#scylladblocaldatacenter)
|
|
284
|
+
|
|
285
|
+
***
|
|
286
|
+
|
|
287
|
+
### mySqlHost?
|
|
288
|
+
|
|
289
|
+
> `optional` **mySqlHost**: `string`
|
|
290
|
+
|
|
291
|
+
MySQL host.
|
|
292
|
+
|
|
293
|
+
#### Inherited from
|
|
294
|
+
|
|
295
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlHost`](IEngineEnvironmentVariables.md#mysqlhost)
|
|
296
|
+
|
|
297
|
+
***
|
|
298
|
+
|
|
299
|
+
### mySqlPort?
|
|
300
|
+
|
|
301
|
+
> `optional` **mySqlPort**: `number`
|
|
302
|
+
|
|
303
|
+
MySQL port.
|
|
304
|
+
|
|
305
|
+
#### Inherited from
|
|
306
|
+
|
|
307
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlPort`](IEngineEnvironmentVariables.md#mysqlport)
|
|
308
|
+
|
|
309
|
+
***
|
|
310
|
+
|
|
311
|
+
### mySqlUser?
|
|
312
|
+
|
|
313
|
+
> `optional` **mySqlUser**: `string`
|
|
314
|
+
|
|
315
|
+
MySQL username.
|
|
316
|
+
|
|
317
|
+
#### Inherited from
|
|
318
|
+
|
|
319
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlUser`](IEngineEnvironmentVariables.md#mysqluser)
|
|
320
|
+
|
|
321
|
+
***
|
|
322
|
+
|
|
323
|
+
### mySqlPassword?
|
|
324
|
+
|
|
325
|
+
> `optional` **mySqlPassword**: `string`
|
|
326
|
+
|
|
327
|
+
MySQL password.
|
|
328
|
+
|
|
329
|
+
#### Inherited from
|
|
330
|
+
|
|
331
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlPassword`](IEngineEnvironmentVariables.md#mysqlpassword)
|
|
332
|
+
|
|
333
|
+
***
|
|
334
|
+
|
|
335
|
+
### mySqlDatabase?
|
|
336
|
+
|
|
337
|
+
> `optional` **mySqlDatabase**: `string`
|
|
338
|
+
|
|
339
|
+
MySQL Database.
|
|
340
|
+
|
|
341
|
+
#### Inherited from
|
|
342
|
+
|
|
343
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mySqlDatabase`](IEngineEnvironmentVariables.md#mysqldatabase)
|
|
344
|
+
|
|
345
|
+
***
|
|
346
|
+
|
|
347
|
+
### mongoDbHost?
|
|
348
|
+
|
|
349
|
+
> `optional` **mongoDbHost**: `string`
|
|
350
|
+
|
|
351
|
+
MongoDB host.
|
|
352
|
+
|
|
353
|
+
#### Inherited from
|
|
354
|
+
|
|
355
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbHost`](IEngineEnvironmentVariables.md#mongodbhost)
|
|
356
|
+
|
|
357
|
+
***
|
|
358
|
+
|
|
359
|
+
### mongoDbPort?
|
|
360
|
+
|
|
361
|
+
> `optional` **mongoDbPort**: `number`
|
|
362
|
+
|
|
363
|
+
MongoDB port.
|
|
364
|
+
|
|
365
|
+
#### Inherited from
|
|
366
|
+
|
|
367
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbPort`](IEngineEnvironmentVariables.md#mongodbport)
|
|
368
|
+
|
|
369
|
+
***
|
|
370
|
+
|
|
371
|
+
### mongoDbUser?
|
|
372
|
+
|
|
373
|
+
> `optional` **mongoDbUser**: `string`
|
|
374
|
+
|
|
375
|
+
MongoDB username.
|
|
376
|
+
|
|
377
|
+
#### Inherited from
|
|
378
|
+
|
|
379
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbUser`](IEngineEnvironmentVariables.md#mongodbuser)
|
|
380
|
+
|
|
381
|
+
***
|
|
382
|
+
|
|
383
|
+
### mongoDbPassword?
|
|
384
|
+
|
|
385
|
+
> `optional` **mongoDbPassword**: `string`
|
|
386
|
+
|
|
387
|
+
MongoDB password.
|
|
388
|
+
|
|
389
|
+
#### Inherited from
|
|
390
|
+
|
|
391
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbPassword`](IEngineEnvironmentVariables.md#mongodbpassword)
|
|
392
|
+
|
|
393
|
+
***
|
|
394
|
+
|
|
395
|
+
### mongoDbDatabase?
|
|
396
|
+
|
|
397
|
+
> `optional` **mongoDbDatabase**: `string`
|
|
398
|
+
|
|
399
|
+
MongoDB Database.
|
|
400
|
+
|
|
401
|
+
#### Inherited from
|
|
402
|
+
|
|
403
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`mongoDbDatabase`](IEngineEnvironmentVariables.md#mongodbdatabase)
|
|
404
|
+
|
|
405
|
+
***
|
|
406
|
+
|
|
407
|
+
### postgreSqlHost?
|
|
408
|
+
|
|
409
|
+
> `optional` **postgreSqlHost**: `string`
|
|
410
|
+
|
|
411
|
+
PostgreSQl host.
|
|
412
|
+
|
|
413
|
+
#### Inherited from
|
|
414
|
+
|
|
415
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlHost`](IEngineEnvironmentVariables.md#postgresqlhost)
|
|
416
|
+
|
|
417
|
+
***
|
|
418
|
+
|
|
419
|
+
### postgreSqlPort?
|
|
420
|
+
|
|
421
|
+
> `optional` **postgreSqlPort**: `number`
|
|
422
|
+
|
|
423
|
+
PostgreSQl port.
|
|
424
|
+
|
|
425
|
+
#### Inherited from
|
|
426
|
+
|
|
427
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlPort`](IEngineEnvironmentVariables.md#postgresqlport)
|
|
428
|
+
|
|
429
|
+
***
|
|
430
|
+
|
|
431
|
+
### postgreSqlUser?
|
|
432
|
+
|
|
433
|
+
> `optional` **postgreSqlUser**: `string`
|
|
434
|
+
|
|
435
|
+
PostgreSQl username.
|
|
436
|
+
|
|
437
|
+
#### Inherited from
|
|
438
|
+
|
|
439
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlUser`](IEngineEnvironmentVariables.md#postgresqluser)
|
|
440
|
+
|
|
441
|
+
***
|
|
442
|
+
|
|
443
|
+
### postgreSqlPassword?
|
|
444
|
+
|
|
445
|
+
> `optional` **postgreSqlPassword**: `string`
|
|
446
|
+
|
|
447
|
+
PostgreSQl password.
|
|
448
|
+
|
|
449
|
+
#### Inherited from
|
|
450
|
+
|
|
451
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlPassword`](IEngineEnvironmentVariables.md#postgresqlpassword)
|
|
452
|
+
|
|
453
|
+
***
|
|
454
|
+
|
|
455
|
+
### postgreSqlDatabase?
|
|
456
|
+
|
|
457
|
+
> `optional` **postgreSqlDatabase**: `string`
|
|
458
|
+
|
|
459
|
+
PostgreSQl Database.
|
|
460
|
+
|
|
461
|
+
#### Inherited from
|
|
462
|
+
|
|
463
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`postgreSqlDatabase`](IEngineEnvironmentVariables.md#postgresqldatabase)
|
|
464
|
+
|
|
465
|
+
***
|
|
466
|
+
|
|
467
|
+
### ipfsBearerToken?
|
|
468
|
+
|
|
469
|
+
> `optional` **ipfsBearerToken**: `string`
|
|
470
|
+
|
|
471
|
+
The security token for accessing IPFS API.
|
|
472
|
+
|
|
473
|
+
#### Inherited from
|
|
474
|
+
|
|
475
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`ipfsBearerToken`](IEngineEnvironmentVariables.md#ipfsbearertoken)
|
|
476
|
+
|
|
477
|
+
***
|
|
478
|
+
|
|
479
|
+
### ipfsApiUrl?
|
|
480
|
+
|
|
481
|
+
> `optional` **ipfsApiUrl**: `string`
|
|
482
|
+
|
|
483
|
+
The url for accessing IPFS API.
|
|
484
|
+
|
|
485
|
+
#### Inherited from
|
|
486
|
+
|
|
487
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`ipfsApiUrl`](IEngineEnvironmentVariables.md#ipfsapiurl)
|
|
488
|
+
|
|
489
|
+
***
|
|
490
|
+
|
|
491
|
+
### blobStorageConnectorType?
|
|
492
|
+
|
|
493
|
+
> `optional` **blobStorageConnectorType**: `string`
|
|
494
|
+
|
|
495
|
+
The type of the default blob storage: memory, file, ipfs, aws-s3, azure-storage, gcp-storage.
|
|
496
|
+
|
|
497
|
+
#### Inherited from
|
|
498
|
+
|
|
499
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageConnectorType`](IEngineEnvironmentVariables.md#blobstorageconnectortype)
|
|
500
|
+
|
|
501
|
+
***
|
|
502
|
+
|
|
503
|
+
### blobStorageEnableEncryption?
|
|
504
|
+
|
|
505
|
+
> `optional` **blobStorageEnableEncryption**: `string`
|
|
506
|
+
|
|
507
|
+
Enable encryption for the blob storage.
|
|
508
|
+
|
|
509
|
+
#### Inherited from
|
|
510
|
+
|
|
511
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageEnableEncryption`](IEngineEnvironmentVariables.md#blobstorageenableencryption)
|
|
512
|
+
|
|
513
|
+
***
|
|
514
|
+
|
|
515
|
+
### blobStorageEncryptionKey?
|
|
516
|
+
|
|
517
|
+
> `optional` **blobStorageEncryptionKey**: `string`
|
|
518
|
+
|
|
519
|
+
The encryption key for the blob storage.
|
|
520
|
+
|
|
521
|
+
#### Inherited from
|
|
522
|
+
|
|
523
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageEncryptionKey`](IEngineEnvironmentVariables.md#blobstorageencryptionkey)
|
|
524
|
+
|
|
525
|
+
***
|
|
526
|
+
|
|
527
|
+
### blobStoragePrefix?
|
|
528
|
+
|
|
529
|
+
> `optional` **blobStoragePrefix**: `string`
|
|
530
|
+
|
|
531
|
+
A prefix for all the blobs in blob-storage, can be empty.
|
|
532
|
+
|
|
533
|
+
#### Inherited from
|
|
534
|
+
|
|
535
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStoragePrefix`](IEngineEnvironmentVariables.md#blobstorageprefix)
|
|
536
|
+
|
|
537
|
+
***
|
|
538
|
+
|
|
539
|
+
### blobFileEnable?
|
|
540
|
+
|
|
541
|
+
> `optional` **blobFileEnable**: `string`
|
|
542
|
+
|
|
543
|
+
Enable the file blob storage connector.
|
|
544
|
+
|
|
545
|
+
#### Inherited from
|
|
546
|
+
|
|
547
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobFileEnable`](IEngineEnvironmentVariables.md#blobfileenable)
|
|
548
|
+
|
|
549
|
+
***
|
|
550
|
+
|
|
551
|
+
### blobMemoryEnable?
|
|
552
|
+
|
|
553
|
+
> `optional` **blobMemoryEnable**: `string`
|
|
554
|
+
|
|
555
|
+
Enable the memory blob storage connector.
|
|
556
|
+
|
|
557
|
+
#### Inherited from
|
|
558
|
+
|
|
559
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobMemoryEnable`](IEngineEnvironmentVariables.md#blobmemoryenable)
|
|
560
|
+
|
|
561
|
+
***
|
|
562
|
+
|
|
563
|
+
### awsS3AccessKeyId?
|
|
564
|
+
|
|
565
|
+
> `optional` **awsS3AccessKeyId**: `string`
|
|
566
|
+
|
|
567
|
+
AWS S3 access key id.
|
|
568
|
+
|
|
569
|
+
#### Inherited from
|
|
570
|
+
|
|
571
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3AccessKeyId`](IEngineEnvironmentVariables.md#awss3accesskeyid)
|
|
572
|
+
|
|
573
|
+
***
|
|
574
|
+
|
|
575
|
+
### awsS3BucketName?
|
|
576
|
+
|
|
577
|
+
> `optional` **awsS3BucketName**: `string`
|
|
578
|
+
|
|
579
|
+
AWS S3 bucket name.
|
|
580
|
+
|
|
581
|
+
#### Inherited from
|
|
582
|
+
|
|
583
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3BucketName`](IEngineEnvironmentVariables.md#awss3bucketname)
|
|
584
|
+
|
|
585
|
+
***
|
|
586
|
+
|
|
587
|
+
### awsS3Endpoint?
|
|
588
|
+
|
|
589
|
+
> `optional` **awsS3Endpoint**: `string`
|
|
590
|
+
|
|
591
|
+
AWS S3 endpoint.
|
|
592
|
+
|
|
593
|
+
#### Inherited from
|
|
594
|
+
|
|
595
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3Endpoint`](IEngineEnvironmentVariables.md#awss3endpoint)
|
|
596
|
+
|
|
597
|
+
***
|
|
598
|
+
|
|
599
|
+
### awsS3Region?
|
|
600
|
+
|
|
601
|
+
> `optional` **awsS3Region**: `string`
|
|
602
|
+
|
|
603
|
+
AWS S3 region.
|
|
604
|
+
|
|
605
|
+
#### Inherited from
|
|
606
|
+
|
|
607
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3Region`](IEngineEnvironmentVariables.md#awss3region)
|
|
608
|
+
|
|
609
|
+
***
|
|
610
|
+
|
|
611
|
+
### awsS3SecretAccessKey?
|
|
612
|
+
|
|
613
|
+
> `optional` **awsS3SecretAccessKey**: `string`
|
|
614
|
+
|
|
615
|
+
AWS S3 secret access key.
|
|
616
|
+
|
|
617
|
+
#### Inherited from
|
|
618
|
+
|
|
619
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsS3SecretAccessKey`](IEngineEnvironmentVariables.md#awss3secretaccesskey)
|
|
620
|
+
|
|
621
|
+
***
|
|
622
|
+
|
|
623
|
+
### azureStorageAccountKey?
|
|
624
|
+
|
|
625
|
+
> `optional` **azureStorageAccountKey**: `string`
|
|
626
|
+
|
|
627
|
+
Azure Storage account key.
|
|
628
|
+
|
|
629
|
+
#### Inherited from
|
|
630
|
+
|
|
631
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageAccountKey`](IEngineEnvironmentVariables.md#azurestorageaccountkey)
|
|
632
|
+
|
|
633
|
+
***
|
|
634
|
+
|
|
635
|
+
### azureStorageAccountName?
|
|
636
|
+
|
|
637
|
+
> `optional` **azureStorageAccountName**: `string`
|
|
638
|
+
|
|
639
|
+
Azure Storage account name.
|
|
640
|
+
|
|
641
|
+
#### Inherited from
|
|
642
|
+
|
|
643
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageAccountName`](IEngineEnvironmentVariables.md#azurestorageaccountname)
|
|
644
|
+
|
|
645
|
+
***
|
|
646
|
+
|
|
647
|
+
### azureStorageContainerName?
|
|
648
|
+
|
|
649
|
+
> `optional` **azureStorageContainerName**: `string`
|
|
650
|
+
|
|
651
|
+
Azure Storage container.
|
|
652
|
+
|
|
653
|
+
#### Inherited from
|
|
654
|
+
|
|
655
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageContainerName`](IEngineEnvironmentVariables.md#azurestoragecontainername)
|
|
656
|
+
|
|
657
|
+
***
|
|
658
|
+
|
|
659
|
+
### azureStorageEndpoint?
|
|
660
|
+
|
|
661
|
+
> `optional` **azureStorageEndpoint**: `string`
|
|
662
|
+
|
|
663
|
+
Azure Storage endpoint.
|
|
664
|
+
|
|
665
|
+
#### Inherited from
|
|
666
|
+
|
|
667
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`azureStorageEndpoint`](IEngineEnvironmentVariables.md#azurestorageendpoint)
|
|
668
|
+
|
|
669
|
+
***
|
|
670
|
+
|
|
671
|
+
### gcpStorageBucketName?
|
|
672
|
+
|
|
673
|
+
> `optional` **gcpStorageBucketName**: `string`
|
|
674
|
+
|
|
675
|
+
GCP Storage bucket.
|
|
676
|
+
|
|
677
|
+
#### Inherited from
|
|
678
|
+
|
|
679
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageBucketName`](IEngineEnvironmentVariables.md#gcpstoragebucketname)
|
|
680
|
+
|
|
681
|
+
***
|
|
682
|
+
|
|
683
|
+
### gcpStorageCredentials?
|
|
684
|
+
|
|
685
|
+
> `optional` **gcpStorageCredentials**: `string`
|
|
686
|
+
|
|
687
|
+
GCP Storage credentials.
|
|
688
|
+
|
|
689
|
+
#### Inherited from
|
|
690
|
+
|
|
691
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageCredentials`](IEngineEnvironmentVariables.md#gcpstoragecredentials)
|
|
692
|
+
|
|
693
|
+
***
|
|
694
|
+
|
|
695
|
+
### gcpStorageEndpoint?
|
|
696
|
+
|
|
697
|
+
> `optional` **gcpStorageEndpoint**: `string`
|
|
698
|
+
|
|
699
|
+
GCP Storage endpoint.
|
|
700
|
+
|
|
701
|
+
#### Inherited from
|
|
702
|
+
|
|
703
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageEndpoint`](IEngineEnvironmentVariables.md#gcpstorageendpoint)
|
|
704
|
+
|
|
705
|
+
***
|
|
706
|
+
|
|
707
|
+
### gcpStorageProjectId?
|
|
708
|
+
|
|
709
|
+
> `optional` **gcpStorageProjectId**: `string`
|
|
710
|
+
|
|
711
|
+
GCP Storage project id.
|
|
712
|
+
|
|
713
|
+
#### Inherited from
|
|
714
|
+
|
|
715
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`gcpStorageProjectId`](IEngineEnvironmentVariables.md#gcpstorageprojectid)
|
|
716
|
+
|
|
717
|
+
***
|
|
718
|
+
|
|
719
|
+
### vaultConnector?
|
|
720
|
+
|
|
721
|
+
> `optional` **vaultConnector**: `string`
|
|
722
|
+
|
|
723
|
+
The type of the default vault connector: entity-storage, hashicorp.
|
|
724
|
+
|
|
725
|
+
#### Inherited from
|
|
726
|
+
|
|
727
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`vaultConnector`](IEngineEnvironmentVariables.md#vaultconnector)
|
|
728
|
+
|
|
729
|
+
***
|
|
730
|
+
|
|
731
|
+
### hashicorpVaultToken?
|
|
732
|
+
|
|
733
|
+
> `optional` **hashicorpVaultToken**: `string`
|
|
734
|
+
|
|
735
|
+
Hashicorp Vault token.
|
|
736
|
+
|
|
737
|
+
#### Inherited from
|
|
738
|
+
|
|
739
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`hashicorpVaultToken`](IEngineEnvironmentVariables.md#hashicorpvaulttoken)
|
|
740
|
+
|
|
741
|
+
***
|
|
742
|
+
|
|
743
|
+
### hashicorpVaultEndpoint?
|
|
744
|
+
|
|
745
|
+
> `optional` **hashicorpVaultEndpoint**: `string`
|
|
746
|
+
|
|
747
|
+
Hashicorp Vault endpoint.
|
|
748
|
+
|
|
749
|
+
#### Inherited from
|
|
750
|
+
|
|
751
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`hashicorpVaultEndpoint`](IEngineEnvironmentVariables.md#hashicorpvaultendpoint)
|
|
752
|
+
|
|
753
|
+
***
|
|
754
|
+
|
|
755
|
+
### loggingConnector?
|
|
756
|
+
|
|
757
|
+
> `optional` **loggingConnector**: `string`
|
|
758
|
+
|
|
759
|
+
The type of background task connector, can be a comma separated list: console, entity-storage.
|
|
760
|
+
|
|
761
|
+
#### Inherited from
|
|
762
|
+
|
|
763
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`loggingConnector`](IEngineEnvironmentVariables.md#loggingconnector)
|
|
764
|
+
|
|
765
|
+
***
|
|
766
|
+
|
|
767
|
+
### backgroundTaskConnector?
|
|
768
|
+
|
|
769
|
+
> `optional` **backgroundTaskConnector**: `string`
|
|
770
|
+
|
|
771
|
+
The type of background task connector: entity-storage.
|
|
772
|
+
|
|
773
|
+
#### Inherited from
|
|
774
|
+
|
|
775
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`backgroundTaskConnector`](IEngineEnvironmentVariables.md#backgroundtaskconnector)
|
|
776
|
+
|
|
777
|
+
***
|
|
778
|
+
|
|
779
|
+
### eventBusConnector?
|
|
780
|
+
|
|
781
|
+
> `optional` **eventBusConnector**: `string`
|
|
782
|
+
|
|
783
|
+
The type of event bus connector: local.
|
|
784
|
+
|
|
785
|
+
#### Inherited from
|
|
786
|
+
|
|
787
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`eventBusConnector`](IEngineEnvironmentVariables.md#eventbusconnector)
|
|
788
|
+
|
|
789
|
+
***
|
|
790
|
+
|
|
791
|
+
### eventBusComponent?
|
|
792
|
+
|
|
793
|
+
> `optional` **eventBusComponent**: `string`
|
|
794
|
+
|
|
795
|
+
The type of event bus component: service.
|
|
796
|
+
|
|
797
|
+
#### Inherited from
|
|
798
|
+
|
|
799
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`eventBusComponent`](IEngineEnvironmentVariables.md#eventbuscomponent)
|
|
800
|
+
|
|
801
|
+
***
|
|
802
|
+
|
|
803
|
+
### messagingEmailConnector?
|
|
804
|
+
|
|
805
|
+
> `optional` **messagingEmailConnector**: `string`
|
|
806
|
+
|
|
807
|
+
The type of messaging email connector: entity-storage, aws.
|
|
808
|
+
|
|
809
|
+
#### Inherited from
|
|
810
|
+
|
|
811
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`messagingEmailConnector`](IEngineEnvironmentVariables.md#messagingemailconnector)
|
|
812
|
+
|
|
813
|
+
***
|
|
814
|
+
|
|
815
|
+
### messagingSmsConnector?
|
|
816
|
+
|
|
817
|
+
> `optional` **messagingSmsConnector**: `string`
|
|
818
|
+
|
|
819
|
+
The type of messaging sms connector: entity-storage, aws.
|
|
820
|
+
|
|
821
|
+
#### Inherited from
|
|
822
|
+
|
|
823
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`messagingSmsConnector`](IEngineEnvironmentVariables.md#messagingsmsconnector)
|
|
824
|
+
|
|
825
|
+
***
|
|
826
|
+
|
|
827
|
+
### messagingPushNotificationConnector?
|
|
828
|
+
|
|
829
|
+
> `optional` **messagingPushNotificationConnector**: `string`
|
|
830
|
+
|
|
831
|
+
The type of messaging push notification connector: entity-storage, aws.
|
|
832
|
+
|
|
833
|
+
#### Inherited from
|
|
834
|
+
|
|
835
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`messagingPushNotificationConnector`](IEngineEnvironmentVariables.md#messagingpushnotificationconnector)
|
|
836
|
+
|
|
837
|
+
***
|
|
838
|
+
|
|
839
|
+
### awsMessagingPushNotificationApplications?
|
|
840
|
+
|
|
841
|
+
> `optional` **awsMessagingPushNotificationApplications**: `string`
|
|
842
|
+
|
|
843
|
+
The applications for the push notifications JSON stringified array of IAwsApplicationSettings.
|
|
844
|
+
|
|
845
|
+
#### Inherited from
|
|
846
|
+
|
|
847
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`awsMessagingPushNotificationApplications`](IEngineEnvironmentVariables.md#awsmessagingpushnotificationapplications)
|
|
848
|
+
|
|
849
|
+
***
|
|
850
|
+
|
|
851
|
+
### messagingComponent?
|
|
852
|
+
|
|
853
|
+
> `optional` **messagingComponent**: `string`
|
|
854
|
+
|
|
855
|
+
The type of messaging component: service.
|
|
856
|
+
|
|
857
|
+
#### Inherited from
|
|
858
|
+
|
|
859
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`messagingComponent`](IEngineEnvironmentVariables.md#messagingcomponent)
|
|
860
|
+
|
|
861
|
+
***
|
|
862
|
+
|
|
863
|
+
### telemetryConnector?
|
|
864
|
+
|
|
865
|
+
> `optional` **telemetryConnector**: `string`
|
|
866
|
+
|
|
867
|
+
The type of telemetry connector: entity-storage.
|
|
868
|
+
|
|
869
|
+
#### Inherited from
|
|
870
|
+
|
|
871
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`telemetryConnector`](IEngineEnvironmentVariables.md#telemetryconnector)
|
|
872
|
+
|
|
873
|
+
***
|
|
874
|
+
|
|
875
|
+
### faucetConnector?
|
|
876
|
+
|
|
877
|
+
> `optional` **faucetConnector**: `string`
|
|
878
|
+
|
|
879
|
+
The type of faucet connector: entity-storage, iota.
|
|
880
|
+
|
|
881
|
+
#### Inherited from
|
|
882
|
+
|
|
883
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`faucetConnector`](IEngineEnvironmentVariables.md#faucetconnector)
|
|
884
|
+
|
|
885
|
+
***
|
|
886
|
+
|
|
887
|
+
### walletConnector?
|
|
888
|
+
|
|
889
|
+
> `optional` **walletConnector**: `string`
|
|
890
|
+
|
|
891
|
+
The type of wallet connector: entity-storage, iota.
|
|
892
|
+
|
|
893
|
+
#### Inherited from
|
|
894
|
+
|
|
895
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`walletConnector`](IEngineEnvironmentVariables.md#walletconnector)
|
|
896
|
+
|
|
897
|
+
***
|
|
898
|
+
|
|
899
|
+
### nftConnector?
|
|
900
|
+
|
|
901
|
+
> `optional` **nftConnector**: `string`
|
|
902
|
+
|
|
903
|
+
The type of NFT connector: entity-storage, iota.
|
|
904
|
+
|
|
905
|
+
#### Inherited from
|
|
906
|
+
|
|
907
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`nftConnector`](IEngineEnvironmentVariables.md#nftconnector)
|
|
908
|
+
|
|
909
|
+
***
|
|
910
|
+
|
|
911
|
+
### identityConnector?
|
|
912
|
+
|
|
913
|
+
> `optional` **identityConnector**: `string`
|
|
914
|
+
|
|
915
|
+
The type of identity connector: entity-storage, iota.
|
|
916
|
+
|
|
917
|
+
#### Inherited from
|
|
918
|
+
|
|
919
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`identityConnector`](IEngineEnvironmentVariables.md#identityconnector)
|
|
920
|
+
|
|
921
|
+
***
|
|
922
|
+
|
|
923
|
+
### identityResolverConnector?
|
|
924
|
+
|
|
925
|
+
> `optional` **identityResolverConnector**: `string`
|
|
926
|
+
|
|
927
|
+
The type of identity resolver connector: entity-storage, iota.
|
|
928
|
+
|
|
929
|
+
#### Inherited from
|
|
930
|
+
|
|
931
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`identityResolverConnector`](IEngineEnvironmentVariables.md#identityresolverconnector)
|
|
932
|
+
|
|
933
|
+
***
|
|
934
|
+
|
|
935
|
+
### verifiableStorageConnector?
|
|
936
|
+
|
|
937
|
+
> `optional` **verifiableStorageConnector**: `string`
|
|
938
|
+
|
|
939
|
+
The type of verifiable storage connector: entity-storage, iota.
|
|
940
|
+
|
|
941
|
+
#### Inherited from
|
|
942
|
+
|
|
943
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`verifiableStorageConnector`](IEngineEnvironmentVariables.md#verifiablestorageconnector)
|
|
944
|
+
|
|
945
|
+
***
|
|
946
|
+
|
|
947
|
+
### iotaFaucetEndpoint?
|
|
948
|
+
|
|
949
|
+
> `optional` **iotaFaucetEndpoint**: `string`
|
|
950
|
+
|
|
951
|
+
IOTA Faucet Endpoint.
|
|
952
|
+
|
|
953
|
+
#### Inherited from
|
|
954
|
+
|
|
955
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaFaucetEndpoint`](IEngineEnvironmentVariables.md#iotafaucetendpoint)
|
|
956
|
+
|
|
957
|
+
***
|
|
958
|
+
|
|
959
|
+
### iotaNodeEndpoint?
|
|
960
|
+
|
|
961
|
+
> `optional` **iotaNodeEndpoint**: `string`
|
|
962
|
+
|
|
963
|
+
IOTA Node Endpoint.
|
|
964
|
+
|
|
965
|
+
#### Inherited from
|
|
966
|
+
|
|
967
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaNodeEndpoint`](IEngineEnvironmentVariables.md#iotanodeendpoint)
|
|
968
|
+
|
|
969
|
+
***
|
|
970
|
+
|
|
971
|
+
### iotaNetwork?
|
|
972
|
+
|
|
973
|
+
> `optional` **iotaNetwork**: `string`
|
|
974
|
+
|
|
975
|
+
IOTA network.
|
|
976
|
+
|
|
977
|
+
#### Inherited from
|
|
978
|
+
|
|
979
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaNetwork`](IEngineEnvironmentVariables.md#iotanetwork)
|
|
980
|
+
|
|
981
|
+
***
|
|
982
|
+
|
|
983
|
+
### iotaCoinType?
|
|
984
|
+
|
|
985
|
+
> `optional` **iotaCoinType**: `string`
|
|
986
|
+
|
|
987
|
+
IOTA coin type.
|
|
988
|
+
|
|
989
|
+
#### Inherited from
|
|
990
|
+
|
|
991
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaCoinType`](IEngineEnvironmentVariables.md#iotacointype)
|
|
992
|
+
|
|
993
|
+
***
|
|
994
|
+
|
|
995
|
+
### iotaExplorerEndpoint?
|
|
996
|
+
|
|
997
|
+
> `optional` **iotaExplorerEndpoint**: `string`
|
|
998
|
+
|
|
999
|
+
IOTA Explorer Endpoint.
|
|
1000
|
+
|
|
1001
|
+
#### Inherited from
|
|
1002
|
+
|
|
1003
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaExplorerEndpoint`](IEngineEnvironmentVariables.md#iotaexplorerendpoint)
|
|
1004
|
+
|
|
1005
|
+
***
|
|
1006
|
+
|
|
1007
|
+
### iotaGasStationEndpoint?
|
|
1008
|
+
|
|
1009
|
+
> `optional` **iotaGasStationEndpoint**: `string`
|
|
1010
|
+
|
|
1011
|
+
IOTA Gas Station Endpoint.
|
|
1012
|
+
|
|
1013
|
+
#### Inherited from
|
|
1014
|
+
|
|
1015
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaGasStationEndpoint`](IEngineEnvironmentVariables.md#iotagasstationendpoint)
|
|
1016
|
+
|
|
1017
|
+
***
|
|
1018
|
+
|
|
1019
|
+
### iotaGasStationAuthToken?
|
|
1020
|
+
|
|
1021
|
+
> `optional` **iotaGasStationAuthToken**: `string`
|
|
1022
|
+
|
|
1023
|
+
IOTA Gas Station Authentication Token.
|
|
1024
|
+
|
|
1025
|
+
#### Inherited from
|
|
1026
|
+
|
|
1027
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`iotaGasStationAuthToken`](IEngineEnvironmentVariables.md#iotagasstationauthtoken)
|
|
1028
|
+
|
|
1029
|
+
***
|
|
1030
|
+
|
|
1031
|
+
### universalResolverEndpoint?
|
|
1032
|
+
|
|
1033
|
+
> `optional` **universalResolverEndpoint**: `string`
|
|
1034
|
+
|
|
1035
|
+
Universal Resolver Endpoint.
|
|
1036
|
+
|
|
1037
|
+
#### Inherited from
|
|
1038
|
+
|
|
1039
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`universalResolverEndpoint`](IEngineEnvironmentVariables.md#universalresolverendpoint)
|
|
1040
|
+
|
|
1041
|
+
***
|
|
1042
|
+
|
|
1043
|
+
### identityProfileConnector?
|
|
1044
|
+
|
|
1045
|
+
> `optional` **identityProfileConnector**: `string`
|
|
1046
|
+
|
|
1047
|
+
The type of identity profile connector: entity-storage.
|
|
1048
|
+
|
|
1049
|
+
#### Inherited from
|
|
1050
|
+
|
|
1051
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`identityProfileConnector`](IEngineEnvironmentVariables.md#identityprofileconnector)
|
|
1052
|
+
|
|
1053
|
+
***
|
|
1054
|
+
|
|
1055
|
+
### immutableProofVerificationMethodId?
|
|
1056
|
+
|
|
1057
|
+
> `optional` **immutableProofVerificationMethodId**: `string`
|
|
1058
|
+
|
|
1059
|
+
The identity verification method id to use with immutable proofs.
|
|
1060
|
+
|
|
1061
|
+
#### Inherited from
|
|
1062
|
+
|
|
1063
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`immutableProofVerificationMethodId`](IEngineEnvironmentVariables.md#immutableproofverificationmethodid)
|
|
1064
|
+
|
|
1065
|
+
***
|
|
1066
|
+
|
|
1067
|
+
### attestationConnector?
|
|
1068
|
+
|
|
1069
|
+
> `optional` **attestationConnector**: `string`
|
|
1070
|
+
|
|
1071
|
+
The type of attestation connector: entity-storage, iota.
|
|
1072
|
+
|
|
1073
|
+
#### Inherited from
|
|
1074
|
+
|
|
1075
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`attestationConnector`](IEngineEnvironmentVariables.md#attestationconnector)
|
|
1076
|
+
|
|
1077
|
+
***
|
|
1078
|
+
|
|
1079
|
+
### attestationVerificationMethodId?
|
|
1080
|
+
|
|
1081
|
+
> `optional` **attestationVerificationMethodId**: `string`
|
|
1082
|
+
|
|
1083
|
+
The identity verification method id to use with attestation.
|
|
1084
|
+
|
|
1085
|
+
#### Inherited from
|
|
1086
|
+
|
|
1087
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`attestationVerificationMethodId`](IEngineEnvironmentVariables.md#attestationverificationmethodid)
|
|
1088
|
+
|
|
1089
|
+
***
|
|
1090
|
+
|
|
1091
|
+
### dataConverterConnectors?
|
|
1092
|
+
|
|
1093
|
+
> `optional` **dataConverterConnectors**: `string`
|
|
1094
|
+
|
|
1095
|
+
The type of the default data converters, can be a comma separated list: json, xml.
|
|
1096
|
+
|
|
1097
|
+
#### Inherited from
|
|
1098
|
+
|
|
1099
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataConverterConnectors`](IEngineEnvironmentVariables.md#dataconverterconnectors)
|
|
1100
|
+
|
|
1101
|
+
***
|
|
1102
|
+
|
|
1103
|
+
### dataExtractorConnectors?
|
|
1104
|
+
|
|
1105
|
+
> `optional` **dataExtractorConnectors**: `string`
|
|
1106
|
+
|
|
1107
|
+
The type of the default data extractor, can be a comma separated list: json-path.
|
|
1108
|
+
|
|
1109
|
+
#### Inherited from
|
|
1110
|
+
|
|
1111
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`dataExtractorConnectors`](IEngineEnvironmentVariables.md#dataextractorconnectors)
|
|
1112
|
+
|
|
1113
|
+
***
|
|
1114
|
+
|
|
1115
|
+
### federatedCatalogueCacheTtlMs?
|
|
1116
|
+
|
|
1117
|
+
> `optional` **federatedCatalogueCacheTtlMs**: `number`
|
|
1118
|
+
|
|
1119
|
+
Federated catalog TTL for the cache.
|
|
1120
|
+
|
|
1121
|
+
#### Inherited from
|
|
1122
|
+
|
|
1123
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueCacheTtlMs`](IEngineEnvironmentVariables.md#federatedcataloguecachettlms)
|
|
1124
|
+
|
|
1125
|
+
***
|
|
1126
|
+
|
|
1127
|
+
### federatedCatalogueClearingHouseApproverList?
|
|
1128
|
+
|
|
1129
|
+
> `optional` **federatedCatalogueClearingHouseApproverList**: `string`
|
|
1130
|
+
|
|
1131
|
+
Federated catalog clearing house approver list, stringified array of DIDs.
|
|
1132
|
+
|
|
1133
|
+
#### Inherited from
|
|
1134
|
+
|
|
1135
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueClearingHouseApproverList`](IEngineEnvironmentVariables.md#federatedcatalogueclearinghouseapproverlist)
|
|
1136
|
+
|
|
1137
|
+
***
|
|
1138
|
+
|
|
1139
|
+
### rightsManagementEnabled?
|
|
1140
|
+
|
|
1141
|
+
> `optional` **rightsManagementEnabled**: `string`
|
|
1142
|
+
|
|
1143
|
+
Is the rights management enabled, defaults to false.
|
|
1144
|
+
|
|
1145
|
+
#### Inherited from
|
|
1146
|
+
|
|
1147
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`rightsManagementEnabled`](IEngineEnvironmentVariables.md#rightsmanagementenabled)
|
|
1148
|
+
|
|
1149
|
+
***
|
|
1150
|
+
|
|
1151
|
+
### taskSchedulerEnabled?
|
|
1152
|
+
|
|
1153
|
+
> `optional` **taskSchedulerEnabled**: `string`
|
|
1154
|
+
|
|
1155
|
+
Is the task scheduler enabled, defaults to true.
|
|
1156
|
+
|
|
1157
|
+
#### Inherited from
|
|
1158
|
+
|
|
1159
|
+
[`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`taskSchedulerEnabled`](IEngineEnvironmentVariables.md#taskschedulerenabled)
|
|
1160
|
+
|
|
1161
|
+
***
|
|
1162
|
+
|
|
1163
|
+
### port?
|
|
1164
|
+
|
|
1165
|
+
> `optional` **port**: `string`
|
|
1166
|
+
|
|
1167
|
+
The port to serve the API from.
|
|
1168
|
+
|
|
1169
|
+
#### Inherited from
|
|
1170
|
+
|
|
1171
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`port`](IEngineServerEnvironmentVariables.md#port)
|
|
1172
|
+
|
|
1173
|
+
***
|
|
1174
|
+
|
|
1175
|
+
### host?
|
|
1176
|
+
|
|
1177
|
+
> `optional` **host**: `string`
|
|
1178
|
+
|
|
1179
|
+
The host to serve the API from.
|
|
1180
|
+
|
|
1181
|
+
#### Inherited from
|
|
1182
|
+
|
|
1183
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`host`](IEngineServerEnvironmentVariables.md#host)
|
|
1184
|
+
|
|
1185
|
+
***
|
|
1186
|
+
|
|
1187
|
+
### corsOrigins?
|
|
1188
|
+
|
|
1189
|
+
> `optional` **corsOrigins**: `string`
|
|
1190
|
+
|
|
1191
|
+
The CORS origins to allow, defaults to *.
|
|
1192
|
+
|
|
1193
|
+
#### Inherited from
|
|
1194
|
+
|
|
1195
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`corsOrigins`](IEngineServerEnvironmentVariables.md#corsorigins)
|
|
1196
|
+
|
|
1197
|
+
***
|
|
1198
|
+
|
|
1199
|
+
### httpMethods?
|
|
1200
|
+
|
|
1201
|
+
> `optional` **httpMethods**: `string`
|
|
1202
|
+
|
|
1203
|
+
The CORS methods to allow, defaults to GET, POST, PUT, DELETE, OPTIONS.
|
|
1204
|
+
|
|
1205
|
+
#### Inherited from
|
|
1206
|
+
|
|
1207
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`httpMethods`](IEngineServerEnvironmentVariables.md#httpmethods)
|
|
1208
|
+
|
|
1209
|
+
***
|
|
1210
|
+
|
|
1211
|
+
### httpAllowedHeaders?
|
|
1212
|
+
|
|
1213
|
+
> `optional` **httpAllowedHeaders**: `string`
|
|
1214
|
+
|
|
1215
|
+
The CORS headers to allow.
|
|
1216
|
+
|
|
1217
|
+
#### Inherited from
|
|
1218
|
+
|
|
1219
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`httpAllowedHeaders`](IEngineServerEnvironmentVariables.md#httpallowedheaders)
|
|
1220
|
+
|
|
1221
|
+
***
|
|
1222
|
+
|
|
1223
|
+
### httpExposedHeaders?
|
|
1224
|
+
|
|
1225
|
+
> `optional` **httpExposedHeaders**: `string`
|
|
1226
|
+
|
|
1227
|
+
The CORS headers to expose.
|
|
1228
|
+
|
|
1229
|
+
#### Inherited from
|
|
1230
|
+
|
|
1231
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`httpExposedHeaders`](IEngineServerEnvironmentVariables.md#httpexposedheaders)
|
|
1232
|
+
|
|
1233
|
+
***
|
|
1234
|
+
|
|
1235
|
+
### authAdminProcessorType?
|
|
1236
|
+
|
|
1237
|
+
> `optional` **authAdminProcessorType**: `string`
|
|
1238
|
+
|
|
1239
|
+
The type of auth admin processor to use on the API: entity-storage.
|
|
1240
|
+
|
|
1241
|
+
#### Inherited from
|
|
1242
|
+
|
|
1243
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`authAdminProcessorType`](IEngineServerEnvironmentVariables.md#authadminprocessortype)
|
|
1244
|
+
|
|
1245
|
+
***
|
|
1246
|
+
|
|
1247
|
+
### authProcessorType?
|
|
1248
|
+
|
|
1249
|
+
> `optional` **authProcessorType**: `string`
|
|
1250
|
+
|
|
1251
|
+
The type of auth processor to use on the API: entity-storage.
|
|
1252
|
+
|
|
1253
|
+
#### Inherited from
|
|
1254
|
+
|
|
1255
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`authProcessorType`](IEngineServerEnvironmentVariables.md#authprocessortype)
|
|
1256
|
+
|
|
1257
|
+
***
|
|
1258
|
+
|
|
1259
|
+
### authSigningKeyId?
|
|
1260
|
+
|
|
1261
|
+
> `optional` **authSigningKeyId**: `string`
|
|
1262
|
+
|
|
1263
|
+
The id of the key in the vault to use for signing in auth operations.
|
|
1264
|
+
|
|
1265
|
+
#### Inherited from
|
|
1266
|
+
|
|
1267
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`authSigningKeyId`](IEngineServerEnvironmentVariables.md#authsigningkeyid)
|
|
1268
|
+
|
|
1269
|
+
***
|
|
1270
|
+
|
|
1271
|
+
### mimeTypeProcessors?
|
|
1272
|
+
|
|
1273
|
+
> `optional` **mimeTypeProcessors**: `string`
|
|
1274
|
+
|
|
1275
|
+
Additional MIME type processors to include, comma separated.
|
|
1276
|
+
|
|
1277
|
+
#### Inherited from
|
|
1278
|
+
|
|
1279
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`mimeTypeProcessors`](IEngineServerEnvironmentVariables.md#mimetypeprocessors)
|
|
1280
|
+
|
|
1281
|
+
***
|
|
1282
|
+
|
|
1283
|
+
### disableNodeIdentity?
|
|
1284
|
+
|
|
1285
|
+
> `optional` **disableNodeIdentity**: `string`
|
|
1286
|
+
|
|
1287
|
+
Disable Node Identity route processors.
|
|
1288
|
+
|
|
1289
|
+
#### Inherited from
|
|
1290
|
+
|
|
1291
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`disableNodeIdentity`](IEngineServerEnvironmentVariables.md#disablenodeidentity)
|
|
1292
|
+
|
|
1293
|
+
***
|
|
1294
|
+
|
|
1295
|
+
### features?
|
|
1296
|
+
|
|
1297
|
+
> `optional` **features**: `string`
|
|
1298
|
+
|
|
1299
|
+
The features that are enabled on the node.
|
|
1300
|
+
|
|
1301
|
+
#### Default
|
|
1302
|
+
|
|
1303
|
+
```ts
|
|
1304
|
+
[NodeFeatures.NodeIdentity]
|
|
1305
|
+
```
|
|
1306
|
+
|
|
1307
|
+
***
|
|
1308
|
+
|
|
1309
|
+
### identity?
|
|
1310
|
+
|
|
1311
|
+
> `optional` **identity**: `string`
|
|
1312
|
+
|
|
1313
|
+
The identity of the node which, if empty and node-identity feature is enabled it will be generated.
|
|
1314
|
+
|
|
1315
|
+
***
|
|
1316
|
+
|
|
1317
|
+
### mnemonic?
|
|
1318
|
+
|
|
1319
|
+
> `optional` **mnemonic**: `string`
|
|
1320
|
+
|
|
1321
|
+
The mnemonic for the identity, if empty and node-identity feature is enabled it will be randomly generated.
|
|
1322
|
+
|
|
1323
|
+
***
|
|
1324
|
+
|
|
1325
|
+
### username?
|
|
1326
|
+
|
|
1327
|
+
> `optional` **username**: `string`
|
|
1328
|
+
|
|
1329
|
+
If the node-user feature is enabled, this will be the name of the user.
|
|
1330
|
+
|
|
1331
|
+
#### Default
|
|
1332
|
+
|
|
1333
|
+
```ts
|
|
1334
|
+
admin@node
|
|
1335
|
+
```
|
|
1336
|
+
|
|
1337
|
+
***
|
|
1338
|
+
|
|
1339
|
+
### password?
|
|
1340
|
+
|
|
1341
|
+
> `optional` **password**: `string`
|
|
1342
|
+
|
|
1343
|
+
If the node-user feature is enabled, this will be the password of the user, if empty it will be randomly generated.
|