@twin.org/node-core 0.0.3-next.5 → 0.0.3-next.50

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 (186) hide show
  1. package/README.md +3 -1
  2. package/dist/es/builders/engineEnvBuilder.js +463 -195
  3. package/dist/es/builders/engineEnvBuilder.js.map +1 -1
  4. package/dist/es/builders/engineServerEnvBuilder.js +89 -32
  5. package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
  6. package/dist/es/builders/extensionsBuilder.js.map +1 -1
  7. package/dist/es/cli.js +247 -0
  8. package/dist/es/cli.js.map +1 -0
  9. package/dist/es/commands/bootstrapLegacy.js +178 -0
  10. package/dist/es/commands/bootstrapLegacy.js.map +1 -0
  11. package/dist/es/commands/help.js +85 -0
  12. package/dist/es/commands/help.js.map +1 -0
  13. package/dist/es/commands/identityCreate.js +326 -0
  14. package/dist/es/commands/identityCreate.js.map +1 -0
  15. package/dist/es/commands/identityImports.js +81 -0
  16. package/dist/es/commands/identityImports.js.map +1 -0
  17. package/dist/es/commands/identityVerifiableCredentialCreate.js +145 -0
  18. package/dist/es/commands/identityVerifiableCredentialCreate.js.map +1 -0
  19. package/dist/es/commands/identityVerificationMethodCreate.js +227 -0
  20. package/dist/es/commands/identityVerificationMethodCreate.js.map +1 -0
  21. package/dist/es/commands/identityVerificationMethodImport.js +125 -0
  22. package/dist/es/commands/identityVerificationMethodImport.js.map +1 -0
  23. package/dist/es/commands/nodeSetIdentity.js +63 -0
  24. package/dist/es/commands/nodeSetIdentity.js.map +1 -0
  25. package/dist/es/commands/tenantCreate.js +137 -0
  26. package/dist/es/commands/tenantCreate.js.map +1 -0
  27. package/dist/es/commands/tenantImport.js +95 -0
  28. package/dist/es/commands/tenantImport.js.map +1 -0
  29. package/dist/es/commands/tenantToken.js +97 -0
  30. package/dist/es/commands/tenantToken.js.map +1 -0
  31. package/dist/es/commands/tenantUpdate.js +93 -0
  32. package/dist/es/commands/tenantUpdate.js.map +1 -0
  33. package/dist/es/commands/userCreate.js +239 -0
  34. package/dist/es/commands/userCreate.js.map +1 -0
  35. package/dist/es/commands/userUpdate.js +154 -0
  36. package/dist/es/commands/userUpdate.js.map +1 -0
  37. package/dist/es/commands/vaultKeyCreate.js +190 -0
  38. package/dist/es/commands/vaultKeyCreate.js.map +1 -0
  39. package/dist/es/commands/vaultKeyImport.js +103 -0
  40. package/dist/es/commands/vaultKeyImport.js.map +1 -0
  41. package/dist/es/defaults.js +18 -2
  42. package/dist/es/defaults.js.map +1 -1
  43. package/dist/es/index.js +11 -4
  44. package/dist/es/index.js.map +1 -1
  45. package/dist/es/models/ICliArgs.js +4 -0
  46. package/dist/es/models/ICliArgs.js.map +1 -0
  47. package/dist/es/models/ICliCommand.js +2 -0
  48. package/dist/es/models/ICliCommand.js.map +1 -0
  49. package/dist/es/models/ICliCommandDefinition.js +2 -0
  50. package/dist/es/models/ICliCommandDefinition.js.map +1 -0
  51. package/dist/es/models/ICliCommandDefinitionParam.js +2 -0
  52. package/dist/es/models/ICliCommandDefinitionParam.js.map +1 -0
  53. package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
  54. package/dist/es/models/IEngineServerEnvironmentVariables.js.map +1 -1
  55. package/dist/es/models/INodeEngineState.js.map +1 -1
  56. package/dist/es/models/INodeEnvironmentVariables.js.map +1 -1
  57. package/dist/es/models/INodeOptions.js.map +1 -1
  58. package/dist/es/models/cliCommandParamType.js +4 -0
  59. package/dist/es/models/cliCommandParamType.js.map +1 -0
  60. package/dist/es/models/nodeExtensionInitialiseEngineMethod.js +2 -0
  61. package/dist/es/models/nodeExtensionInitialiseEngineMethod.js.map +1 -0
  62. package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js +2 -0
  63. package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js.map +1 -0
  64. package/dist/es/models/nodeExtensionInitialiseMethod.js +2 -0
  65. package/dist/es/models/nodeExtensionInitialiseMethod.js.map +1 -0
  66. package/dist/es/models/nodeExtensionShutdownMethod.js +4 -0
  67. package/dist/es/models/nodeExtensionShutdownMethod.js.map +1 -0
  68. package/dist/es/node.js +86 -39
  69. package/dist/es/node.js.map +1 -1
  70. package/dist/es/{server.js → start.js} +72 -27
  71. package/dist/es/start.js.map +1 -0
  72. package/dist/es/utils.js +21 -25
  73. package/dist/es/utils.js.map +1 -1
  74. package/dist/types/builders/engineEnvBuilder.d.ts +67 -1
  75. package/dist/types/builders/engineServerEnvBuilder.d.ts +11 -2
  76. package/dist/types/cli.d.ts +56 -0
  77. package/dist/types/commands/bootstrapLegacy.d.ts +66 -0
  78. package/dist/types/commands/help.d.ts +23 -0
  79. package/dist/types/commands/identityCreate.d.ts +39 -0
  80. package/dist/types/commands/identityImports.d.ts +24 -0
  81. package/dist/types/commands/identityVerifiableCredentialCreate.d.ts +43 -0
  82. package/dist/types/commands/identityVerificationMethodCreate.d.ts +47 -0
  83. package/dist/types/commands/identityVerificationMethodImport.d.ts +31 -0
  84. package/dist/types/commands/nodeSetIdentity.d.ts +22 -0
  85. package/dist/types/commands/tenantCreate.d.ts +38 -0
  86. package/dist/types/commands/tenantImport.d.ts +26 -0
  87. package/dist/types/commands/tenantToken.d.ts +28 -0
  88. package/dist/types/commands/tenantUpdate.d.ts +26 -0
  89. package/dist/types/commands/userCreate.d.ts +51 -0
  90. package/dist/types/commands/userUpdate.d.ts +40 -0
  91. package/dist/types/commands/vaultKeyCreate.d.ts +43 -0
  92. package/dist/types/commands/vaultKeyImport.d.ts +28 -0
  93. package/dist/types/defaults.d.ts +10 -2
  94. package/dist/types/index.d.ts +11 -4
  95. package/dist/types/models/ICliArgs.d.ts +20 -0
  96. package/dist/types/models/ICliCommand.d.ts +17 -0
  97. package/dist/types/models/ICliCommandDefinition.d.ts +41 -0
  98. package/dist/types/models/ICliCommandDefinitionParam.d.ts +35 -0
  99. package/dist/types/models/IEngineEnvironmentVariables.d.ts +125 -100
  100. package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +8 -0
  101. package/dist/types/models/INodeEngineState.d.ts +0 -12
  102. package/dist/types/models/INodeEnvironmentVariables.d.ts +0 -38
  103. package/dist/types/models/INodeOptions.d.ts +6 -2
  104. package/dist/types/models/cliCommandParamType.d.ts +4 -0
  105. package/dist/types/models/nodeExtensionInitialiseEngineMethod.d.ts +7 -0
  106. package/dist/types/models/nodeExtensionInitialiseEngineServerMethod.d.ts +8 -0
  107. package/dist/types/models/nodeExtensionInitialiseMethod.d.ts +8 -0
  108. package/dist/types/models/nodeExtensionShutdownMethod.d.ts +5 -0
  109. package/dist/types/node.d.ts +5 -4
  110. package/dist/types/{server.d.ts → start.d.ts} +4 -2
  111. package/dist/types/utils.d.ts +6 -8
  112. package/docs/changelog.md +604 -178
  113. package/docs/examples.md +99 -1
  114. package/docs/reference/functions/buildConfiguration.md +1 -1
  115. package/docs/reference/functions/buildEngineServerConfiguration.md +1 -1
  116. package/docs/reference/functions/constructCliCommand.md +27 -0
  117. package/docs/reference/functions/executeCommand.md +29 -0
  118. package/docs/reference/functions/getEnvDefaults.md +19 -0
  119. package/docs/reference/functions/getScriptDirectory.md +19 -0
  120. package/docs/reference/functions/isAuthEntityStorageRequired.md +20 -0
  121. package/docs/reference/functions/isAutomationRequired.md +20 -0
  122. package/docs/reference/functions/isBackgroundTasksRequired.md +20 -0
  123. package/docs/reference/functions/isFederatedCatalogueRequired.md +20 -0
  124. package/docs/reference/functions/isImmutableProofRequired.md +20 -0
  125. package/docs/reference/functions/isRightsManagementRequired.md +23 -0
  126. package/docs/reference/functions/isTaskSchedulerRequired.md +20 -0
  127. package/docs/reference/functions/isTelemetryRequired.md +20 -0
  128. package/docs/reference/functions/isTrustRequired.md +20 -0
  129. package/docs/reference/functions/isUrlTransformerRequired.md +20 -0
  130. package/docs/reference/functions/parseCommandLineArgs.md +19 -0
  131. package/docs/reference/functions/processEnvOptions.md +27 -0
  132. package/docs/reference/functions/registerCommands.md +9 -0
  133. package/docs/reference/functions/resolvePackageEntryPoint.md +2 -2
  134. package/docs/reference/functions/run.md +8 -2
  135. package/docs/reference/functions/start.md +9 -3
  136. package/docs/reference/functions/substituteEnvOptions.md +25 -0
  137. package/docs/reference/index.md +26 -14
  138. package/docs/reference/interfaces/ICacheMetadata.md +3 -3
  139. package/docs/reference/interfaces/ICliArgs.md +35 -0
  140. package/docs/reference/interfaces/ICliCommand.md +23 -0
  141. package/docs/reference/interfaces/ICliCommandDefinition.md +87 -0
  142. package/docs/reference/interfaces/ICliCommandDefinitionParam.md +65 -0
  143. package/docs/reference/interfaces/IEngineEnvironmentVariables.md +405 -372
  144. package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +527 -450
  145. package/docs/reference/interfaces/IModuleProtocol.md +3 -3
  146. package/docs/reference/interfaces/INodeEngineState.md +2 -26
  147. package/docs/reference/interfaces/INodeEnvironmentVariables.md +545 -544
  148. package/docs/reference/interfaces/INodeOptions.md +44 -36
  149. package/docs/reference/interfaces/IProtocolHandlerResult.md +2 -2
  150. package/docs/reference/type-aliases/CliCommandParamType.md +5 -0
  151. package/docs/reference/type-aliases/NodeExtensionInitialiseEngineMethod.md +1 -1
  152. package/docs/reference/type-aliases/NodeExtensionInitialiseEngineServerMethod.md +1 -1
  153. package/docs/reference/type-aliases/NodeExtensionInitialiseMethod.md +1 -1
  154. package/docs/reference/type-aliases/NodeExtensionShutdownMethod.md +1 -1
  155. package/docs/reference/variables/ModuleProtocol.md +5 -5
  156. package/docs/reference/variables/TRUST_VERIFICATION_METHOD_ID.md +3 -0
  157. package/docs/reference/variables/URL_TRANSFORMER_ENCRYPTION_KEY_ID.md +3 -0
  158. package/locales/en.json +605 -30
  159. package/package.json +10 -6
  160. package/dist/es/bootstrap.js +0 -366
  161. package/dist/es/bootstrap.js.map +0 -1
  162. package/dist/es/identity.js +0 -182
  163. package/dist/es/identity.js.map +0 -1
  164. package/dist/es/models/nodeExtensionMethods.js +0 -2
  165. package/dist/es/models/nodeExtensionMethods.js.map +0 -1
  166. package/dist/es/models/nodeFeatures.js +0 -21
  167. package/dist/es/models/nodeFeatures.js.map +0 -1
  168. package/dist/es/server.js.map +0 -1
  169. package/dist/types/bootstrap.d.ts +0 -68
  170. package/dist/types/identity.d.ts +0 -14
  171. package/dist/types/models/nodeExtensionMethods.d.ts +0 -27
  172. package/dist/types/models/nodeFeatures.d.ts +0 -21
  173. package/docs/detailed-guide.md +0 -129
  174. package/docs/reference/functions/bootstrap.md +0 -29
  175. package/docs/reference/functions/bootstrapAuth.md +0 -35
  176. package/docs/reference/functions/bootstrapBlobEncryption.md +0 -35
  177. package/docs/reference/functions/bootstrapImmutableProofMethod.md +0 -35
  178. package/docs/reference/functions/bootstrapNodeAdminUser.md +0 -35
  179. package/docs/reference/functions/bootstrapNodeId.md +0 -35
  180. package/docs/reference/functions/bootstrapSynchronisedStorage.md +0 -35
  181. package/docs/reference/functions/bootstrapTenantId.md +0 -35
  182. package/docs/reference/functions/getFeatures.md +0 -19
  183. package/docs/reference/type-aliases/NodeFeatures.md +0 -5
  184. package/docs/reference/variables/NodeFeatures.md +0 -25
  185. package/docs/reference/variables/SYNCHRONISED_STORAGE_BLOB_STORAGE_ENCRYPTION_KEY_ID.md +0 -3
  186. package/docs/reference/variables/VC_AUTHENTICATION_VERIFICATION_METHOD_ID.md +0 -3
