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

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