@twin.org/identity-cli 0.0.1-next.45 → 0.0.1-next.47
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 +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/locales/en.json +6 -2
- package/docs/changelog.md +38 -0
- package/package.json +4 -4
package/dist/cjs/index.cjs
CHANGED
|
@@ -1132,7 +1132,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
1132
1132
|
return this.execute({
|
|
1133
1133
|
title: "TWIN Identity",
|
|
1134
1134
|
appName: "twin-identity",
|
|
1135
|
-
version: "0.0.1-next.
|
|
1135
|
+
version: "0.0.1-next.47", // x-release-please-version
|
|
1136
1136
|
icon: "🌍",
|
|
1137
1137
|
supportsEnvFiles: true,
|
|
1138
1138
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1129,7 +1129,7 @@ class CLI extends CLIBase {
|
|
|
1129
1129
|
return this.execute({
|
|
1130
1130
|
title: "TWIN Identity",
|
|
1131
1131
|
appName: "twin-identity",
|
|
1132
|
-
version: "0.0.1-next.
|
|
1132
|
+
version: "0.0.1-next.47", // x-release-please-version
|
|
1133
1133
|
icon: "🌍",
|
|
1134
1134
|
supportsEnvFiles: true,
|
|
1135
1135
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -45,7 +45,8 @@
|
|
|
45
45
|
"keyAlreadyExists": "The key already exists"
|
|
46
46
|
},
|
|
47
47
|
"schema": {
|
|
48
|
-
"failedValidation": "The JSON schema failed validation, {message}"
|
|
48
|
+
"failedValidation": "The JSON schema failed validation, {message}",
|
|
49
|
+
"missingType": "Failed to validate as there is no handler for type \"{dataType}\""
|
|
49
50
|
}
|
|
50
51
|
},
|
|
51
52
|
"guard": {
|
|
@@ -71,6 +72,8 @@
|
|
|
71
72
|
"array": "Property \"{property}\" must be an array, it is \"{value}\"",
|
|
72
73
|
"arrayValue": "Property \"{property}\" must be an array with at least one item",
|
|
73
74
|
"arrayOneOf": "Property \"{property}\" must be one of [{options}], it is \"{value}\"",
|
|
75
|
+
"arrayStartsWith": "Property \"{property}\" must be an array starting with [{startValues}], it is \"{value}\"",
|
|
76
|
+
"arrayEndsWith": "Property \"{property}\" must be an array ending with [{endValues}], it is \"{value}\"",
|
|
74
77
|
"uint8Array": "Property \"{property}\" must be a Uint8Array, it is \"{value}\"",
|
|
75
78
|
"function": "Property \"{property}\" must be a function, it is \"{value}\"",
|
|
76
79
|
"urn": "Property \"{property}\" must be a Urn formatted string, it is \"{value}\"",
|
|
@@ -295,7 +298,8 @@
|
|
|
295
298
|
"insufficientFunds": "There were insufficient funds to complete the operation",
|
|
296
299
|
"packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
|
|
297
300
|
"packageObjectError": "Failed to fetch the package object \"{packageId}\"",
|
|
298
|
-
"
|
|
301
|
+
"valueTransactionFailed": "The value transaction failed",
|
|
302
|
+
"transactionFailed": "The transaction failed",
|
|
299
303
|
"addressNotFound": "The address is missing could not be found from the seed \"{address}\""
|
|
300
304
|
},
|
|
301
305
|
"vaultConnectorHelper": {
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @twin.org/identity-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.47](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.46...identity-cli-v0.0.1-next.47) (2025-06-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/identity-models bumped from 0.0.1-next.46 to 0.0.1-next.47
|
|
16
|
+
* @twin.org/identity-connector-iota bumped from 0.0.1-next.46 to 0.0.1-next.47
|
|
17
|
+
|
|
18
|
+
## [0.0.1-next.46](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.45...identity-cli-v0.0.1-next.46) (2025-05-20)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
|
|
24
|
+
* use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
|
|
30
|
+
* Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
|
|
31
|
+
* Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Dependencies
|
|
35
|
+
|
|
36
|
+
* The following workspace dependencies were updated
|
|
37
|
+
* dependencies
|
|
38
|
+
* @twin.org/identity-models bumped from 0.0.1-next.45 to 0.0.1-next.46
|
|
39
|
+
* @twin.org/identity-connector-iota bumped from 0.0.1-next.45 to 0.0.1-next.46
|
|
40
|
+
|
|
3
41
|
## [0.0.1-next.45](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.44...identity-cli-v0.0.1-next.45) (2025-05-06)
|
|
4
42
|
|
|
5
43
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-cli",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.47",
|
|
4
4
|
"description": "A command line interface for interacting with the identity connectors",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"@twin.org/data-json-ld": "next",
|
|
22
22
|
"@twin.org/entity": "next",
|
|
23
23
|
"@twin.org/entity-storage-connector-memory": "next",
|
|
24
|
-
"@twin.org/identity-connector-iota": "0.0.1-next.
|
|
25
|
-
"@twin.org/identity-models": "0.0.1-next.
|
|
24
|
+
"@twin.org/identity-connector-iota": "0.0.1-next.47",
|
|
25
|
+
"@twin.org/identity-models": "0.0.1-next.47",
|
|
26
26
|
"@twin.org/nameof": "next",
|
|
27
27
|
"@twin.org/standards-w3c-did": "next",
|
|
28
28
|
"@twin.org/vault-connector-entity-storage": "next",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@twin.org/wallet-cli": "next",
|
|
31
31
|
"@twin.org/wallet-connector-iota": "next",
|
|
32
32
|
"@twin.org/wallet-models": "next",
|
|
33
|
-
"commander": "
|
|
33
|
+
"commander": "14.0.0"
|
|
34
34
|
},
|
|
35
35
|
"main": "./dist/cjs/index.cjs",
|
|
36
36
|
"module": "./dist/esm/index.mjs",
|