@twin.org/identity-cli 0.0.3-next.2 → 0.0.3-next.20

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.
Files changed (49) hide show
  1. package/README.md +5 -5
  2. package/dist/es/cli.js +9 -1
  3. package/dist/es/cli.js.map +1 -1
  4. package/dist/es/commands/alsoKnownAsAdd.js +108 -0
  5. package/dist/es/commands/alsoKnownAsAdd.js.map +1 -0
  6. package/dist/es/commands/alsoKnownAsRemove.js +106 -0
  7. package/dist/es/commands/alsoKnownAsRemove.js.map +1 -0
  8. package/dist/es/commands/identityCreate.js +2 -1
  9. package/dist/es/commands/identityCreate.js.map +1 -1
  10. package/dist/es/commands/proofCreate.js +4 -9
  11. package/dist/es/commands/proofCreate.js.map +1 -1
  12. package/dist/es/commands/serviceAdd.js +4 -3
  13. package/dist/es/commands/serviceAdd.js.map +1 -1
  14. package/dist/es/commands/serviceRemove.js +3 -3
  15. package/dist/es/commands/serviceRemove.js.map +1 -1
  16. package/dist/es/commands/verifiableCredentialCreate.js +18 -16
  17. package/dist/es/commands/verifiableCredentialCreate.js.map +1 -1
  18. package/dist/es/commands/verifiableCredentialVerify.js +24 -5
  19. package/dist/es/commands/verifiableCredentialVerify.js.map +1 -1
  20. package/dist/es/commands/verifiablePresentationCreate.js +137 -0
  21. package/dist/es/commands/verifiablePresentationCreate.js.map +1 -0
  22. package/dist/es/commands/verifiablePresentationVerify.js +107 -0
  23. package/dist/es/commands/verifiablePresentationVerify.js.map +1 -0
  24. package/dist/es/commands/verificationMethodAdd.js +31 -10
  25. package/dist/es/commands/verificationMethodAdd.js.map +1 -1
  26. package/dist/es/index.js +2 -0
  27. package/dist/es/index.js.map +1 -1
  28. package/dist/locales/en.json +196 -38
  29. package/dist/types/commands/alsoKnownAsAdd.d.ts +30 -0
  30. package/dist/types/commands/alsoKnownAsRemove.d.ts +30 -0
  31. package/dist/types/commands/identityCreate.d.ts +1 -0
  32. package/dist/types/commands/proofCreate.d.ts +0 -2
  33. package/dist/types/commands/verifiableCredentialCreate.d.ts +4 -4
  34. package/dist/types/commands/verifiableCredentialVerify.d.ts +3 -1
  35. package/dist/types/commands/verifiablePresentationCreate.d.ts +32 -0
  36. package/dist/types/commands/verifiablePresentationVerify.d.ts +24 -0
  37. package/dist/types/index.d.ts +2 -0
  38. package/docs/changelog.md +404 -90
  39. package/docs/reference/classes/CLI.md +1 -1
  40. package/docs/reference/functions/actionCommandVerifiablePresentationCreate.md +17 -0
  41. package/docs/reference/functions/actionCommandVerifiablePresentationVerify.md +17 -0
  42. package/docs/reference/functions/buildCommandVerifiablePresentationCreate.md +11 -0
  43. package/docs/reference/functions/buildCommandVerifiablePresentationVerify.md +11 -0
  44. package/docs/reference/index.md +4 -0
  45. package/docs/reference/variables/IdentityConnectorTypes.md +1 -1
  46. package/docs/reference/variables/IdentityResolverConnectorTypes.md +1 -1
  47. package/docs/{examples.md → usage.md} +23 -27
  48. package/locales/en.json +153 -12
  49. package/package.json +5 -5
