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

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 +472 -198
  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 +132 -99
  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 +611 -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 +418 -369
  144. package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +546 -445
  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 +564 -539
  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,1108 @@ 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
+ ### gcpFirestoreEndpoint? {#gcpfirestoreendpoint}
189
189
 
190
- > `optional` **gcpFirestoreApiEndpoint**: `string`
190
+ > `optional` **gcpFirestoreEndpoint?**: `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?
390
-
391
- > `optional` **blobStorageConnectorPublic**: `string`
392
-
393
- Blog storage connector which has public access.
394
-
395
- ***
396
-
397
- ### blobStorageEnableEncryption?
389
+ ### blobStorageEnableEncryption? {#blobstorageenableencryption}
398
390
 
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`
536
+
537
+ Prefix to prepend to entries in the vault.
538
+
539
+ ***
540
+
541
+ ### hashicorpVaultToken? {#hashicorpvaulttoken}
542
+
543
+ > `optional` **hashicorpVaultToken?**: `string`
553
544
 
554
545
  Hashicorp Vault token.
555
546
 
556
547
  ***
557
548
 
558
- ### hashicorpVaultEndpoint?
549
+ ### hashicorpVaultEndpoint? {#hashicorpvaultendpoint}
559
550
 
560
- > `optional` **hashicorpVaultEndpoint**: `string`
551
+ > `optional` **hashicorpVaultEndpoint?**: `string`
561
552
 
562
553
  Hashicorp Vault endpoint.
563
554
 
564
555
  ***
565
556
 
566
- ### loggingConnector?
557
+ ### loggingConnector? {#loggingconnector}
567
558
 
568
- > `optional` **loggingConnector**: `string`
559
+ > `optional` **loggingConnector?**: `string`
569
560
 
570
561
  The type of logging task connector, can be a comma separated list: console, entity-storage.
571
562
 
572
563
  ***
573
564
 
574
- ### backgroundTaskConnector?
565
+ ### loggingBatchSize? {#loggingbatchsize}
575
566
 
576
- > `optional` **backgroundTaskConnector**: `string`
567
+ > `optional` **loggingBatchSize?**: `string`
577
568
 
578
- The type of background task connector: entity-storage.
569
+ The batch size for the logging task, set to 1 for no batching.
579
570
 
580
571
  ***
581
572
 
582
- ### eventBusConnector?
573
+ ### loggingBatchFlushIntervalSeconds? {#loggingbatchflushintervalseconds}
574
+
575
+ > `optional` **loggingBatchFlushIntervalSeconds?**: `string`
583
576
 
584
- > `optional` **eventBusConnector**: `string`
577
+ The batch flush interval in seconds for the logging task, how often to flush the logs when using batching, defaults to 5 seconds.
578
+
579
+ ***
580
+
581
+ ### eventBusConnector? {#eventbusconnector}
582
+
583
+ > `optional` **eventBusConnector?**: `string`
585
584
 
586
585
  The type of event bus connector: local.
587
586
 
588
587
  ***
589
588
 
590
- ### eventBusComponent?
589
+ ### eventBusComponent? {#eventbuscomponent}
591
590
 
592
- > `optional` **eventBusComponent**: `string`
591
+ > `optional` **eventBusComponent?**: `string`
593
592
 
594
593
  The type of event bus component: service.
595
594
 
596
595
  ***
597
596
 
598
- ### messagingEnabled?
597
+ ### messagingEnabled? {#messagingenabled}
599
598
 
600
- > `optional` **messagingEnabled**: `string`
599
+ > `optional` **messagingEnabled?**: `string`
601
600
 
602
601
  Are the messaging components enabled, defaults to false.
603
602
 
604
603
  ***
605
604
 
606
- ### awsSesRegion?
605
+ ### awsSesRegion? {#awssesregion}
607
606
 
608
- > `optional` **awsSesRegion**: `string`
607
+ > `optional` **awsSesRegion?**: `string`
609
608
 
610
609
  AWS SES region.
611
610
 
612
611
  ***
613
612
 
614
- ### awsSesAuthMode?
613
+ ### awsSesAuthMode? {#awssesauthmode}
615
614
 
616
- > `optional` **awsSesAuthMode**: `string`
615
+ > `optional` **awsSesAuthMode?**: `string`
617
616
 
618
617
  AWS SES auth mode, either credentials or pod, defaults to credentials.
619
618
 
620
619
  ***
621
620
 
