@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.
@@ -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
- "addingAttestation": "Adding attestation verification method \"{methodId}\"",
23
- "existingAttestation": "Attestation verification method already exists \"{methodId}\"",
24
- "addingImmutableProof": "Adding immutable proof verification method \"{methodId}\"",
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",
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.0",
31
+ "dotenv": "17.2.1",
32
32
  "schema-dts": "1.1.5"
33
33
  },
34
34
  "main": "./dist/cjs/index.cjs",