@twin.org/identity-cli 0.0.2-next.6 → 0.0.2-next.8
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 +3 -0
- package/docs/changelog.md +30 -0
- package/package.json +3 -3
package/dist/cjs/index.cjs
CHANGED
|
@@ -1182,7 +1182,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
1182
1182
|
return this.execute({
|
|
1183
1183
|
title: "TWIN Identity",
|
|
1184
1184
|
appName: "twin-identity",
|
|
1185
|
-
version: "0.0.2-next.
|
|
1185
|
+
version: "0.0.2-next.8", // x-release-please-version
|
|
1186
1186
|
icon: "🌍",
|
|
1187
1187
|
supportsEnvFiles: true,
|
|
1188
1188
|
overrideOutputWidth: options?.overrideOutputWidth,
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1179,7 +1179,7 @@ class CLI extends CLIBase {
|
|
|
1179
1179
|
return this.execute({
|
|
1180
1180
|
title: "TWIN Identity",
|
|
1181
1181
|
appName: "twin-identity",
|
|
1182
|
-
version: "0.0.2-next.
|
|
1182
|
+
version: "0.0.2-next.8", // x-release-please-version
|
|
1183
1183
|
icon: "🌍",
|
|
1184
1184
|
supportsEnvFiles: true,
|
|
1185
1185
|
overrideOutputWidth: options?.overrideOutputWidth,
|
package/dist/locales/en.json
CHANGED
|
@@ -242,6 +242,9 @@
|
|
|
242
242
|
"verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
|
|
243
243
|
"verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
|
|
244
244
|
},
|
|
245
|
+
"idHelper": {
|
|
246
|
+
"invalidDocumentId": "The document id \"{id}\" is invalid"
|
|
247
|
+
},
|
|
245
248
|
"proofHelper": {
|
|
246
249
|
"unsupportedProofType": "Proof type \"{proofType}\" not supported.",
|
|
247
250
|
"proofMissing": "Proof is missing."
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @twin.org/identity-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.8](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.7...identity-cli-v0.0.2-next.8) (2025-09-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **identity-cli:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/identity-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
16
|
+
* @twin.org/identity-connector-iota bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
17
|
+
|
|
18
|
+
## [0.0.2-next.7](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.6...identity-cli-v0.0.2-next.7) (2025-09-23)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Miscellaneous Chores
|
|
22
|
+
|
|
23
|
+
* **identity-cli:** Synchronize repo versions
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Dependencies
|
|
27
|
+
|
|
28
|
+
* The following workspace dependencies were updated
|
|
29
|
+
* dependencies
|
|
30
|
+
* @twin.org/identity-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
31
|
+
* @twin.org/identity-connector-iota bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
32
|
+
|
|
3
33
|
## [0.0.2-next.6](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.5...identity-cli-v0.0.2-next.6) (2025-09-23)
|
|
4
34
|
|
|
5
35
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-cli",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.8",
|
|
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.2-next.
|
|
25
|
-
"@twin.org/identity-models": "0.0.2-next.
|
|
24
|
+
"@twin.org/identity-connector-iota": "0.0.2-next.8",
|
|
25
|
+
"@twin.org/identity-models": "0.0.2-next.8",
|
|
26
26
|
"@twin.org/nameof": "next",
|
|
27
27
|
"@twin.org/standards-w3c-did": "next",
|
|
28
28
|
"@twin.org/vault-connector-entity-storage": "next",
|