622
- ### awsSesSecretAccessKey?
621
+ ### awsSesSecretAccessKey? {#awssessecretaccesskey}
623
622
 
624
- > `optional` **awsSesSecretAccessKey**: `string`
623
+ > `optional` **awsSesSecretAccessKey?**: `string`
625
624
 
626
625
  AWS SES secret access key.
627
626
 
628
627
  ***
629
628
 
630
- ### awsSesAccessKeyId?
629
+ ### awsSesAccessKeyId? {#awssesaccesskeyid}
631
630
 
632
- > `optional` **awsSesAccessKeyId**: `string`
631
+ > `optional` **awsSesAccessKeyId?**: `string`
633
632
 
634
633
  AWS SES access key id.
635
634
 
636
635
  ***
637
636
 
638
- ### awsSesEndpoint?
637
+ ### awsSesEndpoint? {#awssesendpoint}
639
638
 
640
- > `optional` **awsSesEndpoint**: `string`
639
+ > `optional` **awsSesEndpoint?**: `string`
641
640
 
642
641
  AWS SES endpoint.
643
642
 
644
643
  ***
645
644
 
646
- ### awsMessagingPushNotificationApplications?
645
+ ### awsMessagingPushNotificationApplications? {#awsmessagingpushnotificationapplications}
647
646
 
648
- > `optional` **awsMessagingPushNotificationApplications**: `string`
647
+ > `optional` **awsMessagingPushNotificationApplications?**: `string`
649
648
 
650
- The applications for the push notifications JSON stringified array of IAwsApplicationSettings.
649
+ The applications for the push notifications reference a separate json with @json: prefix.
651
650
 
652
651
  ***
653
652
 
654
- ### messagingEmailConnector?
653
+ ### messagingEmailConnector? {#messagingemailconnector}
655
654
 
656
- > `optional` **messagingEmailConnector**: `string`
655
+ > `optional` **messagingEmailConnector?**: `string`
657
656
 
658
657
  The type of messaging email connector: entity-storage, aws.
659
658
 
660
659
  ***
661
660
 
662
- ### messagingSmsConnector?
661
+ ### messagingSmsConnector? {#messagingsmsconnector}
663
662
 
664
- > `optional` **messagingSmsConnector**: `string`
663
+ > `optional` **messagingSmsConnector?**: `string`
665
664
 
666
665
  The type of messaging sms connector: entity-storage, aws.
667
666
 
668
667
  ***
669
668
 
670
- ### messagingPushNotificationConnector?
669
+ ### messagingPushNotificationConnector? {#messagingpushnotificationconnector}
671
670
 
672
- > `optional` **messagingPushNotificationConnector**: `string`
671
+ > `optional` **messagingPushNotificationConnector?**: `string`
673
672
 
674
673
  The type of messaging push notification connector: entity-storage, aws.
675
674
 
676
675
  ***
677
676
 
678
- ### telemetryConnector?
677
+ ### telemetryConnector? {#telemetryconnector}
679
678
 
680
- > `optional` **telemetryConnector**: `string`
679
+ > `optional` **telemetryConnector?**: `string`
681
680
 
682
681
  The type of telemetry connector: entity-storage.
683
682
 
684
683
  ***
685
684
 
686
- ### faucetConnector?
685
+ ### openTelemetryMeterName? {#opentelemetrymetername}
687
686
 
688
- > `optional` **faucetConnector**: `string`
687
+ > `optional` **openTelemetryMeterName?**: `string`
689
688
 
690
- The type of faucet connector: entity-storage, iota.
689
+ The name of the Open Telemetry meter to use, only required if using open-telemetry as telemetry connector, defaults to twin-node.
691
690
 
692
691
  ***
693
692
 
694
- ### walletConnector?
693
+ ### openTelemetryMeterVersion? {#opentelemetrymeterversion}
695
694
 
696
- > `optional` **walletConnector**: `string`
695
+ > `optional` **openTelemetryMeterVersion?**: `string`
697
696
 
698
- The type of wallet connector: entity-storage, iota.
697
+ 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
698
 
700
699
  ***
701
700
 
702
- ### nftConnector?
701
+ ### openTelemetryReader? {#opentelemetryreader}
703
702
 
704
- > `optional` **nftConnector**: `string`
703
+ > `optional` **openTelemetryReader?**: `string`
705
704
 
706
- The type of NFT connector: entity-storage, iota.
705
+ The type of Open Telemetry metric reader to use, only required if using open-telemetry as telemetry connector, values: prometheus.
707
706
 
