@twin.org/immutable-proof-models 0.0.1-next.27 → 0.0.1-next.28
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.
|
@@ -29,11 +29,11 @@ export interface IImmutableProofComponent extends IComponent {
|
|
|
29
29
|
*/
|
|
30
30
|
verify(id: string): Promise<IImmutableProofVerification>;
|
|
31
31
|
/**
|
|
32
|
-
* Remove the
|
|
32
|
+
* Remove the verifiable storage for the proof.
|
|
33
33
|
* @param id The id of the proof to remove the storage from.
|
|
34
34
|
* @param nodeIdentity The node identity to use for vault operations.
|
|
35
35
|
* @returns Nothing.
|
|
36
36
|
* @throws NotFoundError if the proof is not found.
|
|
37
37
|
*/
|
|
38
|
-
|
|
38
|
+
removeVerifiable(id: string, nodeIdentity?: string): Promise<void>;
|
|
39
39
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -94,11 +94,11 @@ NotFoundError if the proof is not found.
|
|
|
94
94
|
|
|
95
95
|
***
|
|
96
96
|
|
|
97
|
-
###
|
|
97
|
+
### removeVerifiable()
|
|
98
98
|
|
|
99
|
-
> **
|
|
99
|
+
> **removeVerifiable**(`id`, `nodeIdentity`?): `Promise`\<`void`\>
|
|
100
100
|
|
|
101
|
-
Remove the
|
|
101
|
+
Remove the verifiable storage for the proof.
|
|
102
102
|
|
|
103
103
|
#### Parameters
|
|
104
104
|
|
package/package.json
CHANGED