@twin.org/identity-connector-entity-storage 0.0.1-next.46 → 0.0.1-next.48

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,33 @@
1
1
  # @twin.org/identity-connector-entity-storage- Changelog
2
2
 
3
+ ## [0.0.1-next.48](https://github.com/twinfoundation/identity/compare/identity-connector-entity-storage-v0.0.1-next.47...identity-connector-entity-storage-v0.0.1-next.48) (2025-06-17)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **identity-connector-entity-storage:** Synchronize repo versions
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.47 to 0.0.1-next.48
16
+
17
+ ## [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)
18
+
19
+
20
+ ### Features
21
+
22
+ * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @twin.org/identity-models bumped from 0.0.1-next.46 to 0.0.1-next.47
30
+
3
31
  ## [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)
4
32
 
5
33
 
@@ -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`: `IDidVerifiableCredential`; \}\>
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`: `IDidVerifiableCredential`; \}\>
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`: `IDidVerifiablePresentation`; `issuers`: `IDidDocument`[]; \}\>
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`: `IDidVerifiablePresentation`; `issuers`: `IDidDocument`[]; \}\>
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`: `string`; \}\>
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`: `string`; \}\>
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.46",
3
+ "version": "0.0.1-next.48",
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.46",
22
+ "@twin.org/identity-models": "0.0.1-next.48",
23
23
  "@twin.org/nameof": "next",
24
24
  "@twin.org/standards-w3c-did": "next",
25
25
  "@twin.org/vault-models": "next",