@twin.org/immutable-proof-models 0.0.1-next.4 → 0.0.1-next.6
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/cjs/index.cjs
CHANGED
|
@@ -71,6 +71,10 @@ var properties = {
|
|
|
71
71
|
proof: {
|
|
72
72
|
$ref: "https://schema.twindev.org/did/DidProof",
|
|
73
73
|
description: "The proof which can be undefined if it has not yet been issued."
|
|
74
|
+
},
|
|
75
|
+
immutableReceipt: {
|
|
76
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdNodeObject",
|
|
77
|
+
description: "The immutable receipt detail for where the proof is stored."
|
|
74
78
|
}
|
|
75
79
|
};
|
|
76
80
|
var required = [
|
package/dist/esm/index.mjs
CHANGED
|
@@ -69,6 +69,10 @@ var properties = {
|
|
|
69
69
|
proof: {
|
|
70
70
|
$ref: "https://schema.twindev.org/did/DidProof",
|
|
71
71
|
description: "The proof which can be undefined if it has not yet been issued."
|
|
72
|
+
},
|
|
73
|
+
immutableReceipt: {
|
|
74
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdNodeObject",
|
|
75
|
+
description: "The immutable receipt detail for where the proof is stored."
|
|
72
76
|
}
|
|
73
77
|
};
|
|
74
78
|
var required = [
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { IJsonLdNodeObject } from "@twin.org/data-json-ld";
|
|
1
2
|
import type { IDidProof } from "@twin.org/standards-w3c-did";
|
|
2
3
|
import type { ImmutableProofTypes } from "./immutableProofTypes";
|
|
3
4
|
/**
|
|
@@ -32,4 +33,8 @@ export interface IImmutableProof {
|
|
|
32
33
|
* The proof which can be undefined if it has not yet been issued.
|
|
33
34
|
*/
|
|
34
35
|
proof?: IDidProof;
|
|
36
|
+
/**
|
|
37
|
+
* The immutable receipt detail for where the proof is stored.
|
|
38
|
+
*/
|
|
39
|
+
immutableReceipt?: IJsonLdNodeObject;
|
|
35
40
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -57,3 +57,11 @@ The hash of the object associated with the proof.
|
|
|
57
57
|
> `optional` **proof**: `IDidProof`
|
|
58
58
|
|
|
59
59
|
The proof which can be undefined if it has not yet been issued.
|
|
60
|
+
|
|
61
|
+
***
|
|
62
|
+
|
|
63
|
+
### immutableReceipt?
|
|
64
|
+
|
|
65
|
+
> `optional` **immutableReceipt**: `IJsonLdNodeObject`
|
|
66
|
+
|
|
67
|
+
The immutable receipt detail for where the proof is stored.
|
package/package.json
CHANGED