@@ -8,1095 +8,1092 @@ The engine core environment variables.
8
8
 
9
9
  ## Properties
10
10
 
11
- ### debug?
11
+ ### debug? {#debug}
12
12
 
13
- > `optional` **debug**: `string`
13
+ > `optional` **debug?**: `string`
14
14
 
15
15
  Start the engine in debug mode.
16
16
 
17
17
  ***
18
18
 
19
- ### storageFileRoot?
19
+ ### silent? {#silent}
20
20
 
21
- > `optional` **storageFileRoot**: `string`
21
+ > `optional` **silent?**: `string`
22
22
 
23
- The root directory for storing items like state file.
23
+ Start the engine in silent mode.
24
24
 
25
25
  ***
26
26
 
27
- ### stateFilename?
27
+ ### storageFileRoot? {#storagefileroot}
28
28
 
29
- > `optional` **stateFilename**: `string`
29
+ > `optional` **storageFileRoot?**: `string`
30
30
 
31
- The name of the state file.
31
+ The root directory for storing items like state file.
32
32
 
33
33
  ***
34
34
 
35
- ### tenantEnabled?
35
+ ### stateFilename? {#statefilename}
36
36
 
37
- > `optional` **tenantEnabled**: `string`
37
+ > `optional` **stateFilename?**: `string`
38
38
 
39
- Is multi-tenant support enabled, defaults to false.
39
+ The name of the state file.
40
40
 
41
41
  ***
42
42
 
43
- ### tenantId?
43
+ ### nodeIdentityEnabled? {#nodeidentityenabled}
44
44
 
45
- > `optional` **tenantId**: `string`
45
+ > `optional` **nodeIdentityEnabled?**: `string`
46
46
 
47
- A tenant id to use as a default for the node.
47
+ Does the node have a unique ID, defaults to true.
48
48
 
49
49
  ***
50
50
 
51
- ### tenantApiKey?
51
+ ### tenantEnabled? {#tenantenabled}
52
52
 
53
- > `optional` **tenantApiKey**: `string`
53
+ > `optional` **tenantEnabled?**: `string`
54
54
 
55
- A tenant api key to use as a default for the node.
55
+ Is multi-tenant support enabled, defaults to false.
56
56
 
57
57
  ***
58
58
 
59
- ### entityStorageConnectorType?
59
+ ### entityStorageConnectorType? {#entitystorageconnectortype}
60
60
 
61
- > `optional` **entityStorageConnectorType**: `string`
61
+ > `optional` **entityStorageConnectorType?**: `string`
62
62
 
63
63
  The type of the entity storage to create, comma separate for more than one connector.
64
64
  values: file, memory, aws-dynamodb, azure-cosmosdb, gcp-firestoredb, scylladb, mysql, mongodb, postgresql
65
65
 
66
66
  ***
67
67
 
68
- ### entityStorageConnectorDefault?
68
+ ### entityStorageConnectorDefault? {#entitystorageconnectordefault}
69
69
 
70
- > `optional` **entityStorageConnectorDefault**: `string`
70
+ > `optional` **entityStorageConnectorDefault?**: `string`
71
71
 
72
72
  The default entity storage connector to use, defaults to the first one in the list.
73
73
 
74
74
  ***
75
75
 
76
- ### entityStorageTablePrefix?
76
+ ### entityStorageTablePrefix? {#entitystoragetableprefix}
77
77
 
78
- > `optional` **entityStorageTablePrefix**: `string`
78
+ > `optional` **entityStorageTablePrefix?**: `string`
79
79
 
80
80
  A prefix for all the table in entity-storage, can be empty.
81
81
 
82
82
  ***
83
83
 
84
- ### awsDynamodbAuthMode?
84
+ ### awsDynamodbAuthMode? {#awsdynamodbauthmode}
85
85
 
86
- > `optional` **awsDynamodbAuthMode**: `string`
86
+ > `optional` **awsDynamodbAuthMode?**: `string`
87
87
 
88
88
  AWS DynamoDB auth mode, either credentials or pod.
89
89
 
90
90
  ***
91
91
 
92
- ### awsDynamodbAccessKeyId?
92
+ ### awsDynamodbAccessKeyId? {#awsdynamodbaccesskeyid}
93
93
 
94
- > `optional` **awsDynamodbAccessKeyId**: `string`
94
+ > `optional` **awsDynamodbAccessKeyId?**: `string`
95
95
 
96
96
  AWS Dynamo DB access key id.
97
97
 
98
98
  ***
99
99
 
100
- ### awsDynamodbEndpoint?
100
+ ### awsDynamodbEndpoint? {#awsdynamodbendpoint}
101
101
 
102
- > `optional` **awsDynamodbEndpoint**: `string`
102
+ > `optional` **awsDynamodbEndpoint?**: `string`
103
103
 
104
104
  AWS Dynamo DB Endpoint if running local instance.
105
105
 
106
106
  ***
107
107
 
