@twin.org/node-core 0.0.2-next.3 → 0.0.2-next.5
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/cjs/index.cjs +263 -162
- package/dist/esm/index.mjs +264 -163
- package/dist/types/bootstrap.d.ts +9 -9
- package/dist/types/builders/engineServerEnvBuilder.d.ts +2 -1
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +63 -9
- package/dist/types/models/INodeOptions.d.ts +4 -0
- package/dist/types/models/nodeFeatures.d.ts +4 -0
- package/docs/changelog.md +14 -0
- package/docs/reference/functions/{bootstrapAttestationMethod.md → bootstrapSynchronisedStorage.md} +3 -3
- package/docs/reference/functions/buildEngineServerConfiguration.md +7 -1
- package/docs/reference/index.md +1 -1
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +133 -15
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +183 -21
- package/docs/reference/interfaces/INodeOptions.md +8 -0
- package/docs/reference/variables/NodeFeatures.md +6 -0
- package/locales/en.json +6 -4
- package/package.json +2 -2
|
@@ -17,3 +17,9 @@ NodeIdentity - generates an identity for the node if not provided in config.
|
|
|
17
17
|
> `readonly` **NodeUser**: `"node-user"` = `"node-user"`
|
|
18
18
|
|
|
19
19
|
NodeUser - generates a user for the node if not provided in config.
|
|
20
|
+
|
|
21
|
+
### NodeWallet
|
|
22
|
+
|
|
23
|
+
> `readonly` **NodeWallet**: `"node-wallet"` = `"node-wallet"`
|
|
24
|
+
|
|
25
|
+
NodeWallet - generates a wallet for the node and funds it when there is a faucet available.
|
package/locales/en.json
CHANGED
|
@@ -19,12 +19,14 @@
|
|
|
19
19
|
"existingNodeUser": "Node user already exists \"{email}\"",
|
|
20
20
|
"creatingAuthKey": "Creating authentication key \"{keyName}\"",
|
|
21
21
|
"existingAuthKey": "Authentication key already exists \"{keyName}\"",
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"existingImmutableProof": "Immutable proof verification method already exists \"{methodId}\"",
|
|
22
|
+
"addingVerificationMethod": "Adding {title} verification method \"{methodId}\"",
|
|
23
|
+
"existingVerificationMethod": "Verification method for {title} already exists \"{methodId}\"",
|
|
24
|
+
"addingBlobEncryptionKey": "Adding blob encryption key \"{keyName}\"",
|
|
26
25
|
"creatingBlobEncryptionKey": "Creating blob encryption key \"{keyName}\"",
|
|
26
|
+
"createdBlobEncryptionKey": "Created blob encryption key \"{keyName}\" with value \"{keyValue}\"",
|
|
27
27
|
"existingBlobEncryptionKey": "Blob encryption key already exists \"{keyName}\"",
|
|
28
|
+
"addingSynchronisedStorageBlobEncryptionKey": "Adding synchronised storage blob encryption key \"{keyName}\"",
|
|
29
|
+
"existingSynchronisedStorageBlobEncryptionKey": "Synchronised storage blob encryption key already exists \"{keyName}\"",
|
|
28
30
|
"creatingUserProfile": "Creating user profile \"{identity}\"",
|
|
29
31
|
"existingUserProfile": "User profile already exists \"{identity}\"",
|
|
30
32
|
"nodeIdentity": "Node identity \"{identity}\"",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node-core",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.5",
|
|
4
4
|
"description": "TWIN Node Core for serving APIs using the specified configuration",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@twin.org/identity-models": "next",
|
|
29
29
|
"@twin.org/vault-models": "next",
|
|
30
30
|
"@twin.org/wallet-models": "next",
|
|
31
|
-
"dotenv": "17.2.
|
|
31
|
+
"dotenv": "17.2.1",
|
|
32
32
|
"schema-dts": "1.1.5"
|
|
33
33
|
},
|
|
34
34
|
"main": "./dist/cjs/index.cjs",
|