@twin.org/identity-service 0.0.1-next.9 → 0.0.1

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 (50) hide show
  1. package/dist/cjs/index.cjs +1417 -48
  2. package/dist/esm/index.mjs +1403 -51
  3. package/dist/types/identityProfileRoutes.d.ts +1 -1
  4. package/dist/types/identityProfileService.d.ts +6 -4
  5. package/dist/types/identityResolverRoutes.d.ts +21 -0
  6. package/dist/types/identityResolverService.d.ts +27 -0
  7. package/dist/types/identityRoutes.d.ts +108 -4
  8. package/dist/types/identityService.d.ts +136 -10
  9. package/dist/types/index.d.ts +6 -0
  10. package/dist/types/models/IIdentityProfileServiceConstructorOptions.d.ts +10 -0
  11. package/dist/types/models/IIdentityResolverServiceConfig.d.ts +9 -0
  12. package/dist/types/models/IIdentityResolverServiceConstructorOptions.d.ts +15 -0
  13. package/dist/types/models/IIdentityServiceConstructorOptions.d.ts +10 -0
  14. package/docs/changelog.md +302 -1
  15. package/docs/open-api/spec.json +2948 -1360
  16. package/docs/reference/classes/IdentityProfileService.md +76 -58
  17. package/docs/reference/classes/IdentityResolverService.md +73 -0
  18. package/docs/reference/classes/IdentityService.md +560 -16
  19. package/docs/reference/functions/generateRestRoutesIdentity.md +8 -4
  20. package/docs/reference/functions/generateRestRoutesIdentityProfile.md +8 -4
  21. package/docs/reference/functions/generateRestRoutesIdentityResolver.md +25 -0
  22. package/docs/reference/functions/identitiesList.md +9 -3
  23. package/docs/reference/functions/identityCreate.md +31 -0
  24. package/docs/reference/functions/identityGet.md +9 -3
  25. package/docs/reference/functions/identityGetPublic.md +9 -3
  26. package/docs/reference/functions/identityProfileCreate.md +9 -3
  27. package/docs/reference/functions/identityProfileRemove.md +9 -3
  28. package/docs/reference/functions/identityProfileUpdate.md +9 -3
  29. package/docs/reference/functions/identityProofCreate.md +31 -0
  30. package/docs/reference/functions/identityProofVerify.md +31 -0
  31. package/docs/reference/functions/identityRemove.md +31 -0
  32. package/docs/reference/functions/identityResolve.md +9 -3
  33. package/docs/reference/functions/identityServiceCreate.md +31 -0
  34. package/docs/reference/functions/identityServiceRemove.md +31 -0
  35. package/docs/reference/functions/identityVerifiableCredentialCreate.md +31 -0
  36. package/docs/reference/functions/identityVerifiableCredentialRevoke.md +31 -0
  37. package/docs/reference/functions/identityVerifiableCredentialUnrevoke.md +31 -0
  38. package/docs/reference/functions/identityVerifiableCredentialVerify.md +31 -0
  39. package/docs/reference/functions/identityVerifiablePresentationCreate.md +31 -0
  40. package/docs/reference/functions/identityVerifiablePresentationVerify.md +31 -0
  41. package/docs/reference/functions/identityVerificationMethodCreate.md +31 -0
  42. package/docs/reference/functions/identityVerificationMethodRemove.md +31 -0
  43. package/docs/reference/index.md +22 -1
  44. package/docs/reference/interfaces/IIdentityProfileServiceConstructorOptions.md +17 -0
  45. package/docs/reference/interfaces/IIdentityResolverServiceConfig.md +11 -0
  46. package/docs/reference/interfaces/IIdentityResolverServiceConstructorOptions.md +25 -0
  47. package/docs/reference/interfaces/IIdentityServiceConstructorOptions.md +11 -0
  48. package/docs/reference/variables/tagsIdentityResolver.md +5 -0
  49. package/locales/en.json +23 -4
  50. package/package.json +18 -18
package/docs/changelog.md CHANGED
@@ -1,5 +1,306 @@
1
1
  # @twin.org/identity-service - Changelog
2
2
 