108
- ### awsDynamodbRegion?
108
+ ### awsDynamodbRegion? {#awsdynamodbregion}
109
109
 
110
- > `optional` **awsDynamodbRegion**: `string`
110
+ > `optional` **awsDynamodbRegion?**: `string`
111
111
 
112
112
  AWS Dynamo DB region.
113
113
 
114
114
  ***
115
115
 
116
- ### awsDynamodbSecretAccessKey?
116
+ ### awsDynamodbSecretAccessKey? {#awsdynamodbsecretaccesskey}
117
117
 
118
- > `optional` **awsDynamodbSecretAccessKey**: `string`
118
+ > `optional` **awsDynamodbSecretAccessKey?**: `string`
119
119
 
120
120
  AWS Dynamo DB secret access key.
121
121
 
122
122
  ***
123
123
 
124
- ### awsDynamodbConnectionTimeoutMs?
124
+ ### awsDynamodbConnectionTimeoutMs? {#awsdynamodbconnectiontimeoutms}
125
125
 
126
- > `optional` **awsDynamodbConnectionTimeoutMs**: `string`
126
+ > `optional` **awsDynamodbConnectionTimeoutMs?**: `string`
127
127
 
128
128
  AWS Dynamo DB connection timeout.
129
129
 
130
130
  ***
131
131
 
132
- ### azureCosmosdbKey?
132
+ ### azureCosmosdbKey? {#azurecosmosdbkey}
133
133
 
134
- > `optional` **azureCosmosdbKey**: `string`
134
+ > `optional` **azureCosmosdbKey?**: `string`
135
135
 
136
136
  Azure Cosmos DB key.
137
137
 
138
138
  ***
139
139
 
140
- ### azureCosmosdbContainerId?
140
+ ### azureCosmosdbContainerId? {#azurecosmosdbcontainerid}
141
141
 
142
- > `optional` **azureCosmosdbContainerId**: `string`
142
+ > `optional` **azureCosmosdbContainerId?**: `string`
143
143
 
144
144
  Azure Cosmos DB container id.
145
145
 
146
146
  ***
147
147
 
148
- ### azureCosmosdbDatabaseId?
148
+ ### azureCosmosdbDatabaseId? {#azurecosmosdbdatabaseid}
149
149
 
150
- > `optional` **azureCosmosdbDatabaseId**: `string`
150
+ > `optional` **azureCosmosdbDatabaseId?**: `string`
151
151
 
152
152
  Azure Cosmos DB database id.
153
153
 
154
154
  ***
155
155
 
156
- ### azureCosmosdbEndpoint?
156
+ ### azureCosmosdbEndpoint? {#azurecosmosdbendpoint}
157
157
 
158
- > `optional` **azureCosmosdbEndpoint**: `string`
158
+ > `optional` **azureCosmosdbEndpoint?**: `string`
159
159
 
160
160
  Azure Cosmos DB endpoint.
161
161
 
162
162
  ***
163
163
 
164
- ### gcpFirestoreCollectionName?
164
+ ### gcpFirestoreCollectionName? {#gcpfirestorecollectionname}
165
165
 
166
- > `optional` **gcpFirestoreCollectionName**: `string`
166
+ > `optional` **gcpFirestoreCollectionName?**: `string`
167
167
 
168
168
  GCP Firestore collection name.
169
169
 
170
170
  ***
171
171
 
172
- ### gcpFirestoreCredentials?
172
+ ### gcpFirestoreCredentials? {#gcpfirestorecredentials}
173
173
 
174
- > `optional` **gcpFirestoreCredentials**: `string`
174
+ > `optional` **gcpFirestoreCredentials?**: `string`
175
175
 
176
176
  GCP Firestore credentials.
177
177
 
178
178
  ***
179
179
 
180
- ### gcpFirestoreDatabaseId?
180
+ ### gcpFirestoreDatabaseId? {#gcpfirestoredatabaseid}
181
181
 
182
- > `optional` **gcpFirestoreDatabaseId**: `string`
182
+ > `optional` **gcpFirestoreDatabaseId?**: `string`
183
183
 
184
184
  GCP Firestore database id.
185
185
 
186
186
  ***
187
187
 
188
- ### gcpFirestoreApiEndpoint?
188
+ ### gcpFirestoreApiEndpoint? {#gcpfirestoreapiendpoint}
189
189
 
190
- > `optional` **gcpFirestoreApiEndpoint**: `string`
190
+ > `optional` **gcpFirestoreApiEndpoint?**: `string`
191
191
 
192
192
  GCP Firestore endpoint.
193
193
 
194
194
  ***
195
195
 
196
- ### gcpFirestoreProjectId?
196
+ ### gcpFirestoreProjectId? {#gcpfirestoreprojectid}
197
197
 
198
- > `optional` **gcpFirestoreProjectId**: `string`
198
+ > `optional` **gcpFirestoreProjectId?**: `string`
199
199
 
200
200
  GCP Firestore project id.
201
201
 
202
202
  ***
203
203
 
204
- ### scylladbHosts?
204
+ ### scylladbHosts? {#scylladbhosts}
205
205
 
206
- > `optional` **scylladbHosts**: `string`
206
+ > `optional` **scylladbHosts?**: `string`
207
207
 
208
208
  ScyllaDB hosts as comma separated string.
209
209
 
210
210
  ***
211
211
 
212
- ### scylladbKeyspace?
212
+ ### scylladbKeyspace? {#scylladbkeyspace}
213
213
 
214
- > `optional` **scylladbKeyspace**: `string`
214
+ > `optional` **scylladbKeyspace?**: `string`
215
215
 
216
216
  ScyllaDB keyspace.
217
217
 
218
218
  ***
219
219
 
220
- ### scylladbLocalDataCenter?
220
+ ### scylladbLocalDataCenter? {#scylladblocaldatacenter}
221
221
 
222
- > `optional` **scylladbLocalDataCenter**: `string`
222
+ > `optional` **scylladbLocalDataCenter?**: `string`
223
223
 
224
224
  ScyllaDB local data center.
225
225
 
226
226
  ***
227
227
 
228
- ### scylladbPort?
228
+ ### scylladbPort? {#scylladbport}
229
229
 
230
- > `optional` **scylladbPort**: `string`
230
+ > `optional` **scylladbPort?**: `string`
231
231
 
232
232
  ScyllaDB port.
233
233
 
234
234
  ***
235
235
 
236
- ### mySqlHost?
236
+ ### mySqlHost? {#mysqlhost}
237
237
 
238
- > `optional` **mySqlHost**: `string`
238
+ > `optional` **mySqlHost?**: `string`
239
239
 
240
240
  MySQL host.
241
241
 
242
242
  ***
243
243
 
244
- ### mySqlPort?
244
+ ### mySqlPort? {#mysqlport}
245
245
 
246
- > `optional` **mySqlPort**: `number`
246
+ > `optional` **mySqlPort?**: `number`
247
247
 
248
248
  MySQL port.
249
249
 
250
250
  ***
251
251
 
252
- ### mySqlUser?
252
+ ### mySqlUser? {#mysqluser}
253
253
 
254
- > `optional` **mySqlUser**: `string`
254
+ > `optional` **mySqlUser?**: `string`
255
255
 
256
256
  MySQL username.
257
257
 
258
258
  ***
259
259
 
260
- ### mySqlPassword?
260
+ ### mySqlPassword? {#mysqlpassword}
261
261
 
262
- > `optional` **mySqlPassword**: `string`
262
+ > `optional` **mySqlPassword?**: `string`
263
263
 
264
264
  MySQL password.
265
265
 
266
266
  ***
267
267
 
268
- ### mySqlDatabase?
268
+ ### mySqlDatabase? {#mysqldatabase}
269
269
 
270
- > `optional` **mySqlDatabase**: `string`
270
+ > `optional` **mySqlDatabase?**: `string`
271
271
 
272
272
  MySQL Database.
273
273
 
274
274
  ***
275
275
 
276
- ### mongoDbHost?
276
+ ### mongoDbHost? {#mongodbhost}
277
277
 
278
- > `optional` **mongoDbHost**: `string`
278
+ > `optional` **mongoDbHost?**: `string`
279
279
 
280
280
  MongoDB host.
281
281
 
282
282
  ***
283
283
 
284
- ### mongoDbPort?
284
+ ### mongoDbPort? {#mongodbport}
285
285
 
286
- > `optional` **mongoDbPort**: `number`
286
+ > `optional` **mongoDbPort?**: `number`
287
287
 
288
288
  MongoDB port.
289
289
 
290
290
  ***
291
291
 
292
- ### mongoDbUser?
292
+ ### mongoDbUser? {#mongodbuser}
293
293
 
294
- > `optional` **mongoDbUser**: `string`
294
+ > `optional` **mongoDbUser?**: `string`
295
295
 
296
296
  MongoDB username.
297
297
 
298
298
  ***
299
299
 
300
- ### mongoDbPassword?
300
+ ### mongoDbPassword? {#mongodbpassword}
301
301
 
302
- > `optional` **mongoDbPassword**: `string`
302
+ > `optional` **mongoDbPassword?**: `string`
303
303
 
304
304
  MongoDB password.
305
305
 
306
306
  ***
307
307
 
308
- ### mongoDbDatabase?
308
+ ### mongoDbDatabase? {#mongodbdatabase}
309
309
 
