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