@twin.org/auditable-item-graph-models 0.0.3-next.11 → 0.0.3-next.13
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/README.md +3 -1
- package/dist/es/dataTypes/auditableItemGraphDataTypes.js +37 -43
- package/dist/es/dataTypes/auditableItemGraphDataTypes.js.map +1 -1
- package/dist/es/models/IAuditableItemGraphAlias.js.map +1 -1
- package/dist/es/models/IAuditableItemGraphAuditedElement.js.map +1 -1
- package/dist/es/models/IAuditableItemGraphChangeset.js.map +1 -1
- package/dist/es/models/IAuditableItemGraphChangesetList.js.map +1 -1
- package/dist/es/models/IAuditableItemGraphComponent.js.map +1 -1
- package/dist/es/models/IAuditableItemGraphEdge.js.map +1 -1
- package/dist/es/models/IAuditableItemGraphPatchOperation.js.map +1 -1
- package/dist/es/models/IAuditableItemGraphResource.js.map +1 -1
- package/dist/es/models/IAuditableItemGraphVertex.js.map +1 -1
- package/dist/es/models/IAuditableItemGraphVertexList.js.map +1 -1
- package/dist/es/models/api/IAuditableItemGraphCreateRequest.js.map +1 -1
- package/dist/es/models/api/IAuditableItemGraphUpdateRequest.js.map +1 -1
- package/dist/es/schemas/AuditableItemGraphAlias.json +18 -24
- package/dist/es/schemas/AuditableItemGraphAuditedElement.json +25 -0
- package/dist/es/schemas/AuditableItemGraphChangeset.json +9 -11
- package/dist/es/schemas/AuditableItemGraphEdge.json +15 -25
- package/dist/es/schemas/AuditableItemGraphPatchOperation.json +26 -17
- package/dist/es/schemas/AuditableItemGraphResource.json +9 -23
- package/dist/es/schemas/AuditableItemGraphVertex.json +35 -28
- package/dist/es/schemas/AuditableItemGraphVertexList.json +16 -18
- package/dist/types/models/IAuditableItemGraphAlias.d.ts +8 -3
- package/dist/types/models/IAuditableItemGraphAuditedElement.d.ts +3 -3
- package/dist/types/models/IAuditableItemGraphChangeset.d.ts +5 -5
- package/dist/types/models/IAuditableItemGraphChangesetList.d.ts +1 -1
- package/dist/types/models/IAuditableItemGraphComponent.d.ts +2 -39
- package/dist/types/models/IAuditableItemGraphEdge.d.ts +4 -4
- package/dist/types/models/IAuditableItemGraphPatchOperation.d.ts +4 -4
- package/dist/types/models/IAuditableItemGraphResource.d.ts +2 -2
- package/dist/types/models/IAuditableItemGraphVertex.d.ts +6 -6
- package/dist/types/models/IAuditableItemGraphVertexList.d.ts +1 -1
- package/dist/types/models/api/IAuditableItemGraphCreateRequest.d.ts +2 -31
- package/dist/types/models/api/IAuditableItemGraphUpdateRequest.d.ts +2 -32
- package/docs/changelog.md +122 -108
- package/docs/examples.md +22 -1
- package/docs/reference/classes/AuditableItemGraphDataTypes.md +1 -1
- package/docs/reference/interfaces/IAuditableItemGraphAlias.md +22 -19
- package/docs/reference/interfaces/IAuditableItemGraphAuditedElement.md +8 -11
- package/docs/reference/interfaces/IAuditableItemGraphChangeset.md +12 -17
- package/docs/reference/interfaces/IAuditableItemGraphChangesetGetRequest.md +6 -6
- package/docs/reference/interfaces/IAuditableItemGraphChangesetGetResponse.md +3 -3
- package/docs/reference/interfaces/IAuditableItemGraphChangesetList.md +3 -4
- package/docs/reference/interfaces/IAuditableItemGraphChangesetListRequest.md +8 -8
- package/docs/reference/interfaces/IAuditableItemGraphChangesetListResponse.md +4 -4
- package/docs/reference/interfaces/IAuditableItemGraphComponent.md +13 -63
- package/docs/reference/interfaces/IAuditableItemGraphCreateRequest.md +2 -26
- package/docs/reference/interfaces/IAuditableItemGraphEdge.md +15 -21
- package/docs/reference/interfaces/IAuditableItemGraphEventBusVertexCreated.md +1 -1
- package/docs/reference/interfaces/IAuditableItemGraphEventBusVertexUpdated.md +2 -2
- package/docs/reference/interfaces/IAuditableItemGraphGetRequest.md +7 -7
- package/docs/reference/interfaces/IAuditableItemGraphGetResponse.md +3 -3
- package/docs/reference/interfaces/IAuditableItemGraphListRequest.md +14 -14
- package/docs/reference/interfaces/IAuditableItemGraphListResponse.md +4 -4
- package/docs/reference/interfaces/IAuditableItemGraphPatchOperation.md +9 -13
- package/docs/reference/interfaces/IAuditableItemGraphResource.md +13 -17
- package/docs/reference/interfaces/IAuditableItemGraphUpdateRequest.md +3 -27
- package/docs/reference/interfaces/IAuditableItemGraphVertex.md +21 -30
- package/docs/reference/interfaces/IAuditableItemGraphVertexList.md +3 -4
- package/docs/reference/variables/AuditableItemGraphContexts.md +6 -6
- package/docs/reference/variables/AuditableItemGraphTopics.md +2 -2
- package/docs/reference/variables/AuditableItemGraphTypes.md +8 -8
- package/docs/reference/variables/VerifyDepth.md +3 -3
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { IAuditableItemGraphVertex } from "../IAuditableItemGraphVertex.js";
|
|
2
2
|
/**
|
|
3
3
|
* Update an auditable item graph vertex.
|
|
4
4
|
*/
|
|
@@ -15,35 +15,5 @@ export interface IAuditableItemGraphUpdateRequest {
|
|
|
15
15
|
/**
|
|
16
16
|
* The data to be used in the vertex.
|
|
17
17
|
*/
|
|
18
|
-
body:
|
|
19
|
-
/**
|
|
20
|
-
* The object to be used in the vertex as JSON-LD.
|
|
21
|
-
*/
|
|
22
|
-
annotationObject?: IJsonLdNodeObject;
|
|
23
|
-
/**
|
|
24
|
-
* Alternative aliases that can be used to identify the vertex.
|
|
25
|
-
*/
|
|
26
|
-
aliases?: {
|
|
27
|
-
id: string;
|
|
28
|
-
aliasFormat?: string;
|
|
29
|
-
unique?: boolean;
|
|
30
|
-
annotationObject?: IJsonLdNodeObject;
|
|
31
|
-
}[];
|
|
32
|
-
/**
|
|
33
|
-
* The resources attached to the vertex.
|
|
34
|
-
*/
|
|
35
|
-
resources?: {
|
|
36
|
-
id?: string;
|
|
37
|
-
resourceObject?: IJsonLdNodeObject;
|
|
38
|
-
}[];
|
|
39
|
-
/**
|
|
40
|
-
* The edges connected to the vertex.
|
|
41
|
-
*/
|
|
42
|
-
edges?: {
|
|
43
|
-
id?: string;
|
|
44
|
-
targetId: string;
|
|
45
|
-
edgeRelationships: string[];
|
|
46
|
-
annotationObject?: IJsonLdNodeObject;
|
|
47
|
-
}[];
|
|
48
|
-
};
|
|
18
|
+
body: Omit<IAuditableItemGraphVertex, "id">;
|
|
49
19
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,288 +1,302 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [0.0.3-next.13](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.12...auditable-item-graph-models-v0.0.3-next.13) (2026-05-12)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Features
|
|
7
7
|
|
|
8
|
-
* update
|
|
8
|
+
* typescript 6 update ([2483c31](https://github.com/iotaledger/twin-auditable-item-graph/commit/2483c3171cff4c5ecedc83d958ab551291a4a487))
|
|
9
9
|
|
|
10
|
-
## [0.0.3-next.
|
|
10
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.11...auditable-item-graph-models-v0.0.3-next.12) (2026-03-24)
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
### Features
|
|
14
14
|
|
|
15
|
-
* add
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
*
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
15
|
+
* add vertex validation ([#54](https://github.com/iotaledger/twin-auditable-item-graph/issues/54)) ([d3ef124](https://github.com/iotaledger/twin-auditable-item-graph/commit/d3ef1241f60956dc296e22d063f188921255d68c))
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.10...auditable-item-graph-models-v0.0.3-next.11) (2026-02-25)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* update schemas ([b00bcac](https://github.com/iotaledger/twin-auditable-item-graph/commit/b00bcac6551fa524e8871e1b573a712ed0f30943))
|
|
23
|
+
|
|
24
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.9...auditable-item-graph-models-v0.0.3-next.10) (2026-02-24)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* add context id features ([#30](https://github.com/iotaledger/twin-auditable-item-graph/issues/30)) ([a35d37c](https://github.com/iotaledger/twin-auditable-item-graph/commit/a35d37c0db62a240adde493965c0a9f7971fec45))
|
|
30
|
+
* add data types with fully qualified name ([93e1ee7](https://github.com/iotaledger/twin-auditable-item-graph/commit/93e1ee7c0f7bad81f003787f797f363864e201af))
|
|
31
|
+
* add ts-to-jsonld-context tool ([08d360e](https://github.com/iotaledger/twin-auditable-item-graph/commit/08d360e05fd7f8c5bbe6ee4d4e691ffd516db418))
|
|
32
|
+
* add unique flag for alias, and exact match option for id query ([33dbd19](https://github.com/iotaledger/twin-auditable-item-graph/commit/33dbd19cabd9fbfaba81032f1d1a6527584c3f5a))
|
|
33
|
+
* add validate-locales ([e76e6f6](https://github.com/iotaledger/twin-auditable-item-graph/commit/e76e6f6b3ec9c447a04315d353442e32233601d3))
|
|
34
|
+
* changeset endpoints ([#44](https://github.com/iotaledger/twin-auditable-item-graph/issues/44)) ([7c854de](https://github.com/iotaledger/twin-auditable-item-graph/commit/7c854de39b247d6f24cd94a04a9f99fa9edde51d))
|
|
35
|
+
* eslint migration to flat config ([1b42a3a](https://github.com/iotaledger/twin-auditable-item-graph/commit/1b42a3a27bd6e32d7816de406b92b6332472edf6))
|
|
36
|
+
* id optional in edge updates ([6b63fe3](https://github.com/iotaledger/twin-auditable-item-graph/commit/6b63fe34553104843ae15aa5066775f5872859e9))
|
|
37
|
+
* improve comments ([97f311a](https://github.com/iotaledger/twin-auditable-item-graph/commit/97f311a9cc4353b5020a48a44420c97a2fa0c8d7))
|
|
38
|
+
* improve JSON schemas ([bec8dc1](https://github.com/iotaledger/twin-auditable-item-graph/commit/bec8dc1f270c6c9710623a192b984cf46f8a5613))
|
|
39
|
+
* replace nextItem property with Link header ([#39](https://github.com/iotaledger/twin-auditable-item-graph/issues/39)) ([b29a333](https://github.com/iotaledger/twin-auditable-item-graph/commit/b29a333ca78ca2091e54e3e6f4355f84c350007d))
|
|
40
|
+
* update background task service ([e483ddb](https://github.com/iotaledger/twin-auditable-item-graph/commit/e483ddbc948f035334f92b8342248caa6abbe441))
|
|
41
|
+
* update contexts ([#35](https://github.com/iotaledger/twin-auditable-item-graph/issues/35)) ([cdf0989](https://github.com/iotaledger/twin-auditable-item-graph/commit/cdf0989fe4677a88b757e97e752b7d4c29013a7e))
|
|
42
|
+
* update contexts and namespaces ([#33](https://github.com/iotaledger/twin-auditable-item-graph/issues/33)) ([5dadb99](https://github.com/iotaledger/twin-auditable-item-graph/commit/5dadb99773d410aceacaba7ed92c1ccb8b46516b))
|
|
43
|
+
* update dependencies ([6986689](https://github.com/iotaledger/twin-auditable-item-graph/commit/698668957a1fcb7f85ce2f117914d5980043924f))
|
|
44
|
+
* update edges to use targetId instead of id ([6c5d0e3](https://github.com/iotaledger/twin-auditable-item-graph/commit/6c5d0e31b6e2ea74bfa2f3344e4be628e5f237af))
|
|
45
|
+
* update framework core ([88ad4e6](https://github.com/iotaledger/twin-auditable-item-graph/commit/88ad4e6421132c3c6c45579b078d982a26f16990))
|
|
46
|
+
* update targetid json context type ([1e47ca7](https://github.com/iotaledger/twin-auditable-item-graph/commit/1e47ca7ec3080251d940fd8e58c44ca4fa9457f7))
|
|
47
|
+
* update ts-to-schema generation ([edce91e](https://github.com/iotaledger/twin-auditable-item-graph/commit/edce91e8272ab361595489458066040caf582df2))
|
|
48
|
+
* use new nameof operators ([3921c4c](https://github.com/iotaledger/twin-auditable-item-graph/commit/3921c4c9ac53e42459e45f10d9e702afb2797a23))
|
|
49
|
+
* use shared store mechanism ([#10](https://github.com/iotaledger/twin-auditable-item-graph/issues/10)) ([da035e5](https://github.com/iotaledger/twin-auditable-item-graph/commit/da035e5eb8f157482b4eb2bdbc689c6c0647ff7d))
|
|
50
|
+
* use standard list json ld types ([8f53836](https://github.com/iotaledger/twin-auditable-item-graph/commit/8f53836d4c83a98d64d7f5fe0531bb9af09464ae))
|
|
37
51
|
|
|
38
52
|
|
|
39
53
|
### Bug Fixes
|
|
40
54
|
|
|
41
|
-
* only include alias in index if not deleted ([#6](https://github.com/
|
|
42
|
-
* query params force coercion ([2dd9afe](https://github.com/
|
|
55
|
+
* only include alias in index if not deleted ([#6](https://github.com/iotaledger/twin-auditable-item-graph/issues/6)) ([5da3c41](https://github.com/iotaledger/twin-auditable-item-graph/commit/5da3c419fafa2afefd34b1c570d103012b888a75))
|
|
56
|
+
* query params force coercion ([2dd9afe](https://github.com/iotaledger/twin-auditable-item-graph/commit/2dd9afe9ec37e2a91c110317fe289f7495c187a0))
|
|
43
57
|
|
|
44
|
-
## [0.0.3-next.9](https://github.com/
|
|
58
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.8...auditable-item-graph-models-v0.0.3-next.9) (2026-02-23)
|
|
45
59
|
|
|
46
60
|
|
|
47
61
|
### Miscellaneous Chores
|
|
48
62
|
|
|
49
63
|
* **auditable-item-graph-models:** Synchronize repo versions
|
|
50
64
|
|
|
51
|
-
## [0.0.3-next.8](https://github.com/
|
|
65
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.7...auditable-item-graph-models-v0.0.3-next.8) (2026-02-11)
|
|
52
66
|
|
|
53
67
|
|
|
54
68
|
### Miscellaneous Chores
|
|
55
69
|
|
|
56
70
|
* **auditable-item-graph-models:** Synchronize repo versions
|
|
57
71
|
|
|
58
|
-
## [0.0.3-next.7](https://github.com/
|
|
72
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.6...auditable-item-graph-models-v0.0.3-next.7) (2026-02-11)
|
|
59
73
|
|
|
60
74
|
|
|
61
75
|
### Features
|
|
62
76
|
|
|
63
|
-
* add ts-to-jsonld-context tool ([08d360e](https://github.com/
|
|
64
|
-
* changeset endpoints ([#44](https://github.com/
|
|
65
|
-
* update targetid json context type ([1e47ca7](https://github.com/
|
|
77
|
+
* add ts-to-jsonld-context tool ([08d360e](https://github.com/iotaledger/twin-auditable-item-graph/commit/08d360e05fd7f8c5bbe6ee4d4e691ffd516db418))
|
|
78
|
+
* changeset endpoints ([#44](https://github.com/iotaledger/twin-auditable-item-graph/issues/44)) ([7c854de](https://github.com/iotaledger/twin-auditable-item-graph/commit/7c854de39b247d6f24cd94a04a9f99fa9edde51d))
|
|
79
|
+
* update targetid json context type ([1e47ca7](https://github.com/iotaledger/twin-auditable-item-graph/commit/1e47ca7ec3080251d940fd8e58c44ca4fa9457f7))
|
|
66
80
|
|
|
67
|
-
## [0.0.3-next.6](https://github.com/
|
|
81
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.5...auditable-item-graph-models-v0.0.3-next.6) (2026-01-26)
|
|
68
82
|
|
|
69
83
|
|
|
70
84
|
### Miscellaneous Chores
|
|
71
85
|
|
|
72
86
|
* **auditable-item-graph-models:** Synchronize repo versions
|
|
73
87
|
|
|
74
|
-
## [0.0.3-next.5](https://github.com/
|
|
88
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.4...auditable-item-graph-models-v0.0.3-next.5) (2026-01-23)
|
|
75
89
|
|
|
76
90
|
|
|
77
91
|
### Features
|
|
78
92
|
|
|
79
|
-
* replace nextItem property with Link header ([#39](https://github.com/
|
|
93
|
+
* replace nextItem property with Link header ([#39](https://github.com/iotaledger/twin-auditable-item-graph/issues/39)) ([b29a333](https://github.com/iotaledger/twin-auditable-item-graph/commit/b29a333ca78ca2091e54e3e6f4355f84c350007d))
|
|
80
94
|
|
|
81
|
-
## [0.0.3-next.4](https://github.com/
|
|
95
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.3...auditable-item-graph-models-v0.0.3-next.4) (2026-01-22)
|
|
82
96
|
|
|
83
97
|
|
|
84
98
|
### Miscellaneous Chores
|
|
85
99
|
|
|
86
100
|
* **auditable-item-graph-models:** Synchronize repo versions
|
|
87
101
|
|
|
88
|
-
## [0.0.3-next.3](https://github.com/
|
|
102
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.2...auditable-item-graph-models-v0.0.3-next.3) (2026-01-21)
|
|
89
103
|
|
|
90
104
|
|
|
91
105
|
### Features
|
|
92
106
|
|
|
93
|
-
* update contexts ([#35](https://github.com/
|
|
107
|
+
* update contexts ([#35](https://github.com/iotaledger/twin-auditable-item-graph/issues/35)) ([cdf0989](https://github.com/iotaledger/twin-auditable-item-graph/commit/cdf0989fe4677a88b757e97e752b7d4c29013a7e))
|
|
94
108
|
|
|
95
|
-
## [0.0.3-next.2](https://github.com/
|
|
109
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.1...auditable-item-graph-models-v0.0.3-next.2) (2026-01-14)
|
|
96
110
|
|
|
97
111
|
|
|
98
112
|
### Features
|
|
99
113
|
|
|
100
|
-
* update contexts and namespaces ([#33](https://github.com/
|
|
114
|
+
* update contexts and namespaces ([#33](https://github.com/iotaledger/twin-auditable-item-graph/issues/33)) ([5dadb99](https://github.com/iotaledger/twin-auditable-item-graph/commit/5dadb99773d410aceacaba7ed92c1ccb8b46516b))
|
|
101
115
|
|
|
102
|
-
## [0.0.3-next.1](https://github.com/
|
|
116
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.3-next.0...auditable-item-graph-models-v0.0.3-next.1) (2025-11-28)
|
|
103
117
|
|
|
104
118
|
|
|
105
119
|
### Features
|
|
106
120
|
|
|
107
|
-
* add context id features ([#30](https://github.com/
|
|
108
|
-
* add data types with fully qualified name ([93e1ee7](https://github.com/
|
|
109
|
-
* add unique flag for alias, and exact match option for id query ([33dbd19](https://github.com/
|
|
110
|
-
* add validate-locales ([e76e6f6](https://github.com/
|
|
111
|
-
* eslint migration to flat config ([1b42a3a](https://github.com/
|
|
112
|
-
* id optional in edge updates ([6b63fe3](https://github.com/
|
|
113
|
-
* improve comments ([97f311a](https://github.com/
|
|
114
|
-
* improve JSON schemas ([bec8dc1](https://github.com/
|
|
115
|
-
* update background task service ([e483ddb](https://github.com/
|
|
116
|
-
* update dependencies ([6986689](https://github.com/
|
|
117
|
-
* update edges to use targetId instead of id ([6c5d0e3](https://github.com/
|
|
118
|
-
* update framework core ([88ad4e6](https://github.com/
|
|
119
|
-
* update ts-to-schema generation ([edce91e](https://github.com/
|
|
120
|
-
* use new nameof operators ([3921c4c](https://github.com/
|
|
121
|
-
* use shared store mechanism ([#10](https://github.com/
|
|
122
|
-
* use standard list json ld types ([8f53836](https://github.com/
|
|
121
|
+
* add context id features ([#30](https://github.com/iotaledger/twin-auditable-item-graph/issues/30)) ([a35d37c](https://github.com/iotaledger/twin-auditable-item-graph/commit/a35d37c0db62a240adde493965c0a9f7971fec45))
|
|
122
|
+
* add data types with fully qualified name ([93e1ee7](https://github.com/iotaledger/twin-auditable-item-graph/commit/93e1ee7c0f7bad81f003787f797f363864e201af))
|
|
123
|
+
* add unique flag for alias, and exact match option for id query ([33dbd19](https://github.com/iotaledger/twin-auditable-item-graph/commit/33dbd19cabd9fbfaba81032f1d1a6527584c3f5a))
|
|
124
|
+
* add validate-locales ([e76e6f6](https://github.com/iotaledger/twin-auditable-item-graph/commit/e76e6f6b3ec9c447a04315d353442e32233601d3))
|
|
125
|
+
* eslint migration to flat config ([1b42a3a](https://github.com/iotaledger/twin-auditable-item-graph/commit/1b42a3a27bd6e32d7816de406b92b6332472edf6))
|
|
126
|
+
* id optional in edge updates ([6b63fe3](https://github.com/iotaledger/twin-auditable-item-graph/commit/6b63fe34553104843ae15aa5066775f5872859e9))
|
|
127
|
+
* improve comments ([97f311a](https://github.com/iotaledger/twin-auditable-item-graph/commit/97f311a9cc4353b5020a48a44420c97a2fa0c8d7))
|
|
128
|
+
* improve JSON schemas ([bec8dc1](https://github.com/iotaledger/twin-auditable-item-graph/commit/bec8dc1f270c6c9710623a192b984cf46f8a5613))
|
|
129
|
+
* update background task service ([e483ddb](https://github.com/iotaledger/twin-auditable-item-graph/commit/e483ddbc948f035334f92b8342248caa6abbe441))
|
|
130
|
+
* update dependencies ([6986689](https://github.com/iotaledger/twin-auditable-item-graph/commit/698668957a1fcb7f85ce2f117914d5980043924f))
|
|
131
|
+
* update edges to use targetId instead of id ([6c5d0e3](https://github.com/iotaledger/twin-auditable-item-graph/commit/6c5d0e31b6e2ea74bfa2f3344e4be628e5f237af))
|
|
132
|
+
* update framework core ([88ad4e6](https://github.com/iotaledger/twin-auditable-item-graph/commit/88ad4e6421132c3c6c45579b078d982a26f16990))
|
|
133
|
+
* update ts-to-schema generation ([edce91e](https://github.com/iotaledger/twin-auditable-item-graph/commit/edce91e8272ab361595489458066040caf582df2))
|
|
134
|
+
* use new nameof operators ([3921c4c](https://github.com/iotaledger/twin-auditable-item-graph/commit/3921c4c9ac53e42459e45f10d9e702afb2797a23))
|
|
135
|
+
* use shared store mechanism ([#10](https://github.com/iotaledger/twin-auditable-item-graph/issues/10)) ([da035e5](https://github.com/iotaledger/twin-auditable-item-graph/commit/da035e5eb8f157482b4eb2bdbc689c6c0647ff7d))
|
|
136
|
+
* use standard list json ld types ([8f53836](https://github.com/iotaledger/twin-auditable-item-graph/commit/8f53836d4c83a98d64d7f5fe0531bb9af09464ae))
|
|
123
137
|
|
|
124
138
|
|
|
125
139
|
### Bug Fixes
|
|
126
140
|
|
|
127
|
-
* only include alias in index if not deleted ([#6](https://github.com/
|
|
128
|
-
* query params force coercion ([2dd9afe](https://github.com/
|
|
141
|
+
* only include alias in index if not deleted ([#6](https://github.com/iotaledger/twin-auditable-item-graph/issues/6)) ([5da3c41](https://github.com/iotaledger/twin-auditable-item-graph/commit/5da3c419fafa2afefd34b1c570d103012b888a75))
|
|
142
|
+
* query params force coercion ([2dd9afe](https://github.com/iotaledger/twin-auditable-item-graph/commit/2dd9afe9ec37e2a91c110317fe289f7495c187a0))
|
|
129
143
|
|
|
130
|
-
## [0.0.2-next.8](https://github.com/
|
|
144
|
+
## [0.0.2-next.8](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.2-next.7...auditable-item-graph-models-v0.0.2-next.8) (2025-10-09)
|
|
131
145
|
|
|
132
146
|
|
|
133
147
|
### Features
|
|
134
148
|
|
|
135
|
-
* add validate-locales ([e76e6f6](https://github.com/
|
|
149
|
+
* add validate-locales ([e76e6f6](https://github.com/iotaledger/twin-auditable-item-graph/commit/e76e6f6b3ec9c447a04315d353442e32233601d3))
|
|
136
150
|
|
|
137
|
-
## [0.0.2-next.7](https://github.com/
|
|
151
|
+
## [0.0.2-next.7](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.2-next.6...auditable-item-graph-models-v0.0.2-next.7) (2025-09-29)
|
|
138
152
|
|
|
139
153
|
|
|
140
154
|
### Features
|
|
141
155
|
|
|
142
|
-
* id optional in edge updates ([6b63fe3](https://github.com/
|
|
156
|
+
* id optional in edge updates ([6b63fe3](https://github.com/iotaledger/twin-auditable-item-graph/commit/6b63fe34553104843ae15aa5066775f5872859e9))
|
|
143
157
|
|
|
144
|
-
## [0.0.2-next.6](https://github.com/
|
|
158
|
+
## [0.0.2-next.6](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.2-next.5...auditable-item-graph-models-v0.0.2-next.6) (2025-09-29)
|
|
145
159
|
|
|
146
160
|
|
|
147
161
|
### Features
|
|
148
162
|
|
|
149
|
-
* use new nameof operators ([3921c4c](https://github.com/
|
|
163
|
+
* use new nameof operators ([3921c4c](https://github.com/iotaledger/twin-auditable-item-graph/commit/3921c4c9ac53e42459e45f10d9e702afb2797a23))
|
|
150
164
|
|
|
151
|
-
## [0.0.2-next.5](https://github.com/
|
|
165
|
+
## [0.0.2-next.5](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.2-next.4...auditable-item-graph-models-v0.0.2-next.5) (2025-09-26)
|
|
152
166
|
|
|
153
167
|
|
|
154
168
|
### Features
|
|
155
169
|
|
|
156
|
-
* update edges to use targetId instead of id ([6c5d0e3](https://github.com/
|
|
170
|
+
* update edges to use targetId instead of id ([6c5d0e3](https://github.com/iotaledger/twin-auditable-item-graph/commit/6c5d0e31b6e2ea74bfa2f3344e4be628e5f237af))
|
|
157
171
|
|
|
158
|
-
## [0.0.2-next.4](https://github.com/
|
|
172
|
+
## [0.0.2-next.4](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.2-next.3...auditable-item-graph-models-v0.0.2-next.4) (2025-09-24)
|
|
159
173
|
|
|
160
174
|
|
|
161
175
|
### Features
|
|
162
176
|
|
|
163
|
-
* add unique flag for alias, and exact match option for id query ([33dbd19](https://github.com/
|
|
177
|
+
* add unique flag for alias, and exact match option for id query ([33dbd19](https://github.com/iotaledger/twin-auditable-item-graph/commit/33dbd19cabd9fbfaba81032f1d1a6527584c3f5a))
|
|
164
178
|
|
|
165
|
-
## [0.0.2-next.3](https://github.com/
|
|
179
|
+
## [0.0.2-next.3](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.2-next.2...auditable-item-graph-models-v0.0.2-next.3) (2025-08-29)
|
|
166
180
|
|
|
167
181
|
|
|
168
182
|
### Features
|
|
169
183
|
|
|
170
|
-
* eslint migration to flat config ([1b42a3a](https://github.com/
|
|
184
|
+
* eslint migration to flat config ([1b42a3a](https://github.com/iotaledger/twin-auditable-item-graph/commit/1b42a3a27bd6e32d7816de406b92b6332472edf6))
|
|
171
185
|
|
|
172
|
-
## [0.0.2-next.2](https://github.com/
|
|
186
|
+
## [0.0.2-next.2](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.2-next.1...auditable-item-graph-models-v0.0.2-next.2) (2025-08-20)
|
|
173
187
|
|
|
174
188
|
|
|
175
189
|
### Features
|
|
176
190
|
|
|
177
|
-
* update framework core ([88ad4e6](https://github.com/
|
|
191
|
+
* update framework core ([88ad4e6](https://github.com/iotaledger/twin-auditable-item-graph/commit/88ad4e6421132c3c6c45579b078d982a26f16990))
|
|
178
192
|
|
|
179
|
-
## [0.0.2-next.1](https://github.com/
|
|
193
|
+
## [0.0.2-next.1](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.2-next.0...auditable-item-graph-models-v0.0.2-next.1) (2025-07-21)
|
|
180
194
|
|
|
181
195
|
|
|
182
196
|
### Features
|
|
183
197
|
|
|
184
|
-
* add data types with fully qualified name ([93e1ee7](https://github.com/
|
|
185
|
-
* improve comments ([97f311a](https://github.com/
|
|
186
|
-
* improve JSON schemas ([bec8dc1](https://github.com/
|
|
187
|
-
* update dependencies ([6986689](https://github.com/
|
|
188
|
-
* update ts-to-schema generation ([edce91e](https://github.com/
|
|
189
|
-
* use shared store mechanism ([#10](https://github.com/
|
|
190
|
-
* use standard list json ld types ([8f53836](https://github.com/
|
|
198
|
+
* add data types with fully qualified name ([93e1ee7](https://github.com/iotaledger/twin-auditable-item-graph/commit/93e1ee7c0f7bad81f003787f797f363864e201af))
|
|
199
|
+
* improve comments ([97f311a](https://github.com/iotaledger/twin-auditable-item-graph/commit/97f311a9cc4353b5020a48a44420c97a2fa0c8d7))
|
|
200
|
+
* improve JSON schemas ([bec8dc1](https://github.com/iotaledger/twin-auditable-item-graph/commit/bec8dc1f270c6c9710623a192b984cf46f8a5613))
|
|
201
|
+
* update dependencies ([6986689](https://github.com/iotaledger/twin-auditable-item-graph/commit/698668957a1fcb7f85ce2f117914d5980043924f))
|
|
202
|
+
* update ts-to-schema generation ([edce91e](https://github.com/iotaledger/twin-auditable-item-graph/commit/edce91e8272ab361595489458066040caf582df2))
|
|
203
|
+
* use shared store mechanism ([#10](https://github.com/iotaledger/twin-auditable-item-graph/issues/10)) ([da035e5](https://github.com/iotaledger/twin-auditable-item-graph/commit/da035e5eb8f157482b4eb2bdbc689c6c0647ff7d))
|
|
204
|
+
* use standard list json ld types ([8f53836](https://github.com/iotaledger/twin-auditable-item-graph/commit/8f53836d4c83a98d64d7f5fe0531bb9af09464ae))
|
|
191
205
|
|
|
192
206
|
|
|
193
207
|
### Bug Fixes
|
|
194
208
|
|
|
195
|
-
* only include alias in index if not deleted ([#6](https://github.com/
|
|
196
|
-
* query params force coercion ([2dd9afe](https://github.com/
|
|
209
|
+
* only include alias in index if not deleted ([#6](https://github.com/iotaledger/twin-auditable-item-graph/issues/6)) ([5da3c41](https://github.com/iotaledger/twin-auditable-item-graph/commit/5da3c419fafa2afefd34b1c570d103012b888a75))
|
|
210
|
+
* query params force coercion ([2dd9afe](https://github.com/iotaledger/twin-auditable-item-graph/commit/2dd9afe9ec37e2a91c110317fe289f7495c187a0))
|
|
197
211
|
|
|
198
212
|
## 0.0.1 (2025-07-09)
|
|
199
213
|
|
|
200
214
|
|
|
201
215
|
### Features
|
|
202
216
|
|
|
203
|
-
* release to production ([0ce06f7](https://github.com/
|
|
217
|
+
* release to production ([0ce06f7](https://github.com/iotaledger/twin-auditable-item-graph/commit/0ce06f7825aa72d04b7a2ffd8c98cb56290b9d16))
|
|
204
218
|
|
|
205
|
-
## [0.0.1-next.44](https://github.com/
|
|
219
|
+
## [0.0.1-next.44](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.43...auditable-item-graph-models-v0.0.1-next.44) (2025-06-20)
|
|
206
220
|
|
|
207
221
|
|
|
208
222
|
### Bug Fixes
|
|
209
223
|
|
|
210
|
-
* query params force coercion ([2dd9afe](https://github.com/
|
|
224
|
+
* query params force coercion ([2dd9afe](https://github.com/iotaledger/twin-auditable-item-graph/commit/2dd9afe9ec37e2a91c110317fe289f7495c187a0))
|
|
211
225
|
|
|
212
|
-
## [0.0.1-next.43](https://github.com/
|
|
226
|
+
## [0.0.1-next.43](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.42...auditable-item-graph-models-v0.0.1-next.43) (2025-06-17)
|
|
213
227
|
|
|
214
228
|
|
|
215
229
|
### Features
|
|
216
230
|
|
|
217
|
-
* improve JSON schemas ([bec8dc1](https://github.com/
|
|
231
|
+
* improve JSON schemas ([bec8dc1](https://github.com/iotaledger/twin-auditable-item-graph/commit/bec8dc1f270c6c9710623a192b984cf46f8a5613))
|
|
218
232
|
|
|
219
|
-
## [0.0.1-next.42](https://github.com/
|
|
233
|
+
## [0.0.1-next.42](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.41...auditable-item-graph-models-v0.0.1-next.42) (2025-06-12)
|
|
220
234
|
|
|
221
235
|
|
|
222
236
|
### Features
|
|
223
237
|
|
|
224
|
-
* update dependencies ([6986689](https://github.com/
|
|
238
|
+
* update dependencies ([6986689](https://github.com/iotaledger/twin-auditable-item-graph/commit/698668957a1fcb7f85ce2f117914d5980043924f))
|
|
225
239
|
|
|
226
|
-
## [0.0.1-next.41](https://github.com/
|
|
240
|
+
## [0.0.1-next.41](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.40...auditable-item-graph-models-v0.0.1-next.41) (2025-06-03)
|
|
227
241
|
|
|
228
242
|
|
|
229
243
|
### Features
|
|
230
244
|
|
|
231
|
-
* update ts-to-schema generation ([edce91e](https://github.com/
|
|
245
|
+
* update ts-to-schema generation ([edce91e](https://github.com/iotaledger/twin-auditable-item-graph/commit/edce91e8272ab361595489458066040caf582df2))
|
|
232
246
|
|
|
233
|
-
## [0.0.1-next.40](https://github.com/
|
|
247
|
+
## [0.0.1-next.40](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.39...auditable-item-graph-models-v0.0.1-next.40) (2025-05-28)
|
|
234
248
|
|
|
235
249
|
|
|
236
250
|
### Features
|
|
237
251
|
|
|
238
|
-
* add data types with fully qualified name ([93e1ee7](https://github.com/
|
|
252
|
+
* add data types with fully qualified name ([93e1ee7](https://github.com/iotaledger/twin-auditable-item-graph/commit/93e1ee7c0f7bad81f003787f797f363864e201af))
|
|
239
253
|
|
|
240
|
-
## [0.0.1-next.39](https://github.com/
|
|
254
|
+
## [0.0.1-next.39](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.38...auditable-item-graph-models-v0.0.1-next.39) (2025-05-08)
|
|
241
255
|
|
|
242
256
|
|
|
243
257
|
### Features
|
|
244
258
|
|
|
245
|
-
* use standard list json ld types ([8f53836](https://github.com/
|
|
259
|
+
* use standard list json ld types ([8f53836](https://github.com/iotaledger/twin-auditable-item-graph/commit/8f53836d4c83a98d64d7f5fe0531bb9af09464ae))
|
|
246
260
|
|
|
247
|
-
## [0.0.1-next.38](https://github.com/
|
|
261
|
+
## [0.0.1-next.38](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.37...auditable-item-graph-models-v0.0.1-next.38) (2025-04-17)
|
|
248
262
|
|
|
249
263
|
|
|
250
264
|
### Features
|
|
251
265
|
|
|
252
|
-
* use shared store mechanism ([#10](https://github.com/
|
|
266
|
+
* use shared store mechanism ([#10](https://github.com/iotaledger/twin-auditable-item-graph/issues/10)) ([da035e5](https://github.com/iotaledger/twin-auditable-item-graph/commit/da035e5eb8f157482b4eb2bdbc689c6c0647ff7d))
|
|
253
267
|
|
|
254
|
-
## [0.0.1-next.37](https://github.com/
|
|
268
|
+
## [0.0.1-next.37](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.36...auditable-item-graph-models-v0.0.1-next.37) (2025-04-11)
|
|
255
269
|
|
|
256
270
|
|
|
257
271
|
### Features
|
|
258
272
|
|
|
259
|
-
* improve comments ([97f311a](https://github.com/
|
|
273
|
+
* improve comments ([97f311a](https://github.com/iotaledger/twin-auditable-item-graph/commit/97f311a9cc4353b5020a48a44420c97a2fa0c8d7))
|
|
260
274
|
|
|
261
275
|
|
|
262
276
|
### Bug Fixes
|
|
263
277
|
|
|
264
|
-
* only include alias in index if not deleted ([#6](https://github.com/
|
|
278
|
+
* only include alias in index if not deleted ([#6](https://github.com/iotaledger/twin-auditable-item-graph/issues/6)) ([5da3c41](https://github.com/iotaledger/twin-auditable-item-graph/commit/5da3c419fafa2afefd34b1c570d103012b888a75))
|
|
265
279
|
|
|
266
|
-
## [0.0.1-next.36](https://github.com/
|
|
280
|
+
## [0.0.1-next.36](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.35...auditable-item-graph-models-v0.0.1-next.36) (2025-04-11)
|
|
267
281
|
|
|
268
282
|
|
|
269
283
|
### Bug Fixes
|
|
270
284
|
|
|
271
|
-
* only include alias in index if not deleted ([#6](https://github.com/
|
|
285
|
+
* only include alias in index if not deleted ([#6](https://github.com/iotaledger/twin-auditable-item-graph/issues/6)) ([5da3c41](https://github.com/iotaledger/twin-auditable-item-graph/commit/5da3c419fafa2afefd34b1c570d103012b888a75))
|
|
272
286
|
|
|
273
|
-
## [0.0.1-next.35](https://github.com/
|
|
287
|
+
## [0.0.1-next.35](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.34...auditable-item-graph-models-v0.0.1-next.35) (2025-04-10)
|
|
274
288
|
|
|
275
289
|
|
|
276
290
|
### Miscellaneous Chores
|
|
277
291
|
|
|
278
292
|
* **auditable-item-graph-models:** Synchronize repo versions
|
|
279
293
|
|
|
280
|
-
## [0.0.1-next.34](https://github.com/
|
|
294
|
+
## [0.0.1-next.34](https://github.com/iotaledger/twin-auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.33...auditable-item-graph-models-v0.0.1-next.34) (2025-03-28)
|
|
281
295
|
|
|
282
296
|
|
|
283
297
|
### Features
|
|
284
298
|
|
|
285
|
-
* improve comments ([97f311a](https://github.com/
|
|
299
|
+
* improve comments ([97f311a](https://github.com/iotaledger/twin-auditable-item-graph/commit/97f311a9cc4353b5020a48a44420c97a2fa0c8d7))
|
|
286
300
|
|
|
287
301
|
## v0.0.1-next.33
|
|
288
302
|
|
package/docs/examples.md
CHANGED
|
@@ -1 +1,22 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Auditable Item Graph Models Examples
|
|
2
|
+
|
|
3
|
+
Use these examples to initialise data type handling before interacting with graph APIs and JSON-LD payloads.
|
|
4
|
+
|
|
5
|
+
## AuditableItemGraphDataTypes
|
|
6
|
+
|
|
7
|
+
```typescript
|
|
8
|
+
import { DataTypeHandlerFactory } from '@twin.org/data-core';
|
|
9
|
+
import {
|
|
10
|
+
AuditableItemGraphContexts,
|
|
11
|
+
AuditableItemGraphDataTypes,
|
|
12
|
+
AuditableItemGraphTypes
|
|
13
|
+
} from '@twin.org/auditable-item-graph-models';
|
|
14
|
+
|
|
15
|
+
AuditableItemGraphDataTypes.registerTypes();
|
|
16
|
+
|
|
17
|
+
const vertexType = `${AuditableItemGraphContexts.Namespace}${AuditableItemGraphTypes.Vertex}`;
|
|
18
|
+
const handler = DataTypeHandlerFactory.get(vertexType);
|
|
19
|
+
|
|
20
|
+
console.log(vertexType); // https://schema.twindev.org/auditable-item-graph/Vertex
|
|
21
|
+
console.log(handler.type); // Vertex
|
|
22
|
+
```
|
|
@@ -8,15 +8,15 @@ Interface describing an alias for a vertex.
|
|
|
8
8
|
|
|
9
9
|
## Properties
|
|
10
10
|
|
|
11
|
-
### @context
|
|
11
|
+
### @context? {#context}
|
|
12
12
|
|
|
13
|
-
> **@context
|
|
13
|
+
> `optional` **@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
|
|
|
19
|
-
### id
|
|
19
|
+
### id {#id}
|
|
20
20
|
|
|
21
21
|
> **id**: `string`
|
|
22
22
|
|
|
@@ -28,7 +28,7 @@ The id of the element.
|
|
|
28
28
|
|
|
29
29
|
***
|
|
30
30
|
|
|
31
|
-
### type
|
|
31
|
+
### type {#type}
|
|
32
32
|
|
|
33
33
|
> **type**: `"AuditableItemGraphAlias"`
|
|
34
34
|
|
|
@@ -36,30 +36,35 @@ JSON-LD Type.
|
|
|
36
36
|
|
|
37
37
|
***
|
|
38
38
|
|
|
39
|
-
### annotationObject?
|
|
39
|
+
### annotationObject? {#annotationobject}
|
|
40
40
|
|
|
41
|
-
> `optional` **annotationObject
|
|
41
|
+
> `optional` **annotationObject?**: `IJsonLdNodeObject`
|
|
42
42
|
|
|
43
43
|
The JSON-LD annotation object for the alias.
|
|
44
|
-
json-ld namespace:twin-common
|
|
45
44
|
|
|
46
45
|
***
|
|
47
46
|
|
|
48
|
-
### aliasFormat?
|
|
47
|
+
### aliasFormat? {#aliasformat}
|
|
49
48
|
|
|
50
|
-
> `optional` **aliasFormat
|
|
49
|
+
> `optional` **aliasFormat?**: `string`
|
|
51
50
|
|
|
52
51
|
The format of the id in the alias.
|
|
53
|
-
json-ld type:sch:Text
|
|
54
52
|
|
|
55
53
|
***
|
|
56
54
|
|
|
57
|
-
###
|
|
55
|
+
### unique? {#unique}
|
|
58
56
|
|
|
59
|
-
> `optional` **
|
|
57
|
+
> `optional` **unique?**: `boolean`
|
|
58
|
+
|
|
59
|
+
Whether the alias should be unique across the graph, meaning that no other vertex can have the same alias. Defaults to false.
|
|
60
|
+
|
|
61
|
+
***
|
|
62
|
+
|
|
63
|
+
### dateCreated? {#datecreated}
|
|
64
|
+
|
|
65
|
+
> `optional` **dateCreated?**: `string`
|
|
60
66
|
|
|
61
67
|
The date/time of when the element was created.
|
|
62
|
-
json-ld namespace:sch
|
|
63
68
|
|
|
64
69
|
#### Inherited from
|
|
65
70
|
|
|
@@ -67,12 +72,11 @@ json-ld namespace:sch
|
|
|
67
72
|
|
|
68
73
|
***
|
|
69
74
|
|
|
70
|
-
### dateModified?
|
|
75
|
+
### dateModified? {#datemodified}
|
|
71
76
|
|
|
72
|
-
> `optional` **dateModified
|
|
77
|
+
> `optional` **dateModified?**: `string`
|
|
73
78
|
|
|
74
79
|
The date/time of when the element was modified.
|
|
75
|
-
json-ld namespace:sch
|
|
76
80
|
|
|
77
81
|
#### Inherited from
|
|
78
82
|
|
|
@@ -80,12 +84,11 @@ json-ld namespace:sch
|
|
|
80
84
|
|
|
81
85
|
***
|
|
82
86
|
|
|
83
|
-
### dateDeleted?
|
|
87
|
+
### dateDeleted? {#datedeleted}
|
|
84
88
|
|
|
85
|
-
> `optional` **dateDeleted
|
|
89
|
+
> `optional` **dateDeleted?**: `string`
|
|
86
90
|
|
|
87
91
|
The date/time of when the element was deleted, as we never actually remove items.
|
|
88
|
-
json-ld namespace:sch
|
|
89
92
|
|
|
90
93
|
#### Inherited from
|
|
91
94
|
|