@twin.org/identity-cli 0.0.1-next.43 → 0.0.1-next.44
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 +2 -1
- package/docs/changelog.md +16 -0
- package/package.json +4 -4
package/dist/cjs/index.cjs
CHANGED
|
@@ -1181,7 +1181,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
1181
1181
|
return this.execute({
|
|
1182
1182
|
title: "TWIN Identity",
|
|
1183
1183
|
appName: "twin-identity",
|
|
1184
|
-
version: "0.0.1-next.
|
|
1184
|
+
version: "0.0.1-next.44", // x-release-please-version
|
|
1185
1185
|
icon: "🌍",
|
|
1186
1186
|
supportsEnvFiles: true,
|
|
1187
1187
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1178,7 +1178,7 @@ class CLI extends CLIBase {
|
|
|
1178
1178
|
return this.execute({
|
|
1179
1179
|
title: "TWIN Identity",
|
|
1180
1180
|
appName: "twin-identity",
|
|
1181
|
-
version: "0.0.1-next.
|
|
1181
|
+
version: "0.0.1-next.44", // x-release-please-version
|
|
1182
1182
|
icon: "🌍",
|
|
1183
1183
|
supportsEnvFiles: true,
|
|
1184
1184
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -287,7 +287,8 @@
|
|
|
287
287
|
"unrevokeVerifiableCredentialsFailed": "Unrevoking verifiable credentials failed",
|
|
288
288
|
"proofType": "The proof type must be DataIntegrityProof, it is currently {proofType}",
|
|
289
289
|
"integerNegative": "The value must be a positive integer, it is currently {value}",
|
|
290
|
-
"invalidDocumentIdFormat": "The document ID format is invalid, it is currently {documentId}"
|
|
290
|
+
"invalidDocumentIdFormat": "The document ID format is invalid, it is currently {documentId}",
|
|
291
|
+
"invalidSubjectId": "The subject id format is invalid it must be a Url or Urn, it is \"{subjectId}\""
|
|
291
292
|
},
|
|
292
293
|
"iota": {
|
|
293
294
|
"insufficientFunds": "There were insufficient funds to complete the operation",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @twin.org/identity-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.44](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.43...identity-cli-v0.0.1-next.44) (2025-04-30)
|
|
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.1-next.43 to 0.0.1-next.44
|
|
16
|
+
* @twin.org/identity-connector-iota bumped from 0.0.1-next.43 to 0.0.1-next.44
|
|
17
|
+
* @twin.org/identity-connector-iota-stardust bumped from 0.0.1-next.43 to 0.0.1-next.44
|
|
18
|
+
|
|
3
19
|
## [0.0.1-next.43](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.42...identity-cli-v0.0.1-next.43) (2025-04-25)
|
|
4
20
|
|
|
5
21
|
|
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.44",
|
|
4
4
|
"description": "A command line interface for interacting with the identity connectors",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,9 +21,9 @@
|
|
|
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-connector-iota-stardust": "0.0.1-next.
|
|
26
|
-
"@twin.org/identity-models": "0.0.1-next.
|
|
24
|
+
"@twin.org/identity-connector-iota": "0.0.1-next.44",
|
|
25
|
+
"@twin.org/identity-connector-iota-stardust": "0.0.1-next.44",
|
|
26
|
+
"@twin.org/identity-models": "0.0.1-next.44",
|
|
27
27
|
"@twin.org/nameof": "next",
|
|
28
28
|
"@twin.org/standards-w3c-did": "next",
|
|
29
29
|
"@twin.org/vault-connector-entity-storage": "next",
|