@twin.org/immutable-proof-service 0.0.3-next.13 → 0.0.3-next.16

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.
@@ -21,4 +21,6 @@
21
21
  - [immutableProofCreate](functions/immutableProofCreate.md)
22
22
  - [immutableProofGet](functions/immutableProofGet.md)
23
23
  - [immutableProofVerify](functions/immutableProofVerify.md)
24
+ - [immutableProofRemove](functions/immutableProofRemove.md)
25
+ - [immutableProofRemoveNotarization](functions/immutableProofRemoveNotarization.md)
24
26
  - [initSchema](functions/initSchema.md)
@@ -18,16 +18,16 @@ immutable-proof
18
18
 
19
19
  ***
20
20
 
21
- ### verifiableStorageType? {#verifiablestoragetype}
21
+ ### notarizationConnectorType? {#notarizationconnectortype}
22
22
 
23
- > `optional` **verifiableStorageType?**: `string`
23
+ > `optional` **notarizationConnectorType?**: `string`
24
24
 
25
- The verifiable storage.
25
+ The notarization connector type.
26
26
 
27
27
  #### Default
28
28
 
29
29
  ```ts
30
- verifiable-storage
30
+ notarization
31
31
  ```
32
32
 
33
33
  ***
package/locales/en.json CHANGED
@@ -5,7 +5,8 @@
5
5
  "createFailed": "Creating the proof failed",
6
6
  "getFailed": "Getting the proof failed",
7
7
  "verifyFailed": "Verifying the proof failed",
8
- "removeVerifiableFailed": "Removing verifiable entry from the Immutable Proof failed",
8
+ "removeFailed": "Removing the Immutable Proof failed",
9
+ "removeNotarizationFailed": "Removing notarization entry from the Immutable Proof failed",
9
10
  "proofNotFound": "The proof with the Id \"{notFoundId}\" was not found",
10
11
  "createProofFailed": "Creating the immutable proof failed"
11
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/immutable-proof-service",
3
- "version": "0.0.3-next.13",
3
+ "version": "0.0.3-next.16",
4
4
  "description": "Core proof lifecycle service with route helpers for create, get, and verify operations",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,13 +24,13 @@
24
24
  "@twin.org/entity-storage-models": "next",
25
25
  "@twin.org/event-bus-models": "next",
26
26
  "@twin.org/identity-models": "next",
27
- "@twin.org/immutable-proof-models": "0.0.3-next.13",
28
- "@twin.org/immutable-proof-task": "0.0.3-next.13",
27
+ "@twin.org/immutable-proof-models": "0.0.3-next.16",
28
+ "@twin.org/immutable-proof-task": "0.0.3-next.16",
29
29
  "@twin.org/logging-models": "next",
30
30
  "@twin.org/nameof": "next",
31
+ "@twin.org/notarization-models": "next",
31
32
  "@twin.org/standards-w3c-did": "next",
32
33
  "@twin.org/vault-models": "next",
33
- "@twin.org/verifiable-storage-models": "next",
34
34
  "@twin.org/web": "next"
35
35
  },
36
36
  "main": "./dist/es/index.js",