310
- > `optional` **mongoDbDatabase**: `string`
310
+ > `optional` **mongoDbDatabase?**: `string`
311
311
 
312
312
  MongoDB Database.
313
313
 
314
314
  ***
315
315
 
316
- ### postgreSqlHost?
316
+ ### postgreSqlHost? {#postgresqlhost}
317
317
 
318
- > `optional` **postgreSqlHost**: `string`
318
+ > `optional` **postgreSqlHost?**: `string`
319
319
 
320
320
  PostgreSQl host.
321
321
 
322
322
  ***
323
323
 
324
- ### postgreSqlPort?
324
+ ### postgreSqlPort? {#postgresqlport}
325
325
 
326
- > `optional` **postgreSqlPort**: `number`
326
+ > `optional` **postgreSqlPort?**: `number`
327
327
 
328
328
  PostgreSQl port.
329
329
 
330
330
  ***
331
331
 
332
- ### postgreSqlUser?
332
+ ### postgreSqlUser? {#postgresqluser}
333
333
 
334
- > `optional` **postgreSqlUser**: `string`
334
+ > `optional` **postgreSqlUser?**: `string`
335
335
 
336
336
  PostgreSQl username.
337
337
 
338
338
  ***
339
339
 
340
- ### postgreSqlPassword?
340
+ ### postgreSqlPassword? {#postgresqlpassword}
341
341
 
342
- > `optional` **postgreSqlPassword**: `string`
342
+ > `optional` **postgreSqlPassword?**: `string`
343
343
 
344
344
  PostgreSQl password.
345
345
 
346
346
  ***
347
347
 
348
- ### postgreSqlDatabase?
348
+ ### postgreSqlDatabase? {#postgresqldatabase}
349
349
 
350
- > `optional` **postgreSqlDatabase**: `string`
350
+ > `optional` **postgreSqlDatabase?**: `string`
351
351
 
352
352
  PostgreSQl Database.
353
353
 
354
354
  ***
355
355
 
356
- ### ipfsBearerToken?
356
+ ### ipfsBearerToken? {#ipfsbearertoken}
357
357
 
358
- > `optional` **ipfsBearerToken**: `string`
358
+ > `optional` **ipfsBearerToken?**: `string`
359
359
 
360
360
  The security token for accessing IPFS API.
361
361
 
362
362
  ***
363
363
 
364
- ### ipfsApiUrl?
364
+ ### ipfsApiUrl? {#ipfsapiurl}
365
365
 
366
- > `optional` **ipfsApiUrl**: `string`
366
+ > `optional` **ipfsApiUrl?**: `string`
367
367
 
368
368
  The url for accessing IPFS API.
369
369
 
370
370
  ***
371
371
 
372
- ### blobStorageConnectorType?
372
+ ### blobStorageConnectorType? {#blobstorageconnectortype}
373
373
 
374
- > `optional` **blobStorageConnectorType**: `string`
374
+ > `optional` **blobStorageConnectorType?**: `string`
375
375
 
376
376
  The type of the entity storage to create, comma separate for more than one connector.
377
377
  values: memory, file, ipfs, aws-s3, azure-storage, gcp-storage.
378
378
 
379
379
  ***
380
380
 
381
- ### blobStorageConnectorDefault?
381
+ ### blobStorageConnectorDefault? {#blobstorageconnectordefault}
382
382
 
383
- > `optional` **blobStorageConnectorDefault**: `string`
383
+ > `optional` **blobStorageConnectorDefault?**: `string`
384
384
 
385
385
  The default blob storage connector to use, defaults to the first one in the list.
386
386
 
387
387
  ***
388
388
 
389
- ### blobStorageConnectorPublic?
389
+ ### blobStorageEnableEncryption? {#blobstorageenableencryption}
390
390
 
391
- > `optional` **blobStorageConnectorPublic**: `string`
392
-
393
- Blog storage connector which has public access.
394
-
395
- ***
396
-
397
- ### blobStorageEnableEncryption?
398
-
399
- > `optional` **blobStorageEnableEncryption**: `string`
391
+ > `optional` **blobStorageEnableEncryption?**: `string`
400
392
 
401
393
  Enable encryption for the blob storage.
402
394
 
403
395
  ***
404
396
 
405
- ### blobStorageEncryptionKeyId?
397
+ ### blobStorageEncryptionKeyId? {#blobstorageencryptionkeyid}
406
398
 
407
- > `optional` **blobStorageEncryptionKeyId**: `string`
399
+ > `optional` **blobStorageEncryptionKeyId?**: `string`
408
400
 
409
401
  The id of the encryption key for the blob storage.
410
402
 
411
403
  ***
412
404
 
413
- ### blobStorageSymmetricEncryptionKey?
414
-
415
- > `optional` **blobStorageSymmetricEncryptionKey**: `string`
416
-
417
- A symmetric encryption key for the blob storage, should be ChaCha20Poly1305 in base64 format.
418
- If encryption is enabled but a key is not provided one will be generated.
419
-
420
- ***
421
-
422
- ### blobStoragePrefix?
405
+ ### blobStoragePrefix? {#blobstorageprefix}
423
406
 
424
- > `optional` **blobStoragePrefix**: `string`
407
+ > `optional` **blobStoragePrefix?**: `string`
425
408
 
426
409
  A prefix for all the blobs in blob-storage, can be empty.
427
410
 
428
411
  ***
429
412
 
430
- ### awsS3Region?
413
+ ### awsS3Region? {#awss3region}
431
414
 
432
- > `optional` **awsS3Region**: `string`
415
+ > `optional` **awsS3Region?**: `string`
433
416
 
434
417
  AWS S3 region.
435
418
 
436
419
  ***
437
420
 
438
- ### awsS3BucketName?
421
+ ### awsS3BucketName? {#awss3bucketname}
439
422
 
440
- > `optional` **awsS3BucketName**: `string`
423
+ > `optional` **awsS3BucketName?**: `string`
441
424
 
442
425
  AWS S3 bucket name.
443
426
 
444
427
  ***
445
428
 
446
- ### awsS3AuthMode?
429
+ ### awsS3AuthMode? {#awss3authmode}
447
430
 
448
- > `optional` **awsS3AuthMode**: `string`
431
+ > `optional` **awsS3AuthMode?**: `string`
449
432
 
450
433
  AWS S3 auth mode, either credentials or pod, defaults to credentials.
451
434
 
452
435
  ***
453
436
 
454
- ### awsS3AccessKeyId?
437
+ ### awsS3AccessKeyId? {#awss3accesskeyid}
455
438
 
456
- > `optional` **awsS3AccessKeyId**: `string`
439
+ > `optional` **awsS3AccessKeyId?**: `string`
457
440
 
458
441
  AWS S3 access key id.
459
442
 
460
443
  ***
461
444
 
462
- ### awsS3SecretAccessKey?
445
+ ### awsS3SecretAccessKey? {#awss3secretaccesskey}
463
446
 
464
- > `optional` **awsS3SecretAccessKey**: `string`
447
+ > `optional` **awsS3SecretAccessKey?**: `string`
465
448
 
466
449
  AWS S3 secret access key.
467
450
 
468
451
  ***
469
452
 
470
- ### awsS3Endpoint?
453
+ ### awsS3Endpoint? {#awss3endpoint}
471
454
 
472
- > `optional` **awsS3Endpoint**: `string`
455
+ > `optional` **awsS3Endpoint?**: `string`
473
456
 
474
457
  AWS S3 endpoint.
475
458
 
476
459
  ***
477
460
 
478
- ### azureStorageAccountKey?
461
+ ### azureStorageAccountKey? {#azurestorageaccountkey}
479
462
 
480
- > `optional` **azureStorageAccountKey**: `string`
463
+ > `optional` **azureStorageAccountKey?**: `string`
481
464
 
482
465
  Azure Storage account key.
483
466
 
484
467
  ***
485
468
 
486
- ### azureStorageAccountName?
469
+ ### azureStorageAccountName? {#azurestorageaccountname}
487
470
 
488
- > `optional` **azureStorageAccountName**: `string`
471
+ > `optional` **azureStorageAccountName?**: `string`
489
472
 
490
473
  Azure Storage account name.
491
474
 
492
475
  ***
493
476
 
494
- ### azureStorageContainerName?
477
+ ### azureStorageContainerName? {#azurestoragecontainername}
495
478
 
496
- > `optional` **azureStorageContainerName**: `string`
479
+ > `optional` **azureStorageContainerName?**: `string`
497
480
 
498
481
  Azure Storage container.
499
482
 
500
483
  ***
501
484
 
502
- ### azureStorageEndpoint?
485
+ ### azureStorageEndpoint? {#azurestorageendpoint}
503
486
 
504
- > `optional` **azureStorageEndpoint**: `string`
487
+ > `optional` **azureStorageEndpoint?**: `string`
505
488
 
506
489
  Azure Storage endpoint.
507
490
 
508
491
  ***
509
492
 
510
- ### gcpStorageBucketName?
493
+ ### gcpStorageBucketName? {#gcpstoragebucketname}
511
494
 
512
- > `optional` **gcpStorageBucketName**: `string`
495
+ > `optional` **gcpStorageBucketName?**: `string`
513
496
 
514
497
  GCP Storage bucket.
515
498
 
516
499
  ***
517
500
 