708
707
  ***
709
708
 
710
- ### identityConnector?
709
+ ### openTelemetryPrometheusPort? {#opentelemetryprometheusport}
711
710
 
712
- > `optional` **identityConnector**: `string`
711
+ > `optional` **openTelemetryPrometheusPort?**: `string`
713
712
 
714
- The type of identity connector: entity-storage, iota.
713
+ 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
714
 
716
715
  ***
717
716
 
718
- ### identityResolverConnector?
717
+ ### telemetryMetricsCollectorIntervalSeconds? {#telemetrymetricscollectorintervalseconds}
719
718
 
720
- > `optional` **identityResolverConnector**: `string`
719
+ > `optional` **telemetryMetricsCollectorIntervalSeconds?**: `string`
721
720
 
722
- The type of identity resolver connector: entity-storage, iota.
721
+ Polling interval in seconds for the telemetry metrics collector. Defaults to 60.
723
722
 
724
723
  ***
725
724
 
726
- ### verifiableStorageConnector?
725
+ ### telemetryMetricsProducers? {#telemetrymetricsproducers}
727
726
 
728
- > `optional` **verifiableStorageConnector**: `string`
727
+ > `optional` **telemetryMetricsProducers?**: `string`
729
728
 
730
- The type of verifiable storage connector: entity-storage, iota.
729
+ The type of telemetry metrics producers, can be a comma separated list: system, process.
731
730
 
732
731
  ***
733
732
 
734
- ### iotaFaucetEndpoint?
733
+ ### telemetryMetricsProducerMaxHistory? {#telemetrymetricsproducermaxhistory}
735
734
 
736
- > `optional` **iotaFaucetEndpoint**: `string`
735
+ > `optional` **telemetryMetricsProducerMaxHistory?**: `string`
737
736
 
738
- IOTA Faucet Endpoint.
737
+ Maximum number of values retained per telemetry metric (count-based history cap). Defaults to 1440.
739
738
 
740
739
  ***
741
740
 
742
- ### iotaNodeEndpoint?
741
+ ### faucetConnector? {#faucetconnector}
743
742
 
744
- > `optional` **iotaNodeEndpoint**: `string`
743
+ > `optional` **faucetConnector?**: `string`
745
744
 
746
- IOTA Node Endpoint.
745
+ The type of faucet connector: entity-storage, iota.
747
746
 
748
747
  ***
749
748
 
750
- ### iotaNetwork?
749
+ ### walletConnector? {#walletconnector}
751
750
 
752
- > `optional` **iotaNetwork**: `string`
751
+ > `optional` **walletConnector?**: `string`
753
752
 
754
- IOTA network.
753
+ The type of wallet connector: entity-storage, iota.
755
754
 
756
755
  ***
757
756
 
758
- ### iotaCoinType?
757
+ ### nftConnector? {#nftconnector}
759
758
 
760
- > `optional` **iotaCoinType**: `string`
759
+ > `optional` **nftConnector?**: `string`
761
760
 
762
- IOTA coin type.
761
+ The type of NFT connector: entity-storage, iota.
763
762
 
764
763
  ***
765
764
 
766
- ### iotaExplorerEndpoint?
765
+ ### nftPackageId? {#nftpackageid}
767
766
 
768
- > `optional` **iotaExplorerEndpoint**: `string`
767
+ > `optional` **nftPackageId?**: `string`
769
768
 
770
- IOTA Explorer Endpoint.
769
+ The NFT deployed package id, for custom deployments.
771
770
 
772
771
  ***
773
772
 
774
- ### iotaGasStationEndpoint?
773
+ ### notarizationConnector? {#notarizationconnector}
775
774
 
776
- > `optional` **iotaGasStationEndpoint**: `string`
775
+ > `optional` **notarizationConnector?**: `string`
777
776
 
778
- IOTA Gas Station Endpoint.
777
+ The type of notarization connector: entity-storage, iota.
779
778
 
780
779
  ***
781
780
 
782
- ### iotaGasStationAuthToken?
781
+ ### identityConnector? {#identityconnector}
783
782
 
784
- > `optional` **iotaGasStationAuthToken**: `string`
783
+ > `optional` **identityConnector?**: `string`
785
784
 
786
- IOTA Gas Station Authentication Token.
785
+ The type of identity connector: entity-storage, iota.
787
786
 
788
787
  ***
789
788
 