3
- ## v0.0.1-next.9
3
+ ## 0.0.1 (2025-07-08)
4
+
5
+
6
+ ### Features
7
+
8
+ * release to production ([8450ad7](https://github.com/twinfoundation/identity/commit/8450ad727e0c4d665f2ce483e41798c2ff5b7d55))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/identity-models bumped from ^0.0.0 to ^0.0.1
16
+ * @twin.org/identity-connector-entity-storage bumped from ^0.0.0 to ^0.0.1
17
+
18
+ ## [0.0.1-next.57](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.56...identity-service-v0.0.1-next.57) (2025-07-08)
19
+
20
+
21
+ ### Features
22
+
23
+ * add identity remove ([eebc13f](https://github.com/twinfoundation/identity/commit/eebc13f4c2cd994d2d9cce4da2128fb346c80ba7))
24
+
25
+
26
+ ### Dependencies
27
+
28
+ * The following workspace dependencies were updated
29
+ * dependencies
30
+ * @twin.org/identity-models bumped from 0.0.1-next.56 to 0.0.1-next.57
31
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.56 to 0.0.1-next.57
32
+
33
+ ## [0.0.1-next.56](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.55...identity-service-v0.0.1-next.56) (2025-06-30)
34
+
35
+
36
+ ### Miscellaneous Chores
37
+
38
+ * **identity-service:** 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.1-next.55 to 0.0.1-next.56
46
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.55 to 0.0.1-next.56
47
+
48
+ ## [0.0.1-next.55](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.54...identity-service-v0.0.1-next.55) (2025-06-26)
49
+
50
+
51
+ ### Features
52
+
53
+ * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
54
+ * use new generateKid method ([f0fe779](https://github.com/twinfoundation/identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
55
+ * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
56
+
57
+
58
+ ### Bug Fixes
59
+
60
+ * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
61
+ * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
62
+ * query params force coercion ([d9347d2](https://github.com/twinfoundation/identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
63
+
64
+
65
+ ### Dependencies
66
+
67
+ * The following workspace dependencies were updated
68
+ * dependencies
69
+ * @twin.org/identity-models bumped from 0.0.1-next.54 to 0.0.1-next.55
70
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.54 to 0.0.1-next.55
71
+
72
+ ## [0.0.1-next.54](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.53...identity-service-v0.0.1-next.54) (2025-06-26)
73
+
74
+
75
+ ### Miscellaneous Chores
76
+
77
+ * **identity-service:** Synchronize repo versions
78
+
79
+
80
+ ### Dependencies
81
+
82
+ * The following workspace dependencies were updated
83
+ * dependencies
84
+ * @twin.org/identity-models bumped from 0.0.1-next.53 to 0.0.1-next.54
85
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.53 to 0.0.1-next.54
86
+
87
+ ## [0.0.1-next.53](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.52...identity-service-v0.0.1-next.53) (2025-06-23)
88
+
89
+
90
+ ### Miscellaneous Chores
91
+
92
+ * **identity-service:** Synchronize repo versions
93
+
94
+
95
+ ### Dependencies
96
+
97
+ * The following workspace dependencies were updated
98
+ * dependencies
99
+ * @twin.org/identity-models bumped from 0.0.1-next.52 to 0.0.1-next.53
100
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.52 to 0.0.1-next.53
101
+
102
+ ## [0.0.1-next.52](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.51...identity-service-v0.0.1-next.52) (2025-06-20)
103
+
104
+
105
+ ### Bug Fixes
106
+
107
+ * query params force coercion ([d9347d2](https://github.com/twinfoundation/identity/commit/d9347d29d4a9cc58759f30f5d8526de864ea7522))
108
+
109
+
110
+ ### Dependencies
111
+
112
+ * The following workspace dependencies were updated
113
+ * dependencies
114
+ * @twin.org/identity-models bumped from 0.0.1-next.51 to 0.0.1-next.52
115
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.51 to 0.0.1-next.52
116
+
117
+ ## [0.0.1-next.51](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.50...identity-service-v0.0.1-next.51) (2025-06-19)
118
+
119
+
120
+ ### Miscellaneous Chores
121
+
122
+ * **identity-service:** Synchronize repo versions
123
+
124
+
125
+ ### Dependencies
126
+
127
+ * The following workspace dependencies were updated
128
+ * dependencies
129
+ * @twin.org/identity-models bumped from 0.0.1-next.50 to 0.0.1-next.51
130
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.50 to 0.0.1-next.51
131
+
132
+ ## [0.0.1-next.50](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.49...identity-service-v0.0.1-next.50) (2025-06-19)
133
+
134
+
135
+ ### Features
136
+
137
+ * use new generateKid method ([f0fe779](https://github.com/twinfoundation/identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
138
+
139
+
140
+ ### Dependencies
141
+
142
+ * The following workspace dependencies were updated
143
+ * dependencies
144
+ * @twin.org/identity-models bumped from 0.0.1-next.49 to 0.0.1-next.50
145
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.49 to 0.0.1-next.50
146
+
147
+ ## [0.0.1-next.49](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.48...identity-service-v0.0.1-next.49) (2025-06-18)
148
+
149
+
150
+ ### Miscellaneous Chores
151
+
152
+ * **identity-service:** Synchronize repo versions
153
+
154
+
155
+ ### Dependencies
156
+
157
+ * The following workspace dependencies were updated
158
+ * dependencies
159
+ * @twin.org/identity-models bumped from 0.0.1-next.48 to 0.0.1-next.49
160
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.48 to 0.0.1-next.49
161
+
162
+ ## [0.0.1-next.48](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.47...identity-service-v0.0.1-next.48) (2025-06-17)
163
+
164
+
165
+ ### Miscellaneous Chores
166
+
167
+ * **identity-service:** Synchronize repo versions
168
+
169
+
170
+ ### Dependencies
171
+
172
+ * The following workspace dependencies were updated
173
+ * dependencies
174
+ * @twin.org/identity-models bumped from 0.0.1-next.47 to 0.0.1-next.48
175
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.47 to 0.0.1-next.48
176
+
177
+ ## [0.0.1-next.47](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.46...identity-service-v0.0.1-next.47) (2025-06-12)
178
+
179
+
180
+ ### Features
181
+
182
+ * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
183
+
184
+
185
+ ### Dependencies
186
+
187
+ * The following workspace dependencies were updated
188
+ * dependencies
189
+ * @twin.org/identity-models bumped from 0.0.1-next.46 to 0.0.1-next.47
190
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.46 to 0.0.1-next.47
191
+
192
+ ## [0.0.1-next.46](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.45...identity-service-v0.0.1-next.46) (2025-05-20)
193
+
194
+
195
+ ### Features
196
+
197
+ * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
198
+
199
+
200
+ ### Bug Fixes
201
+
202
+ * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
203
+ * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
204
+
205
+
206
+ ### Dependencies
207
+
208
+ * The following workspace dependencies were updated
209
+ * dependencies
210
+ * @twin.org/identity-models bumped from 0.0.1-next.45 to 0.0.1-next.46
211
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.45 to 0.0.1-next.46
212
+
213
+ ## [0.0.1-next.45](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.44...identity-service-v0.0.1-next.45) (2025-05-06)
214
+
215
+
216
+ ### Miscellaneous Chores
217
+
218
+ * **identity-service:** Synchronize repo versions
219
+
220
+
221
+ ### Dependencies
222
+
223
+ * The following workspace dependencies were updated
224
+ * dependencies
225
+ * @twin.org/identity-models bumped from 0.0.1-next.44 to 0.0.1-next.45
226
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.44 to 0.0.1-next.45
227
+
228
+ ## [0.0.1-next.44](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.43...identity-service-v0.0.1-next.44) (2025-04-30)
229
+
230
+
231
+ ### Miscellaneous Chores
232
+
233
+ * **identity-service:** Synchronize repo versions
234
+
235
+
236
+ ### Dependencies
237
+
238
+ * The following workspace dependencies were updated
239
+ * dependencies
240
+ * @twin.org/identity-models bumped from 0.0.1-next.43 to 0.0.1-next.44
241
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.43 to 0.0.1-next.44
242
+
243
+ ## [0.0.1-next.43](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.42...identity-service-v0.0.1-next.43) (2025-04-25)
244
+
245
+
246
+ ### Miscellaneous Chores
247
+
248
+ * **identity-service:** Synchronize repo versions
249
+
250
+
251
+ ### Dependencies
252
+
253
+ * The following workspace dependencies were updated
254
+ * dependencies
255
+ * @twin.org/identity-models bumped from 0.0.1-next.42 to 0.0.1-next.43
256
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.42 to 0.0.1-next.43
257
+
258
+ ## [0.0.1-next.42](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.41...identity-service-v0.0.1-next.42) (2025-04-17)
259
+
260
+
261
+ ### Features
262
+
263
+ * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
264
+
265
+
266
+ ### Dependencies
267
+
268
+ * The following workspace dependencies were updated
269
+ * dependencies
270
+ * @twin.org/identity-models bumped from 0.0.1-next.41 to 0.0.1-next.42
271
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.41 to 0.0.1-next.42
272
+
273
+ ## [0.0.1-next.41](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.40...identity-service-v0.0.1-next.41) (2025-04-09)
274
+
275
+
276
+ ### Miscellaneous Chores
277
+
278
+ * **identity-service:** Synchronize repo versions
279
+
280
+
281
+ ### Dependencies
282
+
283
+ * The following workspace dependencies were updated
284
+ * dependencies
285
+ * @twin.org/identity-models bumped from 0.0.1-next.40 to 0.0.1-next.41
286
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.40 to 0.0.1-next.41
287
+
288
+ ## [0.0.1-next.40](https://github.com/twinfoundation/identity/compare/identity-service-v0.0.1-next.39...identity-service-v0.0.1-next.40) (2025-03-28)
289
+
290
+
291
+ ### Bug Fixes
292
+
293
+ * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
294
+ * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
295
+
296
+
297
+ ### Dependencies
298
+
299
+ * The following workspace dependencies were updated
300
+ * dependencies
301
+ * @twin.org/identity-models bumped from 0.0.1-next.39 to 0.0.1-next.40
302
+ * @twin.org/identity-connector-entity-storage bumped from 0.0.1-next.39 to 0.0.1-next.40
303
+
304
+ ## v0.0.1-next.39
4
305
 
5
306
  - Initial Release