518
- ### gcpStorageCredentials?
501
+ ### gcpStorageCredentials? {#gcpstoragecredentials}
519
502
 
520
- > `optional` **gcpStorageCredentials**: `string`
503
+ > `optional` **gcpStorageCredentials?**: `string`
521
504
 
522
505
  GCP Storage credentials.
523
506
 
524
507
  ***
525
508
 
526
- ### gcpStorageEndpoint?
509
+ ### gcpStorageEndpoint? {#gcpstorageendpoint}
527
510
 
528
- > `optional` **gcpStorageEndpoint**: `string`
511
+ > `optional` **gcpStorageEndpoint?**: `string`
529
512
 
530
513
  GCP Storage endpoint.
531
514
 
532
515
  ***
533
516
 
534
- ### gcpStorageProjectId?
517
+ ### gcpStorageProjectId? {#gcpstorageprojectid}
535
518
 
536
- > `optional` **gcpStorageProjectId**: `string`
519
+ > `optional` **gcpStorageProjectId?**: `string`
537
520
 
538
521
  GCP Storage project id.
539
522
 
540
523
  ***
541
524
 
542
- ### vaultConnector?
525
+ ### vaultConnector? {#vaultconnector}
543
526
 
544
- > `optional` **vaultConnector**: `string`
527
+ > `optional` **vaultConnector?**: `string`
545
528
 
546
529
  The type of the default vault connector: entity-storage, hashicorp.
547
530
 
548
531
  ***
549
532
 
550
- ### hashicorpVaultToken?
533
+ ### vaultPrefix? {#vaultprefix}
551
534
 
552
- > `optional` **hashicorpVaultToken**: `string`
535
+ > `optional` **vaultPrefix?**: `string`
553
536
 
554
- Hashicorp Vault token.
537
+ Prefix to prepend to entries in the vault.
555
538
 
556
539
  ***
557
540
 
558
- ### hashicorpVaultEndpoint?
541
+ ### hashicorpVaultToken? {#hashicorpvaulttoken}
559
542
 
560
- > `optional` **hashicorpVaultEndpoint**: `string`
543
+ > `optional` **hashicorpVaultToken?**: `string`
561
544
 
562
- Hashicorp Vault endpoint.
545
+ Hashicorp Vault token.
563
546
 
564
547
  ***
565
548
 
566
- ### loggingConnector?
549
+ ### hashicorpVaultEndpoint? {#hashicorpvaultendpoint}
567
550
 
568
- > `optional` **loggingConnector**: `string`
551
+ > `optional` **hashicorpVaultEndpoint?**: `string`
569
552
 
570
- The type of logging task connector, can be a comma separated list: console, entity-storage.
553
+ Hashicorp Vault endpoint.
571
554
 
572
555
  ***
573
556
 
574
- ### backgroundTaskConnector?
557
+ ### loggingConnector? {#loggingconnector}
575
558
 
576
- > `optional` **backgroundTaskConnector**: `string`
559
+ > `optional` **loggingConnector?**: `string`
577
560
 
578
- The type of background task connector: entity-storage.
561
+ The type of logging task connector, can be a comma separated list: console, entity-storage.
579
562
 
580
563
  ***
581
564
 
582
- ### eventBusConnector?
565
+ ### eventBusConnector? {#eventbusconnector}
583
566
 
584
- > `optional` **eventBusConnector**: `string`
567
+ > `optional` **eventBusConnector?**: `string`
585
568
 
586
569
  The type of event bus connector: local.
587
570
 
588
571
  ***
589
572
 
590
- ### eventBusComponent?
573
+ ### eventBusComponent? {#eventbuscomponent}
591
574
 
592
- > `optional` **eventBusComponent**: `string`
575
+ > `optional` **eventBusComponent?**: `string`
593
576
 
594
577
  The type of event bus component: service.
595
578
 
596
579
  ***
597
580
 
598
- ### messagingEnabled?
581
+ ### messagingEnabled? {#messagingenabled}
599
582
 
600
- > `optional` **messagingEnabled**: `string`
583
+ > `optional` **messagingEnabled?**: `string`
601
584
 
602
585
  Are the messaging components enabled, defaults to false.
603
586
 
604
587
  ***
605
588
 
606
- ### awsSesRegion?
589
+ ### awsSesRegion? {#awssesregion}
607
590
 
608
- > `optional` **awsSesRegion**: `string`
591
+ > `optional` **awsSesRegion?**: `string`
609
592
 
610
593
  AWS SES region.
611
594
 
612
595
  ***
613
596
 
614
- ### awsSesAuthMode?
597
+ ### awsSesAuthMode? {#awssesauthmode}
615
598
 
616
- > `optional` **awsSesAuthMode**: `string`
599
+ > `optional` **awsSesAuthMode?**: `string`
617
600
 
618
601
  AWS SES auth mode, either credentials or pod, defaults to credentials.
619
602
 
620
603
  ***
621
604
 
622
- ### awsSesSecretAccessKey?
605
+ ### awsSesSecretAccessKey? {#awssessecretaccesskey}
623
606
 
624
- > `optional` **awsSesSecretAccessKey**: `string`
607
+ > `optional` **awsSesSecretAccessKey?**: `string`
625
608
 
626
609
  AWS SES secret access key.
627
610
 
628
611
  ***
629
612
 
630
- ### awsSesAccessKeyId?
613
+ ### awsSesAccessKeyId? {#awssesaccesskeyid}
631
614
 
632
- > `optional` **awsSesAccessKeyId**: `string`
615
+ > `optional` **awsSesAccessKeyId?**: `string`
633
616
 
634
617
  AWS SES access key id.
635
618
 
636
619
  ***
637
620
 
638
- ### awsSesEndpoint?
621
+ ### awsSesEndpoint? {#awssesendpoint}
639
622
 
640
- > `optional` **awsSesEndpoint**: `string`
623
+ > `optional` **awsSesEndpoint?**: `string`
641
624
 
642
625
  AWS SES endpoint.
643
626
 
644
627
  ***
645
628
 
646
- ### awsMessagingPushNotificationApplications?
629
+ ### awsMessagingPushNotificationApplications? {#awsmessagingpushnotificationapplications}
647
630
 
648
- > `optional` **awsMessagingPushNotificationApplications**: `string`
631
+ > `optional` **awsMessagingPushNotificationApplications?**: `string`
649
632
 
650
- The applications for the push notifications JSON stringified array of IAwsApplicationSettings.
633
+ The applications for the push notifications reference a separate json with @json: prefix.
651
634
 
652
635
  ***
653
636
 
654
- ### messagingEmailConnector?
637
+ ### messagingEmailConnector? {#messagingemailconnector}
655
638
 
656
- > `optional` **messagingEmailConnector**: `string`
639
+ > `optional` **messagingEmailConnector?**: `string`
657
640
 
658
641
  The type of messaging email connector: entity-storage, aws.
659
642
 
660
643
  ***
661
644
 
662
- ### messagingSmsConnector?
645
+ ### messagingSmsConnector? {#messagingsmsconnector}
663
646
 
664
- > `optional` **messagingSmsConnector**: `string`
647
+ > `optional` **messagingSmsConnector?**: `string`
665
648
 
666
649
  The type of messaging sms connector: entity-storage, aws.
667
650
 
668
651
  ***
669
652
 
670
- ### messagingPushNotificationConnector?
653
+ ### messagingPushNotificationConnector? {#messagingpushnotificationconnector}
671
654
 
672
- > `optional` **messagingPushNotificationConnector**: `string`
655
+ > `optional` **messagingPushNotificationConnector?**: `string`
673
656
 
674
657
  The type of messaging push notification connector: entity-storage, aws.
675
658
 
676
659
  ***
677
660
 
678
- ### telemetryConnector?
661
+ ### telemetryConnector? {#telemetryconnector}
679
662
 
680
- > `optional` **telemetryConnector**: `string`
663
+ > `optional` **telemetryConnector?**: `string`
681
664
 
682
665
  The type of telemetry connector: entity-storage.
683
666
 
684
667
  ***
685
668
 
686
- ### faucetConnector?
669
+ ### openTelemetryMeterName? {#opentelemetrymetername}
687
670
 
688
- > `optional` **faucetConnector**: `string`
671
+ > `optional` **openTelemetryMeterName?**: `string`
689
672
 
690
- The type of faucet connector: entity-storage, iota.
673
+ The name of the Open Telemetry meter to use, only required if using open-telemetry as telemetry connector, defaults to twin-node.
691
674
 
692
675
  ***
693
676
 
694
- ### walletConnector?
677
+ ### openTelemetryMeterVersion? {#opentelemetrymeterversion}
695
678
 
696
- > `optional` **walletConnector**: `string`
679
+ > `optional` **openTelemetryMeterVersion?**: `string`
697
680
 
698
- The type of wallet connector: entity-storage, iota.
681
+ The version of the Open Telemetry metrics specification to use, only required if using open-telemetry as telemetry connector, defaults to 1.0.0.
699
682
 
700
683
  ***
701
684
 
702
- ### nftConnector?
685
+ ### openTelemetryReader? {#opentelemetryreader}
703
686
 
704
- > `optional` **nftConnector**: `string`
687
+ > `optional` **openTelemetryReader?**: `string`
705
688
 
