@twin.org/auditable-item-graph-models 0.0.1-next.31 → 0.0.1-next.32
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.
|
@@ -82,13 +82,13 @@ export interface IAuditableItemGraphComponent extends IComponent {
|
|
|
82
82
|
verifySignatureDepth?: VerifyDepth;
|
|
83
83
|
}): Promise<IAuditableItemGraphVertex>;
|
|
84
84
|
/**
|
|
85
|
-
* Remove the
|
|
85
|
+
* Remove the verifiable storage for an item.
|
|
86
86
|
* @param id The id of the vertex to remove the storage from.
|
|
87
87
|
* @param nodeIdentity The node identity to use for vault operations.
|
|
88
88
|
* @returns Nothing.
|
|
89
89
|
* @throws NotFoundError if the vertex is not found.
|
|
90
90
|
*/
|
|
91
|
-
|
|
91
|
+
removeVerifiable(id: string, nodeIdentity?: string): Promise<void>;
|
|
92
92
|
/**
|
|
93
93
|
* Query the graph for vertices.
|
|
94
94
|
* @param options The query options.
|
package/docs/changelog.md
CHANGED
|
@@ -174,11 +174,11 @@ NotFoundError if the vertex is not found.
|
|
|
174
174
|
|
|
175
175
|
***
|
|
176
176
|
|
|
177
|
-
###
|
|
177
|
+
### removeVerifiable()
|
|
178
178
|
|
|
179
|
-
> **
|
|
179
|
+
> **removeVerifiable**(`id`, `nodeIdentity`?): `Promise`\<`void`\>
|
|
180
180
|
|
|
181
|
-
Remove the
|
|
181
|
+
Remove the verifiable storage for an item.
|
|
182
182
|
|
|
183
183
|
#### Parameters
|
|
184
184
|
|
package/package.json
CHANGED