@twin.org/node-core 0.0.3-next.1 → 0.0.3-next.10
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/dist/es/builders/engineEnvBuilder.js +155 -74
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/builders/engineServerEnvBuilder.js +24 -15
- package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
- package/dist/es/builders/extensionsBuilder.js +26 -17
- package/dist/es/builders/extensionsBuilder.js.map +1 -1
- package/dist/es/cli.js +255 -0
- package/dist/es/cli.js.map +1 -0
- package/dist/es/commands/bootstrapLegacy.js +175 -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 +310 -0
- package/dist/es/commands/identityCreate.js.map +1 -0
- package/dist/es/commands/identityImports.js +76 -0
- package/dist/es/commands/identityImports.js.map +1 -0
- package/dist/es/commands/identityVerifiableCredentialCreate.js +140 -0
- package/dist/es/commands/identityVerifiableCredentialCreate.js.map +1 -0
- package/dist/es/commands/identityVerificationMethodCreate.js +208 -0
- package/dist/es/commands/identityVerificationMethodCreate.js.map +1 -0
- package/dist/es/commands/identityVerificationMethodImport.js +120 -0
- package/dist/es/commands/identityVerificationMethodImport.js.map +1 -0
- package/dist/es/commands/nodeSetIdentity.js +51 -0
- package/dist/es/commands/nodeSetIdentity.js.map +1 -0
- package/dist/es/commands/nodeSetTenant.js +49 -0
- package/dist/es/commands/nodeSetTenant.js.map +1 -0
- package/dist/es/commands/tenantCreate.js +120 -0
- package/dist/es/commands/tenantCreate.js.map +1 -0
- package/dist/es/commands/tenantImport.js +78 -0
- package/dist/es/commands/tenantImport.js.map +1 -0
- package/dist/es/commands/userCreate.js +197 -0
- package/dist/es/commands/userCreate.js.map +1 -0
- package/dist/es/commands/vaultKeyCreate.js +185 -0
- package/dist/es/commands/vaultKeyCreate.js.map +1 -0
- package/dist/es/commands/vaultKeyImport.js +98 -0
- package/dist/es/commands/vaultKeyImport.js.map +1 -0
- package/dist/es/defaults.js +20 -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/INodeEngineState.js.map +1 -1
- package/dist/es/models/INodeEnvironmentVariables.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 +55 -35
- package/dist/es/node.js.map +1 -1
- package/dist/es/start.js +128 -0
- package/dist/es/start.js.map +1 -0
- package/dist/es/utils.js +1 -22
- package/dist/es/utils.js.map +1 -1
- package/dist/types/builders/engineEnvBuilder.d.ts +4 -1
- package/dist/types/builders/engineServerEnvBuilder.d.ts +5 -2
- package/dist/types/cli.d.ts +66 -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 +35 -0
- package/dist/types/commands/tenantImport.d.ts +24 -0
- package/dist/types/commands/userCreate.d.ts +46 -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 +11 -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 +51 -42
- package/dist/types/models/INodeEngineState.d.ts +0 -8
- package/dist/types/models/INodeEnvironmentVariables.d.ts +0 -38
- package/dist/types/models/cliCommandParamType.d.ts +4 -0
- package/dist/types/node.d.ts +6 -2
- package/dist/types/{server.d.ts → start.d.ts} +7 -2
- package/dist/types/utils.d.ts +0 -8
- package/docs/changelog.md +63 -0
- package/docs/reference/functions/buildConfiguration.md +2 -2
- package/docs/reference/functions/buildEngineConfiguration.md +1 -1
- package/docs/reference/functions/buildEngineServerConfiguration.md +3 -3
- 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/initCli.md +27 -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/run.md +7 -1
- package/docs/reference/functions/start.md +10 -4
- package/docs/reference/functions/substituteEnvOptions.md +25 -0
- package/docs/reference/index.md +15 -12
- 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 +90 -65
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +129 -88
- package/docs/reference/interfaces/INodeEngineState.md +0 -16
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +129 -172
- package/docs/reference/type-aliases/CliCommandParamType.md +5 -0
- package/docs/reference/variables/CONTEXT_ID_HANDLER_FEATURE_DID.md +3 -0
- package/docs/reference/variables/CONTEXT_ID_HANDLER_FEATURE_TENANT.md +3 -0
- package/docs/reference/variables/VC_AUTHENTICATION_VERIFICATION_METHOD_ID.md +1 -1
- package/locales/en.json +463 -30
- package/package.json +3 -1
- package/dist/es/bootstrap.js +0 -374
- 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 -74
- package/dist/es/server.js.map +0 -1
- package/dist/types/bootstrap.d.ts +0 -76
- package/dist/types/identity.d.ts +0 -14
- package/dist/types/models/nodeFeatures.d.ts +0 -21
- 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/bootstrapContextIdHandlers.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
|
@@ -20,63 +20,63 @@ Start the engine in debug mode.
|
|
|
20
20
|
|
|
21
21
|
***
|
|
22
22
|
|
|
23
|
-
###
|
|
23
|
+
### silent?
|
|
24
24
|
|
|
25
|
-
> `optional` **
|
|
25
|
+
> `optional` **silent**: `string`
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
Start the engine in silent mode.
|
|
28
28
|
|
|
29
29
|
#### Inherited from
|
|
30
30
|
|
|
31
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
31
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`silent`](IEngineServerEnvironmentVariables.md#silent)
|
|
32
32
|
|
|
33
33
|
***
|
|
34
34
|
|
|
35
|
-
###
|
|
35
|
+
### storageFileRoot?
|
|
36
36
|
|
|
37
|
-
> `optional` **
|
|
37
|
+
> `optional` **storageFileRoot**: `string`
|
|
38
38
|
|
|
39
|
-
The
|
|
39
|
+
The root directory for storing items like state file.
|
|
40
40
|
|
|
41
41
|
#### Inherited from
|
|
42
42
|
|
|
43
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
43
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`storageFileRoot`](IEngineServerEnvironmentVariables.md#storagefileroot)
|
|
44
44
|
|
|
45
45
|
***
|
|
46
46
|
|
|
47
|
-
###
|
|
47
|
+
### stateFilename?
|
|
48
48
|
|
|
49
|
-
> `optional` **
|
|
49
|
+
> `optional` **stateFilename**: `string`
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
The name of the state file.
|
|
52
52
|
|
|
53
53
|
#### Inherited from
|
|
54
54
|
|
|
55
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
55
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`stateFilename`](IEngineServerEnvironmentVariables.md#statefilename)
|
|
56
56
|
|
|
57
57
|
***
|
|
58
58
|
|
|
59
|
-
###
|
|
59
|
+
### nodeIdentityEnabled?
|
|
60
60
|
|
|
61
|
-
> `optional` **
|
|
61
|
+
> `optional` **nodeIdentityEnabled**: `string`
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
Does the node have a unique ID, defaults to true.
|
|
64
64
|
|
|
65
65
|
#### Inherited from
|
|
66
66
|
|
|
67
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
67
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`nodeIdentityEnabled`](IEngineServerEnvironmentVariables.md#nodeidentityenabled)
|
|
68
68
|
|
|
69
69
|
***
|
|
70
70
|
|
|
71
|
-
###
|
|
71
|
+
### tenantEnabled?
|
|
72
72
|
|
|
73
|
-
> `optional` **
|
|
73
|
+
> `optional` **tenantEnabled**: `string`
|
|
74
74
|
|
|
75
|
-
|
|
75
|
+
Is multi-tenant support enabled, defaults to false.
|
|
76
76
|
|
|
77
77
|
#### Inherited from
|
|
78
78
|
|
|
79
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
79
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`tenantEnabled`](IEngineServerEnvironmentVariables.md#tenantenabled)
|
|
80
80
|
|
|
81
81
|
***
|
|
82
82
|
|
|
@@ -177,6 +177,18 @@ AWS Dynamo DB secret access key.
|
|
|
177
177
|
|
|
178
178
|
***
|
|
179
179
|
|
|
180
|
+
### awsDynamodbConnectionTimeoutMs?
|
|
181
|
+
|
|
182
|
+
> `optional` **awsDynamodbConnectionTimeoutMs**: `string`
|
|
183
|
+
|
|
184
|
+
AWS Dynamo DB connection timeout.
|
|
185
|
+
|
|
186
|
+
#### Inherited from
|
|
187
|
+
|
|
188
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`awsDynamodbConnectionTimeoutMs`](IEngineServerEnvironmentVariables.md#awsdynamodbconnectiontimeoutms)
|
|
189
|
+
|
|
190
|
+
***
|
|
191
|
+
|
|
180
192
|
### azureCosmosdbKey?
|
|
181
193
|
|
|
182
194
|
> `optional` **azureCosmosdbKey**: `string`
|
|
@@ -598,19 +610,6 @@ The id of the encryption key for the blob storage.
|
|
|
598
610
|
|
|
599
611
|
***
|
|
600
612
|
|
|
601
|
-
### blobStorageSymmetricEncryptionKey?
|
|
602
|
-
|
|
603
|
-
> `optional` **blobStorageSymmetricEncryptionKey**: `string`
|
|
604
|
-
|
|
605
|
-
A symmetric encryption key for the blob storage, should be ChaCha20Poly1305 in base64 format.
|
|
606
|
-
If encryption is enabled but a key is not provided one will be generated.
|
|
607
|
-
|
|
608
|
-
#### Inherited from
|
|
609
|
-
|
|
610
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`blobStorageSymmetricEncryptionKey`](IEngineServerEnvironmentVariables.md#blobstoragesymmetricencryptionkey)
|
|
611
|
-
|
|
612
|
-
***
|
|
613
|
-
|
|
614
613
|
### blobStoragePrefix?
|
|
615
614
|
|
|
616
615
|
> `optional` **blobStoragePrefix**: `string`
|
|
@@ -839,18 +838,6 @@ The type of logging task connector, can be a comma separated list: console, enti
|
|
|
839
838
|
|
|
840
839
|
***
|
|
841
840
|
|
|
842
|
-
### backgroundTaskConnector?
|
|
843
|
-
|
|
844
|
-
> `optional` **backgroundTaskConnector**: `string`
|
|
845
|
-
|
|
846
|
-
The type of background task connector: entity-storage.
|
|
847
|
-
|
|
848
|
-
#### Inherited from
|
|
849
|
-
|
|
850
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`backgroundTaskConnector`](IEngineServerEnvironmentVariables.md#backgroundtaskconnector)
|
|
851
|
-
|
|
852
|
-
***
|
|
853
|
-
|
|
854
841
|
### eventBusConnector?
|
|
855
842
|
|
|
856
843
|
> `optional` **eventBusConnector**: `string`
|
|
@@ -1055,6 +1042,18 @@ The type of identity connector: entity-storage, iota.
|
|
|
1055
1042
|
|
|
1056
1043
|
***
|
|
1057
1044
|
|
|
1045
|
+
### identityWalletAddressIndex?
|
|
1046
|
+
|
|
1047
|
+
> `optional` **identityWalletAddressIndex**: `string`
|
|
1048
|
+
|
|
1049
|
+
The index of the wallet address to use, defaults to 0.
|
|
1050
|
+
|
|
1051
|
+
#### Inherited from
|
|
1052
|
+
|
|
1053
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`identityWalletAddressIndex`](IEngineServerEnvironmentVariables.md#identitywalletaddressindex)
|
|
1054
|
+
|
|
1055
|
+
***
|
|
1056
|
+
|
|
1058
1057
|
### identityResolverConnector?
|
|
1059
1058
|
|
|
1060
1059
|
> `optional` **identityResolverConnector**: `string`
|
|
@@ -1443,27 +1442,64 @@ Is the federated catalogue enabled, defaults to false.
|
|
|
1443
1442
|
|
|
1444
1443
|
***
|
|
1445
1444
|
|
|
1446
|
-
###
|
|
1445
|
+
### federatedCatalogueFilters?
|
|
1446
|
+
|
|
1447
|
+
> `optional` **federatedCatalogueFilters**: `string`
|
|
1448
|
+
|
|
1449
|
+
Federated catalog filters, command separated list of filters to add.
|
|
1450
|
+
|
|
1451
|
+
#### Inherited from
|
|
1452
|
+
|
|
1453
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`federatedCatalogueFilters`](IEngineServerEnvironmentVariables.md#federatedcataloguefilters)
|
|
1454
|
+
|
|
1455
|
+
***
|
|
1456
|
+
|
|
1457
|
+
### trustEnabled?
|
|
1458
|
+
|
|
1459
|
+
> `optional` **trustEnabled**: `string`
|
|
1460
|
+
|
|
1461
|
+
Is the trust management enabled, defaults to false.
|
|
1462
|
+
|
|
1463
|
+
#### Inherited from
|
|
1464
|
+
|
|
1465
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`trustEnabled`](IEngineServerEnvironmentVariables.md#trustenabled)
|
|
1466
|
+
|
|
1467
|
+
***
|
|
1468
|
+
|
|
1469
|
+
### trustGenerators?
|
|
1447
1470
|
|
|
1448
|
-
> `optional` **
|
|
1471
|
+
> `optional` **trustGenerators**: `string`
|
|
1449
1472
|
|
|
1450
|
-
|
|
1473
|
+
The trust generators to add to the factory, comma separated list.
|
|
1451
1474
|
|
|
1452
1475
|
#### Inherited from
|
|
1453
1476
|
|
|
1454
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1477
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`trustGenerators`](IEngineServerEnvironmentVariables.md#trustgenerators)
|
|
1455
1478
|
|
|
1456
1479
|
***
|
|
1457
1480
|
|
|
1458
|
-
###
|
|
1481
|
+
### trustVerifiers?
|
|
1459
1482
|
|
|
1460
|
-
> `optional` **
|
|
1483
|
+
> `optional` **trustVerifiers**: `string`
|
|
1461
1484
|
|
|
1462
|
-
|
|
1485
|
+
The trust verifiers to add to the factory, comma separated list.
|
|
1463
1486
|
|
|
1464
1487
|
#### Inherited from
|
|
1465
1488
|
|
|
1466
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1489
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`trustVerifiers`](IEngineServerEnvironmentVariables.md#trustverifiers)
|
|
1490
|
+
|
|
1491
|
+
***
|
|
1492
|
+
|
|
1493
|
+
### trustVerificationMethodId?
|
|
1494
|
+
|
|
1495
|
+
> `optional` **trustVerificationMethodId**: `string`
|
|
1496
|
+
|
|
1497
|
+
The verification method to use for trust identities.
|
|
1498
|
+
Defaults to node-authentication-assertion.
|
|
1499
|
+
|
|
1500
|
+
#### Inherited from
|
|
1501
|
+
|
|
1502
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`trustVerificationMethodId`](IEngineServerEnvironmentVariables.md#trustverificationmethodid)
|
|
1467
1503
|
|
|
1468
1504
|
***
|
|
1469
1505
|
|
|
@@ -1491,94 +1527,99 @@ What is the base callback url for rights management negotiations e.g. https://my
|
|
|
1491
1527
|
|
|
1492
1528
|
***
|
|
1493
1529
|
|
|
1494
|
-
###
|
|
1530
|
+
### rightsManagementPolicyInformationSources?
|
|
1495
1531
|
|
|
1496
|
-
> `optional` **
|
|
1532
|
+
> `optional` **rightsManagementPolicyInformationSources**: `string`
|
|
1497
1533
|
|
|
1498
|
-
The rights management
|
|
1499
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1534
|
+
The rights management policy information sources to add to the factory.
|
|
1500
1535
|
|
|
1501
1536
|
#### Inherited from
|
|
1502
1537
|
|
|
1503
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1538
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyInformationSources`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicyinformationsources)
|
|
1504
1539
|
|
|
1505
1540
|
***
|
|
1506
1541
|
|
|
1507
|
-
###
|
|
1542
|
+
### rightsManagementPolicyNegotiators?
|
|
1508
1543
|
|
|
1509
|
-
> `optional` **
|
|
1544
|
+
> `optional` **rightsManagementPolicyNegotiators**: `string`
|
|
1510
1545
|
|
|
1511
|
-
The rights management
|
|
1512
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1546
|
+
The rights management policy negotiators sources to add to the factory.
|
|
1513
1547
|
|
|
1514
1548
|
#### Inherited from
|
|
1515
1549
|
|
|
1516
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1550
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyNegotiators`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicynegotiators)
|
|
1517
1551
|
|
|
1518
1552
|
***
|
|
1519
1553
|
|
|
1520
|
-
###
|
|
1554
|
+
### rightsManagementPolicyRequesters?
|
|
1521
1555
|
|
|
1522
|
-
> `optional` **
|
|
1556
|
+
> `optional` **rightsManagementPolicyRequesters**: `string`
|
|
1523
1557
|
|
|
1524
|
-
The rights management
|
|
1525
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1558
|
+
The rights management policy requesters to add to the factory.
|
|
1526
1559
|
|
|
1527
1560
|
#### Inherited from
|
|
1528
1561
|
|
|
1529
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1562
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyRequesters`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicyrequesters)
|
|
1530
1563
|
|
|
1531
1564
|
***
|
|
1532
1565
|
|
|
1533
|
-
###
|
|
1566
|
+
### rightsManagementPolicyExecutionActions?
|
|
1534
1567
|
|
|
1535
|
-
> `optional` **
|
|
1568
|
+
> `optional` **rightsManagementPolicyExecutionActions**: `string`
|
|
1536
1569
|
|
|
1537
|
-
The rights management
|
|
1538
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1570
|
+
The rights management policy execution actions to add to the factory.
|
|
1539
1571
|
|
|
1540
1572
|
#### Inherited from
|
|
1541
1573
|
|
|
1542
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1574
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyExecutionActions`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicyexecutionactions)
|
|
1543
1575
|
|
|
1544
1576
|
***
|
|
1545
1577
|
|
|
1546
|
-
###
|
|
1578
|
+
### rightsManagementPolicyEnforcementProcessors?
|
|
1547
1579
|
|
|
1548
|
-
> `optional` **
|
|
1580
|
+
> `optional` **rightsManagementPolicyEnforcementProcessors**: `string`
|
|
1549
1581
|
|
|
1550
|
-
The rights management
|
|
1551
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1582
|
+
The rights management policy enforcement processors to add to the factory.
|
|
1552
1583
|
|
|
1553
1584
|
#### Inherited from
|
|
1554
1585
|
|
|
1555
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1586
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyEnforcementProcessors`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicyenforcementprocessors)
|
|
1556
1587
|
|
|
1557
1588
|
***
|
|
1558
1589
|
|
|
1559
|
-
###
|
|
1590
|
+
### rightsManagementPolicyArbiters?
|
|
1560
1591
|
|
|
1561
|
-
> `optional` **
|
|
1592
|
+
> `optional` **rightsManagementPolicyArbiters**: `string`
|
|
1562
1593
|
|
|
1563
|
-
The rights management
|
|
1564
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1594
|
+
The rights management policy arbiters to add to the factory.
|
|
1565
1595
|
|
|
1566
1596
|
#### Inherited from
|
|
1567
1597
|
|
|
1568
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1598
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementPolicyArbiters`](IEngineServerEnvironmentVariables.md#rightsmanagementpolicyarbiters)
|
|
1569
1599
|
|
|
1570
1600
|
***
|
|
1571
1601
|
|
|
1572
|
-
###
|
|
1602
|
+
### rightsManagementDataAccessHandlers?
|
|
1573
1603
|
|
|
1574
|
-
> `optional` **
|
|
1604
|
+
> `optional` **rightsManagementDataAccessHandlers**: `string`
|
|
1575
1605
|
|
|
1576
|
-
The rights management
|
|
1577
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1606
|
+
The rights management data access handlers to add to the factory.
|
|
1578
1607
|
|
|
1579
1608
|
#### Inherited from
|
|
1580
1609
|
|
|
1581
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`
|
|
1610
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`rightsManagementDataAccessHandlers`](IEngineServerEnvironmentVariables.md#rightsmanagementdataaccesshandlers)
|
|
1611
|
+
|
|
1612
|
+
***
|
|
1613
|
+
|
|
1614
|
+
### backgroundTasksEnabled?
|
|
1615
|
+
|
|
1616
|
+
> `optional` **backgroundTasksEnabled**: `string`
|
|
1617
|
+
|
|
1618
|
+
Are background tasks enabled, defaults to false.
|
|
1619
|
+
|
|
1620
|
+
#### Inherited from
|
|
1621
|
+
|
|
1622
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`backgroundTasksEnabled`](IEngineServerEnvironmentVariables.md#backgroundtasksenabled)
|
|
1582
1623
|
|
|
1583
1624
|
***
|
|
1584
1625
|
|
|
@@ -1835,90 +1876,6 @@ List of properties to obfuscate in the REST logging output, comma separated.
|
|
|
1835
1876
|
|
|
1836
1877
|
***
|
|
1837
1878
|
|
|
1838
|
-
### features?
|
|
1839
|
-
|
|
1840
|
-
> `optional` **features**: `string`
|
|
1841
|
-
|
|
1842
|
-
The features that are enabled on the node.
|
|
1843
|
-
|
|
1844
|
-
#### Default
|
|
1845
|
-
|
|
1846
|
-
```ts
|
|
1847
|
-
[]
|
|
1848
|
-
```
|
|
1849
|
-
|
|
1850
|
-
***
|
|
1851
|
-
|
|
1852
|
-
### nodeIdentity?
|
|
1853
|
-
|
|
1854
|
-
> `optional` **nodeIdentity**: `string`
|
|
1855
|
-
|
|
1856
|
-
The identity of the node which, if empty and node-identity feature is enabled it will be generated.
|
|
1857
|
-
|
|
1858
|
-
***
|
|
1859
|
-
|
|
1860
|
-
### nodeMnemonic?
|
|
1861
|
-
|
|
1862
|
-
> `optional` **nodeMnemonic**: `string`
|
|
1863
|
-
|
|
1864
|
-
The mnemonic for the identity, if empty and node-identity feature is enabled it will be randomly generated.
|
|
1865
|
-
|
|
1866
|
-
***
|
|
1867
|
-
|
|
1868
|
-
### organizationIdentity?
|
|
1869
|
-
|
|
1870
|
-
> `optional` **organizationIdentity**: `string`
|
|
1871
|
-
|
|
1872
|
-
If the node-admin-user feature is enabled, this will be the organization of the user, if one is not provided it will be generated
|
|
1873
|
-
|
|
1874
|
-
***
|
|
1875
|
-
|
|
1876
|
-
### organizationMnemonic?
|
|
1877
|
-
|
|
1878
|
-
> `optional` **organizationMnemonic**: `string`
|
|
1879
|
-
|
|
1880
|
-
The mnemonic for the organization, if empty and node-admin-user feature is enabled it will be randomly generated.
|
|
1881
|
-
|
|
1882
|
-
***
|
|
1883
|
-
|
|
1884
|
-
### adminUserIdentity?
|
|
1885
|
-
|
|
1886
|
-
> `optional` **adminUserIdentity**: `string`
|
|
1887
|
-
|
|
1888
|
-
If the node-admin-user feature is enabled, this will be the identity of the user, if one is not provided it will be generated
|
|
1889
|
-
|
|
1890
|
-
***
|
|
1891
|
-
|
|
1892
|
-
### adminUserMnemonic?
|
|
1893
|
-
|
|
1894
|
-
> `optional` **adminUserMnemonic**: `string`
|
|
1895
|
-
|
|
1896
|
-
The mnemonic for the admin user, if empty and node-admin-user feature is enabled it will be randomly generated.
|
|
1897
|
-
|
|
1898
|
-
***
|
|
1899
|
-
|
|
1900
|
-
### adminUserName?
|
|
1901
|
-
|
|
1902
|
-
> `optional` **adminUserName**: `string`
|
|
1903
|
-
|
|
1904
|
-
If the node-admin-user feature is enabled, this will be the name of the user.
|
|
1905
|
-
|
|
1906
|
-
#### Default
|
|
1907
|
-
|
|
1908
|
-
```ts
|
|
1909
|
-
admin@node
|
|
1910
|
-
```
|
|
1911
|
-
|
|
1912
|
-
***
|
|
1913
|
-
|
|
1914
|
-
### adminUserPassword?
|
|
1915
|
-
|
|
1916
|
-
> `optional` **adminUserPassword**: `string`
|
|
1917
|
-
|
|
1918
|
-
If the node-admin-user feature is enabled, this will be the password of the user, if empty it will be randomly generated.
|
|
1919
|
-
|
|
1920
|
-
***
|
|
1921
|
-
|
|
1922
1879
|
### extensionsMaxSizeMb?
|
|
1923
1880
|
|
|
1924
1881
|
> `optional` **extensionsMaxSizeMb**: `number`
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# Variable: VC\_AUTHENTICATION\_VERIFICATION\_METHOD\_ID
|
|
2
2
|
|
|
3
|
-
> `const` **VC\_AUTHENTICATION\_VERIFICATION\_METHOD\_ID**: `"
|
|
3
|
+
> `const` **VC\_AUTHENTICATION\_VERIFICATION\_METHOD\_ID**: `"vc-authentication-assertion"` = `"vc-authentication-assertion"`
|