790
- ### universalResolverEndpoint?
789
+ ### identityWalletAddressIndex? {#identitywalletaddressindex}
791
790
 
792
- > `optional` **universalResolverEndpoint**: `string`
791
+ > `optional` **identityWalletAddressIndex?**: `string`
793
792
 
794
- Universal Resolver Endpoint.
793
+ The index of the wallet address to use, defaults to 0.
795
794
 
796
795
  ***
797
796
 
798
- ### identityProfileConnector?
797
+ ### identityResolverConnector? {#identityresolverconnector}
799
798
 
800
- > `optional` **identityProfileConnector**: `string`
799
+ > `optional` **identityResolverConnector?**: `string`
801
800
 
802
- The type of identity profile connector: entity-storage.
801
+ The type of identity resolver connector: entity-storage, iota.
803
802
 
804
803
  ***
805
804
 
806
- ### immutableProofVerificationMethodId?
805
+ ### iotaFaucetEndpoint? {#iotafaucetendpoint}
807
806
 
808
- > `optional` **immutableProofVerificationMethodId**: `string`
807
+ > `optional` **iotaFaucetEndpoint?**: `string`
809
808
 
810
- The identity verification method id to use with immutable proofs.
809
+ IOTA Faucet Endpoint.
811
810
 
812
811
  ***
813
812
 
814
- ### attestationConnector?
813
+ ### iotaNodeEndpoint? {#iotanodeendpoint}
815
814
 
816
- > `optional` **attestationConnector**: `string`
815
+ > `optional` **iotaNodeEndpoint?**: `string`
817
816
 
818
- The type of attestation connector: entity-storage, iota.
817
+ IOTA Node Endpoint.
819
818
 
820
819
  ***
821
820
 
822
- ### attestationVerificationMethodId?
821
+ ### iotaNetwork? {#iotanetwork}
823
822
 
824
- > `optional` **attestationVerificationMethodId**: `string`
823
+ > `optional` **iotaNetwork?**: `string`
825
824
 
826
- The identity verification method id to use with attestation.
825
+ IOTA network.
827
826
 
828
827
  ***
829
828
 
830
- ### dataProcessingEnabled?
829
+ ### iotaCoinType? {#iotacointype}
831
830
 
832
- > `optional` **dataProcessingEnabled**: `string`
831
+ > `optional` **iotaCoinType?**: `string`
833
832
 
834
- Is the data processing enabled, defaults to false.
833
+ IOTA coin type.
835
834
 
836
835
  ***
837
836
 
838
- ### dataConverterConnectors?
837
+ ### iotaExplorerEndpoint? {#iotaexplorerendpoint}
839
838
 
840
- > `optional` **dataConverterConnectors**: `string`
839
+ > `optional` **iotaExplorerEndpoint?**: `string`
841
840
 
842
- The type of the default data converters, can be a comma separated list: json, xml.
841
+ IOTA Explorer Endpoint.
843
842
 
844
843
  ***
845
844
 
846
- ### dataExtractorConnectors?
845
+ ### iotaGasStationEndpoint? {#iotagasstationendpoint}
847
846
 
848
- > `optional` **dataExtractorConnectors**: `string`
847
+ > `optional` **iotaGasStationEndpoint?**: `string`
849
848
 
850
- The type of the default data extractor, can be a comma separated list: json-path.
849
+ IOTA Gas Station Endpoint.
851
850
 
852
851
  ***
853
852
 
854
- ### auditableItemGraphEnabled?
853
+ ### iotaGasStationAuthToken? {#iotagasstationauthtoken}
855
854
 
856
- > `optional` **auditableItemGraphEnabled**: `string`
855
+ > `optional` **iotaGasStationAuthToken?**: `string`
857
856
 
858
- Is the auditable item graph enabled, defaults to false.
857
+ IOTA Gas Station Authentication Token.
859
858
 
860
859
  ***
861
860
 
862
- ### auditableItemStreamEnabled?
861
+ ### iotaIdentityPackageId? {#iotaidentitypackageid}
863
862
 
864
- > `optional` **auditableItemStreamEnabled**: `string`
863
+ > `optional` **iotaIdentityPackageId?**: `string`
865
864
 
866
- Is the auditable item stream enabled, defaults to false.
865
+ The IOTA Identity deployed package id, for custom deployments.
867
866
 
868
867
  ***
869
868
 
870
- ### documentManagementEnabled?
869
+ ### universalResolverEndpoint? {#universalresolverendpoint}
871
870
 