706
- The type of NFT connector: entity-storage, iota.
689
+ The type of Open Telemetry metric reader to use, only required if using open-telemetry as telemetry connector, values: prometheus.
707
690
 
708
691
  ***
709
692
 
710
- ### identityConnector?
693
+ ### openTelemetryPrometheusPort? {#opentelemetryprometheusport}
711
694
 
712
- > `optional` **identityConnector**: `string`
695
+ > `optional` **openTelemetryPrometheusPort?**: `string`
713
696
 
714
- The type of identity connector: entity-storage, iota.
697
+ The port to use for the Open Telemetry Prometheus metrics server, only required if using open-telemetry as telemetry connector and prometheus as reader, defaults to 9464.
715
698
 
716
699
  ***
717
700
 
718
- ### identityResolverConnector?
701
+ ### telemetryMetricsCollectorIntervalSeconds? {#telemetrymetricscollectorintervalseconds}
719
702
 
720
- > `optional` **identityResolverConnector**: `string`
703
+ > `optional` **telemetryMetricsCollectorIntervalSeconds?**: `string`
721
704
 
722
- The type of identity resolver connector: entity-storage, iota.
705
+ Polling interval in seconds for the telemetry metrics collector. Defaults to 60.
723
706
 
724
707
  ***
725
708
 
726
- ### verifiableStorageConnector?
709
+ ### telemetryMetricsProducers? {#telemetrymetricsproducers}
727
710
 
728
- > `optional` **verifiableStorageConnector**: `string`
711
+ > `optional` **telemetryMetricsProducers?**: `string`
729
712
 
730
- The type of verifiable storage connector: entity-storage, iota.
713
+ The type of telemetry metrics producers, can be a comma separated list: system, process.
731
714
 
732
715
  ***
733
716
 
734
- ### iotaFaucetEndpoint?
717
+ ### telemetryMetricsProducerMaxHistory? {#telemetrymetricsproducermaxhistory}
735
718
 
736
- > `optional` **iotaFaucetEndpoint**: `string`
719
+ > `optional` **telemetryMetricsProducerMaxHistory?**: `string`
737
720
 
738
- IOTA Faucet Endpoint.
721
+ Maximum number of values retained per telemetry metric (count-based history cap). Defaults to 1440.
739
722
 
740
723
  ***
741
724
 
742
- ### iotaNodeEndpoint?
725
+ ### faucetConnector? {#faucetconnector}
743
726
 
744
- > `optional` **iotaNodeEndpoint**: `string`
727
+ > `optional` **faucetConnector?**: `string`
745
728
 
746
- IOTA Node Endpoint.
729
+ The type of faucet connector: entity-storage, iota.
747
730
 
748
731
  ***
749
732
 
750
- ### iotaNetwork?
733
+ ### walletConnector? {#walletconnector}
751
734
 
752
- > `optional` **iotaNetwork**: `string`
735
+ > `optional` **walletConnector?**: `string`
753
736
 
754
- IOTA network.
737
+ The type of wallet connector: entity-storage, iota.
755
738
 
756
739
  ***
757
740
 
758
- ### iotaCoinType?
741
+ ### nftConnector? {#nftconnector}
759
742
 
760
- > `optional` **iotaCoinType**: `string`
743
+ > `optional` **nftConnector?**: `string`
761
744
 
762
- IOTA coin type.
745
+ The type of NFT connector: entity-storage, iota.
763
746
 
764
747
  ***
765
748
 
766
- ### iotaExplorerEndpoint?
749
+ ### nftPackageId? {#nftpackageid}
767
750
 
768
- > `optional` **iotaExplorerEndpoint**: `string`
751
+ > `optional` **nftPackageId?**: `string`
769
752
 
770
- IOTA Explorer Endpoint.
753
+ The NFT deployed package id, for custom deployments.
771
754
 
772
755
  ***
773
756
 
774
- ### iotaGasStationEndpoint?
757
+ ### notarizationConnector? {#notarizationconnector}
775
758
 
776
- > `optional` **iotaGasStationEndpoint**: `string`
759
+ > `optional` **notarizationConnector?**: `string`
777
760
 
778
- IOTA Gas Station Endpoint.
761
+ The type of notarization connector: entity-storage, iota.
779
762
 
780
763
  ***
781
764
 
782
- ### iotaGasStationAuthToken?
765
+ ### identityConnector? {#identityconnector}
783
766
 
784
- > `optional` **iotaGasStationAuthToken**: `string`
767
+ > `optional` **identityConnector?**: `string`
785
768
 
786
- IOTA Gas Station Authentication Token.
769
+ The type of identity connector: entity-storage, iota.
787
770
 
788
771
  ***
789
772
 
790
- ### universalResolverEndpoint?
773
+ ### identityWalletAddressIndex? {#identitywalletaddressindex}
791
774
 
792
- > `optional` **universalResolverEndpoint**: `string`
775
+ > `optional` **identityWalletAddressIndex?**: `string`
793
776
 
794
- Universal Resolver Endpoint.
777
+ The index of the wallet address to use, defaults to 0.
795
778
 
796
779
  ***
797
780
 
798
- ### identityProfileConnector?
781
+ ### identityResolverConnector? {#identityresolverconnector}
799
782
 
800
- > `optional` **identityProfileConnector**: `string`
783
+ > `optional` **identityResolverConnector?**: `string`
801
784
 
802
- The type of identity profile connector: entity-storage.
785
+ The type of identity resolver connector: entity-storage, iota.
803
786
 
804
787
  ***
805
788
 
806
- ### immutableProofVerificationMethodId?
789
+ ### iotaFaucetEndpoint? {#iotafaucetendpoint}
807
790
 
808
- > `optional` **immutableProofVerificationMethodId**: `string`
791
+ > `optional` **iotaFaucetEndpoint?**: `string`
809
792
 
810
- The identity verification method id to use with immutable proofs.
793
+ IOTA Faucet Endpoint.
811
794
 
812
795
  ***
813
796
 
814
- ### attestationConnector?
797
+ ### iotaNodeEndpoint? {#iotanodeendpoint}
815
798
 
816
- > `optional` **attestationConnector**: `string`
799
+ > `optional` **iotaNodeEndpoint?**: `string`
817
800
 
818
- The type of attestation connector: entity-storage, iota.
801
+ IOTA Node Endpoint.
819
802
 
820
803
  ***
821
804
 
822
- ### attestationVerificationMethodId?
805
+ ### iotaNetwork? {#iotanetwork}
823
806
 
824
- > `optional` **attestationVerificationMethodId**: `string`
807
+ > `optional` **iotaNetwork?**: `string`
825
808
 
826
- The identity verification method id to use with attestation.
809
+ IOTA network.
827
810
 
828
811
  ***
829
812
 
830
- ### dataProcessingEnabled?
813
+ ### iotaCoinType? {#iotacointype}
831
814
 
832
- > `optional` **dataProcessingEnabled**: `string`
815
+ > `optional` **iotaCoinType?**: `string`
833
816
 
834
- Is the data processing enabled, defaults to false.
817
+ IOTA coin type.
835
818
 
836
819
  ***
837
820
 
838
- ### dataConverterConnectors?
821
+ ### iotaExplorerEndpoint? {#iotaexplorerendpoint}
839
822
 
840
- > `optional` **dataConverterConnectors**: `string`
823
+ > `optional` **iotaExplorerEndpoint?**: `string`
841
824
 
842
- The type of the default data converters, can be a comma separated list: json, xml.
825
+ IOTA Explorer Endpoint.
843
826
 
844
827
  ***
845
828
 
846
- ### dataExtractorConnectors?
829
+ ### iotaGasStationEndpoint? {#iotagasstationendpoint}
847
830
 
848
- > `optional` **dataExtractorConnectors**: `string`
831
+ > `optional` **iotaGasStationEndpoint?**: `string`
849
832
 
850
- The type of the default data extractor, can be a comma separated list: json-path.
833
+ IOTA Gas Station Endpoint.
851
834
 
852
835
  ***
853
836
 
854
- ### auditableItemGraphEnabled?
837
+ ### iotaGasStationAuthToken? {#iotagasstationauthtoken}
855
838
 
856
- > `optional` **auditableItemGraphEnabled**: `string`
839
+ > `optional` **iotaGasStationAuthToken?**: `string`
857
840
 
858
- Is the auditable item graph enabled, defaults to false.
841
+ IOTA Gas Station Authentication Token.
859
842
 
860
843
  ***
861
844
 
862
- ### auditableItemStreamEnabled?
845
+ ### iotaIdentityPackageId? {#iotaidentitypackageid}
863
846
 
864
- > `optional` **auditableItemStreamEnabled**: `string`
847
+ > `optional` **iotaIdentityPackageId?**: `string`
865
848
 
866
- Is the auditable item stream enabled, defaults to false.
849
+ The IOTA Identity deployed package id, for custom deployments.
867
850
 
868
851
  ***
869
852
 
870
- ### documentManagementEnabled?
853
+ ### universalResolverEndpoint? {#universalresolverendpoint}
871
854
 
872
- > `optional` **documentManagementEnabled**: `string`
855
+ > `optional` **universalResolverEndpoint?**: `string`
873
856
 
874
- Is the document management enabled, defaults to false.
857
+ Universal Resolver Endpoint.
858
+
859
+ ***
860
+
861
+ ### identityProfileConnector? {#identityprofileconnector}
862
+
863
+ > `optional` **identityProfileConnector?**: `string`
864
+
865
+ The type of identity profile connector: entity-storage.
875
866
 
