@twin.org/node-core 0.0.3-next.6 → 0.0.3-next.60

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