872
- > `optional` **documentManagementEnabled**: `string`
871
+ > `optional` **universalResolverEndpoint?**: `string`
873
872
 
874
- Is the document management enabled, defaults to false.
873
+ Universal Resolver Endpoint.
875
874
 
876
875
  ***
877
876
 
878
- ### synchronisedStorageEnabled?
877
+ ### identityProfileConnector? {#identityprofileconnector}
879
878
 
880
- > `optional` **synchronisedStorageEnabled**: `string`
879
+ > `optional` **identityProfileConnector?**: `string`
881
880
 
882
- Is the synchronised storage enabled, defaults to false.
881
+ The type of identity profile connector: entity-storage.
883
882
 
884
883
  ***
885
884
 
886
- ### synchronisedStorageTrustedUrl?
885
+ ### immutableProofVerificationMethodId? {#immutableproofverificationmethodid}
887
886
 
888
- > `optional` **synchronisedStorageTrustedUrl**: `string`
887
+ > `optional` **immutableProofVerificationMethodId?**: `string`
889
888
 
890
- Url which points to the api for a trusted synchronised storage node, not required if this is a trusted node.
889
+ The identity verification method id to use with immutable proofs.
891
890
 
892
891
  ***
893
892
 
894
- ### synchronisedStorageVerifiableStorageKeyId?
893
+ ### attestationConnector? {#attestationconnector}
895
894
 
896
- > `optional` **synchronisedStorageVerifiableStorageKeyId**: `string`
895
+ > `optional` **attestationConnector?**: `string`
897
896
 
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.
897
+ The type of attestation connector: entity-storage, iota.
900
898
 
901
899
  ***
902
900
 
903
- ### synchronisedStorageBlobStorageEncryptionKeyId?
901
+ ### attestationVerificationMethodId? {#attestationverificationmethodid}
904
902
 
905
- > `optional` **synchronisedStorageBlobStorageEncryptionKeyId**: `string`
903
+ > `optional` **attestationVerificationMethodId?**: `string`
906
904
 
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
905
+ The identity verification method id to use with attestation.
910
906
 
911
907
  ***
912
908
 
913
- ### synchronisedStorageBlobStorageKey?
909
+ ### dataProcessingEnabled? {#dataprocessingenabled}
914
910
 
915
- > `optional` **synchronisedStorageBlobStorageKey**: `string`
911
+ > `optional` **dataProcessingEnabled?**: `string`
916
912
 
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.
913
+ Is the data processing enabled, defaults to false.
919
914
 
920
915
  ***
921
916
 
922
- ### synchronisedStorageEntityUpdateIntervalMinutes?
917
+ ### dataConverterConnectors? {#dataconverterconnectors}
923
918
 
924
- > `optional` **synchronisedStorageEntityUpdateIntervalMinutes**: `string`
919
+ > `optional` **dataConverterConnectors?**: `string`
925
920
 
926
- How often to check for entity updates in minutes.
921
+ The type of the default data converters, can be a comma separated list: json, xml.
927
922
 
928
- #### Default
923
+ ***
929
924
 
930
- ```ts
931
- 5
932
- ```
925
+ ### dataExtractorConnectors? {#dataextractorconnectors}
926
+
927
+ > `optional` **dataExtractorConnectors?**: `string`
928
+
929
+ The type of the default data extractor, can be a comma separated list: json-path.
933
930
 
934
931
  ***
935
932
 
936
- ### synchronisedStorageConsolidationIntervalMinutes?
933
+ ### auditableItemGraphEnabled? {#auditableitemgraphenabled}
937
934
 
938
- > `optional` **synchronisedStorageConsolidationIntervalMinutes**: `string`
935
+ > `optional` **auditableItemGraphEnabled?**: `string`
939
936
 
940
- Interval to perform consolidation of changesets, only used if this is a trusted node.
937
+ Is the auditable item graph enabled, defaults to false.
941
938
 
942
- #### Default
939
+ ***
943
940
 
944
- ```ts
945
- 60
946
- ```
941
+ ### auditableItemStreamEnabled? {#auditableitemstreamenabled}
942
+
943
+ > `optional` **auditableItemStreamEnabled?**: `string`
944
+
945
+ Is the auditable item stream enabled, defaults to false.
947
946
 
948
947
  ***
949
948
 
950
- ### synchronisedStorageConsolidationBatchSize?
949
+ ### documentManagementEnabled? {#documentmanagementenabled}
951
950
 
