@twin.org/identity-models 0.0.3-next.3 → 0.0.3-next.30

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 (91) hide show
  1. package/README.md +3 -3
  2. package/dist/es/contextIdHandlers/didContextIdHandler.js +7 -0
  3. package/dist/es/contextIdHandlers/didContextIdHandler.js.map +1 -1
  4. package/dist/es/index.js +6 -0
  5. package/dist/es/index.js.map +1 -1
  6. package/dist/es/models/IIdentityComponent.js.map +1 -1
  7. package/dist/es/models/IIdentityConnector.js.map +1 -1
  8. package/dist/es/models/api/identity/IIdentityAlsoKnownAsCreateRequest.js +4 -0
  9. package/dist/es/models/api/identity/IIdentityAlsoKnownAsCreateRequest.js.map +1 -0
  10. package/dist/es/models/api/identity/IIdentityAlsoKnownAsRemoveRequest.js +4 -0
  11. package/dist/es/models/api/identity/IIdentityAlsoKnownAsRemoveRequest.js.map +1 -0
  12. package/dist/es/models/api/identity/IIdentityVerifiableCredentialCreateRequest.js.map +1 -1
  13. package/dist/es/models/api/identity/IIdentityVerifiableCredentialRevokeRequest.js.map +1 -1
  14. package/dist/es/models/api/identity/IIdentityVerifiableCredentialUnrevokeRequest.js.map +1 -1
  15. package/dist/es/models/api/identity/IIdentityVerifiableCredentialVerifyDocumentRequest.js +2 -0
  16. package/dist/es/models/api/identity/IIdentityVerifiableCredentialVerifyDocumentRequest.js.map +1 -0
  17. package/dist/es/models/api/identity/IIdentityVerifiablePresentationCreateRequest.js.map +1 -1
  18. package/dist/es/models/api/identity/IIdentityVerifiablePresentationVerifyDocumentRequest.js +2 -0
  19. package/dist/es/models/api/identity/IIdentityVerifiablePresentationVerifyDocumentRequest.js.map +1 -0
  20. package/dist/es/models/identityMetricIds.js +49 -0
  21. package/dist/es/models/identityMetricIds.js.map +1 -0
  22. package/dist/es/models/identityMetrics.js +61 -0
  23. package/dist/es/models/identityMetrics.js.map +1 -0
  24. package/dist/types/contextIdHandlers/didContextIdHandler.d.ts +5 -0
  25. package/dist/types/index.d.ts +6 -0
  26. package/dist/types/models/IIdentityComponent.d.ts +47 -6
  27. package/dist/types/models/IIdentityConnector.d.ts +47 -6
  28. package/dist/types/models/api/identity/IIdentityAlsoKnownAsCreateRequest.d.ts +23 -0
  29. package/dist/types/models/api/identity/IIdentityAlsoKnownAsRemoveRequest.d.ts +18 -0
  30. package/dist/types/models/api/identity/IIdentityVerifiableCredentialCreateRequest.d.ts +12 -0
  31. package/dist/types/models/api/identity/IIdentityVerifiableCredentialRevokeRequest.d.ts +1 -1
  32. package/dist/types/models/api/identity/IIdentityVerifiableCredentialUnrevokeRequest.d.ts +1 -1
  33. package/dist/types/models/api/identity/IIdentityVerifiableCredentialVerifyDocumentRequest.d.ts +10 -0
  34. package/dist/types/models/api/identity/IIdentityVerifiablePresentationCreateRequest.d.ts +14 -2
  35. package/dist/types/models/api/identity/IIdentityVerifiablePresentationVerifyDocumentRequest.d.ts +10 -0
  36. package/dist/types/models/identityMetricIds.d.ts +49 -0
  37. package/dist/types/models/identityMetrics.d.ts +5 -0
  38. package/docs/changelog.md +304 -76
  39. package/docs/examples.md +157 -1
  40. package/docs/reference/classes/Did.md +4 -4
  41. package/docs/reference/classes/DidContextIdHandler.md +21 -3
  42. package/docs/reference/classes/DocumentHelper.md +5 -5
  43. package/docs/reference/classes/VerificationHelper.md +3 -3
  44. package/docs/reference/index.md +10 -0
  45. package/docs/reference/interfaces/IIdentityAlsoKnownAsCreateRequest.md +31 -0
  46. package/docs/reference/interfaces/IIdentityAlsoKnownAsRemoveRequest.md +23 -0
  47. package/docs/reference/interfaces/IIdentityComponent.md +150 -36
  48. package/docs/reference/interfaces/IIdentityConnector.md +150 -36
  49. package/docs/reference/interfaces/IIdentityCreateRequest.md +3 -3
  50. package/docs/reference/interfaces/IIdentityCreateResponse.md +1 -1
  51. package/docs/reference/interfaces/IIdentityProfileComponent.md +6 -6
  52. package/docs/reference/interfaces/IIdentityProfileConnector.md +5 -5
  53. package/docs/reference/interfaces/IIdentityProfileCreateRequest.md +3 -3
  54. package/docs/reference/interfaces/IIdentityProfileGetPublicRequest.md +4 -4
  55. package/docs/reference/interfaces/IIdentityProfileGetPublicResponse.md +2 -2
  56. package/docs/reference/interfaces/IIdentityProfileGetRequest.md +4 -4
  57. package/docs/reference/interfaces/IIdentityProfileGetResponse.md +3 -3
  58. package/docs/reference/interfaces/IIdentityProfileListRequest.md +6 -6
  59. package/docs/reference/interfaces/IIdentityProfileListResponse.md +2 -2
  60. package/docs/reference/interfaces/IIdentityProfileUpdateRequest.md +3 -3
  61. package/docs/reference/interfaces/IIdentityProofCreateRequest.md +2 -2
  62. package/docs/reference/interfaces/IIdentityProofCreateResponse.md +1 -1
  63. package/docs/reference/interfaces/IIdentityProofVerifyRequest.md +1 -1
  64. package/docs/reference/interfaces/IIdentityProofVerifyResponse.md +1 -1
  65. package/docs/reference/interfaces/IIdentityRemoveRequest.md +1 -1
  66. package/docs/reference/interfaces/IIdentityResolveRequest.md +1 -1
  67. package/docs/reference/interfaces/IIdentityResolveResponse.md +1 -1
  68. package/docs/reference/interfaces/IIdentityResolverComponent.md +1 -1
  69. package/docs/reference/interfaces/IIdentityResolverConnector.md +1 -1
  70. package/docs/reference/interfaces/IIdentityServiceCreateRequest.md +2 -2
  71. package/docs/reference/interfaces/IIdentityServiceCreateResponse.md +1 -1
  72. package/docs/reference/interfaces/IIdentityServiceRemoveRequest.md +1 -1
  73. package/docs/reference/interfaces/IIdentityVerifiableCredentialCreateRequest.md +25 -5
  74. package/docs/reference/interfaces/IIdentityVerifiableCredentialCreateResponse.md +1 -1
  75. package/docs/reference/interfaces/IIdentityVerifiableCredentialRevokeRequest.md +2 -2
  76. package/docs/reference/interfaces/IIdentityVerifiableCredentialUnrevokeRequest.md +2 -2
  77. package/docs/reference/interfaces/IIdentityVerifiableCredentialVerifyDocumentRequest.md +11 -0
  78. package/docs/reference/interfaces/IIdentityVerifiableCredentialVerifyRequest.md +1 -1
  79. package/docs/reference/interfaces/IIdentityVerifiableCredentialVerifyResponse.md +2 -2
  80. package/docs/reference/interfaces/IIdentityVerifiablePresentationCreateRequest.md +28 -8
  81. package/docs/reference/interfaces/IIdentityVerifiablePresentationCreateResponse.md +1 -1
  82. package/docs/reference/interfaces/IIdentityVerifiablePresentationVerifyDocumentRequest.md +11 -0
  83. package/docs/reference/interfaces/IIdentityVerifiablePresentationVerifyRequest.md +1 -1
  84. package/docs/reference/interfaces/IIdentityVerifiablePresentationVerifyResponse.md +3 -3
  85. package/docs/reference/interfaces/IIdentityVerificationMethodCreateRequest.md +3 -3
  86. package/docs/reference/interfaces/IIdentityVerificationMethodCreateResponse.md +1 -1
  87. package/docs/reference/interfaces/IIdentityVerificationMethodRemoveRequest.md +1 -1
  88. package/docs/reference/type-aliases/IdentityMetricIds.md +5 -0
  89. package/docs/reference/variables/IdentityMetricIds.md +67 -0
  90. package/docs/reference/variables/IdentityMetrics.md +5 -0
  91. package/package.json +5 -4
