@twin.org/node 0.9.2-next.2 → 0.9.2-next.3
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 +11 -7
- package/docs/changelog.md +14 -0
- package/docs/usage.md +8 -8
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"cliEnvVarMissing": "Environment variable \"{envVar}\" does not exist",
|
|
17
17
|
"unknownEnvVars": "Unknown environment variable properties [{keys}]. Check for typos in variable names, for custom variables use the {prefix}ENV_ALLOW_LIST."
|
|
18
18
|
},
|
|
19
|
-
"
|
|
20
|
-
"noFeaturesEnabled": "No features are enabled
|
|
19
|
+
"bootstrapDev": {
|
|
20
|
+
"noFeaturesEnabled": "No features are enabled, at least one feature must be enabled.",
|
|
21
21
|
"organizationNotSet": "The organisation identity has not been set. Run \"node-org-id-set\"."
|
|
22
22
|
},
|
|
23
23
|
"identityCreate": {
|
|
@@ -622,6 +622,7 @@
|
|
|
622
622
|
"emptyFailed": "There was a problem emptying the blob storage",
|
|
623
623
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage service \"{namespace}\"",
|
|
624
624
|
"vaultConnectorNotConfigured": "The vault connector is not configured, but encryption/decryption was requested.",
|
|
625
|
+
"vaultKeyIdMissing": "The blob is encrypted but no vault key id is available for decryption.",
|
|
625
626
|
"blobNotFound": "The blob with id \"{notFoundId}\" was not found",
|
|
626
627
|
"entityNotFound": "The entity with id \"{notFoundId}\" was not found"
|
|
627
628
|
},
|
|
@@ -1011,6 +1012,7 @@
|
|
|
1011
1012
|
"unrevokeVerifiableCredentialsFailed": "Unrevoking verifiable credentials failed",
|
|
1012
1013
|
"verificationKeyMissing": "The verification key is missing from the vault for method \"{method}\"",
|
|
1013
1014
|
"verificationMethodNotFound": "The verification method could not be found",
|
|
1015
|
+
"signatureVerificationFailed": "The document integrity check failed",
|
|
1014
1016
|
"verifyProofFailed": "Verifying the signature for the data failed"
|
|
1015
1017
|
},
|
|
1016
1018
|
"iota": {
|
|
@@ -1503,9 +1505,9 @@
|
|
|
1503
1505
|
"singleTenantOnly": "single-tenant only"
|
|
1504
1506
|
}
|
|
1505
1507
|
},
|
|
1506
|
-
"bootstrap-
|
|
1507
|
-
"description": "Bootstrap
|
|
1508
|
-
"example": "bootstrap-
|
|
1508
|
+
"bootstrap-dev": {
|
|
1509
|
+
"description": "Bootstrap the development environment",
|
|
1510
|
+
"example": "bootstrap-dev --load-env=\"./.env.bootstrap-dev\"",
|
|
1509
1511
|
"params": {
|
|
1510
1512
|
"env-prefix": {
|
|
1511
1513
|
"description": "Prefix to use for standard .env files e.g. TWIN_."
|
|
@@ -2724,8 +2726,10 @@
|
|
|
2724
2726
|
"healthCheckFailed": "Failed to connect to Azure blob storage container \"{containerName}\" in account \"{accountName}\""
|
|
2725
2727
|
},
|
|
2726
2728
|
"fileBlobStorageConnector": {
|
|
2727
|
-
"healthDescription": "
|
|
2728
|
-
"
|
|
2729
|
+
"healthDescription": "Checks if there is sufficient disk space in directory \"{directory}\" for the file blob storage connector to operate properly",
|
|
2730
|
+
"diskSpaceError": "Disk space critically low in directory \"{directory}\", {freeBytes} bytes free, threshold is {thresholdBytes} bytes",
|
|
2731
|
+
"diskSpaceWarning": "Disk space low in directory \"{directory}\", {freeBytes} bytes free, threshold is {thresholdBytes} bytes",
|
|
2732
|
+
"diskSpaceCheckFailed": "Failed to check disk space in directory \"{directory}\""
|
|
2729
2733
|
},
|
|
2730
2734
|
"gcpBlobStorageConnector": {
|
|
2731
2735
|
"healthDescription": "GCP blob storage connector is healthy, bucket \"{bucketName}\" in project \"{projectId}\"",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.2-next.3](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.2...node-v0.9.2-next.3) (2026-07-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* bootstrap-legacy rename ([#310](https://github.com/iotaledger/twin-node/issues/310)) ([53af8a2](https://github.com/iotaledger/twin-node/commit/53af8a2e797e90bb601416215247cd8649dd6220))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/node-core bumped from 0.9.2-next.2 to 0.9.2-next.3
|
|
16
|
+
|
|
3
17
|
## [0.9.2-next.2](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.1...node-v0.9.2-next.2) (2026-07-29)
|
|
4
18
|
|
|
5
19
|
|
package/docs/usage.md
CHANGED
|
@@ -25,7 +25,7 @@ npx "@twin.org/node"
|
|
|
25
25
|
Command: help
|
|
26
26
|
|
|
27
27
|
All the commands available are listed below, for more information use the --help option with a specific command.
|
|
28
|
-
bootstrap-
|
|
28
|
+
bootstrap-dev: Bootstrap the development environment
|
|
29
29
|
identity-create: Create an identity
|
|
30
30
|
identity-import: Import an identity
|
|
31
31
|
identity-list: List all identities held in custody by the node
|
|
@@ -62,10 +62,10 @@ Key environment variables that control how the node server handles authenticatio
|
|
|
62
62
|
| `TWIN_AUTH_API_KEY_HEADER` | `x-api-key` | HTTP header name for the API key on requests. |
|
|
63
63
|
| `TWIN_AUTH_SIGNING_KEY_ID` | `auth-signing` | Vault key ID used to sign authentication JWTs. |
|
|
64
64
|
|
|
65
|
-
## bootstrap-
|
|
65
|
+
## bootstrap-dev --help
|
|
66
66
|
|
|
67
67
|
```text
|
|
68
|
-
bootstrap-
|
|
68
|
+
bootstrap-dev: Bootstrap the development environment
|
|
69
69
|
|
|
70
70
|
env-prefix: (string, optional)
|
|
71
71
|
Prefix to use for standard .env files e.g. TWIN_.
|
|
@@ -73,7 +73,7 @@ Prefix to use for standard .env files e.g. TWIN_.
|
|
|
73
73
|
load-env: (string, optional)
|
|
74
74
|
Comma separated list of paths to .env files to read input parameters from.
|
|
75
75
|
|
|
76
|
-
Example: bootstrap-
|
|
76
|
+
Example: bootstrap-dev --load-env=".env.bootstrap-dev"
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
The command reads the following environment variables (use `load-env` to supply them from a file):
|
|
@@ -306,15 +306,15 @@ Example: tenant-list-by-org --org-id="did:iota:..."
|
|
|
306
306
|
|
|
307
307
|
## Example
|
|
308
308
|
|
|
309
|
-
### Bootstrap
|
|
309
|
+
### Bootstrap dev (single command)
|
|
310
310
|
|
|
311
|
-
Runs the complete bootstrap sequence in one step using values from `.env.bootstrap-
|
|
311
|
+
Runs the complete bootstrap sequence in one step using values from `.env.bootstrap-dev`:
|
|
312
312
|
|
|
313
313
|
```shell
|
|
314
|
-
twin-node bootstrap-
|
|
314
|
+
twin-node bootstrap-dev --load-env=".env.bootstrap-dev"
|
|
315
315
|
```
|
|
316
316
|
|
|
317
|
-
The sections below show the equivalent step-by-step commands that replicate the bootstrap-
|
|
317
|
+
The sections below show the equivalent step-by-step commands that replicate the bootstrap-dev process.
|
|
318
318
|
|
|
319
319
|
---
|
|
320
320
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.9.2-next.
|
|
3
|
+
"version": "0.9.2-next.3",
|
|
4
4
|
"description": "TWIN Node serving APIs using the specified configuration",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"node": ">=24.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/node-core": "0.9.2-next.
|
|
17
|
+
"@twin.org/node-core": "0.9.2-next.3"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|