@twin.org/identity-cli 0.0.1-next.40 → 0.0.1-next.42
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 +32 -0
- package/docs/reference/classes/CLI.md +4 -4
- package/docs/reference/functions/setupIdentityConnector.md +1 -1
- package/docs/reference/type-aliases/IdentityConnectorTypes.md +1 -1
- package/package.json +4 -5
package/dist/cjs/index.cjs
CHANGED
|
@@ -1092,7 +1092,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
1092
1092
|
return this.execute({
|
|
1093
1093
|
title: "TWIN Identity",
|
|
1094
1094
|
appName: "twin-identity",
|
|
1095
|
-
version: "0.0.1-next.
|
|
1095
|
+
version: "0.0.1-next.42", // x-release-please-version
|
|
1096
1096
|
icon: "🌍",
|
|
1097
1097
|
supportsEnvFiles: true,
|
|
1098
1098
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1089,7 +1089,7 @@ class CLI extends CLIBase {
|
|
|
1089
1089
|
return this.execute({
|
|
1090
1090
|
title: "TWIN Identity",
|
|
1091
1091
|
appName: "twin-identity",
|
|
1092
|
-
version: "0.0.1-next.
|
|
1092
|
+
version: "0.0.1-next.42", // x-release-please-version
|
|
1093
1093
|
icon: "🌍",
|
|
1094
1094
|
supportsEnvFiles: true,
|
|
1095
1095
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @twin.org/identity-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.42](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.41...identity-cli-v0.0.1-next.42) (2025-04-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
|
|
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.41 to 0.0.1-next.42
|
|
16
|
+
* @twin.org/identity-connector-iota bumped from 0.0.1-next.41 to 0.0.1-next.42
|
|
17
|
+
* @twin.org/identity-connector-iota-stardust bumped from 0.0.1-next.41 to 0.0.1-next.42
|
|
18
|
+
|
|
19
|
+
## [0.0.1-next.41](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.40...identity-cli-v0.0.1-next.41) (2025-04-09)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Miscellaneous Chores
|
|
23
|
+
|
|
24
|
+
* **identity-cli:** Synchronize repo versions
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Dependencies
|
|
28
|
+
|
|
29
|
+
* The following workspace dependencies were updated
|
|
30
|
+
* dependencies
|
|
31
|
+
* @twin.org/identity-models bumped from 0.0.1-next.40 to 0.0.1-next.41
|
|
32
|
+
* @twin.org/identity-connector-iota bumped from 0.0.1-next.40 to 0.0.1-next.41
|
|
33
|
+
* @twin.org/identity-connector-iota-stardust bumped from 0.0.1-next.40 to 0.0.1-next.41
|
|
34
|
+
|
|
3
35
|
## [0.0.1-next.40](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.39...identity-cli-v0.0.1-next.40) (2025-03-28)
|
|
4
36
|
|
|
5
37
|
|
|
@@ -8,13 +8,13 @@ The main entry point for the CLI.
|
|
|
8
8
|
|
|
9
9
|
## Constructors
|
|
10
10
|
|
|
11
|
-
###
|
|
11
|
+
### Constructor
|
|
12
12
|
|
|
13
|
-
> **new CLI**():
|
|
13
|
+
> **new CLI**(): `CLI`
|
|
14
14
|
|
|
15
15
|
#### Returns
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
`CLI`
|
|
18
18
|
|
|
19
19
|
#### Inherited from
|
|
20
20
|
|
|
@@ -24,7 +24,7 @@ The main entry point for the CLI.
|
|
|
24
24
|
|
|
25
25
|
### run()
|
|
26
26
|
|
|
27
|
-
> **run**(`argv`, `localesDirectory
|
|
27
|
+
> **run**(`argv`, `localesDirectory?`, `options?`): `Promise`\<`number`\>
|
|
28
28
|
|
|
29
29
|
Run the app.
|
|
30
30
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Type Alias: IdentityConnectorTypes
|
|
2
2
|
|
|
3
|
-
> **IdentityConnectorTypes
|
|
3
|
+
> **IdentityConnectorTypes** = *typeof* [`IdentityConnectorTypes`](../variables/IdentityConnectorTypes.md)\[keyof *typeof* [`IdentityConnectorTypes`](../variables/IdentityConnectorTypes.md)\]
|
|
4
4
|
|
|
5
5
|
The identity connector types.
|
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.42",
|
|
4
4
|
"description": "A command line interface for interacting with the identity connectors",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@iota/sdk-wasm": "1.1.3",
|
|
18
17
|
"@twin.org/cli-core": "next",
|
|
19
18
|
"@twin.org/core": "next",
|
|
20
19
|
"@twin.org/crypto": "next",
|
|
@@ -22,9 +21,9 @@
|
|
|
22
21
|
"@twin.org/data-json-ld": "next",
|
|
23
22
|
"@twin.org/entity": "next",
|
|
24
23
|
"@twin.org/entity-storage-connector-memory": "next",
|
|
25
|
-
"@twin.org/identity-connector-iota": "0.0.1-next.
|
|
26
|
-
"@twin.org/identity-connector-iota-stardust": "0.0.1-next.
|
|
27
|
-
"@twin.org/identity-models": "0.0.1-next.
|
|
24
|
+
"@twin.org/identity-connector-iota": "0.0.1-next.42",
|
|
25
|
+
"@twin.org/identity-connector-iota-stardust": "0.0.1-next.42",
|
|
26
|
+
"@twin.org/identity-models": "0.0.1-next.42",
|
|
28
27
|
"@twin.org/nameof": "next",
|
|
29
28
|
"@twin.org/standards-w3c-did": "next",
|
|
30
29
|
"@twin.org/vault-connector-entity-storage": "next",
|