@twin.org/identity-connector-entity-storage 0.0.1-next.45 → 0.0.1-next.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @twin.org/identity-connector-entity-storage- Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.47](https://github.com/twinfoundation/identity/compare/identity-connector-entity-storage-v0.0.1-next.46...identity-connector-entity-storage-v0.0.1-next.47) (2025-06-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/identity-models bumped from 0.0.1-next.46 to 0.0.1-next.47
|
|
16
|
+
|
|
17
|
+
## [0.0.1-next.46](https://github.com/twinfoundation/identity/compare/identity-connector-entity-storage-v0.0.1-next.45...identity-connector-entity-storage-v0.0.1-next.46) (2025-05-20)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
|
|
28
|
+
* Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Dependencies
|
|
32
|
+
|
|
33
|
+
* The following workspace dependencies were updated
|
|
34
|
+
* dependencies
|
|
35
|
+
* @twin.org/identity-models bumped from 0.0.1-next.45 to 0.0.1-next.46
|
|
36
|
+
|
|
3
37
|
## [0.0.1-next.45](https://github.com/twinfoundation/identity/compare/identity-connector-entity-storage-v0.0.1-next.44...identity-connector-entity-storage-v0.0.1-next.45) (2025-05-06)
|
|
4
38
|
|
|
5
39
|
|
|
@@ -312,7 +312,7 @@ NotFoundError if the id can not be resolved.
|
|
|
312
312
|
|
|
313
313
|
### checkVerifiableCredential()
|
|
314
314
|
|
|
315
|
-
> **checkVerifiableCredential**(`credentialJwt`): `Promise`\<\{ `revoked`: `boolean`; `verifiableCredential
|
|
315
|
+
> **checkVerifiableCredential**(`credentialJwt`): `Promise`\<\{ `revoked`: `boolean`; `verifiableCredential?`: `IDidVerifiableCredential`; \}\>
|
|
316
316
|
|
|
317
317
|
Check a verifiable credential is valid.
|
|
318
318
|
|
|
@@ -326,7 +326,7 @@ The credential to verify.
|
|
|
326
326
|
|
|
327
327
|
#### Returns
|
|
328
328
|
|
|
329
|
-
`Promise`\<\{ `revoked`: `boolean`; `verifiableCredential
|
|
329
|
+
`Promise`\<\{ `revoked`: `boolean`; `verifiableCredential?`: `IDidVerifiableCredential`; \}\>
|
|
330
330
|
|
|
331
331
|
The credential stored in the jwt and the revocation status.
|
|
332
332
|
|
|
@@ -480,7 +480,7 @@ NotFoundError if the id can not be resolved.
|
|
|
480
480
|
|
|
481
481
|
### checkVerifiablePresentation()
|
|
482
482
|
|
|
483
|
-
> **checkVerifiablePresentation**(`presentationJwt`): `Promise`\<\{ `revoked`: `boolean`; `verifiablePresentation
|
|
483
|
+
> **checkVerifiablePresentation**(`presentationJwt`): `Promise`\<\{ `revoked`: `boolean`; `verifiablePresentation?`: `IDidVerifiablePresentation`; `issuers?`: `IDidDocument`[]; \}\>
|
|
484
484
|
|
|
485
485
|
Check a verifiable presentation is valid.
|
|
486
486
|
|
|
@@ -494,7 +494,7 @@ The presentation to verify.
|
|
|
494
494
|
|
|
495
495
|
#### Returns
|
|
496
496
|
|
|
497
|
-
`Promise`\<\{ `revoked`: `boolean`; `verifiablePresentation
|
|
497
|
+
`Promise`\<\{ `revoked`: `boolean`; `verifiablePresentation?`: `IDidVerifiablePresentation`; `issuers?`: `IDidDocument`[]; \}\>
|
|
498
498
|
|
|
499
499
|
The presentation stored in the jwt and the revocation status.
|
|
500
500
|
|
|
@@ -200,7 +200,7 @@ Nothing.
|
|
|
200
200
|
|
|
201
201
|
### list()
|
|
202
202
|
|
|
203
|
-
> **list**(`publicFilters?`, `privateFilters?`, `publicPropertyNames?`, `privatePropertyNames?`, `cursor?`, `pageSize?`): `Promise`\<\{ `items`: `object`[]; `cursor
|
|
203
|
+
> **list**(`publicFilters?`, `privateFilters?`, `publicPropertyNames?`, `privatePropertyNames?`, `cursor?`, `pageSize?`): `Promise`\<\{ `items`: `object`[]; `cursor?`: `string`; \}\>
|
|
204
204
|
|
|
205
205
|
Get a list of the requested types.
|
|
206
206
|
|
|
@@ -244,7 +244,7 @@ The maximum number of items in a page.
|
|
|
244
244
|
|
|
245
245
|
#### Returns
|
|
246
246
|
|
|
247
|
-
`Promise`\<\{ `items`: `object`[]; `cursor
|
|
247
|
+
`Promise`\<\{ `items`: `object`[]; `cursor?`: `string`; \}\>
|
|
248
248
|
|
|
249
249
|
The list of items and cursor for paging.
|
|
250
250
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-connector-entity-storage",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.47",
|
|
4
4
|
"description": "Identity connector implementation using entity storage",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@twin.org/data-core": "next",
|
|
20
20
|
"@twin.org/data-json-ld": "next",
|
|
21
21
|
"@twin.org/entity": "next",
|
|
22
|
-
"@twin.org/identity-models": "0.0.1-next.
|
|
22
|
+
"@twin.org/identity-models": "0.0.1-next.47",
|
|
23
23
|
"@twin.org/nameof": "next",
|
|
24
24
|
"@twin.org/standards-w3c-did": "next",
|
|
25
25
|
"@twin.org/vault-models": "next",
|