@twin.org/node 0.0.3-next.33 → 0.0.3-next.35
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/locales/en.json +236 -55
- package/docs/changelog.md +226 -197
- package/docs/deployment-ec2.md +1 -1
- package/docs/open-api/spec.json +1978 -1191
- package/docs/usage.md +6 -0
- package/package.json +4 -4
package/docs/usage.md
CHANGED
|
@@ -115,6 +115,12 @@ twin-node vault-key-create --load-env="node-identity.env" --identity=!NODE_DID -
|
|
|
115
115
|
twin-node vault-key-import --load-env="node-identity.env,node-auth-key.json" --identity=!NODE_DID --key-id=!TWIN_AUTH_SIGNING_KEY_ID --key-type=!KEY_TYPE --private-key-hex=!PRIVATE_KEY_HEX
|
|
116
116
|
```
|
|
117
117
|
|
|
118
|
+
### Add a key associated with the node identity for use in hosting param encryption
|
|
119
|
+
|
|
120
|
+
```shell
|
|
121
|
+
twin-node vault-key-create --load-env="node-identity.env" --identity=!NODE_DID --key-id=!TWIN_URL_TRANSFORMER_ENCRYPTION_KEY_ID --key-type=ChaCha20Poly1305 --output-json="node-hosting-param-key.json" --output-env="node-hosting-param.env"
|
|
122
|
+
```
|
|
123
|
+
|
|
118
124
|
### Add a key associated with the node identity for use by synchronised storage blob encryption
|
|
119
125
|
|
|
120
126
|
```shell
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.35",
|
|
4
4
|
"description": "TWIN Node serving APIs using the specified configuration",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/
|
|
7
|
+
"url": "git+https://github.com/iotaledger/node.git",
|
|
8
8
|
"directory": "apps/node"
|
|
9
9
|
},
|
|
10
10
|
"author": "martyn.janes@iota.org",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/node-core": "0.0.3-next.
|
|
17
|
+
"@twin.org/node-core": "0.0.3-next.35"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
|
-
"url": "git+https://github.com/
|
|
20
|
+
"url": "git+https://github.com/iotaledger/node/issues"
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://twindev.org",
|
|
23
23
|
"main": "./src/index.js",
|