@twin.org/identity-cli 0.0.1-next.45 → 0.0.1-next.46
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/docs/changelog.md +23 -0
- package/package.json +3 -3
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.46", // 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.46", // x-release-please-version
|
|
1133
1133
|
icon: "🌍",
|
|
1134
1134
|
supportsEnvFiles: true,
|
|
1135
1135
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @twin.org/identity-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [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)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
|
|
9
|
+
* use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
|
|
15
|
+
* Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
|
|
16
|
+
* Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Dependencies
|
|
20
|
+
|
|
21
|
+
* The following workspace dependencies were updated
|
|
22
|
+
* dependencies
|
|
23
|
+
* @twin.org/identity-models bumped from 0.0.1-next.45 to 0.0.1-next.46
|
|
24
|
+
* @twin.org/identity-connector-iota bumped from 0.0.1-next.45 to 0.0.1-next.46
|
|
25
|
+
|
|
3
26
|
## [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
27
|
|
|
5
28
|
|
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.46",
|
|
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.46",
|
|
25
|
+
"@twin.org/identity-models": "0.0.1-next.46",
|
|
26
26
|
"@twin.org/nameof": "next",
|
|
27
27
|
"@twin.org/standards-w3c-did": "next",
|
|
28
28
|
"@twin.org/vault-connector-entity-storage": "next",
|