package/docs/changelog.md CHANGED
@@ -1,272 +1,500 @@
1
- # @twin.org/identity-service-models - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.3](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.3-next.2...identity-models-v0.0.3-next.3) (2025-11-17)
3
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.29...identity-models-v0.0.3-next.30) (2026-05-28)
4
4
 
5
5
 
6
6
  ### Miscellaneous Chores
7
7
 
8
8
  * **identity-models:** Synchronize repo versions
9
9
 
10
- ## [0.0.3-next.2](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.3-next.1...identity-models-v0.0.3-next.2) (2025-11-14)
10
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.28...identity-models-v0.0.3-next.29) (2026-05-22)
11
+
12
+
13
+ ### Miscellaneous Chores
14
+
15
+ * **identity-models:** Synchronize repo versions
16
+
17
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.27...identity-models-v0.0.3-next.28) (2026-05-21)
18
+
19
+
20
+ ### Miscellaneous Chores
21
+
22
+ * **identity-models:** Synchronize repo versions
23
+
24
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.26...identity-models-v0.0.3-next.27) (2026-05-21)
25
+
26
+
27
+ ### Features
28
+
29
+ * add optional jwt payload and headers to vc and vp tokens ([#135](https://github.com/iotaledger/twin-identity/issues/135)) ([aa1de0f](https://github.com/iotaledger/twin-identity/commit/aa1de0f63be95ff62bae3c699aabc85ea93d74c2))
30
+
31
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.25...identity-models-v0.0.3-next.26) (2026-05-21)
32
+
33
+
34
+ ### Features
35
+
36
+ * add telemetry metrics ([#132](https://github.com/iotaledger/twin-identity/issues/132)) ([b51cd78](https://github.com/iotaledger/twin-identity/commit/b51cd7816905fd55e250035daf1b8f2047cba83d))
37
+
38
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.24...identity-models-v0.0.3-next.25) (2026-05-20)
39
+
40
+
41
+ ### Miscellaneous Chores
42
+
43
+ * **identity-models:** Synchronize repo versions
44
+
45
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.23...identity-models-v0.0.3-next.24) (2026-05-13)
46
+
47
+
48
+ ### Miscellaneous Chores
49
+
50
+ * **identity-models:** Synchronize repo versions
51
+
52
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.22...identity-models-v0.0.3-next.23) (2026-05-12)
53
+
54
+
55
+ ### Features
56
+
57
+ * typescript 6 update ([e8806ad](https://github.com/iotaledger/twin-identity/commit/e8806ad6858c37be3c0f54c41cf654023773bef3))
58
+
59
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.21...identity-models-v0.0.3-next.22) (2026-05-07)
60
+
61
+
62
+ ### Miscellaneous Chores
63
+
64
+ * **identity-models:** Synchronize repo versions
65
+
66
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.20...identity-models-v0.0.3-next.21) (2026-05-07)
67
+
68
+
69
+ ### Miscellaneous Chores
70
+
71
+ * **identity-models:** Synchronize repo versions
72
+
73
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.19...identity-models-v0.0.3-next.20) (2026-04-29)
74
+
75
+
76
+ ### Features
77
+
78
+ * expanded cli methods ([#121](https://github.com/iotaledger/twin-identity/issues/121)) ([80a52b7](https://github.com/iotaledger/twin-identity/commit/80a52b779237cd633d1f2813fa976585cef6e551))
79
+
80
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.18...identity-models-v0.0.3-next.19) (2026-04-29)
81
+
82
+
83
+ ### Features
84
+
85
+ * add addAlsoKnownAs to identity connector ([#117](https://github.com/iotaledger/twin-identity/issues/117)) ([aa27cff](https://github.com/iotaledger/twin-identity/commit/aa27cff88e61e7c8c6e32aeb437fb01c6ee9f57a))
86
+
87
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.17...identity-models-v0.0.3-next.18) (2026-02-27)
88
+
89
+
90
+ ### Miscellaneous Chores
91
+
92
+ * **identity-models:** Synchronize repo versions
93
+
94
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.16...identity-models-v0.0.3-next.17) (2026-02-24)
95
+
96
+
97
+ ### Miscellaneous Chores
98
+
99
+ * **identity-models:** Synchronize repo versions
100
+
101
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.15...identity-models-v0.0.3-next.16) (2026-02-13)
102
+
103
+
104
+ ### Features
105
+
106
+ * separate vc verification routes with query and body ([ea7d891](https://github.com/iotaledger/twin-identity/commit/ea7d8910472150cf76dbd51e282625e70226d9b3))
107
+
108
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.14...identity-models-v0.0.3-next.15) (2026-02-12)
109
+
110
+
111
+ ### Miscellaneous Chores
112
+
113
+ * **identity-models:** Synchronize repo versions
114
+
115
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.13...identity-models-v0.0.3-next.14) (2026-02-10)
116
+
117
+
118
+ ### Features
119
+
120
+ * add proof to vcs and verify vs documents ([#103](https://github.com/iotaledger/twin-identity/issues/103)) ([b60bf0c](https://github.com/iotaledger/twin-identity/commit/b60bf0cb7d453d67574c5c0e4f769e67cf7cd6d1))
121
+
122
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.12...identity-models-v0.0.3-next.13) (2026-01-21)
123
+
124
+
125
+ ### Miscellaneous Chores
126
+
127
+ * **identity-models:** Synchronize repo versions
128
+
129
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.11...identity-models-v0.0.3-next.12) (2026-01-19)
130
+
131
+
132
+ ### Features
133
+
134
+ * remove auth generator ([#98](https://github.com/iotaledger/twin-identity/issues/98)) ([a8969e8](https://github.com/iotaledger/twin-identity/commit/a8969e85a5a2804abfc787406e2d12eb168dd978))
135
+
136
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.10...identity-models-v0.0.3-next.11) (2026-01-15)
137
+
138
+
139
+ ### Features
140
+
141
+ * add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
142
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
143
+ * add identity remove ([eebc13f](https://github.com/iotaledger/twin-identity/commit/eebc13f4c2cd994d2d9cce4da2128fb346c80ba7))
144
+ * add idHelper class ([57c8bdb](https://github.com/iotaledger/twin-identity/commit/57c8bdb81efaa163b5e83f8a7f16f3764d12fd75))
145
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
146
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
147
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
148
+ * update did context handler definition ([02aa59a](https://github.com/iotaledger/twin-identity/commit/02aa59ae8100b1afb2325ea858411fc3e4d9d1e9))
149
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
150
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
151
+
152
+
153
+ ### Bug Fixes
154
+
155
+ * didContextIdHandler tests ([dc7b555](https://github.com/iotaledger/twin-identity/commit/dc7b5558e47117475b7f1fa1686d3ed7e0906563))
156
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
157
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
158
+ * query params force coercion ([d9347d2](https://github.com/iotaledger/twin-identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
159
+ * stricter pathParam types ([a174cdf](https://github.com/iotaledger/twin-identity/commit/a174cdf0ca4272bee35fcf20ab7e8e4e17b8b6f4))
160
+ * use base64Url for tenant id short form so it doesn't include slash ([53b9e27](https://github.com/iotaledger/twin-identity/commit/53b9e27351f20e2689734581c252a23527657926))
161
+ * Use resolver component ([#22](https://github.com/iotaledger/twin-identity/issues/22)) ([d0b3a32](https://github.com/iotaledger/twin-identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
162
+
163
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.9...identity-models-v0.0.3-next.10) (2026-01-15)
164
+
165
+
166
+ ### Miscellaneous Chores
167
+
168
+ * **identity-models:** Synchronize repo versions
169
+
170
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.8...identity-models-v0.0.3-next.9) (2026-01-14)
171
+
172
+
173
+ ### Miscellaneous Chores
174
+
175
+ * **identity-models:** Synchronize repo versions
176
+
177
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.7...identity-models-v0.0.3-next.8) (2026-01-14)
178
+
179
+
180
+ ### Miscellaneous Chores
181
+
182
+ * **identity-models:** Synchronize repo versions
183
+
184
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.6...identity-models-v0.0.3-next.7) (2026-01-13)
185
+
186
+
187
+ ### Miscellaneous Chores
188
+
189
+ * **identity-models:** Synchronize repo versions
190
+
191
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.5...identity-models-v0.0.3-next.6) (2025-11-26)
192
+
193
+
194
+ ### Miscellaneous Chores
195
+
196
+ * **identity-models:** Synchronize repo versions
197
+
198
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.4...identity-models-v0.0.3-next.5) (2025-11-20)
199
+
200
+
201
+ ### Features
202
+
203
+ * update did context handler definition ([02aa59a](https://github.com/iotaledger/twin-identity/commit/02aa59ae8100b1afb2325ea858411fc3e4d9d1e9))
204
+
205
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.3...identity-models-v0.0.3-next.4) (2025-11-17)
206
+
207
+
208
+ ### Features
209
+
210
+ * add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
211
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
212
+ * add identity remove ([eebc13f](https://github.com/iotaledger/twin-identity/commit/eebc13f4c2cd994d2d9cce4da2128fb346c80ba7))
213
+ * add idHelper class ([57c8bdb](https://github.com/iotaledger/twin-identity/commit/57c8bdb81efaa163b5e83f8a7f16f3764d12fd75))
214
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
215
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
216
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
217
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
218
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
219
+
220
+
221
+ ### Bug Fixes
222
+
223
+ * didContextIdHandler tests ([dc7b555](https://github.com/iotaledger/twin-identity/commit/dc7b5558e47117475b7f1fa1686d3ed7e0906563))
224
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
225
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
226
+ * query params force coercion ([d9347d2](https://github.com/iotaledger/twin-identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
227
+ * stricter pathParam types ([a174cdf](https://github.com/iotaledger/twin-identity/commit/a174cdf0ca4272bee35fcf20ab7e8e4e17b8b6f4))
228
+ * use base64Url for tenant id short form so it doesn't include slash ([53b9e27](https://github.com/iotaledger/twin-identity/commit/53b9e27351f20e2689734581c252a23527657926))
229
+ * Use resolver component ([#22](https://github.com/iotaledger/twin-identity/issues/22)) ([d0b3a32](https://github.com/iotaledger/twin-identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
230
+
231
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.2...identity-models-v0.0.3-next.3) (2025-11-17)
232
+
233
+
234
+ ### Miscellaneous Chores
235
+
236
+ * **identity-models:** Synchronize repo versions
237
+
238
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.1...identity-models-v0.0.3-next.2) (2025-11-14)
11
239
 
12
240
 
13
241
  ### Bug Fixes
14
242
 
15
- * use base64Url for tenant id short form so it doesn't include slash ([53b9e27](https://github.com/twinfoundation/identity/commit/53b9e27351f20e2689734581c252a23527657926))
243
+ * use base64Url for tenant id short form so it doesn't include slash ([53b9e27](https://github.com/iotaledger/twin-identity/commit/53b9e27351f20e2689734581c252a23527657926))
16
244
 
17
- ## [0.0.3-next.1](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.3-next.0...identity-models-v0.0.3-next.1) (2025-11-11)
245
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.3-next.0...identity-models-v0.0.3-next.1) (2025-11-11)
18
246
 
19
247
 
20
248
  ### Features
21
249
 
22
- * add context id features ([#62](https://github.com/twinfoundation/identity/issues/62)) ([e02ecca](https://github.com/twinfoundation/identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
23
- * add expiration date option to vc creation ([73e05e1](https://github.com/twinfoundation/identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
24
- * add identity remove ([eebc13f](https://github.com/twinfoundation/identity/commit/eebc13f4c2cd994d2d9cce4da2128fb346c80ba7))
25
- * add idHelper class ([57c8bdb](https://github.com/twinfoundation/identity/commit/57c8bdb81efaa163b5e83f8a7f16f3764d12fd75))
26
- * add validate-locales ([04d74b4](https://github.com/twinfoundation/identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
27
- * eslint migration to flat config ([fd6246d](https://github.com/twinfoundation/identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
28
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
29
- * update framework core ([c824497](https://github.com/twinfoundation/identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
30
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
250
+ * add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
251
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
252
+ * add identity remove ([eebc13f](https://github.com/iotaledger/twin-identity/commit/eebc13f4c2cd994d2d9cce4da2128fb346c80ba7))
253
+ * add idHelper class ([57c8bdb](https://github.com/iotaledger/twin-identity/commit/57c8bdb81efaa163b5e83f8a7f16f3764d12fd75))
254
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
255
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
256
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
257
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
258
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
31
259
 
32
260
 
33
261
  ### Bug Fixes
34
262
 
35
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
36
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
37
- * query params force coercion ([d9347d2](https://github.com/twinfoundation/identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
38
- * Use resolver component ([#22](https://github.com/twinfoundation/identity/issues/22)) ([d0b3a32](https://github.com/twinfoundation/identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
263
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
264
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
265
+ * query params force coercion ([d9347d2](https://github.com/iotaledger/twin-identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
266
+ * Use resolver component ([#22](https://github.com/iotaledger/twin-identity/issues/22)) ([d0b3a32](https://github.com/iotaledger/twin-identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
39
267
 
40
- ## [0.0.2-next.10](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.2-next.9...identity-models-v0.0.2-next.10) (2025-10-27)
268
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.2-next.9...identity-models-v0.0.2-next.10) (2025-10-27)
41
269
 
42
270
 
43
271
  ### Miscellaneous Chores
44
272
 
45
273
  * **identity-models:** Synchronize repo versions
46
274
 
47
- ## [0.0.2-next.9](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.2-next.8...identity-models-v0.0.2-next.9) (2025-10-09)
275
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.2-next.8...identity-models-v0.0.2-next.9) (2025-10-09)
48
276
 
49
277
 
50
278
  ### Features
51
279
 
52
- * add validate-locales ([04d74b4](https://github.com/twinfoundation/identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
280
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
53
281
 
54
- ## [0.0.2-next.8](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.2-next.7...identity-models-v0.0.2-next.8) (2025-09-25)
282
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.2-next.7...identity-models-v0.0.2-next.8) (2025-09-25)
55
283
 
56
284
 
57
285
  ### Features
58
286
 
59
- * add idHelper class ([57c8bdb](https://github.com/twinfoundation/identity/commit/57c8bdb81efaa163b5e83f8a7f16f3764d12fd75))
287
+ * add idHelper class ([57c8bdb](https://github.com/iotaledger/twin-identity/commit/57c8bdb81efaa163b5e83f8a7f16f3764d12fd75))
60
288
 
61
- ## [0.0.2-next.7](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.2-next.6...identity-models-v0.0.2-next.7) (2025-09-23)
289
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.2-next.6...identity-models-v0.0.2-next.7) (2025-09-23)
62
290
 
63
291
 
64
292
  ### Miscellaneous Chores
65
293
 
66
294
  * **identity-models:** Synchronize repo versions
67
295
 
68
- ## [0.0.2-next.6](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.2-next.5...identity-models-v0.0.2-next.6) (2025-09-23)
296
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.2-next.5...identity-models-v0.0.2-next.6) (2025-09-23)
69
297
 
70
298
 
71
299
  ### Miscellaneous Chores
72
300
 
73
301
  * **identity-models:** Synchronize repo versions
74
302
 
75
- ## [0.0.2-next.5](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.2-next.4...identity-models-v0.0.2-next.5) (2025-09-15)
303
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.2-next.4...identity-models-v0.0.2-next.5) (2025-09-15)
76
304
 
77
305
 
78
306
  ### Miscellaneous Chores
79
307
 
80
308
  * **identity-models:** Synchronize repo versions
81
309
 
82
- ## [0.0.2-next.4](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.2-next.3...identity-models-v0.0.2-next.4) (2025-09-12)
310
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.2-next.3...identity-models-v0.0.2-next.4) (2025-09-12)
83
311
 
84
312
 
85
313
  ### Features
86
314
 
87
- * add expiration date option to vc creation ([73e05e1](https://github.com/twinfoundation/identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
315
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
88
316
 
89
- ## [0.0.2-next.3](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.2-next.2...identity-models-v0.0.2-next.3) (2025-08-29)
317
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.2-next.2...identity-models-v0.0.2-next.3) (2025-08-29)
90
318
 
91
319
 
92
320
  ### Features
93
321
 
94
- * eslint migration to flat config ([fd6246d](https://github.com/twinfoundation/identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
322
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
95
323
 
96
- ## [0.0.2-next.2](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.2-next.1...identity-models-v0.0.2-next.2) (2025-08-20)
324
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.2-next.1...identity-models-v0.0.2-next.2) (2025-08-20)
97
325
 
98
326
 
99
327
  ### Features
100
328
 
101
- * update framework core ([c824497](https://github.com/twinfoundation/identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
329
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
102
330
 
103
- ## [0.0.2-next.1](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.2-next.0...identity-models-v0.0.2-next.1) (2025-08-18)
331
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.2-next.0...identity-models-v0.0.2-next.1) (2025-08-18)
104
332
 
105
333
 
106
334
  ### Features
107
335
 
108
- * add identity remove ([eebc13f](https://github.com/twinfoundation/identity/commit/eebc13f4c2cd994d2d9cce4da2128fb346c80ba7))
109
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
110
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
336
+ * add identity remove ([eebc13f](https://github.com/iotaledger/twin-identity/commit/eebc13f4c2cd994d2d9cce4da2128fb346c80ba7))
337
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
338
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
111
339
 
112
340
 
113
341
  ### Bug Fixes
114
342
 
115
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
116
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
117
- * query params force coercion ([d9347d2](https://github.com/twinfoundation/identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
118
- * Use resolver component ([#22](https://github.com/twinfoundation/identity/issues/22)) ([d0b3a32](https://github.com/twinfoundation/identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
343
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
344
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
345
+ * query params force coercion ([d9347d2](https://github.com/iotaledger/twin-identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
346
+ * Use resolver component ([#22](https://github.com/iotaledger/twin-identity/issues/22)) ([d0b3a32](https://github.com/iotaledger/twin-identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
119
347
 
120
348
  ## 0.0.1 (2025-07-08)
121
349
 
122
350
 
123
351
  ### Features
124
352
 
125
- * release to production ([8450ad7](https://github.com/twinfoundation/identity/commit/8450ad727e0c4d665f2ce483e41798c2ff5b7d55))
353
+ * release to production ([8450ad7](https://github.com/iotaledger/twin-identity/commit/8450ad727e0c4d665f2ce483e41798c2ff5b7d55))
126
354
 
127
- ## [0.0.1-next.57](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.56...identity-models-v0.0.1-next.57) (2025-07-08)
355
+ ## [0.0.1-next.57](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.56...identity-models-v0.0.1-next.57) (2025-07-08)
128
356
 
129
357
 
130
358
  ### Features
131
359
 
132
- * add identity remove ([eebc13f](https://github.com/twinfoundation/identity/commit/eebc13f4c2cd994d2d9cce4da2128fb346c80ba7))
360
+ * add identity remove ([eebc13f](https://github.com/iotaledger/twin-identity/commit/eebc13f4c2cd994d2d9cce4da2128fb346c80ba7))
133
361
 
134
- ## [0.0.1-next.56](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.55...identity-models-v0.0.1-next.56) (2025-06-30)
362
+ ## [0.0.1-next.56](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.55...identity-models-v0.0.1-next.56) (2025-06-30)
135
363
 
136
364
 
137
365
  ### Miscellaneous Chores
138
366
 
139
367
  * **identity-models:** Synchronize repo versions
140
368
 
141
- ## [0.0.1-next.55](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.54...identity-models-v0.0.1-next.55) (2025-06-26)
369
+ ## [0.0.1-next.55](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.54...identity-models-v0.0.1-next.55) (2025-06-26)
142
370
 
143
371
 
144
372
  ### Features
145
373
 
146
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
147
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
374
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
375
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
148
376
 
149
377
 
150
378
  ### Bug Fixes
151
379
 
152
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
153
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
154
- * query params force coercion ([d9347d2](https://github.com/twinfoundation/identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
155
- * Use resolver component ([#22](https://github.com/twinfoundation/identity/issues/22)) ([d0b3a32](https://github.com/twinfoundation/identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
380
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
381
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
382
+ * query params force coercion ([d9347d2](https://github.com/iotaledger/twin-identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
383
+ * Use resolver component ([#22](https://github.com/iotaledger/twin-identity/issues/22)) ([d0b3a32](https://github.com/iotaledger/twin-identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
156
384
 
157
- ## [0.0.1-next.54](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.53...identity-models-v0.0.1-next.54) (2025-06-26)
385
+ ## [0.0.1-next.54](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.53...identity-models-v0.0.1-next.54) (2025-06-26)
158
386
 
159
387
 
160
388
  ### Miscellaneous Chores
161
389
 
162
390
  * **identity-models:** Synchronize repo versions
163
391
 
164
- ## [0.0.1-next.53](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.52...identity-models-v0.0.1-next.53) (2025-06-23)
392
+ ## [0.0.1-next.53](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.52...identity-models-v0.0.1-next.53) (2025-06-23)
165
393
 
166
394
 
167
395
  ### Miscellaneous Chores
168
396
 
169
397
  * **identity-models:** Synchronize repo versions
170
398
 
171
- ## [0.0.1-next.52](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.51...identity-models-v0.0.1-next.52) (2025-06-20)
399
+ ## [0.0.1-next.52](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.51...identity-models-v0.0.1-next.52) (2025-06-20)
172
400
 
173
401
 
174
402
  ### Bug Fixes
175
403
 
176
- * query params force coercion ([d9347d2](https://github.com/twinfoundation/identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
404
+ * query params force coercion ([d9347d2](https://github.com/iotaledger/twin-identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
177
405
 
178
- ## [0.0.1-next.51](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.50...identity-models-v0.0.1-next.51) (2025-06-19)
406
+ ## [0.0.1-next.51](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.50...identity-models-v0.0.1-next.51) (2025-06-19)
179
407
 
180
408
 
181
409
  ### Miscellaneous Chores
182
410
 
183
411
  * **identity-models:** Synchronize repo versions
184
412
 
185
- ## [0.0.1-next.50](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.49...identity-models-v0.0.1-next.50) (2025-06-19)
413
+ ## [0.0.1-next.50](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.49...identity-models-v0.0.1-next.50) (2025-06-19)
186
414
 
187
415
 
188
416
  ### Miscellaneous Chores
189
417
 
190
418
  * **identity-models:** Synchronize repo versions
191
419
 
192
- ## [0.0.1-next.49](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.48...identity-models-v0.0.1-next.49) (2025-06-18)
420
+ ## [0.0.1-next.49](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.48...identity-models-v0.0.1-next.49) (2025-06-18)
193
421
 
194
422
 
195
423
  ### Miscellaneous Chores
196
424
 
197
425
  * **identity-models:** Synchronize repo versions
198
426
 
199
- ## [0.0.1-next.48](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.47...identity-models-v0.0.1-next.48) (2025-06-17)
427
+ ## [0.0.1-next.48](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.47...identity-models-v0.0.1-next.48) (2025-06-17)
200
428
 
201
429
 
202
430
  ### Miscellaneous Chores
203
431
 
204
432
  * **identity-models:** Synchronize repo versions
205
433
 
206
- ## [0.0.1-next.47](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.46...identity-models-v0.0.1-next.47) (2025-06-12)
434
+ ## [0.0.1-next.47](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.46...identity-models-v0.0.1-next.47) (2025-06-12)
207
435
 
208
436
 
209
437
  ### Features
210
438
 
211
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
439
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
212
440
 
213
- ## [0.0.1-next.46](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.45...identity-models-v0.0.1-next.46) (2025-05-20)
441
+ ## [0.0.1-next.46](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.45...identity-models-v0.0.1-next.46) (2025-05-20)
214
442
 
215
443
 
216
444
  ### Features
217
445
 
218
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
446
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
219
447
 
220
448
 
221
449
  ### Bug Fixes
222
450
 
223
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
224
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
225
- * Use resolver component ([#22](https://github.com/twinfoundation/identity/issues/22)) ([d0b3a32](https://github.com/twinfoundation/identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
451
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
452
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
453
+ * Use resolver component ([#22](https://github.com/iotaledger/twin-identity/issues/22)) ([d0b3a32](https://github.com/iotaledger/twin-identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
226
454
 
227
- ## [0.0.1-next.45](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.44...identity-models-v0.0.1-next.45) (2025-05-06)
455
+ ## [0.0.1-next.45](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.44...identity-models-v0.0.1-next.45) (2025-05-06)
228
456
 
229
457
 
230
458
  ### Miscellaneous Chores
231
459
 
232
460
  * **identity-models:** Synchronize repo versions
233
461
 
234
- ## [0.0.1-next.44](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.43...identity-models-v0.0.1-next.44) (2025-04-30)
462
+ ## [0.0.1-next.44](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.43...identity-models-v0.0.1-next.44) (2025-04-30)
235
463
 
236
464
 
237
465
  ### Miscellaneous Chores
238
466
 
239
467
  * **identity-models:** Synchronize repo versions
240
468
 
241
- ## [0.0.1-next.43](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.42...identity-models-v0.0.1-next.43) (2025-04-25)
469
+ ## [0.0.1-next.43](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.42...identity-models-v0.0.1-next.43) (2025-04-25)
242
470
 
243
471
 
244
472
  ### Miscellaneous Chores
245
473
 
246
474
  * **identity-models:** Synchronize repo versions
247
475
 
248
- ## [0.0.1-next.42](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.41...identity-models-v0.0.1-next.42) (2025-04-17)
476
+ ## [0.0.1-next.42](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.41...identity-models-v0.0.1-next.42) (2025-04-17)
249
477
 
250
478
 
251
479
  ### Features
252
480
 
253
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
481
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
254
482
 
255
- ## [0.0.1-next.41](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.40...identity-models-v0.0.1-next.41) (2025-04-09)
483
+ ## [0.0.1-next.41](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.40...identity-models-v0.0.1-next.41) (2025-04-09)
256
484
 
257
485
 
258
486
  ### Miscellaneous Chores
259
487
 
260
488
  * **identity-models:** Synchronize repo versions
261
489
 
262
- ## [0.0.1-next.40](https://github.com/twinfoundation/identity/compare/identity-models-v0.0.1-next.39...identity-models-v0.0.1-next.40) (2025-03-28)
490
+ ## [0.0.1-next.40](https://github.com/iotaledger/twin-identity/compare/identity-models-v0.0.1-next.39...identity-models-v0.0.1-next.40) (2025-03-28)
263
491
 
264
492
 
265
493
  ### Bug Fixes
266
494
 
267
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
268
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
269
- * Use resolver component ([#22](https://github.com/twinfoundation/identity/issues/22)) ([d0b3a32](https://github.com/twinfoundation/identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
495
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
496
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
497
+ * Use resolver component ([#22](https://github.com/iotaledger/twin-identity/issues/22)) ([d0b3a32](https://github.com/iotaledger/twin-identity/commit/d0b3a321c7f9f966d397a880d752e9f2c0a98a27))
270
498
 
271
499
  ## v0.0.1-next.39
272
500