952
- > `optional` **synchronisedStorageConsolidationBatchSize**: `string`
951
+ > `optional` **documentManagementEnabled?**: `string`
953
952
 
954
- The number of entities to process in a single consolidation batch, only used if this is a trusted node.
953
+ Is the document management enabled, defaults to false.
955
954
 
956
- #### Default
955
+ ***
957
956
 
958
- ```ts
959
- 1000
960
- ```
957
+ ### federatedCatalogueEnabled? {#federatedcatalogueenabled}
958
+
959
+ > `optional` **federatedCatalogueEnabled?**: `string`
960
+
961
+ Enable the federated catalogue, defaults to false, automatically enabled if remote endpoint, filters or dataspace is enabled.
961
962
 
962
963
  ***
963
964
 
964
- ### synchronisedStorageMaxConsolidations?
965
+ ### federatedCatalogueFilters? {#federatedcataloguefilters}
965
966
 
966
- > `optional` **synchronisedStorageMaxConsolidations**: `string`
967
+ > `optional` **federatedCatalogueFilters?**: `string`
967
968
 
968
- The maximum number of consolidations to keep in storage, only used if this is a trusted node.
969
+ Federated catalog filters, command separated list of filters to add.
969
970
 
970
- #### Default
971
+ ***
971
972
 
972
- ```ts
973
- 5
974
- ```
973
+ ### federatedCatalogueRemoteEndpoint? {#federatedcatalogueremoteendpoint}
974
+
975
+ > `optional` **federatedCatalogueRemoteEndpoint?**: `string`
976
+
977
+ Federated catalog remote endpoint, if set will use a REST client instead of local service.
975
978
 
976
979
  ***
977
980
 
978
- ### federatedCatalogueEnabled?
981
+ ### trustGenerators? {#trustgenerators}
979
982
 
980
- > `optional` **federatedCatalogueEnabled**: `string`
983
+ > `optional` **trustGenerators?**: `string`
981
984
 
982
- Is the federated catalogue enabled, defaults to false.
985
+ The trust generators to add to the factory, comma separated list.
983
986
 
984
987
  ***
985
988
 
986
- ### federatedCatalogueCacheTtlMs?
989
+ ### trustVerifiers? {#trustverifiers}
987
990
 
988
- > `optional` **federatedCatalogueCacheTtlMs**: `number`
991
+ > `optional` **trustVerifiers?**: `string`
989
992
 
990
- Federated catalog TTL for the cache.
993
+ The trust verifiers to add to the factory, comma separated list.
991
994
 
992
995
  ***
993
996
 
994
- ### federatedCatalogueClearingHouseApproverList?
997
+ ### trustVerificationMethodId? {#trustverificationmethodid}
995
998
 
996
- > `optional` **federatedCatalogueClearingHouseApproverList**: `string`
999
+ > `optional` **trustVerificationMethodId?**: `string`
997
1000
 
998
- Federated catalog clearing house approver list, stringified array of DIDs.
1001
+ The verification method to use for trust identities.
1002
+ Defaults to trust-assertion.
999
1003
 
1000
1004
  ***
1001
1005
 
1002
- ### rightsManagementEnabled?
1006
+ ### trustJwtTtlSeconds? {#trustjwtttlseconds}
1003
1007
 
1004
- > `optional` **rightsManagementEnabled**: `string`
1008
+ > `optional` **trustJwtTtlSeconds?**: `string`
1005
1009
 
1006
- Is the rights management enabled, defaults to false.
1010
+ The trust time to live for generating JWTs.
1011
+ Defaults to undefined for never expiring.
1007
1012
 
1008
1013
  ***
1009
1014
 
1010
- ### rightsManagementBaseCallbackUrl?
1015
+ ### trustIdentitiesAllow? {#trustidentitiesallow}
1011
1016
 
1012
- > `optional` **rightsManagementBaseCallbackUrl**: `string`
1017
+ > `optional` **trustIdentitiesAllow?**: `string`
1013
1018
 
1014
- What is the base callback url for rights management negotiations e.g. https://my-node/rights-management.
1019
+ The allow lists for the trust identity verifier, comma separated list of identities.
1015
1020
 
1016
1021
  ***
1017
1022
 
1018
- ### rightsManagementInformationSources?
1023
+ ### trustIdentitiesDeny? {#trustidentitiesdeny}
1019
1024
 
1020
- > `optional` **rightsManagementInformationSources**: `string`
1025
+ > `optional` **trustIdentitiesDeny?**: `string`
1021
1026
 
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.
1027
+ The deny lists for the trust identity verifier, comma separated list of identities.
1024
1028
 
