@twin.org/auditable-item-graph-models 0.0.1-next.3 → 0.0.1-next.30
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 +375 -253
- package/dist/esm/index.mjs +374 -253
- package/dist/types/index.d.ts +5 -3
- package/dist/types/models/IAuditableItemGraphAlias.d.ts +21 -3
- package/dist/types/models/IAuditableItemGraphAuditedElement.d.ts +7 -7
- package/dist/types/models/IAuditableItemGraphChangeset.d.ts +26 -10
- package/dist/types/models/IAuditableItemGraphComponent.d.ts +55 -59
- package/dist/types/models/IAuditableItemGraphEdge.d.ts +21 -3
- package/dist/types/models/IAuditableItemGraphPatchOperation.d.ts +28 -2
- package/dist/types/models/IAuditableItemGraphResource.d.ts +16 -2
- package/dist/types/models/IAuditableItemGraphVertex.d.ts +28 -2
- package/dist/types/models/IAuditableItemGraphVertexList.d.ts +25 -0
- package/dist/types/models/api/IAuditableItemGraphCreateRequest.d.ts +9 -9
- package/dist/types/models/api/IAuditableItemGraphGetRequest.d.ts +2 -2
- package/dist/types/models/api/IAuditableItemGraphGetResponse.d.ts +2 -13
- package/dist/types/models/api/IAuditableItemGraphListRequest.d.ts +10 -5
- package/dist/types/models/api/IAuditableItemGraphListResponse.d.ts +2 -12
- package/dist/types/models/api/IAuditableItemGraphUpdateRequest.d.ts +9 -9
- package/dist/types/models/auditableItemGraphContexts.d.ts +17 -0
- package/dist/types/models/auditableItemGraphTopics.d.ts +17 -0
- package/dist/types/models/auditableItemGraphTypes.d.ts +8 -24
- package/dist/types/models/eventBus/IAuditableItemGraphEventBusVertexCreated.d.ts +9 -0
- package/dist/types/models/eventBus/IAuditableItemGraphEventBusVertexUpdated.d.ts +14 -0
- package/docs/changelog.md +1 -1
- package/docs/reference/index.md +7 -5
- package/docs/reference/interfaces/IAuditableItemGraphAlias.md +34 -22
- package/docs/reference/interfaces/IAuditableItemGraphAuditedElement.md +11 -11
- package/docs/reference/interfaces/IAuditableItemGraphChangeset.md +33 -17
- package/docs/reference/interfaces/IAuditableItemGraphComponent.md +104 -54
- package/docs/reference/interfaces/IAuditableItemGraphCreateRequest.md +5 -5
- package/docs/reference/interfaces/IAuditableItemGraphEdge.md +38 -26
- package/docs/reference/interfaces/IAuditableItemGraphEventBusVertexCreated.md +11 -0
- package/docs/reference/interfaces/IAuditableItemGraphEventBusVertexUpdated.md +19 -0
- package/docs/reference/interfaces/IAuditableItemGraphGetRequest.md +2 -2
- package/docs/reference/interfaces/IAuditableItemGraphGetResponse.md +4 -4
- package/docs/reference/interfaces/IAuditableItemGraphListRequest.md +11 -5
- package/docs/reference/interfaces/IAuditableItemGraphListResponse.md +3 -3
- package/docs/reference/interfaces/IAuditableItemGraphPatchOperation.md +46 -2
- package/docs/reference/interfaces/IAuditableItemGraphResource.md +32 -20
- package/docs/reference/interfaces/IAuditableItemGraphUpdateRequest.md +5 -5
- package/docs/reference/interfaces/IAuditableItemGraphVertex.md +50 -18
- package/docs/reference/interfaces/IAuditableItemGraphVertexList.md +35 -0
- package/docs/reference/type-aliases/AuditableItemGraphContexts.md +5 -0
- package/docs/reference/type-aliases/AuditableItemGraphTopics.md +5 -0
- package/docs/reference/variables/AuditableItemGraphContexts.md +19 -0
- package/docs/reference/variables/AuditableItemGraphTopics.md +19 -0
- package/docs/reference/variables/AuditableItemGraphTypes.md +9 -33
- package/package.json +5 -34
- package/dist/types/models/IAuditableItemGraphCredential.d.ts +0 -25
- package/dist/types/models/IAuditableItemGraphMetadataElement.d.ts +0 -10
- package/dist/types/models/IAuditableItemGraphVerification.d.ts +0 -15
- package/dist/types/models/auditableItemGraphVerificationState.d.ts +0 -37
- package/docs/reference/interfaces/IAuditableItemGraphCredential.md +0 -43
- package/docs/reference/interfaces/IAuditableItemGraphVerification.md +0 -23
- package/docs/reference/type-aliases/AuditableItemGraphVerificationState.md +0 -5
- package/docs/reference/type-aliases/JsonReturnType.md +0 -13
- package/docs/reference/variables/AuditableItemGraphVerificationState.md +0 -49
|
@@ -15,33 +15,33 @@ export interface IAuditableItemGraphUpdateRequest {
|
|
|
15
15
|
/**
|
|
16
16
|
* The data to be used in the vertex.
|
|
17
17
|
*/
|
|
18
|
-
body
|
|
18
|
+
body: {
|
|
19
19
|
/**
|
|
20
|
-
* The
|
|
20
|
+
* The object to be used in the vertex as JSON-LD.
|
|
21
21
|
*/
|
|
22
|
-
|
|
22
|
+
annotationObject?: IJsonLdNodeObject;
|
|
23
23
|
/**
|
|
24
24
|
* Alternative aliases that can be used to identify the vertex.
|
|
25
25
|
*/
|
|
26
26
|
aliases?: {
|
|
27
27
|
id: string;
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
aliasFormat?: string;
|
|
29
|
+
annotationObject?: IJsonLdNodeObject;
|
|
30
30
|
}[];
|
|
31
31
|
/**
|
|
32
32
|
* The resources attached to the vertex.
|
|
33
33
|
*/
|
|
34
34
|
resources?: {
|
|
35
|
-
id
|
|
36
|
-
|
|
35
|
+
id?: string;
|
|
36
|
+
resourceObject?: IJsonLdNodeObject;
|
|
37
37
|
}[];
|
|
38
38
|
/**
|
|
39
39
|
* The edges connected to the vertex.
|
|
40
40
|
*/
|
|
41
41
|
edges?: {
|
|
42
42
|
id: string;
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
edgeRelationship: string;
|
|
44
|
+
annotationObject?: IJsonLdNodeObject;
|
|
45
45
|
}[];
|
|
46
46
|
};
|
|
47
47
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The contexts of auditable item graph data.
|
|
3
|
+
*/
|
|
4
|
+
export declare const AuditableItemGraphContexts: {
|
|
5
|
+
/**
|
|
6
|
+
* The context root for the auditable item graph types.
|
|
7
|
+
*/
|
|
8
|
+
readonly ContextRoot: "https://schema.twindev.org/aig/";
|
|
9
|
+
/**
|
|
10
|
+
* The context root for the common types.
|
|
11
|
+
*/
|
|
12
|
+
readonly ContextRootCommon: "https://schema.twindev.org/common/";
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* The contexts of auditable item graph data.
|
|
16
|
+
*/
|
|
17
|
+
export type AuditableItemGraphContexts = (typeof AuditableItemGraphContexts)[keyof typeof AuditableItemGraphContexts];
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The topics for auditable item graph event bus notifications.
|
|
3
|
+
*/
|
|
4
|
+
export declare const AuditableItemGraphTopics: {
|
|
5
|
+
/**
|
|
6
|
+
* A vertex was created.
|
|
7
|
+
*/
|
|
8
|
+
readonly VertexCreated: "auditable-item-graph:vertex-created";
|
|
9
|
+
/**
|
|
10
|
+
* A vertex was updated.
|
|
11
|
+
*/
|
|
12
|
+
readonly VertexUpdated: "auditable-item-graph:vertex-updated";
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* The topics for auditable item graph event bus notifications.
|
|
16
|
+
*/
|
|
17
|
+
export type AuditableItemGraphTopics = (typeof AuditableItemGraphTopics)[keyof typeof AuditableItemGraphTopics];
|
|
@@ -2,50 +2,34 @@
|
|
|
2
2
|
* The types of auditable item graph data.
|
|
3
3
|
*/
|
|
4
4
|
export declare const AuditableItemGraphTypes: {
|
|
5
|
-
/**
|
|
6
|
-
* The context uri for the auditable item graph types.
|
|
7
|
-
*/
|
|
8
|
-
readonly ContextUri: "https://schema.twindev.org/aig/";
|
|
9
|
-
/**
|
|
10
|
-
* The context root for the auditable item graph types.
|
|
11
|
-
*/
|
|
12
|
-
readonly ContextJsonld: "https://schema.twindev.org/aig/types.jsonld";
|
|
13
5
|
/**
|
|
14
6
|
* Represents auditable item graph vertex.
|
|
15
7
|
*/
|
|
16
|
-
readonly Vertex: "
|
|
8
|
+
readonly Vertex: "AuditableItemGraphVertex";
|
|
17
9
|
/**
|
|
18
10
|
* Represents auditable item graph alias.
|
|
19
11
|
*/
|
|
20
|
-
readonly Alias: "
|
|
12
|
+
readonly Alias: "AuditableItemGraphAlias";
|
|
21
13
|
/**
|
|
22
14
|
* Represents auditable item graph resource.
|
|
23
15
|
*/
|
|
24
|
-
readonly Resource: "
|
|
16
|
+
readonly Resource: "AuditableItemGraphResource";
|
|
25
17
|
/**
|
|
26
18
|
* Represents auditable item graph edge.
|
|
27
19
|
*/
|
|
28
|
-
readonly Edge: "
|
|
20
|
+
readonly Edge: "AuditableItemGraphEdge";
|
|
29
21
|
/**
|
|
30
22
|
* Represents auditable item graph changeset.
|
|
31
23
|
*/
|
|
32
|
-
readonly Changeset: "
|
|
24
|
+
readonly Changeset: "AuditableItemGraphChangeset";
|
|
33
25
|
/**
|
|
34
26
|
* Represents patch operation.
|
|
35
27
|
*/
|
|
36
|
-
readonly PatchOperation: "
|
|
37
|
-
/**
|
|
38
|
-
* Represents the immutable credential payload.
|
|
39
|
-
*/
|
|
40
|
-
readonly Credential: "https://schema.twindev.org/aig/AuditableItemGraphPatchCredential";
|
|
41
|
-
/**
|
|
42
|
-
* Represents auditable item stream verification.
|
|
43
|
-
*/
|
|
44
|
-
readonly Verification: "https://schema.twindev.org/aig/AuditableItemGraphVerification";
|
|
28
|
+
readonly PatchOperation: "AuditableItemGraphPatchOperation";
|
|
45
29
|
/**
|
|
46
|
-
* Represents auditable item stream
|
|
30
|
+
* Represents auditable item stream vertex list.
|
|
47
31
|
*/
|
|
48
|
-
readonly
|
|
32
|
+
readonly VertexList: "AuditableItemGraphVertexList";
|
|
49
33
|
};
|
|
50
34
|
/**
|
|
51
35
|
* The types of auditable item graph data.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { IPatchOperation } from "@twin.org/core";
|
|
2
|
+
/**
|
|
3
|
+
* Event bus payload for vertex updated.
|
|
4
|
+
*/
|
|
5
|
+
export interface IAuditableItemGraphEventBusVertexUpdated {
|
|
6
|
+
/**
|
|
7
|
+
* The id of the vertex updated.
|
|
8
|
+
*/
|
|
9
|
+
id: string;
|
|
10
|
+
/**
|
|
11
|
+
* The patches in the changeset.
|
|
12
|
+
*/
|
|
13
|
+
patches: IPatchOperation[];
|
|
14
|
+
}
|
package/docs/changelog.md
CHANGED
package/docs/reference/index.md
CHANGED
|
@@ -10,28 +10,30 @@
|
|
|
10
10
|
- [IAuditableItemGraphAuditedElement](interfaces/IAuditableItemGraphAuditedElement.md)
|
|
11
11
|
- [IAuditableItemGraphChangeset](interfaces/IAuditableItemGraphChangeset.md)
|
|
12
12
|
- [IAuditableItemGraphComponent](interfaces/IAuditableItemGraphComponent.md)
|
|
13
|
-
- [IAuditableItemGraphCredential](interfaces/IAuditableItemGraphCredential.md)
|
|
14
13
|
- [IAuditableItemGraphEdge](interfaces/IAuditableItemGraphEdge.md)
|
|
15
14
|
- [IAuditableItemGraphPatchOperation](interfaces/IAuditableItemGraphPatchOperation.md)
|
|
16
15
|
- [IAuditableItemGraphResource](interfaces/IAuditableItemGraphResource.md)
|
|
17
|
-
- [IAuditableItemGraphVerification](interfaces/IAuditableItemGraphVerification.md)
|
|
18
16
|
- [IAuditableItemGraphVertex](interfaces/IAuditableItemGraphVertex.md)
|
|
17
|
+
- [IAuditableItemGraphVertexList](interfaces/IAuditableItemGraphVertexList.md)
|
|
19
18
|
- [IAuditableItemGraphCreateRequest](interfaces/IAuditableItemGraphCreateRequest.md)
|
|
20
19
|
- [IAuditableItemGraphGetRequest](interfaces/IAuditableItemGraphGetRequest.md)
|
|
21
20
|
- [IAuditableItemGraphGetResponse](interfaces/IAuditableItemGraphGetResponse.md)
|
|
22
21
|
- [IAuditableItemGraphListRequest](interfaces/IAuditableItemGraphListRequest.md)
|
|
23
22
|
- [IAuditableItemGraphListResponse](interfaces/IAuditableItemGraphListResponse.md)
|
|
24
23
|
- [IAuditableItemGraphUpdateRequest](interfaces/IAuditableItemGraphUpdateRequest.md)
|
|
24
|
+
- [IAuditableItemGraphEventBusVertexCreated](interfaces/IAuditableItemGraphEventBusVertexCreated.md)
|
|
25
|
+
- [IAuditableItemGraphEventBusVertexUpdated](interfaces/IAuditableItemGraphEventBusVertexUpdated.md)
|
|
25
26
|
|
|
26
27
|
## Type Aliases
|
|
27
28
|
|
|
28
|
-
- [
|
|
29
|
+
- [AuditableItemGraphContexts](type-aliases/AuditableItemGraphContexts.md)
|
|
30
|
+
- [AuditableItemGraphTopics](type-aliases/AuditableItemGraphTopics.md)
|
|
29
31
|
- [AuditableItemGraphTypes](type-aliases/AuditableItemGraphTypes.md)
|
|
30
|
-
- [AuditableItemGraphVerificationState](type-aliases/AuditableItemGraphVerificationState.md)
|
|
31
32
|
- [VerifyDepth](type-aliases/VerifyDepth.md)
|
|
32
33
|
|
|
33
34
|
## Variables
|
|
34
35
|
|
|
36
|
+
- [AuditableItemGraphContexts](variables/AuditableItemGraphContexts.md)
|
|
37
|
+
- [AuditableItemGraphTopics](variables/AuditableItemGraphTopics.md)
|
|
35
38
|
- [AuditableItemGraphTypes](variables/AuditableItemGraphTypes.md)
|
|
36
|
-
- [AuditableItemGraphVerificationState](variables/AuditableItemGraphVerificationState.md)
|
|
37
39
|
- [VerifyDepth](variables/VerifyDepth.md)
|
|
@@ -4,15 +4,15 @@ Interface describing an alias for a vertex.
|
|
|
4
4
|
|
|
5
5
|
## Extends
|
|
6
6
|
|
|
7
|
-
- [`IAuditableItemGraphAuditedElement`](IAuditableItemGraphAuditedElement.md)
|
|
7
|
+
- [`IAuditableItemGraphAuditedElement`](IAuditableItemGraphAuditedElement.md)
|
|
8
8
|
|
|
9
9
|
## Properties
|
|
10
10
|
|
|
11
|
-
###
|
|
11
|
+
### @context
|
|
12
12
|
|
|
13
|
-
> `
|
|
13
|
+
> **@context**: `"https://schema.twindev.org/aig/"` \| \[`"https://schema.twindev.org/aig/"`, `...IJsonLdContextDefinitionElement[]`\]
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
JSON-LD Context.
|
|
16
16
|
|
|
17
17
|
***
|
|
18
18
|
|
|
@@ -22,54 +22,66 @@ The format of the id in the alias.
|
|
|
22
22
|
|
|
23
23
|
The id of the element.
|
|
24
24
|
|
|
25
|
-
####
|
|
25
|
+
#### Overrides
|
|
26
26
|
|
|
27
27
|
[`IAuditableItemGraphAuditedElement`](IAuditableItemGraphAuditedElement.md).[`id`](IAuditableItemGraphAuditedElement.md#id)
|
|
28
28
|
|
|
29
29
|
***
|
|
30
30
|
|
|
31
|
-
###
|
|
31
|
+
### type
|
|
32
32
|
|
|
33
|
-
> **
|
|
33
|
+
> **type**: `"AuditableItemGraphAlias"`
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
JSON-LD Type.
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
***
|
|
38
|
+
|
|
39
|
+
### annotationObject?
|
|
40
|
+
|
|
41
|
+
> `optional` **annotationObject**: `IJsonLdNodeObject`
|
|
38
42
|
|
|
39
|
-
|
|
43
|
+
The JSON-LD annotation object for the alias.
|
|
44
|
+
|
|
45
|
+
***
|
|
46
|
+
|
|
47
|
+
### aliasFormat?
|
|
48
|
+
|
|
49
|
+
> `optional` **aliasFormat**: `string`
|
|
50
|
+
|
|
51
|
+
The format of the id in the alias.
|
|
40
52
|
|
|
41
53
|
***
|
|
42
54
|
|
|
43
|
-
###
|
|
55
|
+
### dateCreated?
|
|
44
56
|
|
|
45
|
-
> `optional` **
|
|
57
|
+
> `optional` **dateCreated**: `string`
|
|
46
58
|
|
|
47
|
-
The
|
|
59
|
+
The date/time of when the element was created.
|
|
48
60
|
|
|
49
61
|
#### Inherited from
|
|
50
62
|
|
|
51
|
-
[`IAuditableItemGraphAuditedElement`](IAuditableItemGraphAuditedElement.md).[`
|
|
63
|
+
[`IAuditableItemGraphAuditedElement`](IAuditableItemGraphAuditedElement.md).[`dateCreated`](IAuditableItemGraphAuditedElement.md#datecreated)
|
|
52
64
|
|
|
53
65
|
***
|
|
54
66
|
|
|
55
|
-
###
|
|
67
|
+
### dateModified?
|
|
56
68
|
|
|
57
|
-
> `optional` **
|
|
69
|
+
> `optional` **dateModified**: `string`
|
|
58
70
|
|
|
59
|
-
The
|
|
71
|
+
The date/time of when the element was modified.
|
|
60
72
|
|
|
61
73
|
#### Inherited from
|
|
62
74
|
|
|
63
|
-
[`IAuditableItemGraphAuditedElement`](IAuditableItemGraphAuditedElement.md).[`
|
|
75
|
+
[`IAuditableItemGraphAuditedElement`](IAuditableItemGraphAuditedElement.md).[`dateModified`](IAuditableItemGraphAuditedElement.md#datemodified)
|
|
64
76
|
|
|
65
77
|
***
|
|
66
78
|
|
|
67
|
-
###
|
|
79
|
+
### dateDeleted?
|
|
68
80
|
|
|
69
|
-
> `optional` **
|
|
81
|
+
> `optional` **dateDeleted**: `string`
|
|
70
82
|
|
|
71
|
-
The
|
|
83
|
+
The date/time of when the element was deleted, as we never actually remove items.
|
|
72
84
|
|
|
73
85
|
#### Inherited from
|
|
74
86
|
|
|
75
|
-
`
|
|
87
|
+
[`IAuditableItemGraphAuditedElement`](IAuditableItemGraphAuditedElement.md).[`dateDeleted`](IAuditableItemGraphAuditedElement.md#datedeleted)
|
|
@@ -10,32 +10,32 @@ Interface describing the base properties for auditable elements.
|
|
|
10
10
|
|
|
11
11
|
## Properties
|
|
12
12
|
|
|
13
|
-
### id
|
|
13
|
+
### id?
|
|
14
14
|
|
|
15
|
-
> **id**: `string`
|
|
15
|
+
> `optional` **id**: `string`
|
|
16
16
|
|
|
17
17
|
The id of the element.
|
|
18
18
|
|
|
19
19
|
***
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### dateCreated?
|
|
22
22
|
|
|
23
|
-
> **
|
|
23
|
+
> `optional` **dateCreated**: `string`
|
|
24
24
|
|
|
25
|
-
The
|
|
25
|
+
The date/time of when the element was created.
|
|
26
26
|
|
|
27
27
|
***
|
|
28
28
|
|
|
29
|
-
###
|
|
29
|
+
### dateModified?
|
|
30
30
|
|
|
31
|
-
> `optional` **
|
|
31
|
+
> `optional` **dateModified**: `string`
|
|
32
32
|
|
|
33
|
-
The
|
|
33
|
+
The date/time of when the element was modified.
|
|
34
34
|
|
|
35
35
|
***
|
|
36
36
|
|
|
37
|
-
###
|
|
37
|
+
### dateDeleted?
|
|
38
38
|
|
|
39
|
-
> `optional` **
|
|
39
|
+
> `optional` **dateDeleted**: `string`
|
|
40
40
|
|
|
41
|
-
The
|
|
41
|
+
The date/time of when the element was deleted, as we never actually remove items.
|
|
@@ -4,11 +4,35 @@ Interface describing a set of updates to the vertex.
|
|
|
4
4
|
|
|
5
5
|
## Properties
|
|
6
6
|
|
|
7
|
-
###
|
|
7
|
+
### @context
|
|
8
8
|
|
|
9
|
-
>
|
|
9
|
+
> **@context**: \[`"https://schema.twindev.org/aig/"`, `"https://schema.twindev.org/common/"`, `...IJsonLdContextDefinitionElement[]`\]
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
JSON-LD Context.
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### type
|
|
16
|
+
|
|
17
|
+
> **type**: `"AuditableItemGraphChangeset"`
|
|
18
|
+
|
|
19
|
+
JSON-LD Type.
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### id
|
|
24
|
+
|
|
25
|
+
> **id**: `string`
|
|
26
|
+
|
|
27
|
+
The id of the changeset.
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### dateCreated
|
|
32
|
+
|
|
33
|
+
> **dateCreated**: `string`
|
|
34
|
+
|
|
35
|
+
The date/time of when the changeset was created.
|
|
12
36
|
|
|
13
37
|
***
|
|
14
38
|
|
|
@@ -28,24 +52,16 @@ The patches in the changeset.
|
|
|
28
52
|
|
|
29
53
|
***
|
|
30
54
|
|
|
31
|
-
###
|
|
32
|
-
|
|
33
|
-
> **hash**: `string`
|
|
34
|
-
|
|
35
|
-
The hash for the changeset.
|
|
36
|
-
|
|
37
|
-
***
|
|
38
|
-
|
|
39
|
-
### signature
|
|
55
|
+
### proofId?
|
|
40
56
|
|
|
41
|
-
> **
|
|
57
|
+
> `optional` **proofId**: `string`
|
|
42
58
|
|
|
43
|
-
The signature for
|
|
59
|
+
The immutable proof id which contains the signature for this changeset.
|
|
44
60
|
|
|
45
61
|
***
|
|
46
62
|
|
|
47
|
-
###
|
|
63
|
+
### verification?
|
|
48
64
|
|
|
49
|
-
> `optional` **
|
|
65
|
+
> `optional` **verification**: `IImmutableProofVerification`
|
|
50
66
|
|
|
51
|
-
The
|
|
67
|
+
The verification for the changeset.
|