876
867
  ***
877
868
 
878
- ### synchronisedStorageEnabled?
869
+ ### immutableProofVerificationMethodId? {#immutableproofverificationmethodid}
879
870
 
880
- > `optional` **synchronisedStorageEnabled**: `string`
871
+ > `optional` **immutableProofVerificationMethodId?**: `string`
881
872
 
882
- Is the synchronised storage enabled, defaults to false.
873
+ The identity verification method id to use with immutable proofs.
883
874
 
884
875
  ***
885
876
 
886
- ### synchronisedStorageTrustedUrl?
877
+ ### attestationConnector? {#attestationconnector}
887
878
 
888
- > `optional` **synchronisedStorageTrustedUrl**: `string`
879
+ > `optional` **attestationConnector?**: `string`
889
880
 
890
- Url which points to the api for a trusted synchronised storage node, not required if this is a trusted node.
881
+ The type of attestation connector: entity-storage, iota.
891
882
 
892
883
  ***
893
884
 
894
- ### synchronisedStorageVerifiableStorageKeyId?
885
+ ### attestationVerificationMethodId? {#attestationverificationmethodid}
895
886
 
896
- > `optional` **synchronisedStorageVerifiableStorageKeyId**: `string`
887
+ > `optional` **attestationVerificationMethodId?**: `string`
897
888
 
898
- The key for the smart contract which contains the verifiable storage pointer store for synchronised storage.
899
- This only required if using a custom verifiable storage item, otherwise it will default to the network name.
889
+ The identity verification method id to use with attestation.
900
890
 
901
891
  ***
902
892
 
903
- ### synchronisedStorageBlobStorageEncryptionKeyId?
893
+ ### dataProcessingEnabled? {#dataprocessingenabled}
904
894
 
905
- > `optional` **synchronisedStorageBlobStorageEncryptionKeyId**: `string`
895
+ > `optional` **dataProcessingEnabled?**: `string`
906
896
 
907
- The key from the vault which is used to encrypt the synchronised storage blobs.
908
- Only required for trusted nodes, as regular nodes will request from the trusted nodes.
909
- Defaults to synchronised-storage-blob-encryption
897
+ Is the data processing enabled, defaults to false.
910
898
 
911
899
  ***
912
900
 
913
- ### synchronisedStorageBlobStorageKey?
901
+ ### dataConverterConnectors? {#dataconverterconnectors}
914
902
 
915
- > `optional` **synchronisedStorageBlobStorageKey**: `string`
903
+ > `optional` **dataConverterConnectors?**: `string`
916
904
 
917
- The key used for blob encryption, should be ChaCha20Poly1305 encoded as base64.
918
- Only required for trusted nodes, as regular nodes will not write encrypted data.
905
+ The type of the default data converters, can be a comma separated list: json, xml.
919
906
 
920
907
  ***
921
908
 
922
- ### synchronisedStorageEntityUpdateIntervalMinutes?
909
+ ### dataExtractorConnectors? {#dataextractorconnectors}
923
910
 
924
- > `optional` **synchronisedStorageEntityUpdateIntervalMinutes**: `string`
911
+ > `optional` **dataExtractorConnectors?**: `string`
925
912
 
926
- How often to check for entity updates in minutes.
913
+ The type of the default data extractor, can be a comma separated list: json-path.
927
914
 
928
- #### Default
915
+ ***
929
916
 
930
- ```ts
931
- 5
932
- ```
917
+ ### auditableItemGraphEnabled? {#auditableitemgraphenabled}
918
+
919
+ > `optional` **auditableItemGraphEnabled?**: `string`
920
+
921
+ Is the auditable item graph enabled, defaults to false.
933
922
 
934
923
  ***
935
924
 
936
- ### synchronisedStorageConsolidationIntervalMinutes?
925
+ ### auditableItemStreamEnabled? {#auditableitemstreamenabled}
937
926
 
938
- > `optional` **synchronisedStorageConsolidationIntervalMinutes**: `string`
927
+ > `optional` **auditableItemStreamEnabled?**: `string`
939
928
 
940
- Interval to perform consolidation of changesets, only used if this is a trusted node.
929
+ Is the auditable item stream enabled, defaults to false.
941
930
 
942
- #### Default
931
+ ***
943
932
 
944
- ```ts
945
- 60
946
- ```
933
+ ### documentManagementEnabled? {#documentmanagementenabled}
934
+
935
+ > `optional` **documentManagementEnabled?**: `string`
936
+
937
+ Is the document management enabled, defaults to false.
947
938
 
948
939
  ***
949
940
 
950
- ### synchronisedStorageConsolidationBatchSize?
941
+ ### federatedCatalogueEnabled? {#federatedcatalogueenabled}
951
942
 
952
- > `optional` **synchronisedStorageConsolidationBatchSize**: `string`
943
+ > `optional` **federatedCatalogueEnabled?**: `string`
953
944
 
954
- The number of entities to process in a single consolidation batch, only used if this is a trusted node.
945
+ Enable the federated catalogue, defaults to false, automatically enabled if remote endpoint, filters or dataspace is enabled.
955
946
 
956
- #### Default
947
+ ***
957
948
 
958
- ```ts
959
- 1000
960
- ```
949
+ ### federatedCatalogueFilters? {#federatedcataloguefilters}
950
+
951
+ > `optional` **federatedCatalogueFilters?**: `string`
952
+
953
+ Federated catalog filters, command separated list of filters to add.
961
954
 
962
955
  ***
963
956
 
964
- ### synchronisedStorageMaxConsolidations?
957
+ ### federatedCatalogueRemoteEndpoint? {#federatedcatalogueremoteendpoint}
965
958
 
966
- > `optional` **synchronisedStorageMaxConsolidations**: `string`
959
+ > `optional` **federatedCatalogueRemoteEndpoint?**: `string`
967
960
 
968
- The maximum number of consolidations to keep in storage, only used if this is a trusted node.
961
+ Federated catalog remote endpoint, if set will use a REST client instead of local service.
969
962
 
970
- #### Default
963
+ ***
971
964
 
972
- ```ts
973
- 5
974
- ```
965
+ ### trustGenerators? {#trustgenerators}
966
+
967
+ > `optional` **trustGenerators?**: `string`
968
+
969
+ The trust generators to add to the factory, comma separated list.
975
970
 
976
971
  ***
977
972
 
978
- ### federatedCatalogueEnabled?
973
+ ### trustVerifiers? {#trustverifiers}
979
974
 
980
- > `optional` **federatedCatalogueEnabled**: `string`
975
+ > `optional` **trustVerifiers?**: `string`
981
976
 
982
- Is the federated catalogue enabled, defaults to false.
977
+ The trust verifiers to add to the factory, comma separated list.
983
978
 
984
979
  ***
985
980
 
986
- ### federatedCatalogueCacheTtlMs?
981
+ ### trustVerificationMethodId? {#trustverificationmethodid}
987
982
 
988
- > `optional` **federatedCatalogueCacheTtlMs**: `number`
983
+ > `optional` **trustVerificationMethodId?**: `string`
989
984
 
990
- Federated catalog TTL for the cache.
985
+ The verification method to use for trust identities.
986
+ Defaults to trust-assertion.
991
987
 
992
988
  ***
993
989
 
994
- ### federatedCatalogueClearingHouseApproverList?
990
+ ### trustJwtTtlSeconds? {#trustjwtttlseconds}
995
991
 
996
- > `optional` **federatedCatalogueClearingHouseApproverList**: `string`
992
+ > `optional` **trustJwtTtlSeconds?**: `string`
997
993
 
998
- Federated catalog clearing house approver list, stringified array of DIDs.
994
+ The trust time to live for generating JWTs.
995
+ Defaults to undefined for never expiring.
999
996
 
1000
997
  ***
1001
998
 
1002
- ### rightsManagementEnabled?
999
+ ### trustIdentitiesAllow? {#trustidentitiesallow}
1003
1000
 
1004
- > `optional` **rightsManagementEnabled**: `string`
1001
+ > `optional` **trustIdentitiesAllow?**: `string`
1005
1002
 
1006
- Is the rights management enabled, defaults to false.
1003
+ The allow lists for the trust identity verifier, comma separated list of identities.
1007
1004
 
1008
1005
  ***
1009
1006
 
1010
- ### rightsManagementBaseCallbackUrl?
1007
+ ### trustIdentitiesDeny? {#trustidentitiesdeny}
1011
1008
 
1012
- > `optional` **rightsManagementBaseCallbackUrl**: `string`
1009
+ > `optional` **trustIdentitiesDeny?**: `string`
1013
1010
 
1014
- What is the base callback url for rights management negotiations e.g. https://my-node/rights-management.
1011
+ The deny lists for the trust identity verifier, comma separated list of identities.
1015
1012
 
1016
1013
  ***
1017
1014
 
1018
- ### rightsManagementInformationSources?
1015
+ ### rightsManagementCallbackPath? {#rightsmanagementcallbackpath}
1019
1016
 
1020
- > `optional` **rightsManagementInformationSources**: `string`
1017
+ > `optional` **rightsManagementCallbackPath?**: `string`
1021
1018
 