1025
1029
  ***
1026
1030
 
1027
- ### rightsManagementNegotiators?
1031
+ ### rightsManagementCallbackPath? {#rightsmanagementcallbackpath}
1028
1032
 
1029
- > `optional` **rightsManagementNegotiators**: `string`
1033
+ > `optional` **rightsManagementCallbackPath?**: `string`
1030
1034
 
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.
1035
+ Path under which the rights management service is mounted (single source
1036
+ of truth). The same value drives:
1037
+ - the server route mount (via engine config)
1038
+ - the PNP service's callback URL builder (`buildCallbackUrl`)
1039
+ - the PNP rest-client's pathPrefix (consumer side)
1040
+ Defaults to `rights-management`. Set when deploying behind a reverse proxy
1041
+ with path rewriting, K8s ingress with path-based routing, or any custom
1042
+ mount point.
1033
1043
 
1034
1044
  ***
1035
1045
 
1036
- ### rightsManagementRequesters?
1046
+ ### rightsManagementPolicyInformationSources? {#rightsmanagementpolicyinformationsources}
1037
1047
 
1038
- > `optional` **rightsManagementRequesters**: `string`
1048
+ > `optional` **rightsManagementPolicyInformationSources?**: `string`
1039
1049
 
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.
1050
+ The rights management policy information sources to add to the factory.
1042
1051
 
1043
1052
  ***
1044
1053
 
1045
- ### rightsManagementExecutionActions?
1054
+ ### rightsManagementPolicyNegotiators? {#rightsmanagementpolicynegotiators}
1046
1055
 
1047
- > `optional` **rightsManagementExecutionActions**: `string`
1056
+ > `optional` **rightsManagementPolicyNegotiators?**: `string`
1048
1057
 
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.
1058
+ The rights management policy negotiators sources to add to the factory.
1051
1059
 
1052
1060
  ***
1053
1061
 
1054
- ### rightsManagementEnforcementProcessors?
1062
+ ### rightsManagementPolicyRequesters? {#rightsmanagementpolicyrequesters}
1055
1063
 
1056
- > `optional` **rightsManagementEnforcementProcessors**: `string`
1064
+ > `optional` **rightsManagementPolicyRequesters?**: `string`
1057
1065
 
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.
1066
+ The rights management policy requesters to add to the factory.
1060
1067
 
1061
1068
  ***
1062
1069
 
1063
- ### rightsManagementArbiters?
1070
+ ### rightsManagementPolicyExecutionActions? {#rightsmanagementpolicyexecutionactions}
1064
1071
 
1065
- > `optional` **rightsManagementArbiters**: `string`
1072
+ > `optional` **rightsManagementPolicyExecutionActions?**: `string`
1066
1073
 
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.
1074
+ The rights management policy execution actions to add to the factory.
1069
1075
 
1070
1076
  ***
1071
1077
 
1072
- ### rightsManagementOffers?
1078
+ ### rightsManagementPolicyEnforcementProcessors? {#rightsmanagementpolicyenforcementprocessors}
1073
1079
 
1074
- > `optional` **rightsManagementOffers**: `string`
1080
+ > `optional` **rightsManagementPolicyEnforcementProcessors?**: `string`
1075
1081
 
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.
1082
+ The rights management policy enforcement processors to add to the factory.
1078
1083
 
1079
1084
  ***
1080
1085
 
1081
- ### taskSchedulerEnabled?
1086
+ ### rightsManagementPolicyArbiters? {#rightsmanagementpolicyarbiters}
1082
1087
 
1083
- > `optional` **taskSchedulerEnabled**: `string`
1088
+ > `optional` **rightsManagementPolicyArbiters?**: `string`
1084
1089
 
1085
- Is the task scheduler enabled, defaults to false.
1090
+ The rights management policy arbiters to add to the factory.
1086
1091
 
1087
1092
  ***
1088
1093
 
1089
- ### dataSpaceConnectorEnabled?
1094
+ ### rightsManagementPolicyObligationEnforcers? {#rightsmanagementpolicyobligationenforcers}
1090
1095
 
1091
- > `optional` **dataSpaceConnectorEnabled**: `string`
1096
+ > `optional` **rightsManagementPolicyObligationEnforcers?**: `string`
1092
1097
 
1093
- Is the data space connector enabled, defaults to false.
1098
+ The rights management policy obligation enforcers to add to the factory.
1094
1099
 
