@twin.org/data-json-ld 0.0.3-next.8 → 0.9.0-next.1
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 +1 -1
- package/dist/es/helpers/jsonLdAliasKey.js +4 -0
- package/dist/es/helpers/jsonLdAliasKey.js.map +1 -0
- package/dist/es/helpers/jsonLdExistingProperty.js +4 -0
- package/dist/es/helpers/jsonLdExistingProperty.js.map +1 -0
- package/dist/es/helpers/jsonLdExistingPropertyEither.js +2 -0
- package/dist/es/helpers/jsonLdExistingPropertyEither.js.map +1 -0
- package/dist/es/helpers/jsonLdKeys.js +4 -0
- package/dist/es/helpers/jsonLdKeys.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithAliases.js +2 -0
- package/dist/es/helpers/jsonLdObjectWithAliases.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithAtId.js +2 -0
- package/dist/es/helpers/jsonLdObjectWithAtId.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithAtType.js +2 -0
- package/dist/es/helpers/jsonLdObjectWithAtType.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithContext.js +2 -0
- package/dist/es/helpers/jsonLdObjectWithContext.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithId.js +2 -0
- package/dist/es/helpers/jsonLdObjectWithId.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithNoAtId.js +4 -0
- package/dist/es/helpers/jsonLdObjectWithNoAtId.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithNoAtType.js +4 -0
- package/dist/es/helpers/jsonLdObjectWithNoAtType.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithNoContext.js +4 -0
- package/dist/es/helpers/jsonLdObjectWithNoContext.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithNoId.js +4 -0
- package/dist/es/helpers/jsonLdObjectWithNoId.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithNoType.js +4 -0
- package/dist/es/helpers/jsonLdObjectWithNoType.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithOptionalAtId.js +2 -0
- package/dist/es/helpers/jsonLdObjectWithOptionalAtId.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithOptionalAtType.js +2 -0
- package/dist/es/helpers/jsonLdObjectWithOptionalAtType.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithOptionalContext.js +2 -0
- package/dist/es/helpers/jsonLdObjectWithOptionalContext.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithOptionalId.js +2 -0
- package/dist/es/helpers/jsonLdObjectWithOptionalId.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithOptionalType.js +2 -0
- package/dist/es/helpers/jsonLdObjectWithOptionalType.js.map +1 -0
- package/dist/es/helpers/jsonLdObjectWithType.js +2 -0
- package/dist/es/helpers/jsonLdObjectWithType.js.map +1 -0
- package/dist/es/helpers/jsonLdOptionalKeys.js +4 -0
- package/dist/es/helpers/jsonLdOptionalKeys.js.map +1 -0
- package/dist/es/helpers/jsonLdRequiredKeys.js +2 -0
- package/dist/es/helpers/jsonLdRequiredKeys.js.map +1 -0
- package/dist/es/helpers/jsonLdWithAliases.js +2 -0
- package/dist/es/helpers/jsonLdWithAliases.js.map +1 -0
- package/dist/es/index.js +23 -0
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/IJsonLdDocument.js.map +1 -1
- package/dist/es/schemas/JsonLdContainerType.json +17 -7
- package/dist/es/schemas/JsonLdContainerTypeArray.json +129 -142
- package/dist/es/schemas/JsonLdContextDefinition.json +76 -18
- package/dist/es/schemas/JsonLdContextDefinitionElement.json +1 -0
- package/dist/es/schemas/JsonLdContextDefinitionRoot.json +1 -0
- package/dist/es/schemas/JsonLdDocument.json +3 -3
- package/dist/es/schemas/JsonLdExpandedTermDefinition.json +101 -89
- package/dist/es/schemas/JsonLdGraphObject.json +2 -2
- package/dist/es/schemas/JsonLdIdMap.json +1 -0
- package/dist/es/schemas/JsonLdIncludedBlock.json +1 -0
- package/dist/es/schemas/JsonLdIndexMap.json +2 -1
- package/dist/es/schemas/JsonLdIndexMapItem.json +1 -0
- package/dist/es/schemas/JsonLdJsonArray.json +1 -0
- package/dist/es/schemas/JsonLdJsonObject.json +2 -8
- package/dist/es/schemas/JsonLdJsonPrimitive.json +14 -5
- package/dist/es/schemas/JsonLdJsonValue.json +1 -0
- package/dist/es/schemas/JsonLdLanguageMap.json +1 -0
- package/dist/es/schemas/JsonLdListObject.json +2 -2
- package/dist/es/schemas/JsonLdListOrSetItem.json +1 -0
- package/dist/es/schemas/JsonLdNodeObject.json +12 -72
- package/dist/es/schemas/JsonLdNodePrimitive.json +1 -0
- package/dist/es/schemas/JsonLdObject.json +3 -3
- package/dist/es/schemas/JsonLdSetObject.json +2 -2
- package/dist/es/schemas/JsonLdTypeMap.json +1 -0
- package/dist/es/schemas/JsonLdValueObject.json +99 -87
- package/dist/es/utils/jsonLdHelper.js +185 -24
- package/dist/es/utils/jsonLdHelper.js.map +1 -1
- package/dist/es/utils/jsonLdProcessor.js +134 -40
- package/dist/es/utils/jsonLdProcessor.js.map +1 -1
- package/dist/types/helpers/jsonLdAliasKey.d.ts +4 -0
- package/dist/types/helpers/jsonLdExistingProperty.d.ts +6 -0
- package/dist/types/helpers/jsonLdExistingPropertyEither.d.ts +6 -0
- package/dist/types/helpers/jsonLdKeys.d.ts +4 -0
- package/dist/types/helpers/jsonLdObjectWithAliases.d.ts +7 -0
- package/dist/types/helpers/jsonLdObjectWithAtId.d.ts +7 -0
- package/dist/types/helpers/jsonLdObjectWithAtType.d.ts +7 -0
- package/dist/types/helpers/jsonLdObjectWithContext.d.ts +7 -0
- package/dist/types/helpers/jsonLdObjectWithId.d.ts +7 -0
- package/dist/types/helpers/jsonLdObjectWithNoAtId.d.ts +4 -0
- package/dist/types/helpers/jsonLdObjectWithNoAtType.d.ts +4 -0
- package/dist/types/helpers/jsonLdObjectWithNoContext.d.ts +5 -0
- package/dist/types/helpers/jsonLdObjectWithNoId.d.ts +4 -0
- package/dist/types/helpers/jsonLdObjectWithNoType.d.ts +4 -0
- package/dist/types/helpers/jsonLdObjectWithOptionalAtId.d.ts +7 -0
- package/dist/types/helpers/jsonLdObjectWithOptionalAtType.d.ts +7 -0
- package/dist/types/helpers/jsonLdObjectWithOptionalContext.d.ts +9 -0
- package/dist/types/helpers/jsonLdObjectWithOptionalId.d.ts +7 -0
- package/dist/types/helpers/jsonLdObjectWithOptionalType.d.ts +7 -0
- package/dist/types/helpers/jsonLdObjectWithType.d.ts +7 -0
- package/dist/types/helpers/jsonLdOptionalKeys.d.ts +6 -0
- package/dist/types/helpers/jsonLdRequiredKeys.d.ts +5 -0
- package/dist/types/helpers/jsonLdWithAliases.d.ts +13 -0
- package/dist/types/index.d.ts +23 -0
- package/dist/types/models/IJsonLdDocument.d.ts +0 -4
- package/dist/types/utils/jsonLdHelper.d.ts +60 -10
- package/dist/types/utils/jsonLdProcessor.d.ts +16 -13
- package/docs/changelog.md +393 -72
- package/docs/examples.md +214 -1
- package/docs/reference/classes/JsonLdDataTypes.md +1 -1
- package/docs/reference/classes/JsonLdHelper.md +233 -19
- package/docs/reference/classes/JsonLdProcessor.md +57 -64
- package/docs/reference/index.md +23 -0
- package/docs/reference/interfaces/IJsonLdContextDefinition.md +20 -20
- package/docs/reference/interfaces/IJsonLdGraphObject.md +7 -7
- package/docs/reference/interfaces/IJsonLdIdMap.md +1 -1
- package/docs/reference/interfaces/IJsonLdIndexMap.md +1 -1
- package/docs/reference/interfaces/IJsonLdJsonObject.md +1 -1
- package/docs/reference/interfaces/IJsonLdLanguageMap.md +1 -1
- package/docs/reference/interfaces/IJsonLdListObject.md +3 -3
- package/docs/reference/interfaces/IJsonLdNodeObject.md +17 -17
- package/docs/reference/interfaces/IJsonLdObject.md +16 -16
- package/docs/reference/interfaces/IJsonLdSetObject.md +3 -3
- package/docs/reference/interfaces/IJsonLdTypeMap.md +1 -1
- package/docs/reference/type-aliases/IJsonLdExpandedTermDefinition.md +7 -7
- package/docs/reference/type-aliases/IJsonLdValueObject.md +2 -2
- package/docs/reference/type-aliases/JsonLdAliasKey.md +15 -0
- package/docs/reference/type-aliases/JsonLdExistingProperty.md +19 -0
- package/docs/reference/type-aliases/JsonLdExistingPropertyEither.md +24 -0
- package/docs/reference/type-aliases/JsonLdKeys.md +11 -0
- package/docs/reference/type-aliases/JsonLdObjectWithAliases.md +16 -0
- package/docs/reference/type-aliases/JsonLdObjectWithAtId.md +21 -0
- package/docs/reference/type-aliases/JsonLdObjectWithAtType.md +21 -0
- package/docs/reference/type-aliases/JsonLdObjectWithContext.md +21 -0
- package/docs/reference/type-aliases/JsonLdObjectWithId.md +21 -0
- package/docs/reference/type-aliases/JsonLdObjectWithNoAtId.md +11 -0
- package/docs/reference/type-aliases/JsonLdObjectWithNoAtType.md +11 -0
- package/docs/reference/type-aliases/JsonLdObjectWithNoContext.md +12 -0
- package/docs/reference/type-aliases/JsonLdObjectWithNoId.md +11 -0
- package/docs/reference/type-aliases/JsonLdObjectWithNoType.md +11 -0
- package/docs/reference/type-aliases/JsonLdObjectWithOptionalAtId.md +21 -0
- package/docs/reference/type-aliases/JsonLdObjectWithOptionalAtType.md +21 -0
- package/docs/reference/type-aliases/JsonLdObjectWithOptionalContext.md +22 -0
- package/docs/reference/type-aliases/JsonLdObjectWithOptionalId.md +21 -0
- package/docs/reference/type-aliases/JsonLdObjectWithOptionalType.md +21 -0
- package/docs/reference/type-aliases/JsonLdObjectWithType.md +21 -0
- package/docs/reference/type-aliases/JsonLdOptionalKeys.md +11 -0
- package/docs/reference/type-aliases/JsonLdRequiredKeys.md +11 -0
- package/docs/reference/type-aliases/JsonLdWithAliases.md +17 -0
- package/docs/reference/variables/JsonLdContexts.md +3 -3
- package/docs/reference/variables/JsonLdTypes.md +26 -26
- package/package.json +10 -10
package/docs/changelog.md
CHANGED
|
@@ -1,6 +1,327 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0
|
|
3
|
+
## [0.9.0-next.1](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.9.0-next.0...data-json-ld-v0.9.0-next.1) (2026-06-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add context id features ([#25](https://github.com/iotaledger/twin-data/issues/25)) ([6592f2e](https://github.com/iotaledger/twin-data/commit/6592f2e4e59021cc42a079a4f46242758a54313d))
|
|
9
|
+
* add document cache access methods ([dbf1e36](https://github.com/iotaledger/twin-data/commit/dbf1e36d176c5f428f8c52628fb5a1ff7a6a174a))
|
|
10
|
+
* add fail on missing type option and both mode ([e8b9702](https://github.com/iotaledger/twin-data/commit/e8b97029a04b646497ff0e55b9610291e58ae92a))
|
|
11
|
+
* add json ld helper types ([#46](https://github.com/iotaledger/twin-data/issues/46)) ([22e998e](https://github.com/iotaledger/twin-data/commit/22e998e29e7eadc9202026ee9743d64ed98035df))
|
|
12
|
+
* add JsonLdHelper getId and getType ([4b43e41](https://github.com/iotaledger/twin-data/commit/4b43e41fa47a16a19d2c759f5e40a1fb51e0a128))
|
|
13
|
+
* add JsonLdHelper.toNodeObject method ([93f2add](https://github.com/iotaledger/twin-data/commit/93f2add1948f168d7a21223929cf6c65a8115f6f))
|
|
14
|
+
* add toStructuredObject ([58354e0](https://github.com/iotaledger/twin-data/commit/58354e0096c917f2e2e64214107d68326c79260d))
|
|
15
|
+
* add validate-locales ([cf9b761](https://github.com/iotaledger/twin-data/commit/cf9b76160820fe0b13b4fe56ed241c1d5511b7c1))
|
|
16
|
+
* additional JSON-LD helper types ([575627c](https://github.com/iotaledger/twin-data/commit/575627c707e691086e07163dac44ba1396ac322e))
|
|
17
|
+
* additional json-ld helpers ([c74cbd6](https://github.com/iotaledger/twin-data/commit/c74cbd60e423c5f780243da9868723e9d54d068a))
|
|
18
|
+
* additional JsonLdHelper methods ([#44](https://github.com/iotaledger/twin-data/issues/44)) ([ebe2cf5](https://github.com/iotaledger/twin-data/commit/ebe2cf50d1a7fbe0474f0a556d49f43eb7767a2f))
|
|
19
|
+
* discover JSON-LD context via HTTP Link ([#62](https://github.com/iotaledger/twin-data/issues/62)) ([5545864](https://github.com/iotaledger/twin-data/commit/5545864c08e8c42fb93844f552907648a1130b64))
|
|
20
|
+
* eslint migration to flat config ([b0db6e6](https://github.com/iotaledger/twin-data/commit/b0db6e69a90046fc60d29e4273fcdfee13c16088))
|
|
21
|
+
* expand Json LD Keyword ([70632d1](https://github.com/iotaledger/twin-data/commit/70632d1e11ad85cf3c57e118476b125a673f1681))
|
|
22
|
+
* expand JsonLdHelper.getId with custom properties names ([8ec4dcf](https://github.com/iotaledger/twin-data/commit/8ec4dcf807a6dc416b2df2a77749f841a60be05f))
|
|
23
|
+
* improve data type registration ([#34](https://github.com/iotaledger/twin-data/issues/34)) ([855d110](https://github.com/iotaledger/twin-data/commit/855d11046a4d85317b77a5c4e0f4a7b1b6d1a767))
|
|
24
|
+
* publish npm await ([7bdf0cd](https://github.com/iotaledger/twin-data/commit/7bdf0cd5d9417e7f8811f295ccf3ab3403ae3753))
|
|
25
|
+
* support multiple type JSON-LD ([8f0d530](https://github.com/iotaledger/twin-data/commit/8f0d530f66302ab19413ecf968f170f97456e31e))
|
|
26
|
+
* typescript 6 update ([44cbfe8](https://github.com/iotaledger/twin-data/commit/44cbfe87256282b9928134b2bbed1d3c6ee15acb))
|
|
27
|
+
* update context naming ([#37](https://github.com/iotaledger/twin-data/issues/37)) ([9d99360](https://github.com/iotaledger/twin-data/commit/9d993605aa51f27a09722729057c6ee921617c2d))
|
|
28
|
+
* update dependencies ([b622475](https://github.com/iotaledger/twin-data/commit/b6224758e66ac3be563d68a670636356ce033434))
|
|
29
|
+
* update framework core ([c077b8c](https://github.com/iotaledger/twin-data/commit/c077b8c07e7ee66b5482254eab6f2a52cd911270))
|
|
30
|
+
* update schemas ([c30159c](https://github.com/iotaledger/twin-data/commit/c30159cd24e5f60f9124752738dd1c0312ee17dd))
|
|
31
|
+
* update ts-to-schema ([8c3cd91](https://github.com/iotaledger/twin-data/commit/8c3cd9131113f2d609f6e709562402e5c7766c1a))
|
|
32
|
+
* use fully qualified names for data type lookups ([b7b5c74](https://github.com/iotaledger/twin-data/commit/b7b5c746b0180a87baa976f6a7a76cedd53d8ff7))
|
|
33
|
+
* use local LD context fixture in tests instead of remotes ([#60](https://github.com/iotaledger/twin-data/issues/60)) ([df18303](https://github.com/iotaledger/twin-data/commit/df18303301f031a5032850c900eea24b094a99a5))
|
|
34
|
+
* use shared store mechanism ([#3](https://github.com/iotaledger/twin-data/issues/3)) ([33eb221](https://github.com/iotaledger/twin-data/commit/33eb221ccec2b4a79549c06e9a04225009b93a46))
|
|
35
|
+
* use updated Is.function ([46a4715](https://github.com/iotaledger/twin-data/commit/46a4715f995aea34f2011138662fe003c9727d07))
|
|
36
|
+
* use updated JSON schema specs ([465223a](https://github.com/iotaledger/twin-data/commit/465223a9e9c24af546480ef084327a78fa366eaa))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* add redirect remove duplicates ([49709e0](https://github.com/iotaledger/twin-data/commit/49709e04cf087e216f4c9e36a9f35daceeae98fd))
|
|
42
|
+
* handle possible undefined array ([094d188](https://github.com/iotaledger/twin-data/commit/094d1887b9f280ffa035d6a1f811a943184f4655))
|
|
43
|
+
* itemListElement compaction override ([d908a10](https://github.com/iotaledger/twin-data/commit/d908a1043d7792e31b3101221d17850757b6c2a6))
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Dependencies
|
|
47
|
+
|
|
48
|
+
* The following workspace dependencies were updated
|
|
49
|
+
* dependencies
|
|
50
|
+
* @twin.org/data-core bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
51
|
+
|
|
52
|
+
## [0.0.3-next.26](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.25...data-json-ld-v0.0.3-next.26) (2026-06-05)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Miscellaneous Chores
|
|
56
|
+
|
|
57
|
+
* **data-json-ld:** Synchronize repo versions
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Dependencies
|
|
61
|
+
|
|
62
|
+
* The following workspace dependencies were updated
|
|
63
|
+
* dependencies
|
|
64
|
+
* @twin.org/data-core bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
65
|
+
|
|
66
|
+
## [0.0.3-next.25](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.24...data-json-ld-v0.0.3-next.25) (2026-06-01)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Miscellaneous Chores
|
|
70
|
+
|
|
71
|
+
* **data-json-ld:** Synchronize repo versions
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Dependencies
|
|
75
|
+
|
|
76
|
+
* The following workspace dependencies were updated
|
|
77
|
+
* dependencies
|
|
78
|
+
* @twin.org/data-core bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
79
|
+
|
|
80
|
+
## [0.0.3-next.24](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.23...data-json-ld-v0.0.3-next.24) (2026-05-22)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Miscellaneous Chores
|
|
84
|
+
|
|
85
|
+
* **data-json-ld:** Synchronize repo versions
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Dependencies
|
|
89
|
+
|
|
90
|
+
* The following workspace dependencies were updated
|
|
91
|
+
* dependencies
|
|
92
|
+
* @twin.org/data-core bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
93
|
+
|
|
94
|
+
## [0.0.3-next.23](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.22...data-json-ld-v0.0.3-next.23) (2026-05-19)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Features
|
|
98
|
+
|
|
99
|
+
* update dependencies ([b622475](https://github.com/iotaledger/twin-data/commit/b6224758e66ac3be563d68a670636356ce033434))
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
### Dependencies
|
|
103
|
+
|
|
104
|
+
* The following workspace dependencies were updated
|
|
105
|
+
* dependencies
|
|
106
|
+
* @twin.org/data-core bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
107
|
+
|
|
108
|
+
## [0.0.3-next.22](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.21...data-json-ld-v0.0.3-next.22) (2026-05-13)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Bug Fixes
|
|
112
|
+
|
|
113
|
+
* handle possible undefined array ([094d188](https://github.com/iotaledger/twin-data/commit/094d1887b9f280ffa035d6a1f811a943184f4655))
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
### Dependencies
|
|
117
|
+
|
|
118
|
+
* The following workspace dependencies were updated
|
|
119
|
+
* dependencies
|
|
120
|
+
* @twin.org/data-core bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
121
|
+
|
|
122
|
+
## [0.0.3-next.21](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.20...data-json-ld-v0.0.3-next.21) (2026-05-11)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Features
|
|
126
|
+
|
|
127
|
+
* typescript 6 update ([44cbfe8](https://github.com/iotaledger/twin-data/commit/44cbfe87256282b9928134b2bbed1d3c6ee15acb))
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
### Dependencies
|
|
131
|
+
|
|
132
|
+
* The following workspace dependencies were updated
|
|
133
|
+
* dependencies
|
|
134
|
+
* @twin.org/data-core bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
135
|
+
|
|
136
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.19...data-json-ld-v0.0.3-next.20) (2026-03-24)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Features
|
|
140
|
+
|
|
141
|
+
* discover JSON-LD context via HTTP Link ([#62](https://github.com/iotaledger/twin-data/issues/62)) ([5545864](https://github.com/iotaledger/twin-data/commit/5545864c08e8c42fb93844f552907648a1130b64))
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
### Dependencies
|
|
145
|
+
|
|
146
|
+
* The following workspace dependencies were updated
|
|
147
|
+
* dependencies
|
|
148
|
+
* @twin.org/data-core bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
149
|
+
|
|
150
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.19...data-json-ld-v0.0.3-next.20) (2026-03-23)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Features
|
|
154
|
+
|
|
155
|
+
* **JsonLdProcessor:** discover JSON-LD context URLs via HTTP `Link` (`rel="alternate"`, `type="application/ld+json"`) after `GET` Accept fallbacks fail to return JSON; `HEAD` with `GET` fallback on 405/501; at most one discovery hop; resolve `Link` targets with a safe base when `response.url` is empty (e.g. synthetic responses). Registered redirects still take precedence over discovery.
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Documentation
|
|
159
|
+
|
|
160
|
+
* Document remote context resolution order (`docs/examples.md`).
|
|
161
|
+
* Document when vocabulary `registerRedirects()` helpers are optional versus HTTP `Link` discovery (`docs/examples.md`).
|
|
162
|
+
* Expand `JsonLdProcessor` redirect JSDoc (`setRedirects` / `addRedirect`).
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
### Tests
|
|
166
|
+
|
|
167
|
+
* Share schema.org fixture document-cache seeding via `tests/helpers/schemaOrgDocumentCache.ts` (`jsonLdProcessor` / `jsonLdHelper` specs).
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
## [0.0.3-next.19](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.18...data-json-ld-v0.0.3-next.19) (2026-03-20)
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
### Features
|
|
174
|
+
|
|
175
|
+
* use local LD context fixture in tests instead of remotes ([#60](https://github.com/iotaledger/twin-data/issues/60)) ([df18303](https://github.com/iotaledger/twin-data/commit/df18303301f031a5032850c900eea24b094a99a5))
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
### Dependencies
|
|
179
|
+
|
|
180
|
+
* The following workspace dependencies were updated
|
|
181
|
+
* dependencies
|
|
182
|
+
* @twin.org/data-core bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
183
|
+
|
|
184
|
+
## [0.0.3-next.18](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.17...data-json-ld-v0.0.3-next.18) (2026-03-16)
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
### Miscellaneous Chores
|
|
188
|
+
|
|
189
|
+
* **data-json-ld:** Synchronize repo versions
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
### Dependencies
|
|
193
|
+
|
|
194
|
+
* The following workspace dependencies were updated
|
|
195
|
+
* dependencies
|
|
196
|
+
* @twin.org/data-core bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
197
|
+
|
|
198
|
+
## [0.0.3-next.17](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.16...data-json-ld-v0.0.3-next.17) (2026-03-12)
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
### Miscellaneous Chores
|
|
202
|
+
|
|
203
|
+
* **data-json-ld:** Synchronize repo versions
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Dependencies
|
|
207
|
+
|
|
208
|
+
* The following workspace dependencies were updated
|
|
209
|
+
* dependencies
|
|
210
|
+
* @twin.org/data-core bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
211
|
+
|
|
212
|
+
## [0.0.3-next.16](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.15...data-json-ld-v0.0.3-next.16) (2026-03-06)
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
### Features
|
|
216
|
+
|
|
217
|
+
* additional JSON-LD helper types ([575627c](https://github.com/iotaledger/twin-data/commit/575627c707e691086e07163dac44ba1396ac322e))
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
### Dependencies
|
|
221
|
+
|
|
222
|
+
* The following workspace dependencies were updated
|
|
223
|
+
* dependencies
|
|
224
|
+
* @twin.org/data-core bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
225
|
+
|
|
226
|
+
## [0.0.3-next.15](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.14...data-json-ld-v0.0.3-next.15) (2026-02-27)
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
### Features
|
|
230
|
+
|
|
231
|
+
* additional json-ld helpers ([c74cbd6](https://github.com/iotaledger/twin-data/commit/c74cbd60e423c5f780243da9868723e9d54d068a))
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
### Dependencies
|
|
235
|
+
|
|
236
|
+
* The following workspace dependencies were updated
|
|
237
|
+
* dependencies
|
|
238
|
+
* @twin.org/data-core bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
239
|
+
|
|
240
|
+
## [0.0.3-next.14](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.13...data-json-ld-v0.0.3-next.14) (2026-02-25)
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
### Features
|
|
244
|
+
|
|
245
|
+
* update schemas ([c30159c](https://github.com/iotaledger/twin-data/commit/c30159cd24e5f60f9124752738dd1c0312ee17dd))
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
### Dependencies
|
|
249
|
+
|
|
250
|
+
* The following workspace dependencies were updated
|
|
251
|
+
* dependencies
|
|
252
|
+
* @twin.org/data-core bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
253
|
+
|
|
254
|
+
## [0.0.3-next.13](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.12...data-json-ld-v0.0.3-next.13) (2026-02-25)
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
### Features
|
|
258
|
+
|
|
259
|
+
* publish npm await ([7bdf0cd](https://github.com/iotaledger/twin-data/commit/7bdf0cd5d9417e7f8811f295ccf3ab3403ae3753))
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
### Dependencies
|
|
263
|
+
|
|
264
|
+
* The following workspace dependencies were updated
|
|
265
|
+
* dependencies
|
|
266
|
+
* @twin.org/data-core bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
267
|
+
|
|
268
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.11...data-json-ld-v0.0.3-next.12) (2026-02-25)
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
### Features
|
|
272
|
+
|
|
273
|
+
* add toStructuredObject ([58354e0](https://github.com/iotaledger/twin-data/commit/58354e0096c917f2e2e64214107d68326c79260d))
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
### Dependencies
|
|
277
|
+
|
|
278
|
+
* The following workspace dependencies were updated
|
|
279
|
+
* dependencies
|
|
280
|
+
* @twin.org/data-core bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
281
|
+
|
|
282
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.10...data-json-ld-v0.0.3-next.11) (2026-02-25)
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
### Features
|
|
286
|
+
|
|
287
|
+
* expand JsonLdHelper.getId with custom properties names ([8ec4dcf](https://github.com/iotaledger/twin-data/commit/8ec4dcf807a6dc416b2df2a77749f841a60be05f))
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
### Dependencies
|
|
291
|
+
|
|
292
|
+
* The following workspace dependencies were updated
|
|
293
|
+
* dependencies
|
|
294
|
+
* @twin.org/data-core bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
295
|
+
|
|
296
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.9...data-json-ld-v0.0.3-next.10) (2026-02-24)
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
### Features
|
|
300
|
+
|
|
301
|
+
* add json ld helper types ([#46](https://github.com/iotaledger/twin-data/issues/46)) ([22e998e](https://github.com/iotaledger/twin-data/commit/22e998e29e7eadc9202026ee9743d64ed98035df))
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
### Dependencies
|
|
305
|
+
|
|
306
|
+
* The following workspace dependencies were updated
|
|
307
|
+
* dependencies
|
|
308
|
+
* @twin.org/data-core bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
309
|
+
|
|
310
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.8...data-json-ld-v0.0.3-next.9) (2026-02-23)
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
### Features
|
|
314
|
+
|
|
315
|
+
* additional JsonLdHelper methods ([#44](https://github.com/iotaledger/twin-data/issues/44)) ([ebe2cf5](https://github.com/iotaledger/twin-data/commit/ebe2cf50d1a7fbe0474f0a556d49f43eb7767a2f))
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
### Dependencies
|
|
319
|
+
|
|
320
|
+
* The following workspace dependencies were updated
|
|
321
|
+
* dependencies
|
|
322
|
+
* @twin.org/data-core bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
323
|
+
|
|
324
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.7...data-json-ld-v0.0.3-next.8) (2026-02-02)
|
|
4
325
|
|
|
5
326
|
|
|
6
327
|
### Miscellaneous Chores
|
|
@@ -14,12 +335,12 @@
|
|
|
14
335
|
* dependencies
|
|
15
336
|
* @twin.org/data-core bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
16
337
|
|
|
17
|
-
## [0.0.3-next.7](https://github.com/
|
|
338
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.6...data-json-ld-v0.0.3-next.7) (2026-01-21)
|
|
18
339
|
|
|
19
340
|
|
|
20
341
|
### Features
|
|
21
342
|
|
|
22
|
-
* update context naming ([#37](https://github.com/
|
|
343
|
+
* update context naming ([#37](https://github.com/iotaledger/twin-data/issues/37)) ([9d99360](https://github.com/iotaledger/twin-data/commit/9d993605aa51f27a09722729057c6ee921617c2d))
|
|
23
344
|
|
|
24
345
|
|
|
25
346
|
### Dependencies
|
|
@@ -28,7 +349,7 @@
|
|
|
28
349
|
* dependencies
|
|
29
350
|
* @twin.org/data-core bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
30
351
|
|
|
31
|
-
## [0.0.3-next.6](https://github.com/
|
|
352
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.5...data-json-ld-v0.0.3-next.6) (2026-01-14)
|
|
32
353
|
|
|
33
354
|
|
|
34
355
|
### Miscellaneous Chores
|
|
@@ -42,12 +363,12 @@
|
|
|
42
363
|
* dependencies
|
|
43
364
|
* @twin.org/data-core bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
44
365
|
|
|
45
|
-
## [0.0.3-next.5](https://github.com/
|
|
366
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.4...data-json-ld-v0.0.3-next.5) (2026-01-14)
|
|
46
367
|
|
|
47
368
|
|
|
48
369
|
### Features
|
|
49
370
|
|
|
50
|
-
* improve data type registration ([#34](https://github.com/
|
|
371
|
+
* improve data type registration ([#34](https://github.com/iotaledger/twin-data/issues/34)) ([855d110](https://github.com/iotaledger/twin-data/commit/855d11046a4d85317b77a5c4e0f4a7b1b6d1a767))
|
|
51
372
|
|
|
52
373
|
|
|
53
374
|
### Dependencies
|
|
@@ -56,7 +377,7 @@
|
|
|
56
377
|
* dependencies
|
|
57
378
|
* @twin.org/data-core bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
58
379
|
|
|
59
|
-
## [0.0.3-next.4](https://github.com/
|
|
380
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.3...data-json-ld-v0.0.3-next.4) (2026-01-06)
|
|
60
381
|
|
|
61
382
|
|
|
62
383
|
### Miscellaneous Chores
|
|
@@ -70,12 +391,12 @@
|
|
|
70
391
|
* dependencies
|
|
71
392
|
* @twin.org/data-core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
72
393
|
|
|
73
|
-
## [0.0.3-next.3](https://github.com/
|
|
394
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.2...data-json-ld-v0.0.3-next.3) (2026-01-05)
|
|
74
395
|
|
|
75
396
|
|
|
76
397
|
### Features
|
|
77
398
|
|
|
78
|
-
* add JsonLdHelper.toNodeObject method ([93f2add](https://github.com/
|
|
399
|
+
* add JsonLdHelper.toNodeObject method ([93f2add](https://github.com/iotaledger/twin-data/commit/93f2add1948f168d7a21223929cf6c65a8115f6f))
|
|
79
400
|
|
|
80
401
|
|
|
81
402
|
### Dependencies
|
|
@@ -84,17 +405,17 @@
|
|
|
84
405
|
* dependencies
|
|
85
406
|
* @twin.org/data-core bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
86
407
|
|
|
87
|
-
## [0.0.3-next.2](https://github.com/
|
|
408
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.1...data-json-ld-v0.0.3-next.2) (2025-11-24)
|
|
88
409
|
|
|
89
410
|
|
|
90
411
|
### Features
|
|
91
412
|
|
|
92
|
-
* add JsonLdHelper getId and getType ([4b43e41](https://github.com/
|
|
413
|
+
* add JsonLdHelper getId and getType ([4b43e41](https://github.com/iotaledger/twin-data/commit/4b43e41fa47a16a19d2c759f5e40a1fb51e0a128))
|
|
93
414
|
|
|
94
415
|
|
|
95
416
|
### Bug Fixes
|
|
96
417
|
|
|
97
|
-
* add redirect remove duplicates ([49709e0](https://github.com/
|
|
418
|
+
* add redirect remove duplicates ([49709e0](https://github.com/iotaledger/twin-data/commit/49709e04cf087e216f4c9e36a9f35daceeae98fd))
|
|
98
419
|
|
|
99
420
|
|
|
100
421
|
### Dependencies
|
|
@@ -103,29 +424,29 @@
|
|
|
103
424
|
* dependencies
|
|
104
425
|
* @twin.org/data-core bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
105
426
|
|
|
106
|
-
## [0.0.3-next.1](https://github.com/
|
|
427
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.3-next.0...data-json-ld-v0.0.3-next.1) (2025-11-10)
|
|
107
428
|
|
|
108
429
|
|
|
109
430
|
### Features
|
|
110
431
|
|
|
111
|
-
* add context id features ([#25](https://github.com/
|
|
112
|
-
* add document cache access methods ([dbf1e36](https://github.com/
|
|
113
|
-
* add fail on missing type option and both mode ([e8b9702](https://github.com/
|
|
114
|
-
* add validate-locales ([cf9b761](https://github.com/
|
|
115
|
-
* eslint migration to flat config ([b0db6e6](https://github.com/
|
|
116
|
-
* expand Json LD Keyword ([70632d1](https://github.com/
|
|
117
|
-
* support multiple type JSON-LD ([8f0d530](https://github.com/
|
|
118
|
-
* update framework core ([c077b8c](https://github.com/
|
|
119
|
-
* update ts-to-schema ([8c3cd91](https://github.com/
|
|
120
|
-
* use fully qualified names for data type lookups ([b7b5c74](https://github.com/
|
|
121
|
-
* use shared store mechanism ([#3](https://github.com/
|
|
122
|
-
* use updated Is.function ([46a4715](https://github.com/
|
|
123
|
-
* use updated JSON schema specs ([465223a](https://github.com/
|
|
432
|
+
* add context id features ([#25](https://github.com/iotaledger/twin-data/issues/25)) ([6592f2e](https://github.com/iotaledger/twin-data/commit/6592f2e4e59021cc42a079a4f46242758a54313d))
|
|
433
|
+
* add document cache access methods ([dbf1e36](https://github.com/iotaledger/twin-data/commit/dbf1e36d176c5f428f8c52628fb5a1ff7a6a174a))
|
|
434
|
+
* add fail on missing type option and both mode ([e8b9702](https://github.com/iotaledger/twin-data/commit/e8b97029a04b646497ff0e55b9610291e58ae92a))
|
|
435
|
+
* add validate-locales ([cf9b761](https://github.com/iotaledger/twin-data/commit/cf9b76160820fe0b13b4fe56ed241c1d5511b7c1))
|
|
436
|
+
* eslint migration to flat config ([b0db6e6](https://github.com/iotaledger/twin-data/commit/b0db6e69a90046fc60d29e4273fcdfee13c16088))
|
|
437
|
+
* expand Json LD Keyword ([70632d1](https://github.com/iotaledger/twin-data/commit/70632d1e11ad85cf3c57e118476b125a673f1681))
|
|
438
|
+
* support multiple type JSON-LD ([8f0d530](https://github.com/iotaledger/twin-data/commit/8f0d530f66302ab19413ecf968f170f97456e31e))
|
|
439
|
+
* update framework core ([c077b8c](https://github.com/iotaledger/twin-data/commit/c077b8c07e7ee66b5482254eab6f2a52cd911270))
|
|
440
|
+
* update ts-to-schema ([8c3cd91](https://github.com/iotaledger/twin-data/commit/8c3cd9131113f2d609f6e709562402e5c7766c1a))
|
|
441
|
+
* use fully qualified names for data type lookups ([b7b5c74](https://github.com/iotaledger/twin-data/commit/b7b5c746b0180a87baa976f6a7a76cedd53d8ff7))
|
|
442
|
+
* use shared store mechanism ([#3](https://github.com/iotaledger/twin-data/issues/3)) ([33eb221](https://github.com/iotaledger/twin-data/commit/33eb221ccec2b4a79549c06e9a04225009b93a46))
|
|
443
|
+
* use updated Is.function ([46a4715](https://github.com/iotaledger/twin-data/commit/46a4715f995aea34f2011138662fe003c9727d07))
|
|
444
|
+
* use updated JSON schema specs ([465223a](https://github.com/iotaledger/twin-data/commit/465223a9e9c24af546480ef084327a78fa366eaa))
|
|
124
445
|
|
|
125
446
|
|
|
126
447
|
### Bug Fixes
|
|
127
448
|
|
|
128
|
-
* itemListElement compaction override ([d908a10](https://github.com/
|
|
449
|
+
* itemListElement compaction override ([d908a10](https://github.com/iotaledger/twin-data/commit/d908a1043d7792e31b3101221d17850757b6c2a6))
|
|
129
450
|
|
|
130
451
|
|
|
131
452
|
### Dependencies
|
|
@@ -134,12 +455,12 @@
|
|
|
134
455
|
* dependencies
|
|
135
456
|
* @twin.org/data-core bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
136
457
|
|
|
137
|
-
## [0.0.2-next.4](https://github.com/
|
|
458
|
+
## [0.0.2-next.4](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.2-next.3...data-json-ld-v0.0.2-next.4) (2025-10-09)
|
|
138
459
|
|
|
139
460
|
|
|
140
461
|
### Features
|
|
141
462
|
|
|
142
|
-
* add validate-locales ([cf9b761](https://github.com/
|
|
463
|
+
* add validate-locales ([cf9b761](https://github.com/iotaledger/twin-data/commit/cf9b76160820fe0b13b4fe56ed241c1d5511b7c1))
|
|
143
464
|
|
|
144
465
|
|
|
145
466
|
### Dependencies
|
|
@@ -148,12 +469,12 @@
|
|
|
148
469
|
* dependencies
|
|
149
470
|
* @twin.org/data-core bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
150
471
|
|
|
151
|
-
## [0.0.2-next.3](https://github.com/
|
|
472
|
+
## [0.0.2-next.3](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.2-next.2...data-json-ld-v0.0.2-next.3) (2025-09-29)
|
|
152
473
|
|
|
153
474
|
|
|
154
475
|
### Features
|
|
155
476
|
|
|
156
|
-
* use updated Is.function ([46a4715](https://github.com/
|
|
477
|
+
* use updated Is.function ([46a4715](https://github.com/iotaledger/twin-data/commit/46a4715f995aea34f2011138662fe003c9727d07))
|
|
157
478
|
|
|
158
479
|
|
|
159
480
|
### Dependencies
|
|
@@ -162,12 +483,12 @@
|
|
|
162
483
|
* dependencies
|
|
163
484
|
* @twin.org/data-core bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
164
485
|
|
|
165
|
-
## [0.0.2-next.2](https://github.com/
|
|
486
|
+
## [0.0.2-next.2](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.2-next.1...data-json-ld-v0.0.2-next.2) (2025-08-29)
|
|
166
487
|
|
|
167
488
|
|
|
168
489
|
### Features
|
|
169
490
|
|
|
170
|
-
* eslint migration to flat config ([b0db6e6](https://github.com/
|
|
491
|
+
* eslint migration to flat config ([b0db6e6](https://github.com/iotaledger/twin-data/commit/b0db6e69a90046fc60d29e4273fcdfee13c16088))
|
|
171
492
|
|
|
172
493
|
|
|
173
494
|
### Dependencies
|
|
@@ -176,25 +497,25 @@
|
|
|
176
497
|
* dependencies
|
|
177
498
|
* @twin.org/data-core bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
178
499
|
|
|
179
|
-
## [0.0.2-next.1](https://github.com/
|
|
500
|
+
## [0.0.2-next.1](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.2-next.0...data-json-ld-v0.0.2-next.1) (2025-08-19)
|
|
180
501
|
|
|
181
502
|
|
|
182
503
|
### Features
|
|
183
504
|
|
|
184
|
-
* add document cache access methods ([dbf1e36](https://github.com/
|
|
185
|
-
* add fail on missing type option and both mode ([e8b9702](https://github.com/
|
|
186
|
-
* expand Json LD Keyword ([70632d1](https://github.com/
|
|
187
|
-
* support multiple type JSON-LD ([8f0d530](https://github.com/
|
|
188
|
-
* update framework core ([c077b8c](https://github.com/
|
|
189
|
-
* update ts-to-schema ([8c3cd91](https://github.com/
|
|
190
|
-
* use fully qualified names for data type lookups ([b7b5c74](https://github.com/
|
|
191
|
-
* use shared store mechanism ([#3](https://github.com/
|
|
192
|
-
* use updated JSON schema specs ([465223a](https://github.com/
|
|
505
|
+
* add document cache access methods ([dbf1e36](https://github.com/iotaledger/twin-data/commit/dbf1e36d176c5f428f8c52628fb5a1ff7a6a174a))
|
|
506
|
+
* add fail on missing type option and both mode ([e8b9702](https://github.com/iotaledger/twin-data/commit/e8b97029a04b646497ff0e55b9610291e58ae92a))
|
|
507
|
+
* expand Json LD Keyword ([70632d1](https://github.com/iotaledger/twin-data/commit/70632d1e11ad85cf3c57e118476b125a673f1681))
|
|
508
|
+
* support multiple type JSON-LD ([8f0d530](https://github.com/iotaledger/twin-data/commit/8f0d530f66302ab19413ecf968f170f97456e31e))
|
|
509
|
+
* update framework core ([c077b8c](https://github.com/iotaledger/twin-data/commit/c077b8c07e7ee66b5482254eab6f2a52cd911270))
|
|
510
|
+
* update ts-to-schema ([8c3cd91](https://github.com/iotaledger/twin-data/commit/8c3cd9131113f2d609f6e709562402e5c7766c1a))
|
|
511
|
+
* use fully qualified names for data type lookups ([b7b5c74](https://github.com/iotaledger/twin-data/commit/b7b5c746b0180a87baa976f6a7a76cedd53d8ff7))
|
|
512
|
+
* use shared store mechanism ([#3](https://github.com/iotaledger/twin-data/issues/3)) ([33eb221](https://github.com/iotaledger/twin-data/commit/33eb221ccec2b4a79549c06e9a04225009b93a46))
|
|
513
|
+
* use updated JSON schema specs ([465223a](https://github.com/iotaledger/twin-data/commit/465223a9e9c24af546480ef084327a78fa366eaa))
|
|
193
514
|
|
|
194
515
|
|
|
195
516
|
### Bug Fixes
|
|
196
517
|
|
|
197
|
-
* itemListElement compaction override ([d908a10](https://github.com/
|
|
518
|
+
* itemListElement compaction override ([d908a10](https://github.com/iotaledger/twin-data/commit/d908a1043d7792e31b3101221d17850757b6c2a6))
|
|
198
519
|
|
|
199
520
|
|
|
200
521
|
### Dependencies
|
|
@@ -208,26 +529,26 @@
|
|
|
208
529
|
|
|
209
530
|
### Features
|
|
210
531
|
|
|
211
|
-
* add document cache access methods ([dbf1e36](https://github.com/
|
|
212
|
-
* add fail on missing type option and both mode ([e8b9702](https://github.com/
|
|
213
|
-
* expand Json LD Keyword ([70632d1](https://github.com/
|
|
214
|
-
* support multiple type JSON-LD ([8f0d530](https://github.com/
|
|
215
|
-
* update ts-to-schema ([8c3cd91](https://github.com/
|
|
216
|
-
* use fully qualified names for data type lookups ([b7b5c74](https://github.com/
|
|
217
|
-
* use shared store mechanism ([#3](https://github.com/
|
|
218
|
-
* use updated JSON schema specs ([465223a](https://github.com/
|
|
532
|
+
* add document cache access methods ([dbf1e36](https://github.com/iotaledger/twin-data/commit/dbf1e36d176c5f428f8c52628fb5a1ff7a6a174a))
|
|
533
|
+
* add fail on missing type option and both mode ([e8b9702](https://github.com/iotaledger/twin-data/commit/e8b97029a04b646497ff0e55b9610291e58ae92a))
|
|
534
|
+
* expand Json LD Keyword ([70632d1](https://github.com/iotaledger/twin-data/commit/70632d1e11ad85cf3c57e118476b125a673f1681))
|
|
535
|
+
* support multiple type JSON-LD ([8f0d530](https://github.com/iotaledger/twin-data/commit/8f0d530f66302ab19413ecf968f170f97456e31e))
|
|
536
|
+
* update ts-to-schema ([8c3cd91](https://github.com/iotaledger/twin-data/commit/8c3cd9131113f2d609f6e709562402e5c7766c1a))
|
|
537
|
+
* use fully qualified names for data type lookups ([b7b5c74](https://github.com/iotaledger/twin-data/commit/b7b5c746b0180a87baa976f6a7a76cedd53d8ff7))
|
|
538
|
+
* use shared store mechanism ([#3](https://github.com/iotaledger/twin-data/issues/3)) ([33eb221](https://github.com/iotaledger/twin-data/commit/33eb221ccec2b4a79549c06e9a04225009b93a46))
|
|
539
|
+
* use updated JSON schema specs ([465223a](https://github.com/iotaledger/twin-data/commit/465223a9e9c24af546480ef084327a78fa366eaa))
|
|
219
540
|
|
|
220
541
|
|
|
221
542
|
### Bug Fixes
|
|
222
543
|
|
|
223
|
-
* itemListElement compaction override ([d908a10](https://github.com/
|
|
544
|
+
* itemListElement compaction override ([d908a10](https://github.com/iotaledger/twin-data/commit/d908a1043d7792e31b3101221d17850757b6c2a6))
|
|
224
545
|
|
|
225
|
-
## [0.0.1-next.37](https://github.com/
|
|
546
|
+
## [0.0.1-next.37](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.1-next.36...data-json-ld-v0.0.1-next.37) (2025-06-11)
|
|
226
547
|
|
|
227
548
|
|
|
228
549
|
### Features
|
|
229
550
|
|
|
230
|
-
* use updated JSON schema specs ([465223a](https://github.com/
|
|
551
|
+
* use updated JSON schema specs ([465223a](https://github.com/iotaledger/twin-data/commit/465223a9e9c24af546480ef084327a78fa366eaa))
|
|
231
552
|
|
|
232
553
|
|
|
233
554
|
### Dependencies
|
|
@@ -236,12 +557,12 @@
|
|
|
236
557
|
* dependencies
|
|
237
558
|
* @twin.org/data-core bumped from 0.0.1-next.36 to 0.0.1-next.37
|
|
238
559
|
|
|
239
|
-
## [0.0.1-next.36](https://github.com/
|
|
560
|
+
## [0.0.1-next.36](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.1-next.35...data-json-ld-v0.0.1-next.36) (2025-06-10)
|
|
240
561
|
|
|
241
562
|
|
|
242
563
|
### Features
|
|
243
564
|
|
|
244
|
-
* expand Json LD Keyword ([70632d1](https://github.com/
|
|
565
|
+
* expand Json LD Keyword ([70632d1](https://github.com/iotaledger/twin-data/commit/70632d1e11ad85cf3c57e118476b125a673f1681))
|
|
245
566
|
|
|
246
567
|
|
|
247
568
|
### Dependencies
|
|
@@ -250,12 +571,12 @@
|
|
|
250
571
|
* dependencies
|
|
251
572
|
* @twin.org/data-core bumped from 0.0.1-next.35 to 0.0.1-next.36
|
|
252
573
|
|
|
253
|
-
## [0.0.1-next.35](https://github.com/
|
|
574
|
+
## [0.0.1-next.35](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.1-next.34...data-json-ld-v0.0.1-next.35) (2025-06-03)
|
|
254
575
|
|
|
255
576
|
|
|
256
577
|
### Features
|
|
257
578
|
|
|
258
|
-
* update ts-to-schema ([8c3cd91](https://github.com/
|
|
579
|
+
* update ts-to-schema ([8c3cd91](https://github.com/iotaledger/twin-data/commit/8c3cd9131113f2d609f6e709562402e5c7766c1a))
|
|
259
580
|
|
|
260
581
|
|
|
261
582
|
### Dependencies
|
|
@@ -264,12 +585,12 @@
|
|
|
264
585
|
* dependencies
|
|
265
586
|
* @twin.org/data-core bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
266
587
|
|
|
267
|
-
## [0.0.1-next.34](https://github.com/
|
|
588
|
+
## [0.0.1-next.34](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.1-next.33...data-json-ld-v0.0.1-next.34) (2025-06-02)
|
|
268
589
|
|
|
269
590
|
|
|
270
591
|
### Features
|
|
271
592
|
|
|
272
|
-
* support multiple type JSON-LD ([8f0d530](https://github.com/
|
|
593
|
+
* support multiple type JSON-LD ([8f0d530](https://github.com/iotaledger/twin-data/commit/8f0d530f66302ab19413ecf968f170f97456e31e))
|
|
273
594
|
|
|
274
595
|
|
|
275
596
|
### Dependencies
|
|
@@ -278,12 +599,12 @@
|
|
|
278
599
|
* dependencies
|
|
279
600
|
* @twin.org/data-core bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
280
601
|
|
|
281
|
-
## [0.0.1-next.33](https://github.com/
|
|
602
|
+
## [0.0.1-next.33](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.1-next.32...data-json-ld-v0.0.1-next.33) (2025-06-02)
|
|
282
603
|
|
|
283
604
|
|
|
284
605
|
### Features
|
|
285
606
|
|
|
286
|
-
* add fail on missing type option and both mode ([e8b9702](https://github.com/
|
|
607
|
+
* add fail on missing type option and both mode ([e8b9702](https://github.com/iotaledger/twin-data/commit/e8b97029a04b646497ff0e55b9610291e58ae92a))
|
|
287
608
|
|
|
288
609
|
|
|
289
610
|
### Dependencies
|
|
@@ -292,12 +613,12 @@
|
|
|
292
613
|
* dependencies
|
|
293
614
|
* @twin.org/data-core bumped from 0.0.1-next.32 to 0.0.1-next.33
|
|
294
615
|
|
|
295
|
-
## [0.0.1-next.32](https://github.com/
|
|
616
|
+
## [0.0.1-next.32](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.1-next.31...data-json-ld-v0.0.1-next.32) (2025-05-28)
|
|
296
617
|
|
|
297
618
|
|
|
298
619
|
### Features
|
|
299
620
|
|
|
300
|
-
* use fully qualified names for data type lookups ([b7b5c74](https://github.com/
|
|
621
|
+
* use fully qualified names for data type lookups ([b7b5c74](https://github.com/iotaledger/twin-data/commit/b7b5c746b0180a87baa976f6a7a76cedd53d8ff7))
|
|
301
622
|
|
|
302
623
|
|
|
303
624
|
### Dependencies
|
|
@@ -306,12 +627,12 @@
|
|
|
306
627
|
* dependencies
|
|
307
628
|
* @twin.org/data-core bumped from 0.0.1-next.31 to 0.0.1-next.32
|
|
308
629
|
|
|
309
|
-
## [0.0.1-next.31](https://github.com/
|
|
630
|
+
## [0.0.1-next.31](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.1-next.30...data-json-ld-v0.0.1-next.31) (2025-05-08)
|
|
310
631
|
|
|
311
632
|
|
|
312
633
|
### Bug Fixes
|
|
313
634
|
|
|
314
|
-
* itemListElement compaction override ([d908a10](https://github.com/
|
|
635
|
+
* itemListElement compaction override ([d908a10](https://github.com/iotaledger/twin-data/commit/d908a1043d7792e31b3101221d17850757b6c2a6))
|
|
315
636
|
|
|
316
637
|
|
|
317
638
|
### Dependencies
|
|
@@ -320,12 +641,12 @@
|
|
|
320
641
|
* dependencies
|
|
321
642
|
* @twin.org/data-core bumped from 0.0.1-next.30 to 0.0.1-next.31
|
|
322
643
|
|
|
323
|
-
## [0.0.1-next.30](https://github.com/
|
|
644
|
+
## [0.0.1-next.30](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.1-next.29...data-json-ld-v0.0.1-next.30) (2025-04-17)
|
|
324
645
|
|
|
325
646
|
|
|
326
647
|
### Features
|
|
327
648
|
|
|
328
|
-
* use shared store mechanism ([#3](https://github.com/
|
|
649
|
+
* use shared store mechanism ([#3](https://github.com/iotaledger/twin-data/issues/3)) ([33eb221](https://github.com/iotaledger/twin-data/commit/33eb221ccec2b4a79549c06e9a04225009b93a46))
|
|
329
650
|
|
|
330
651
|
|
|
331
652
|
### Dependencies
|
|
@@ -334,12 +655,12 @@
|
|
|
334
655
|
* dependencies
|
|
335
656
|
* @twin.org/data-core bumped from 0.0.1-next.29 to 0.0.1-next.30
|
|
336
657
|
|
|
337
|
-
## [0.0.1-next.29](https://github.com/
|
|
658
|
+
## [0.0.1-next.29](https://github.com/iotaledger/twin-data/compare/data-json-ld-v0.0.1-next.28...data-json-ld-v0.0.1-next.29) (2025-03-28)
|
|
338
659
|
|
|
339
660
|
|
|
340
661
|
### Features
|
|
341
662
|
|
|
342
|
-
* add document cache access methods ([dbf1e36](https://github.com/
|
|
663
|
+
* add document cache access methods ([dbf1e36](https://github.com/iotaledger/twin-data/commit/dbf1e36d176c5f428f8c52628fb5a1ff7a6a174a))
|
|
343
664
|
|
|
344
665
|
|
|
345
666
|
### Dependencies
|