1022
- The rights management configuration which includes the information sources modules to load.
1023
- Use the @json: prefix to specify the path to the JSON configuration file.
1019
+ Path under which the rights management service is mounted (single source
1020
+ of truth). The same value drives:
1021
+ - the server route mount (via engine config)
1022
+ - the PNP service's callback URL builder (`buildCallbackUrl`)
1023
+ - the PNP rest-client's pathPrefix (consumer side)
1024
+ Defaults to `rights-management`. Set when deploying behind a reverse proxy
1025
+ with path rewriting, K8s ingress with path-based routing, or any custom
1026
+ mount point.
1024
1027
 
1025
1028
  ***
1026
1029
 
1027
- ### rightsManagementNegotiators?
1030
+ ### rightsManagementPolicyInformationSources? {#rightsmanagementpolicyinformationsources}
1028
1031
 
1029
- > `optional` **rightsManagementNegotiators**: `string`
1032
+ > `optional` **rightsManagementPolicyInformationSources?**: `string`
1030
1033
 
1031
- The rights management configuration which includes the negotiator modules to load.
1032
- Use the @json: prefix to specify the path to the JSON configuration file.
1034
+ The rights management policy information sources to add to the factory.
1033
1035
 
1034
1036
  ***
1035
1037
 
1036
- ### rightsManagementRequesters?
1038
+ ### rightsManagementPolicyNegotiators? {#rightsmanagementpolicynegotiators}
1037
1039
 
1038
- > `optional` **rightsManagementRequesters**: `string`
1040
+ > `optional` **rightsManagementPolicyNegotiators?**: `string`
1039
1041
 
1040
- The rights management configuration which includes the requester modules to load.
1041
- Use the @json: prefix to specify the path to the JSON configuration file.
1042
+ The rights management policy negotiators sources to add to the factory.
1042
1043
 
1043
1044
  ***
1044
1045
 
1045
- ### rightsManagementExecutionActions?
1046
+ ### rightsManagementPolicyRequesters? {#rightsmanagementpolicyrequesters}
1046
1047
 
1047
- > `optional` **rightsManagementExecutionActions**: `string`
1048
+ > `optional` **rightsManagementPolicyRequesters?**: `string`
1048
1049
 
1049
- The rights management configuration which includes the execution actions modules to load.
1050
- Use the @json: prefix to specify the path to the JSON configuration file.
1050
+ The rights management policy requesters to add to the factory.
1051
1051
 
1052
1052
  ***
1053
1053
 
1054
- ### rightsManagementEnforcementProcessors?
1054
+ ### rightsManagementPolicyExecutionActions? {#rightsmanagementpolicyexecutionactions}
1055
1055
 
1056
- > `optional` **rightsManagementEnforcementProcessors**: `string`
1056
+ > `optional` **rightsManagementPolicyExecutionActions?**: `string`
1057
1057
 
1058
- The rights management configuration which includes the enforcement processor modules to load.
1059
- Use the @json: prefix to specify the path to the JSON configuration file.
1058
+ The rights management policy execution actions to add to the factory.
1060
1059
 
1061
1060
  ***
1062
1061
 
1063
- ### rightsManagementArbiters?
1062
+ ### rightsManagementPolicyEnforcementProcessors? {#rightsmanagementpolicyenforcementprocessors}
1064
1063
 
1065
- > `optional` **rightsManagementArbiters**: `string`
1064
+ > `optional` **rightsManagementPolicyEnforcementProcessors?**: `string`
1066
1065
 
1067
- The rights management configuration which includes the arbiter modules to load.
1068
- Use the @json: prefix to specify the path to the JSON configuration file.
1066
+ The rights management policy enforcement processors to add to the factory.
1069
1067
 
1070
1068
  ***
1071
1069
 
1072
- ### rightsManagementOffers?
1070
+ ### rightsManagementPolicyArbiters? {#rightsmanagementpolicyarbiters}
1073
1071
 
1074
- > `optional` **rightsManagementOffers**: `string`
1072
+ > `optional` **rightsManagementPolicyArbiters?**: `string`
1075
1073
 
1076
- The rights management configuration which includes the offer modules to load.
1077
- Use the @json: prefix to specify the path to the JSON configuration file.
1074
+ The rights management policy arbiters to add to the factory.
1078
1075
 
1079
1076
  ***
1080
1077
 
1081
- ### taskSchedulerEnabled?
1078
+ ### rightsManagementPolicyObligationEnforcers? {#rightsmanagementpolicyobligationenforcers}
1082
1079
 
1083
- > `optional` **taskSchedulerEnabled**: `string`
1080
+ > `optional` **rightsManagementPolicyObligationEnforcers?**: `string`
1084
1081
 
1085
- Is the task scheduler enabled, defaults to false.
1082
+ The rights management policy obligation enforcers to add to the factory.
1086
1083
 
1087
1084
  ***
1088
1085
 
1089
- ### dataSpaceConnectorEnabled?
1086
+ ### dataspaceEnabled? {#dataspaceenabled}
1090
1087
 
1091
- > `optional` **dataSpaceConnectorEnabled**: `string`
1088
+ > `optional` **dataspaceEnabled?**: `string`
1092
1089
 
1093
- Is the data space connector enabled, defaults to false.
1090
+ Is the dataspace enabled, defaults to false.
1094
1091
 
1095
1092
  ***
1096
1093
 
1097
- ### dataSpaceConnectorRetainActivityLogsFor?
1094
+ ### dataspaceRetainActivityLogsFor? {#dataspaceretainactivitylogsfor}
1098
1095
 
1099
- > `optional` **dataSpaceConnectorRetainActivityLogsFor**: `string`
1096
+ > `optional` **dataspaceRetainActivityLogsFor?**: `string`
1100
1097
 
1101
1098
  The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
1102
1099
 
@@ -1108,9 +1105,9 @@ The length of time to retain the activity logs for in minutes, set to -1 to keep
1108
1105
 
1109
1106
  ***
1110
1107
 
1111
- ### dataSpaceConnectorActivityLogsCleanUpInterval?
1108
+ ### dataspaceActivityLogsCleanUpInterval? {#dataspaceactivitylogscleanupinterval}
1112
1109
 
1113
- > `optional` **dataSpaceConnectorActivityLogsCleanUpInterval**: `string`
1110
+ > `optional` **dataspaceActivityLogsCleanUpInterval?**: `string`
1114
1111
 
1115
1112
  The interval for cleaning up the activity logs.
1116
1113
 
@@ -1122,25 +1119,61 @@ The interval for cleaning up the activity logs.
1122
1119
 
1123
1120
  ***
1124
1121
 
1125
- ### vcAuthenticationEnabled?
1122
+ ### dataspaceDataPlanePath? {#dataspacedataplanepath}
1123
+
1124
+ > `optional` **dataspaceDataPlanePath?**: `string`
1125
+
1126
+ The data plane path for PULL transfers (path only, not full URL).
1127
+ Will be combined with public origin from hosting component.
1128
+ Required if PULL transfers should be supported.
1129
+ Example: "dataspace/entities"
1130
+
1131
+ ***
1132
+
1133
+ ### healthEnabled? {#healthenabled}
1134
+
1135
+ > `optional` **healthEnabled?**: `string`
1136
+
1137
+ Are the health components enabled, defaults to false.
1138
+
1139
+ ***
1140
+
1141
+ ### healthIntervalSeconds? {#healthintervalseconds}
1142
+
1143
+ > `optional` **healthIntervalSeconds?**: `string`
1144
+
1145
+ The interval in seconds for performing health checks, defaults to 60.
1146
+
1147
+ ***
1148
+
1149
+ ### healthStartupIntervalSeconds? {#healthstartupintervalseconds}
1150
+
1151
+ > `optional` **healthStartupIntervalSeconds?**: `string`
1152
+
1153
+ The interval in seconds for performing health checks at startup, defaults to 2.
1154
+ This allows components that take a long time to initialize to be healthy before the first health check is performed.
1155
+
1156
+ ***
1157
+
1158
+ ### urlTransformerEncryptionKeyId? {#urltransformerencryptionkeyid}
1126
1159
 
1127
- > `optional` **vcAuthenticationEnabled**: `string`
1160
+ > `optional` **urlTransformerEncryptionKeyId?**: `string`
1128
1161
 
1129
- Enable verifiable credential authentication for the API.
1162
+ The id of the key in the vault to use for encrypting parameters in url transformer.
1130
1163
 
1131
1164
  ***
1132
1165
 
1133
- ### vcAuthenticationVerificationMethodId?
1166
+ ### automationActionTypes? {#automationactiontypes}
1134
1167
 
1135
- > `optional` **vcAuthenticationVerificationMethodId**: `string`
1168
+ > `optional` **automationActionTypes?**: `string`
1136
1169
 
1137
- Verifiable credential assertion for node to node communication.
1138
- Defaults to node-authentication-assertion.
1170
+ The type of the automation action to create, comma separate for more than one connector.
1171
+ values: fetch
1139
1172
 
1140
1173
  ***
1141
1174
 
1142
- ### extensions?
1175
+ ### extensions? {#extensions}
1143
1176
 
1144
- > `optional` **extensions**: `string`
1177
+ > `optional` **extensions?**: `string`
1145
1178
 
1146
1179
  A comma separated list of additional node extensions to load, the initialiseExtension method will be called for each extension.