@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.
- package/dist/es/entities/immutableProof.js +3 -3
- package/dist/es/entities/immutableProof.js.map +1 -1
- package/dist/es/immutableProofRoutes.js +96 -12
- package/dist/es/immutableProofRoutes.js.map +1 -1
- package/dist/es/immutableProofService.js +72 -37
- package/dist/es/immutableProofService.js.map +1 -1
- package/dist/es/models/IImmutableProofServiceConstructorOptions.js.map +1 -1
- package/dist/types/entities/immutableProof.d.ts +2 -2
- package/dist/types/immutableProofRoutes.d.ts +18 -2
- package/dist/types/immutableProofService.d.ts +17 -7
- package/dist/types/models/IImmutableProofServiceConstructorOptions.d.ts +3 -3
- package/docs/changelog.md +69 -0
- package/docs/examples.md +1 -1
- package/docs/open-api/spec.json +232 -12
- package/docs/reference/classes/ImmutableProof.md +3 -3
- package/docs/reference/classes/ImmutableProofService.md +48 -8
- package/docs/reference/functions/immutableProofRemove.md +31 -0
- package/docs/reference/functions/immutableProofRemoveNotarization.md +31 -0
- package/docs/reference/index.md +2 -0
- package/docs/reference/interfaces/IImmutableProofServiceConstructorOptions.md +4 -4
- package/locales/en.json +2 -1
- package/package.json +4 -4
package/docs/reference/index.md
CHANGED
|
@@ -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
|
-
###
|
|
21
|
+
### notarizationConnectorType? {#notarizationconnectortype}
|
|
22
22
|
|
|
23
|
-
> `optional` **
|
|
23
|
+
> `optional` **notarizationConnectorType?**: `string`
|
|
24
24
|
|
|
25
|
-
The
|
|
25
|
+
The notarization connector type.
|
|
26
26
|
|
|
27
27
|
#### Default
|
|
28
28
|
|
|
29
29
|
```ts
|
|
30
|
-
|
|
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
|
-
"
|
|
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.
|
|
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.
|
|
28
|
-
"@twin.org/immutable-proof-task": "0.0.3-next.
|
|
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",
|