package/docs/changelog.md CHANGED
@@ -1,6 +1,320 @@
1
- # @twin.org/identity-cli - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.2](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.3-next.1...identity-cli-v0.0.3-next.2) (2025-11-14)
3
+ ## [0.0.3-next.20](https://github.com/twinfoundation/twin-identity/compare/identity-cli-v0.0.3-next.19...identity-cli-v0.0.3-next.20) (2026-04-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * expanded cli methods ([#121](https://github.com/twinfoundation/twin-identity/issues/121)) ([80a52b7](https://github.com/twinfoundation/twin-identity/commit/80a52b779237cd633d1f2813fa976585cef6e551))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/identity-models bumped from 0.0.3-next.19 to 0.0.3-next.20
16
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.19 to 0.0.3-next.20
17
+
18
+ ## [0.0.3-next.19](https://github.com/twinfoundation/twin-identity/compare/identity-cli-v0.0.3-next.18...identity-cli-v0.0.3-next.19) (2026-04-29)
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.3-next.18 to 0.0.3-next.19
31
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.18 to 0.0.3-next.19
32
+
33
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.17...identity-cli-v0.0.3-next.18) (2026-02-27)
34
+
35
+
36
+ ### Miscellaneous Chores
37
+
38
+ * **identity-cli:** Synchronize repo versions
39
+
40
+
41
+ ### Dependencies
42
+
43
+ * The following workspace dependencies were updated
44
+ * dependencies
45
+ * @twin.org/identity-models bumped from 0.0.3-next.17 to 0.0.3-next.18
46
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.17 to 0.0.3-next.18
47
+
48
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.16...identity-cli-v0.0.3-next.17) (2026-02-24)
49
+
50
+
51
+ ### Features
52
+
53
+ * implement async proof signing with vault security ([#110](https://github.com/iotaledger/twin-identity/issues/110)) ([9651c24](https://github.com/iotaledger/twin-identity/commit/9651c2492d63eca6545735f5638d3191e25bd185))
54
+
55
+
56
+ ### Dependencies
57
+
58
+ * The following workspace dependencies were updated
59
+ * dependencies
60
+ * @twin.org/identity-models bumped from 0.0.3-next.16 to 0.0.3-next.17
61
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.16 to 0.0.3-next.17
62
+
63
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.15...identity-cli-v0.0.3-next.16) (2026-02-13)
64
+
65
+
66
+ ### Miscellaneous Chores
67
+
68
+ * **identity-cli:** Synchronize repo versions
69
+
70
+
71
+ ### Dependencies
72
+
73
+ * The following workspace dependencies were updated
74
+ * dependencies
75
+ * @twin.org/identity-models bumped from 0.0.3-next.15 to 0.0.3-next.16
76
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.15 to 0.0.3-next.16
77
+
78
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.14...identity-cli-v0.0.3-next.15) (2026-02-12)
79
+
80
+
81
+ ### Bug Fixes
82
+
83
+ * correct vault usage in cli commands ([#106](https://github.com/iotaledger/twin-identity/issues/106)) ([d81671d](https://github.com/iotaledger/twin-identity/commit/d81671d994390c9db7ded82e5f42b4bc521603fc))
84
+
85
+
86
+ ### Dependencies
87
+
88
+ * The following workspace dependencies were updated
89
+ * dependencies
90
+ * @twin.org/identity-models bumped from 0.0.3-next.14 to 0.0.3-next.15
91
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.14 to 0.0.3-next.15
92
+
93
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.13...identity-cli-v0.0.3-next.14) (2026-02-10)
94
+
95
+
96
+ ### Miscellaneous Chores
97
+
98
+ * **identity-cli:** Synchronize repo versions
99
+
100
+
101
+ ### Dependencies
102
+
103
+ * The following workspace dependencies were updated
104
+ * dependencies
105
+ * @twin.org/identity-models bumped from 0.0.3-next.13 to 0.0.3-next.14
106
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.13 to 0.0.3-next.14
107
+
108
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.12...identity-cli-v0.0.3-next.13) (2026-01-21)
109
+
110
+
111
+ ### Miscellaneous Chores
112
+
113
+ * **identity-cli:** Synchronize repo versions
114
+
115
+
116
+ ### Dependencies
117
+
118
+ * The following workspace dependencies were updated
119
+ * dependencies
120
+ * @twin.org/identity-models bumped from 0.0.3-next.12 to 0.0.3-next.13
121
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.12 to 0.0.3-next.13
122
+
123
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.11...identity-cli-v0.0.3-next.12) (2026-01-19)
124
+
125
+
126
+ ### Miscellaneous Chores
127
+
128
+ * **identity-cli:** Synchronize repo versions
129
+
130
+
131
+ ### Dependencies
132
+
133
+ * The following workspace dependencies were updated
134
+ * dependencies
135
+ * @twin.org/identity-models bumped from 0.0.3-next.11 to 0.0.3-next.12
136
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.11 to 0.0.3-next.12
137
+
138
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.10...identity-cli-v0.0.3-next.11) (2026-01-15)
139
+
140
+
141
+ ### Features
142
+
143
+ * add addressIndex option to all commands ([a644674](https://github.com/iotaledger/twin-identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
144
+ * add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
145
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
146
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
147
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
148
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
149
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
150
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
151
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
152
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
153
+ * update namespaces and contexts ([#90](https://github.com/iotaledger/twin-identity/issues/90)) ([0c34d64](https://github.com/iotaledger/twin-identity/commit/0c34d64add8cca77856fa2d0357e774d72fbbfc1))
154
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
155
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
156
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
157
+
158
+
159
+ ### Bug Fixes
160
+
161
+ * correctly display mainnet explorer urls ([45a9f3c](https://github.com/iotaledger/twin-identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
162
+ * expiration date coerced to full date time ([83e94e3](https://github.com/iotaledger/twin-identity/commit/83e94e3fc2b982fbb41f87a177e0e79a7f2e4079))
163
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
164
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
165
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
166
+ * remove unused address index params in CLI ([c4c0cc1](https://github.com/iotaledger/twin-identity/commit/c4c0cc18e17804380cf52330e1b9de8716cc193d))
167
+ * update vault key naming convention to use document ID prefix ([#94](https://github.com/iotaledger/twin-identity/issues/94)) ([ab125c1](https://github.com/iotaledger/twin-identity/commit/ab125c1b7eb189b5dceaddc69e5e53e33a0886db))
168
+
169
+
170
+ ### Dependencies
171
+
172
+ * The following workspace dependencies were updated
173
+ * dependencies
174
+ * @twin.org/identity-models bumped from 0.0.3-next.10 to 0.0.3-next.11
175
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.10 to 0.0.3-next.11
176
+
177
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.9...identity-cli-v0.0.3-next.10) (2026-01-15)
178
+
179
+
180
+ ### Bug Fixes
181
+
182
+ * expiration date coerced to full date time ([83e94e3](https://github.com/iotaledger/twin-identity/commit/83e94e3fc2b982fbb41f87a177e0e79a7f2e4079))
183
+
184
+
185
+ ### Dependencies
186
+
187
+ * The following workspace dependencies were updated
188
+ * dependencies
189
+ * @twin.org/identity-models bumped from 0.0.3-next.9 to 0.0.3-next.10
190
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.9 to 0.0.3-next.10
191
+
192
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.8...identity-cli-v0.0.3-next.9) (2026-01-14)
193
+
194
+
195
+ ### Bug Fixes
196
+
197
+ * update vault key naming convention to use document ID prefix ([#94](https://github.com/iotaledger/twin-identity/issues/94)) ([ab125c1](https://github.com/iotaledger/twin-identity/commit/ab125c1b7eb189b5dceaddc69e5e53e33a0886db))
198
+
199
+
200
+ ### Dependencies
201
+
202
+ * The following workspace dependencies were updated
203
+ * dependencies
204
+ * @twin.org/identity-models bumped from 0.0.3-next.8 to 0.0.3-next.9
205
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.8 to 0.0.3-next.9
206
+
207
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.7...identity-cli-v0.0.3-next.8) (2026-01-14)
208
+
209
+
210
+ ### Features
211
+
212
+ * update namespaces and contexts ([#90](https://github.com/iotaledger/twin-identity/issues/90)) ([0c34d64](https://github.com/iotaledger/twin-identity/commit/0c34d64add8cca77856fa2d0357e774d72fbbfc1))
213
+
214
+
215
+ ### Dependencies
216
+
217
+ * The following workspace dependencies were updated
218
+ * dependencies
219
+ * @twin.org/identity-models bumped from 0.0.3-next.7 to 0.0.3-next.8
220
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.7 to 0.0.3-next.8
221
+
222
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.6...identity-cli-v0.0.3-next.7) (2026-01-13)
223
+
224
+
225
+ ### Miscellaneous Chores
226
+
227
+ * **identity-cli:** Synchronize repo versions
228
+
229
+
230
+ ### Dependencies
231
+
232
+ * The following workspace dependencies were updated
233
+ * dependencies
234
+ * @twin.org/identity-models bumped from 0.0.3-next.6 to 0.0.3-next.7
235
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.6 to 0.0.3-next.7
236
+
237
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.5...identity-cli-v0.0.3-next.6) (2025-11-26)
238
+
239
+
240
+ ### Miscellaneous Chores
241
+
242
+ * **identity-cli:** Synchronize repo versions
243
+
244
+
245
+ ### Dependencies
246
+
247
+ * The following workspace dependencies were updated
248
+ * dependencies
249
+ * @twin.org/identity-models bumped from 0.0.3-next.5 to 0.0.3-next.6
250
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.5 to 0.0.3-next.6
251
+
252
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.4...identity-cli-v0.0.3-next.5) (2025-11-20)
253
+
254
+
255
+ ### Bug Fixes
256
+
257
+ * remove unused address index params in CLI ([c4c0cc1](https://github.com/iotaledger/twin-identity/commit/c4c0cc18e17804380cf52330e1b9de8716cc193d))
258
+
259
+
260
+ ### Dependencies
261
+
262
+ * The following workspace dependencies were updated
263
+ * dependencies
264
+ * @twin.org/identity-models bumped from 0.0.3-next.4 to 0.0.3-next.5
265
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.4 to 0.0.3-next.5
266
+
267
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.3...identity-cli-v0.0.3-next.4) (2025-11-17)
268
+
269
+
270
+ ### Features
271
+
272
+ * add addressIndex option to all commands ([a644674](https://github.com/iotaledger/twin-identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
273
+ * add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
274
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
275
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
276
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
277
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
278
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
279
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
280
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
281
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
282
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
283
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
284
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
285
+
286
+
287
+ ### Bug Fixes
288
+
289
+ * correctly display mainnet explorer urls ([45a9f3c](https://github.com/iotaledger/twin-identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
290
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
291
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
292
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
293
+
294
+
295
+ ### Dependencies
296
+
297
+ * The following workspace dependencies were updated
298
+ * dependencies
299
+ * @twin.org/identity-models bumped from 0.0.3-next.3 to 0.0.3-next.4
300
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.3 to 0.0.3-next.4
301
+
302
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.2...identity-cli-v0.0.3-next.3) (2025-11-17)
303
+
304
+
305
+ ### Miscellaneous Chores
306
+
307
+ * **identity-cli:** Synchronize repo versions
308
+
309
+
310
+ ### Dependencies
311
+
312
+ * The following workspace dependencies were updated
313
+ * dependencies
314
+ * @twin.org/identity-models bumped from 0.0.3-next.2 to 0.0.3-next.3
315
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.2 to 0.0.3-next.3
316
+
317
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.1...identity-cli-v0.0.3-next.2) (2025-11-14)
4
318
 
5
319
 
6
320
  ### Miscellaneous Chores
@@ -15,32 +329,32 @@
15
329
  * @twin.org/identity-models bumped from 0.0.3-next.1 to 0.0.3-next.2
16
330
  * @twin.org/identity-connector-iota bumped from 0.0.3-next.1 to 0.0.3-next.2
17
331
 
18
- ## [0.0.3-next.1](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.3-next.0...identity-cli-v0.0.3-next.1) (2025-11-11)
332
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.0...identity-cli-v0.0.3-next.1) (2025-11-11)
19
333
 
20
334
 
21
335
  ### Features
22
336
 
23
- * add addressIndex option to all commands ([a644674](https://github.com/twinfoundation/identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
24
- * add context id features ([#62](https://github.com/twinfoundation/identity/issues/62)) ([e02ecca](https://github.com/twinfoundation/identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
25
- * add expiration date option to vc creation ([73e05e1](https://github.com/twinfoundation/identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
26
- * add mainnet support ([af56a38](https://github.com/twinfoundation/identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
27
- * add validate-locales ([04d74b4](https://github.com/twinfoundation/identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
28
- * eslint migration to flat config ([fd6246d](https://github.com/twinfoundation/identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
29
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
30
- * iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
31
- * support mainnet for alias extraction ([1114e0f](https://github.com/twinfoundation/identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
32
- * update framework core ([c824497](https://github.com/twinfoundation/identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
33
- * use new generateKid method ([f0fe779](https://github.com/twinfoundation/identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
34
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
35
- * verification method output JWK and hex on CLI ([49db9da](https://github.com/twinfoundation/identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
337
+ * add addressIndex option to all commands ([a644674](https://github.com/iotaledger/twin-identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
338
+ * add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
339
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
340
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
341
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
342
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
343
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
344
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
345
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
346
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
347
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
348
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
349
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
36
350
 
37
351
 
38
352
  ### Bug Fixes
39
353
 
40
- * correctly display mainnet explorer urls ([45a9f3c](https://github.com/twinfoundation/identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
41
- * explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
42
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
43
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
354
+ * correctly display mainnet explorer urls ([45a9f3c](https://github.com/iotaledger/twin-identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
355
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
356
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
357
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
44
358
 
45
359
 
46
360
  ### Dependencies
@@ -50,7 +364,7 @@
50
364
  * @twin.org/identity-models bumped from 0.0.3-next.0 to 0.0.3-next.1
51
365
  * @twin.org/identity-connector-iota bumped from 0.0.3-next.0 to 0.0.3-next.1
52
366
 
53
- ## [0.0.2-next.10](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.9...identity-cli-v0.0.2-next.10) (2025-10-27)
367
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.9...identity-cli-v0.0.2-next.10) (2025-10-27)
54
368
 
55
369
 
56
370
  ### Miscellaneous Chores
@@ -65,12 +379,12 @@
65
379
  * @twin.org/identity-models bumped from 0.0.2-next.9 to 0.0.2-next.10
66
380
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.9 to 0.0.2-next.10
67
381
 
68
- ## [0.0.2-next.9](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.8...identity-cli-v0.0.2-next.9) (2025-10-09)
382
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.8...identity-cli-v0.0.2-next.9) (2025-10-09)
69
383
 
70
384
 
71
385
  ### Features
72
386
 
73
- * add validate-locales ([04d74b4](https://github.com/twinfoundation/identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
387
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
74
388
 
75
389
 
76
390
  ### Dependencies
@@ -80,7 +394,7 @@
80
394
  * @twin.org/identity-models bumped from 0.0.2-next.8 to 0.0.2-next.9
81
395
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.8 to 0.0.2-next.9
82
396
 
83
- ## [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)
397
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.7...identity-cli-v0.0.2-next.8) (2025-09-25)
84
398
 
85
399
 
86
400
  ### Miscellaneous Chores
@@ -95,7 +409,7 @@
95
409
  * @twin.org/identity-models bumped from 0.0.2-next.7 to 0.0.2-next.8
96
410
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.7 to 0.0.2-next.8
97
411
 
98
- ## [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)
412
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.6...identity-cli-v0.0.2-next.7) (2025-09-23)
99
413
 
100
414
 
101
415
  ### Miscellaneous Chores
@@ -110,7 +424,7 @@
110
424
  * @twin.org/identity-models bumped from 0.0.2-next.6 to 0.0.2-next.7
111
425
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.6 to 0.0.2-next.7
112
426
 
113
- ## [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)
427
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.5...identity-cli-v0.0.2-next.6) (2025-09-23)
114
428
 
115
429
 
116
430
  ### Miscellaneous Chores
@@ -125,12 +439,12 @@
125
439
  * @twin.org/identity-models bumped from 0.0.2-next.5 to 0.0.2-next.6
126
440
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.5 to 0.0.2-next.6
127
441
 
128
- ## [0.0.2-next.5](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.4...identity-cli-v0.0.2-next.5) (2025-09-15)
442
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.4...identity-cli-v0.0.2-next.5) (2025-09-15)
129
443
 
130
444
 
131
445
  ### Features
132
446
 
133
- * add addressIndex option to all commands ([a644674](https://github.com/twinfoundation/identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
447
+ * add addressIndex option to all commands ([a644674](https://github.com/iotaledger/twin-identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
134
448
 
135
449
 
136
450
  ### Dependencies
@@ -140,12 +454,12 @@
140
454
  * @twin.org/identity-models bumped from 0.0.2-next.4 to 0.0.2-next.5
141
455
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.4 to 0.0.2-next.5
142
456
 
143
- ## [0.0.2-next.4](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.3...identity-cli-v0.0.2-next.4) (2025-09-12)
457
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.3...identity-cli-v0.0.2-next.4) (2025-09-12)
144
458
 
145
459
 
146
460
  ### Features
147
461
 
148
- * add expiration date option to vc creation ([73e05e1](https://github.com/twinfoundation/identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
462
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
149
463
 
150
464
 
151
465
  ### Dependencies
@@ -155,12 +469,12 @@
155
469
  * @twin.org/identity-models bumped from 0.0.2-next.3 to 0.0.2-next.4
156
470
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.3 to 0.0.2-next.4
157
471
 
158
- ## [0.0.2-next.3](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.2...identity-cli-v0.0.2-next.3) (2025-08-29)
472
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.2...identity-cli-v0.0.2-next.3) (2025-08-29)
159
473
 
160
474
 
161
475
  ### Features
162
476
 
163
- * eslint migration to flat config ([fd6246d](https://github.com/twinfoundation/identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
477
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
164
478
 
165
479
 
166
480
  ### Dependencies
@@ -170,12 +484,12 @@
170
484
  * @twin.org/identity-models bumped from 0.0.2-next.2 to 0.0.2-next.3
171
485
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.2 to 0.0.2-next.3
172
486
 
173
- ## [0.0.2-next.2](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.1...identity-cli-v0.0.2-next.2) (2025-08-20)
487
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.1...identity-cli-v0.0.2-next.2) (2025-08-20)
174
488
 
175
489
 
176
490
  ### Features
177
491
 
178
- * update framework core ([c824497](https://github.com/twinfoundation/identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
492
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
179
493
 
180
494
 
181
495
  ### Dependencies
@@ -185,26 +499,26 @@
185
499
  * @twin.org/identity-models bumped from 0.0.2-next.1 to 0.0.2-next.2
186
500
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.1 to 0.0.2-next.2
187
501
 
188
- ## [0.0.2-next.1](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.0...identity-cli-v0.0.2-next.1) (2025-08-18)
502
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.0...identity-cli-v0.0.2-next.1) (2025-08-18)
189
503
 
190
504
 
191
505
  ### Features
192
506
 
193
- * add mainnet support ([af56a38](https://github.com/twinfoundation/identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
194
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
195
- * iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
196
- * support mainnet for alias extraction ([1114e0f](https://github.com/twinfoundation/identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
197
- * use new generateKid method ([f0fe779](https://github.com/twinfoundation/identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
198
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
199
- * verification method output JWK and hex on CLI ([49db9da](https://github.com/twinfoundation/identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
507
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
508
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
509
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
510
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
511
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
512
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
513
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
200
514
 
201
515
 
202
516
  ### Bug Fixes
203
517
 
204
- * correctly display mainnet explorer urls ([45a9f3c](https://github.com/twinfoundation/identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
205
- * explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
206
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
207
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
518
+ * correctly display mainnet explorer urls ([45a9f3c](https://github.com/iotaledger/twin-identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
519
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
520
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
521
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
208
522
 
209
523
 
210
524
  ### Dependencies
@@ -219,7 +533,7 @@
219
533
 
220
534
  ### Features
221
535
 
222
- * release to production ([8450ad7](https://github.com/twinfoundation/identity/commit/8450ad727e0c4d665f2ce483e41798c2ff5b7d55))
536
+ * release to production ([8450ad7](https://github.com/iotaledger/twin-identity/commit/8450ad727e0c4d665f2ce483e41798c2ff5b7d55))
223
537
 
224
538
 
225
539
  ### Dependencies
@@ -229,7 +543,7 @@
229
543
  * @twin.org/identity-models bumped from ^0.0.0 to ^0.0.1
230
544
  * @twin.org/identity-connector-iota bumped from ^0.0.0 to ^0.0.1
231
545
 
232
- ## [0.0.1-next.57](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.56...identity-cli-v0.0.1-next.57) (2025-07-08)
546
+ ## [0.0.1-next.57](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.56...identity-cli-v0.0.1-next.57) (2025-07-08)
233
547
 
234
548
 
235
549
  ### Miscellaneous Chores
@@ -244,7 +558,7 @@
244
558
  * @twin.org/identity-models bumped from 0.0.1-next.56 to 0.0.1-next.57
245
559
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.56 to 0.0.1-next.57
246
560
 
247
- ## [0.0.1-next.56](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.55...identity-cli-v0.0.1-next.56) (2025-06-30)
561
+ ## [0.0.1-next.56](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.55...identity-cli-v0.0.1-next.56) (2025-06-30)
248
562
 
249
563
 
250
564
  ### Miscellaneous Chores
@@ -259,25 +573,25 @@
259
573
  * @twin.org/identity-models bumped from 0.0.1-next.55 to 0.0.1-next.56
260
574
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.55 to 0.0.1-next.56
261
575
 
262
- ## [0.0.1-next.55](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.54...identity-cli-v0.0.1-next.55) (2025-06-26)
576
+ ## [0.0.1-next.55](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.54...identity-cli-v0.0.1-next.55) (2025-06-26)
263
577
 
264
578
 
265
579
  ### Features
266
580
 
267
- * add mainnet support ([af56a38](https://github.com/twinfoundation/identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
268
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
269
- * iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
270
- * support mainnet for alias extraction ([1114e0f](https://github.com/twinfoundation/identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
271
- * use new generateKid method ([f0fe779](https://github.com/twinfoundation/identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
272
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
273
- * verification method output JWK and hex on CLI ([49db9da](https://github.com/twinfoundation/identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
581
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
582
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
583
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
584
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
585
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
586
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
587
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
274
588
 
275
589
 
276
590
  ### Bug Fixes
277
591
 
278
- * explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
279
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
280
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
592
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
593
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
594
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
281
595
 
282
596
 
283
597
  ### Dependencies
@@ -287,7 +601,7 @@
287
601
  * @twin.org/identity-models bumped from 0.0.1-next.54 to 0.0.1-next.55
288
602
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.54 to 0.0.1-next.55
289
603
 
290
- ## [0.0.1-next.54](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.53...identity-cli-v0.0.1-next.54) (2025-06-26)
604
+ ## [0.0.1-next.54](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.53...identity-cli-v0.0.1-next.54) (2025-06-26)
291
605
 
292
606
 
293
607
  ### Miscellaneous Chores
@@ -302,7 +616,7 @@
302
616
  * @twin.org/identity-models bumped from 0.0.1-next.53 to 0.0.1-next.54
303
617
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.53 to 0.0.1-next.54
304
618
 
305
- ## [0.0.1-next.53](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.52...identity-cli-v0.0.1-next.53) (2025-06-23)
619
+ ## [0.0.1-next.53](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.52...identity-cli-v0.0.1-next.53) (2025-06-23)
306
620
 
307
621
 
308
622
  ### Miscellaneous Chores
@@ -317,7 +631,7 @@
317
631
  * @twin.org/identity-models bumped from 0.0.1-next.52 to 0.0.1-next.53
318
632
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.52 to 0.0.1-next.53
319
633
 
320
- ## [0.0.1-next.52](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.51...identity-cli-v0.0.1-next.52) (2025-06-20)
634
+ ## [0.0.1-next.52](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.51...identity-cli-v0.0.1-next.52) (2025-06-20)
321
635
 
322
636
 
323
637
  ### Miscellaneous Chores
@@ -332,12 +646,12 @@
332
646
  * @twin.org/identity-models bumped from 0.0.1-next.51 to 0.0.1-next.52
333
647
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.51 to 0.0.1-next.52
334
648
 
335
- ## [0.0.1-next.51](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.50...identity-cli-v0.0.1-next.51) (2025-06-19)
649
+ ## [0.0.1-next.51](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.50...identity-cli-v0.0.1-next.51) (2025-06-19)
336
650
 
337
651
 
338
652
  ### Features
339
653
 
340
- * support mainnet for alias extraction ([1114e0f](https://github.com/twinfoundation/identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
654
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
341
655
 
342
656
 
343
657
  ### Dependencies
@@ -347,12 +661,12 @@
347
661
  * @twin.org/identity-models bumped from 0.0.1-next.50 to 0.0.1-next.51
348
662
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.50 to 0.0.1-next.51
349
663
 
350
- ## [0.0.1-next.50](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.49...identity-cli-v0.0.1-next.50) (2025-06-19)
664
+ ## [0.0.1-next.50](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.49...identity-cli-v0.0.1-next.50) (2025-06-19)
351
665
 
352
666
 
353
667
  ### Features
354
668
 
355
- * use new generateKid method ([f0fe779](https://github.com/twinfoundation/identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
669
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
356
670
 
357
671
 
358
672
  ### Dependencies
@@ -362,12 +676,12 @@
362
676
  * @twin.org/identity-models bumped from 0.0.1-next.49 to 0.0.1-next.50
363
677
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.49 to 0.0.1-next.50
364
678
 
365
- ## [0.0.1-next.49](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.48...identity-cli-v0.0.1-next.49) (2025-06-18)
679
+ ## [0.0.1-next.49](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.48...identity-cli-v0.0.1-next.49) (2025-06-18)
366
680
 
367
681
 
368
682
  ### Features
369
683
 
370
- * verification method output JWK and hex on CLI ([49db9da](https://github.com/twinfoundation/identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
684
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
371
685
 
372
686
 
373
687
  ### Dependencies
@@ -377,12 +691,12 @@
377
691
  * @twin.org/identity-models bumped from 0.0.1-next.48 to 0.0.1-next.49
378
692
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.48 to 0.0.1-next.49
379
693
 
380
- ## [0.0.1-next.48](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.47...identity-cli-v0.0.1-next.48) (2025-06-17)
694
+ ## [0.0.1-next.48](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.47...identity-cli-v0.0.1-next.48) (2025-06-17)
381
695
 
382
696
 
383
697
  ### Features
384
698
 
385
- * add mainnet support ([af56a38](https://github.com/twinfoundation/identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
699
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
386
700
 
387
701
 
388
702
  ### Dependencies
@@ -392,12 +706,12 @@
392
706
  * @twin.org/identity-models bumped from 0.0.1-next.47 to 0.0.1-next.48
393
707
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.47 to 0.0.1-next.48
394
708
 
395
- ## [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)
709
+ ## [0.0.1-next.47](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.46...identity-cli-v0.0.1-next.47) (2025-06-12)
396
710
 
397
711
 
398
712
  ### Features
399
713
 
400
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
714
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
401
715
 
402
716
 
403
717
  ### Dependencies
@@ -407,20 +721,20 @@
407
721
  * @twin.org/identity-models bumped from 0.0.1-next.46 to 0.0.1-next.47
408
722
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.46 to 0.0.1-next.47
409
723
 
410
- ## [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)
724
+ ## [0.0.1-next.46](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.45...identity-cli-v0.0.1-next.46) (2025-05-20)
411
725
 
412
726
 
413
727
  ### Features
414
728
 
415
- * iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
416
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
729
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
730
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
417
731
 
418
732
 
419
733
  ### Bug Fixes
420
734
 
421
- * explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
422
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
423
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
735
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
736
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
737
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
424
738
 
425
739
 
426
740
  ### Dependencies
@@ -430,12 +744,12 @@
430
744
  * @twin.org/identity-models bumped from 0.0.1-next.45 to 0.0.1-next.46
431
745
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.45 to 0.0.1-next.46
432
746
 
433
- ## [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)
747
+ ## [0.0.1-next.45](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.44...identity-cli-v0.0.1-next.45) (2025-05-06)
434
748
 
435
749
 
436
750
  ### Features
437
751
 
438
- * iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
752
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
439
753
 
440
754
 
441
755
  ### Dependencies
@@ -445,7 +759,7 @@
445
759
  * @twin.org/identity-models bumped from 0.0.1-next.44 to 0.0.1-next.45
446
760
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.44 to 0.0.1-next.45
447
761
 
448
- ## [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)
762
+ ## [0.0.1-next.44](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.43...identity-cli-v0.0.1-next.44) (2025-04-30)
449
763
 
450
764
 
451
765
  ### Miscellaneous Chores
@@ -460,12 +774,12 @@
460
774
  * @twin.org/identity-models bumped from 0.0.1-next.43 to 0.0.1-next.44
461
775
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.43 to 0.0.1-next.44
462
776
 
463
- ## [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)
777
+ ## [0.0.1-next.43](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.42...identity-cli-v0.0.1-next.43) (2025-04-25)
464
778
 
465
779
 
466
780
  ### Bug Fixes
467
781
 
468
- * explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
782
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
469
783
 
470
784
 
471
785
  ### Dependencies
@@ -475,12 +789,12 @@
475
789
  * @twin.org/identity-models bumped from 0.0.1-next.42 to 0.0.1-next.43
476
790
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.42 to 0.0.1-next.43
477
791
 
478
- ## [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)
792
+ ## [0.0.1-next.42](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.41...identity-cli-v0.0.1-next.42) (2025-04-17)
479
793
 
480
794
 
481
795
  ### Features
482
796
 
483
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
797
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
484
798
 
485
799
 
486
800
  ### Dependencies
@@ -490,7 +804,7 @@
490
804
  * @twin.org/identity-models bumped from 0.0.1-next.41 to 0.0.1-next.42
491
805
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.41 to 0.0.1-next.42
492
806
 
493
- ## [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)
807
+ ## [0.0.1-next.41](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.40...identity-cli-v0.0.1-next.41) (2025-04-09)
494
808
 
495
809
 
496
810
  ### Miscellaneous Chores
@@ -505,13 +819,13 @@
505
819
  * @twin.org/identity-models bumped from 0.0.1-next.40 to 0.0.1-next.41
506
820
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.40 to 0.0.1-next.41
507
821
 
508
- ## [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)
822
+ ## [0.0.1-next.40](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.39...identity-cli-v0.0.1-next.40) (2025-03-28)
509
823
 
510
824
 
511
825
  ### Bug Fixes
512
826
 
513
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
514
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
827
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
828
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
515
829
 
516
830
 
517
831
  ### Dependencies