1095
1100
  ***
1096
1101
 
1097
- ### dataSpaceConnectorRetainActivityLogsFor?
1102
+ ### dataspaceEnabled? {#dataspaceenabled}
1103
+
1104
+ > `optional` **dataspaceEnabled?**: `string`
1098
1105
 
1099
- > `optional` **dataSpaceConnectorRetainActivityLogsFor**: `string`
1106
+ Is the dataspace enabled, defaults to false.
1107
+
1108
+ ***
1109
+
1110
+ ### dataspaceRetainActivityLogsFor? {#dataspaceretainactivitylogsfor}
1111
+
1112
+ > `optional` **dataspaceRetainActivityLogsFor?**: `string`
1100
1113
 
1101
1114
  The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
1102
1115
 
@@ -1108,9 +1121,9 @@ The length of time to retain the activity logs for in minutes, set to -1 to keep
1108
1121
 
1109
1122
  ***
1110
1123
 
1111
- ### dataSpaceConnectorActivityLogsCleanUpInterval?
1124
+ ### dataspaceActivityLogsCleanupInterval? {#dataspaceactivitylogscleanupinterval}
1112
1125
 
1113
- > `optional` **dataSpaceConnectorActivityLogsCleanUpInterval**: `string`
1126
+ > `optional` **dataspaceActivityLogsCleanupInterval?**: `string`
1114
1127
 
1115
1128
  The interval for cleaning up the activity logs.
1116
1129
 
@@ -1122,25 +1135,61 @@ The interval for cleaning up the activity logs.
1122
1135
 
1123
1136
  ***
1124
1137
 
1125
- ### vcAuthenticationEnabled?
1138
+ ### dataspaceDataPlanePath? {#dataspacedataplanepath}
1139
+
1140
+ > `optional` **dataspaceDataPlanePath?**: `string`
1141
+
1142
+ The data plane path for PULL transfers (path only, not full URL).
1143
+ Will be combined with public origin from hosting component.
1144
+ Required if PULL transfers should be supported.
1145
+ Example: "dataspace/entities"
1146
+
1147
+ ***
1148
+
1149
+ ### healthEnabled? {#healthenabled}
1150
+
1151
+ > `optional` **healthEnabled?**: `string`
1152
+
1153
+ Are the health components enabled, defaults to false.
1154
+
1155
+ ***
1156
+
1157
+ ### healthIntervalSeconds? {#healthintervalseconds}
1158
+
1159
+ > `optional` **healthIntervalSeconds?**: `string`
1160
+
1161
+ The interval in seconds for performing health checks, defaults to 60.
1162
+
1163
+ ***
1164
+
1165
+ ### healthStartupIntervalSeconds? {#healthstartupintervalseconds}
1166
+
1167
+ > `optional` **healthStartupIntervalSeconds?**: `string`
1168
+
1169
+ The interval in seconds for performing health checks at startup, defaults to 2.
1170
+ This allows components that take a long time to initialize to be healthy before the first health check is performed.
1171
+
1172
+ ***
1173
+
1174
+ ### urlTransformerEncryptionKeyId? {#urltransformerencryptionkeyid}
1126
1175
 
1127
- > `optional` **vcAuthenticationEnabled**: `string`
1176
+ > `optional` **urlTransformerEncryptionKeyId?**: `string`
1128
1177
 
1129
- Enable verifiable credential authentication for the API.
1178
+ The id of the key in the vault to use for encrypting parameters in url transformer.
1130
1179
 
1131
1180
  ***
1132
1181
 
1133
- ### vcAuthenticationVerificationMethodId?
1182
+ ### automationActionTypes? {#automationactiontypes}
1134
1183
 
1135
- > `optional` **vcAuthenticationVerificationMethodId**: `string`
1184
+ > `optional` **automationActionTypes?**: `string`
1136
1185
 
1137
- Verifiable credential assertion for node to node communication.
1138
- Defaults to node-authentication-assertion.
1186
+ The type of the automation action to create, comma separate for more than one connector.
1187
+ values: fetch
1139
1188
 
1140
1189
  ***
1141
1190
 
1142
- ### extensions?
1191
+ ### extensions? {#extensions}
1143
1192
 
1144
- > `optional` **extensions**: `string`
1193
+ > `optional` **extensions?**: `string`
1145
1194
 
1146
1195
  A comma separated list of additional node extensions to load, the initialiseExtension method will be called for each extension.