@twin.org/node-core 0.0.3-next.12 → 0.0.3-next.14
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 +11 -25
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/builders/engineServerEnvBuilder.js +0 -8
- package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
- package/dist/es/commands/bootstrapLegacy.js +3 -3
- package/dist/es/commands/bootstrapLegacy.js.map +1 -1
- package/dist/es/defaults.js +2 -3
- package/dist/es/defaults.js.map +1 -1
- package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
- package/dist/es/node.js +5 -5
- package/dist/es/node.js.map +1 -1
- package/dist/types/defaults.d.ts +1 -1
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +10 -10
- package/docs/changelog.md +16 -0
- package/docs/reference/index.md +1 -1
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +18 -18
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +26 -26
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +26 -26
- package/docs/reference/variables/TRUST_VERIFICATION_METHOD_ID.md +3 -0
- package/locales/en.json +1 -1
- package/package.json +1 -1
- package/docs/reference/variables/VC_AUTHENTICATION_VERIFICATION_METHOD_ID.md +0 -3
|
@@ -802,6 +802,18 @@ The type of the default vault connector: entity-storage, hashicorp.
|
|
|
802
802
|
|
|
803
803
|
***
|
|
804
804
|
|
|
805
|
+
### vaultPrefix?
|
|
806
|
+
|
|
807
|
+
> `optional` **vaultPrefix**: `string`
|
|
808
|
+
|
|
809
|
+
Prefix to prepend to entries in the vault.
|
|
810
|
+
|
|
811
|
+
#### Inherited from
|
|
812
|
+
|
|
813
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`vaultPrefix`](IEngineServerEnvironmentVariables.md#vaultprefix)
|
|
814
|
+
|
|
815
|
+
***
|
|
816
|
+
|
|
805
817
|
### hashicorpVaultToken?
|
|
806
818
|
|
|
807
819
|
> `optional` **hashicorpVaultToken**: `string`
|
|
@@ -1495,7 +1507,7 @@ The trust verifiers to add to the factory, comma separated list.
|
|
|
1495
1507
|
> `optional` **trustVerificationMethodId**: `string`
|
|
1496
1508
|
|
|
1497
1509
|
The verification method to use for trust identities.
|
|
1498
|
-
Defaults to
|
|
1510
|
+
Defaults to trust-assertion.
|
|
1499
1511
|
|
|
1500
1512
|
#### Inherited from
|
|
1501
1513
|
|
|
@@ -1503,6 +1515,19 @@ Defaults to node-authentication-assertion.
|
|
|
1503
1515
|
|
|
1504
1516
|
***
|
|
1505
1517
|
|
|
1518
|
+
### trustJwtTtlSeconds?
|
|
1519
|
+
|
|
1520
|
+
> `optional` **trustJwtTtlSeconds**: `string`
|
|
1521
|
+
|
|
1522
|
+
The trust time to live for generating JWTs.
|
|
1523
|
+
Defaults to undefined for never expiring.
|
|
1524
|
+
|
|
1525
|
+
#### Inherited from
|
|
1526
|
+
|
|
1527
|
+
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`trustJwtTtlSeconds`](IEngineServerEnvironmentVariables.md#trustjwtttlseconds)
|
|
1528
|
+
|
|
1529
|
+
***
|
|
1530
|
+
|
|
1506
1531
|
### rightsManagementEnabled?
|
|
1507
1532
|
|
|
1508
1533
|
> `optional` **rightsManagementEnabled**: `string`
|
|
@@ -1683,31 +1708,6 @@ The interval for cleaning up the activity logs.
|
|
|
1683
1708
|
|
|
1684
1709
|
***
|
|
1685
1710
|
|
|
1686
|
-
### vcAuthenticationEnabled?
|
|
1687
|
-
|
|
1688
|
-
> `optional` **vcAuthenticationEnabled**: `string`
|
|
1689
|
-
|
|
1690
|
-
Enable verifiable credential authentication for the API.
|
|
1691
|
-
|
|
1692
|
-
#### Inherited from
|
|
1693
|
-
|
|
1694
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`vcAuthenticationEnabled`](IEngineServerEnvironmentVariables.md#vcauthenticationenabled)
|
|
1695
|
-
|
|
1696
|
-
***
|
|
1697
|
-
|
|
1698
|
-
### vcAuthenticationVerificationMethodId?
|
|
1699
|
-
|
|
1700
|
-
> `optional` **vcAuthenticationVerificationMethodId**: `string`
|
|
1701
|
-
|
|
1702
|
-
Verifiable credential assertion for node to node communication.
|
|
1703
|
-
Defaults to node-authentication-assertion.
|
|
1704
|
-
|
|
1705
|
-
#### Inherited from
|
|
1706
|
-
|
|
1707
|
-
[`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md).[`vcAuthenticationVerificationMethodId`](IEngineServerEnvironmentVariables.md#vcauthenticationverificationmethodid)
|
|
1708
|
-
|
|
1709
|
-
***
|
|
1710
|
-
|
|
1711
1711
|
### extensions?
|
|
1712
1712
|
|
|
1713
1713
|
> `optional` **extensions**: `string`
|
package/locales/en.json
CHANGED
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"labels": {
|
|
82
82
|
"nodeIdentityCreate": "Creating node identity",
|
|
83
83
|
"nodeAuthKeyCreate": "Creating node auth key",
|
|
84
|
-
"
|
|
84
|
+
"trustVerificationMethodCreate": "Creating trust verification method for node identity",
|
|
85
85
|
"synchronisedStorageKeyAdd": "Adding synchronised storage key for node identity",
|
|
86
86
|
"nodeIdentitySet": "Setting node identity",
|
|
87
87
|
"nodeTenantCreate": "Creating node tenant",
|
package/package.json
CHANGED