@twin.org/standards-w3c-activity-streams 0.0.3-next.9 → 0.9.0
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/dataTypes/activityStreamsDataTypes.js +275 -16
- package/dist/es/dataTypes/activityStreamsDataTypes.js.map +1 -1
- package/dist/es/index.js +33 -0
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/IActivityStreamsActivity.js.map +1 -1
- package/dist/es/models/IActivityStreamsActor.js +2 -0
- package/dist/es/models/IActivityStreamsActor.js.map +1 -0
- package/dist/es/models/IActivityStreamsApplication.js +2 -0
- package/dist/es/models/IActivityStreamsApplication.js.map +1 -0
- package/dist/es/models/IActivityStreamsArticle.js +2 -0
- package/dist/es/models/IActivityStreamsArticle.js.map +1 -0
- package/dist/es/models/IActivityStreamsAudio.js +2 -0
- package/dist/es/models/IActivityStreamsAudio.js.map +1 -0
- package/dist/es/models/IActivityStreamsCollection.js +2 -0
- package/dist/es/models/IActivityStreamsCollection.js.map +1 -0
- package/dist/es/models/IActivityStreamsCollectionPage.js +2 -0
- package/dist/es/models/IActivityStreamsCollectionPage.js.map +1 -0
- package/dist/es/models/IActivityStreamsDocument.js +2 -0
- package/dist/es/models/IActivityStreamsDocument.js.map +1 -0
- package/dist/es/models/IActivityStreamsEvent.js +2 -0
- package/dist/es/models/IActivityStreamsEvent.js.map +1 -0
- package/dist/es/models/IActivityStreamsGroup.js +2 -0
- package/dist/es/models/IActivityStreamsGroup.js.map +1 -0
- package/dist/es/models/IActivityStreamsImage.js +2 -0
- package/dist/es/models/IActivityStreamsImage.js.map +1 -0
- package/dist/es/models/IActivityStreamsIntransitiveActivity.js +2 -0
- package/dist/es/models/IActivityStreamsIntransitiveActivity.js.map +1 -0
- package/dist/es/models/IActivityStreamsLink.js +2 -0
- package/dist/es/models/IActivityStreamsLink.js.map +1 -0
- package/dist/es/models/IActivityStreamsMention.js +2 -0
- package/dist/es/models/IActivityStreamsMention.js.map +1 -0
- package/dist/es/models/IActivityStreamsNote.js +2 -0
- package/dist/es/models/IActivityStreamsNote.js.map +1 -0
- package/dist/es/models/IActivityStreamsObject.js +2 -0
- package/dist/es/models/IActivityStreamsObject.js.map +1 -0
- package/dist/es/models/IActivityStreamsOrderedCollection.js +2 -0
- package/dist/es/models/IActivityStreamsOrderedCollection.js.map +1 -0
- package/dist/es/models/IActivityStreamsOrderedCollectionPage.js +2 -0
- package/dist/es/models/IActivityStreamsOrderedCollectionPage.js.map +1 -0
- package/dist/es/models/IActivityStreamsOrganization.js +2 -0
- package/dist/es/models/IActivityStreamsOrganization.js.map +1 -0
- package/dist/es/models/IActivityStreamsPage.js +2 -0
- package/dist/es/models/IActivityStreamsPage.js.map +1 -0
- package/dist/es/models/IActivityStreamsPerson.js +2 -0
- package/dist/es/models/IActivityStreamsPerson.js.map +1 -0
- package/dist/es/models/IActivityStreamsPlace.js +2 -0
- package/dist/es/models/IActivityStreamsPlace.js.map +1 -0
- package/dist/es/models/IActivityStreamsProfile.js +2 -0
- package/dist/es/models/IActivityStreamsProfile.js.map +1 -0
- package/dist/es/models/IActivityStreamsQuestion.js +2 -0
- package/dist/es/models/IActivityStreamsQuestion.js.map +1 -0
- package/dist/es/models/IActivityStreamsQuestionAnyOfChoice.js +2 -0
- package/dist/es/models/IActivityStreamsQuestionAnyOfChoice.js.map +1 -0
- package/dist/es/models/IActivityStreamsQuestionBase.js +2 -0
- package/dist/es/models/IActivityStreamsQuestionBase.js.map +1 -0
- package/dist/es/models/IActivityStreamsQuestionNeitherChoice.js +4 -0
- package/dist/es/models/IActivityStreamsQuestionNeitherChoice.js.map +1 -0
- package/dist/es/models/IActivityStreamsQuestionOneOfChoice.js +2 -0
- package/dist/es/models/IActivityStreamsQuestionOneOfChoice.js.map +1 -0
- package/dist/es/models/IActivityStreamsRelationship.js +2 -0
- package/dist/es/models/IActivityStreamsRelationship.js.map +1 -0
- package/dist/es/models/IActivityStreamsService.js +2 -0
- package/dist/es/models/IActivityStreamsService.js.map +1 -0
- package/dist/es/models/IActivityStreamsTombstone.js +2 -0
- package/dist/es/models/IActivityStreamsTombstone.js.map +1 -0
- package/dist/es/models/IActivityStreamsVideo.js +2 -0
- package/dist/es/models/IActivityStreamsVideo.js.map +1 -0
- package/dist/es/models/activityStreamsContextType.js.map +1 -1
- package/dist/es/models/activityStreamsContexts.js +13 -7
- package/dist/es/models/activityStreamsContexts.js.map +1 -1
- package/dist/es/models/activityStreamsLinkTypes.js +21 -0
- package/dist/es/models/activityStreamsLinkTypes.js.map +1 -0
- package/dist/es/models/activityStreamsObjectTypes.js +141 -0
- package/dist/es/models/activityStreamsObjectTypes.js.map +1 -0
- package/dist/es/models/activityStreamsTypes.js +88 -30
- package/dist/es/models/activityStreamsTypes.js.map +1 -1
- package/dist/es/schemas/ActivityStreamsActivity.json +116 -127
- package/dist/es/schemas/ActivityStreamsActor.json +68 -0
- package/dist/es/schemas/ActivityStreamsApplication.json +41 -0
- package/dist/es/schemas/ActivityStreamsArticle.json +41 -0
- package/dist/es/schemas/ActivityStreamsAudio.json +41 -0
- package/dist/es/schemas/ActivityStreamsCollection.json +102 -0
- package/dist/es/schemas/ActivityStreamsCollectionPage.json +74 -0
- package/dist/es/schemas/ActivityStreamsContextType.json +30 -0
- package/dist/es/schemas/ActivityStreamsDocument.json +41 -0
- package/dist/es/schemas/ActivityStreamsEvent.json +41 -0
- package/dist/es/schemas/ActivityStreamsGroup.json +41 -0
- package/dist/es/schemas/ActivityStreamsImage.json +41 -0
- package/dist/es/schemas/ActivityStreamsIntransitiveActivity.json +167 -0
- package/dist/es/schemas/ActivityStreamsLink.json +112 -0
- package/dist/es/schemas/ActivityStreamsMention.json +41 -0
- package/dist/es/schemas/ActivityStreamsNote.json +41 -0
- package/dist/es/schemas/ActivityStreamsObject.json +507 -0
- package/dist/es/schemas/ActivityStreamsObjectTypes.json +112 -0
- package/dist/es/schemas/ActivityStreamsOrderedCollection.json +65 -0
- package/dist/es/schemas/ActivityStreamsOrderedCollectionPage.json +48 -0
- package/dist/es/schemas/ActivityStreamsOrganization.json +41 -0
- package/dist/es/schemas/ActivityStreamsPage.json +41 -0
- package/dist/es/schemas/ActivityStreamsPerson.json +41 -0
- package/dist/es/schemas/ActivityStreamsPlace.json +65 -0
- package/dist/es/schemas/ActivityStreamsProfile.json +52 -0
- package/dist/es/schemas/ActivityStreamsRelationship.json +67 -0
- package/dist/es/schemas/ActivityStreamsService.json +41 -0
- package/dist/es/schemas/ActivityStreamsTombstone.json +60 -0
- package/dist/es/schemas/ActivityStreamsTypes.json +119 -32
- package/dist/es/schemas/ActivityStreamsVideo.json +41 -0
- package/dist/types/dataTypes/activityStreamsDataTypes.d.ts +5 -1
- package/dist/types/index.d.ts +33 -0
- package/dist/types/models/IActivityStreamsActivity.d.ts +17 -13
- package/dist/types/models/IActivityStreamsActor.d.ts +16 -0
- package/dist/types/models/IActivityStreamsApplication.d.ts +15 -0
- package/dist/types/models/IActivityStreamsArticle.d.ts +15 -0
- package/dist/types/models/IActivityStreamsAudio.d.ts +15 -0
- package/dist/types/models/IActivityStreamsCollection.d.ts +42 -0
- package/dist/types/models/IActivityStreamsCollectionPage.d.ts +32 -0
- package/dist/types/models/IActivityStreamsDocument.d.ts +15 -0
- package/dist/types/models/IActivityStreamsEvent.d.ts +15 -0
- package/dist/types/models/IActivityStreamsGroup.d.ts +15 -0
- package/dist/types/models/IActivityStreamsImage.d.ts +15 -0
- package/dist/types/models/IActivityStreamsIntransitiveActivity.d.ts +42 -0
- package/dist/types/models/IActivityStreamsLink.d.ts +62 -0
- package/dist/types/models/IActivityStreamsMention.d.ts +16 -0
- package/dist/types/models/IActivityStreamsNote.d.ts +15 -0
- package/dist/types/models/IActivityStreamsObject.d.ts +187 -0
- package/dist/types/models/IActivityStreamsOrderedCollection.d.ts +21 -0
- package/dist/types/models/IActivityStreamsOrderedCollectionPage.d.ts +23 -0
- package/dist/types/models/IActivityStreamsOrganization.d.ts +15 -0
- package/dist/types/models/IActivityStreamsPage.d.ts +15 -0
- package/dist/types/models/IActivityStreamsPerson.d.ts +15 -0
- package/dist/types/models/IActivityStreamsPlace.d.ts +60 -0
- package/dist/types/models/IActivityStreamsProfile.d.ts +23 -0
- package/dist/types/models/IActivityStreamsQuestion.d.ts +13 -0
- package/dist/types/models/IActivityStreamsQuestionAnyOfChoice.d.ts +17 -0
- package/dist/types/models/IActivityStreamsQuestionBase.d.ts +22 -0
- package/dist/types/models/IActivityStreamsQuestionNeitherChoice.d.ts +13 -0
- package/dist/types/models/IActivityStreamsQuestionOneOfChoice.d.ts +17 -0
- package/dist/types/models/IActivityStreamsRelationship.d.ts +35 -0
- package/dist/types/models/IActivityStreamsService.d.ts +15 -0
- package/dist/types/models/IActivityStreamsTombstone.d.ts +27 -0
- package/dist/types/models/IActivityStreamsVideo.d.ts +15 -0
- package/dist/types/models/activityStreamsContextType.d.ts +2 -1
- package/dist/types/models/activityStreamsContexts.d.ts +12 -6
- package/dist/types/models/activityStreamsLinkTypes.d.ts +21 -0
- package/dist/types/models/activityStreamsObjectTypes.d.ts +141 -0
- package/dist/types/models/activityStreamsTypes.d.ts +87 -29
- package/docs/changelog.md +526 -40
- package/docs/examples.md +29 -1
- package/docs/reference/classes/ActivityStreamsDataTypes.md +14 -2
- package/docs/reference/index.md +35 -0
- package/docs/reference/interfaces/IActivityStreamsActivity.md +497 -26
- package/docs/reference/interfaces/IActivityStreamsActor.md +534 -0
- package/docs/reference/interfaces/IActivityStreamsApplication.md +525 -0
- package/docs/reference/interfaces/IActivityStreamsArticle.md +525 -0
- package/docs/reference/interfaces/IActivityStreamsAudio.md +525 -0
- package/docs/reference/interfaces/IActivityStreamsCollection.md +591 -0
- package/docs/reference/interfaces/IActivityStreamsCollectionPage.md +646 -0
- package/docs/reference/interfaces/IActivityStreamsDocument.md +532 -0
- package/docs/reference/interfaces/IActivityStreamsEvent.md +525 -0
- package/docs/reference/interfaces/IActivityStreamsGroup.md +525 -0
- package/docs/reference/interfaces/IActivityStreamsImage.md +525 -0
- package/docs/reference/interfaces/IActivityStreamsIntransitiveActivity.md +589 -0
- package/docs/reference/interfaces/IActivityStreamsLink.md +126 -0
- package/docs/reference/interfaces/IActivityStreamsMention.md +166 -0
- package/docs/reference/interfaces/IActivityStreamsNote.md +525 -0
- package/docs/reference/interfaces/IActivityStreamsObject.md +411 -0
- package/docs/reference/interfaces/IActivityStreamsOrderedCollection.md +621 -0
- package/docs/reference/interfaces/IActivityStreamsOrderedCollectionPage.md +683 -0
- package/docs/reference/interfaces/IActivityStreamsOrganization.md +525 -0
- package/docs/reference/interfaces/IActivityStreamsPage.md +525 -0
- package/docs/reference/interfaces/IActivityStreamsPerson.md +525 -0
- package/docs/reference/interfaces/IActivityStreamsPlace.md +612 -0
- package/docs/reference/interfaces/IActivityStreamsProfile.md +539 -0
- package/docs/reference/interfaces/IActivityStreamsQuestionAnyOfChoice.md +27 -0
- package/docs/reference/interfaces/IActivityStreamsQuestionBase.md +619 -0
- package/docs/reference/interfaces/IActivityStreamsQuestionNeitherChoice.md +19 -0
- package/docs/reference/interfaces/IActivityStreamsQuestionOneOfChoice.md +27 -0
- package/docs/reference/interfaces/IActivityStreamsRelationship.md +565 -0
- package/docs/reference/interfaces/IActivityStreamsService.md +525 -0
- package/docs/reference/interfaces/IActivityStreamsTombstone.md +550 -0
- package/docs/reference/interfaces/IActivityStreamsVideo.md +525 -0
- package/docs/reference/type-aliases/ActivityStreamsContextType.md +1 -1
- package/docs/reference/type-aliases/ActivityStreamsLinkTypes.md +5 -0
- package/docs/reference/type-aliases/ActivityStreamsObjectTypes.md +5 -0
- package/docs/reference/type-aliases/IActivityStreamsQuestion.md +13 -0
- package/docs/reference/variables/ActivityStreamsContexts.md +17 -9
- package/docs/reference/variables/ActivityStreamsLinkTypes.md +32 -0
- package/docs/reference/variables/ActivityStreamsObjectTypes.md +272 -0
- package/docs/reference/variables/ActivityStreamsTypes.md +116 -58
- package/package.json +7 -7
package/docs/changelog.md
CHANGED
|
@@ -1,174 +1,660 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0
|
|
3
|
+
## [0.9.0](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.9.0...standards-w3c-activity-streams-v0.9.0) (2026-06-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* release to production ([2ae4125](https://github.com/iotaledger/twin-standards/commit/2ae4125f305d4714b50036eb8a0bd47e4100a7be))
|
|
9
|
+
* release to production ([#246](https://github.com/iotaledger/twin-standards/issues/246)) ([6e6796b](https://github.com/iotaledger/twin-standards/commit/6e6796bd76aa70a9215eeb300ff479cde79368b8))
|
|
10
|
+
|
|
11
|
+
## [0.9.0-next.1](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.9.0-next.0...standards-w3c-activity-streams-v0.9.0-next.1) (2026-06-23)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* add additional activity stream types ([aa06a3a](https://github.com/iotaledger/twin-standards/commit/aa06a3a825c3c6196b7610b0dcc2a5dc5e53aecb))
|
|
17
|
+
* add context id features ([#64](https://github.com/iotaledger/twin-standards/issues/64)) ([e68bb87](https://github.com/iotaledger/twin-standards/commit/e68bb87a215f3c3956cfd6400a5e1e2a16256085))
|
|
18
|
+
* add validate-locales ([838389c](https://github.com/iotaledger/twin-standards/commit/838389c1daf62ed42397d5758d267c3d1a37fa4d))
|
|
19
|
+
* eslint migration to flat config ([648c1a1](https://github.com/iotaledger/twin-standards/commit/648c1a1e69d99b6b0cf69358ec6bdeecdbe3a5ea))
|
|
20
|
+
* format set on strings for json-schema - W3C AS ([#191](https://github.com/iotaledger/twin-standards/issues/191)) ([d3c8d22](https://github.com/iotaledger/twin-standards/commit/d3c8d226fa5691bf7689a40b6b099ae00fa24c02))
|
|
21
|
+
* improve activity stream context ([5a87b70](https://github.com/iotaledger/twin-standards/commit/5a87b7097fe59207c130751211409848c2171418))
|
|
22
|
+
* improve caching ([#196](https://github.com/iotaledger/twin-standards/issues/196)) ([968e61a](https://github.com/iotaledger/twin-standards/commit/968e61a04156a22cf5ffc3ba237a42a81ec2e0c1))
|
|
23
|
+
* improved namespaces and contexts ([#102](https://github.com/iotaledger/twin-standards/issues/102)) ([c74c370](https://github.com/iotaledger/twin-standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
|
|
24
|
+
* inline context types in schemas ([11f8377](https://github.com/iotaledger/twin-standards/commit/11f8377b129d459a4596ff30a86651beacd7f743))
|
|
25
|
+
* naming fixing and usage ([#98](https://github.com/iotaledger/twin-standards/issues/98)) ([9e95344](https://github.com/iotaledger/twin-standards/commit/9e953440963c9bc028399be9cbea25d92922bd01))
|
|
26
|
+
* normalise type outputs ([0b3aed7](https://github.com/iotaledger/twin-standards/commit/0b3aed7df0802cd609423bbd7fda6bde601d3ceb))
|
|
27
|
+
* register schemas at hosted location ([#128](https://github.com/iotaledger/twin-standards/issues/128)) ([ab35298](https://github.com/iotaledger/twin-standards/commit/ab35298c812d69f043f69c35ab5aa1ac4a6aaa90))
|
|
28
|
+
* remove IJsonLdNodeObject base interfaces ([#172](https://github.com/iotaledger/twin-standards/issues/172)) ([8ff8d7a](https://github.com/iotaledger/twin-standards/commit/8ff8d7a2892d626879b76ba5da912469ff899954))
|
|
29
|
+
* typescript 6 update ([79bfb52](https://github.com/iotaledger/twin-standards/commit/79bfb52e3dcb24689cec7b201dde822bcee970c5))
|
|
30
|
+
* update dependencies ([e422ed3](https://github.com/iotaledger/twin-standards/commit/e422ed351fb09e2deea5ef741326c37b0802af3a))
|
|
31
|
+
* update framework core ([58c0c3d](https://github.com/iotaledger/twin-standards/commit/58c0c3dd6cea0e4c2393dc0e3e1eb33a6d06f617))
|
|
32
|
+
* update JsonSchemaHelper.validate usage ([fe08315](https://github.com/iotaledger/twin-standards/commit/fe0831571cc618465a4510b52c3032a750e6e149))
|
|
33
|
+
* update schemas ([c3c11e0](https://github.com/iotaledger/twin-standards/commit/c3c11e07da6c0d3eac5ea4a68e3ad57f022b2351))
|
|
34
|
+
* update schemas to support additional properties ([4679e21](https://github.com/iotaledger/twin-standards/commit/4679e21728a54cb587f120874841c3d1ed3771de))
|
|
35
|
+
* update schemas with new enum format ([4851603](https://github.com/iotaledger/twin-standards/commit/4851603f26910fafd7fe22b46533814dba3b041c))
|
|
36
|
+
* update to new ts-ts-schema and generic constructs ([4dff991](https://github.com/iotaledger/twin-standards/commit/4dff991fb70de4320668641ed94abf8e9b06acad))
|
|
37
|
+
* w3c activity streams ([#121](https://github.com/iotaledger/twin-standards/issues/121)) ([dfb85b4](https://github.com/iotaledger/twin-standards/commit/dfb85b4c3b25ee7daa77bd52bdbf9de8de457f5f))
|
|
38
|
+
* w3c activity streams ([#41](https://github.com/iotaledger/twin-standards/issues/41)) ([0a4c2cc](https://github.com/iotaledger/twin-standards/commit/0a4c2cc86c134db60d98fbc50350817c2e6f44eb))
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Bug Fixes
|
|
42
|
+
|
|
43
|
+
* add missing activity streams question types ([3151d27](https://github.com/iotaledger/twin-standards/commit/3151d27ed53071b29b808a1ba2d0dda724b54fd1))
|
|
44
|
+
* json schemas for dcsa and activity streams ([26aec73](https://github.com/iotaledger/twin-standards/commit/26aec73cb431326db4bf61f3b0e01b458e288983))
|
|
45
|
+
* updating the missing packages ([#114](https://github.com/iotaledger/twin-standards/issues/114)) ([90b03f8](https://github.com/iotaledger/twin-standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
|
|
46
|
+
|
|
47
|
+
## [0.0.3-next.69](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.68...standards-w3c-activity-streams-v0.0.3-next.69) (2026-06-22)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
### Miscellaneous Chores
|
|
51
|
+
|
|
52
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
53
|
+
|
|
54
|
+
## [0.0.3-next.68](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.67...standards-w3c-activity-streams-v0.0.3-next.68) (2026-06-22)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
### Miscellaneous Chores
|
|
58
|
+
|
|
59
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
60
|
+
|
|
61
|
+
## [0.0.3-next.67](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.66...standards-w3c-activity-streams-v0.0.3-next.67) (2026-06-12)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
### Miscellaneous Chores
|
|
65
|
+
|
|
66
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
67
|
+
|
|
68
|
+
## [0.0.3-next.66](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.65...standards-w3c-activity-streams-v0.0.3-next.66) (2026-06-09)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
### Miscellaneous Chores
|
|
72
|
+
|
|
73
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
74
|
+
|
|
75
|
+
## [0.0.3-next.65](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.64...standards-w3c-activity-streams-v0.0.3-next.65) (2026-06-02)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
### Miscellaneous Chores
|
|
79
|
+
|
|
80
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
81
|
+
|
|
82
|
+
## [0.0.3-next.64](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.63...standards-w3c-activity-streams-v0.0.3-next.64) (2026-06-01)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### Miscellaneous Chores
|
|
86
|
+
|
|
87
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
88
|
+
|
|
89
|
+
## [0.0.3-next.63](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.62...standards-w3c-activity-streams-v0.0.3-next.63) (2026-05-19)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### Features
|
|
93
|
+
|
|
94
|
+
* update dependencies ([e422ed3](https://github.com/iotaledger/twin-standards/commit/e422ed351fb09e2deea5ef741326c37b0802af3a))
|
|
95
|
+
|
|
96
|
+
## [0.0.3-next.62](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.61...standards-w3c-activity-streams-v0.0.3-next.62) (2026-05-18)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Features
|
|
100
|
+
|
|
101
|
+
* update schemas with new enum format ([4851603](https://github.com/iotaledger/twin-standards/commit/4851603f26910fafd7fe22b46533814dba3b041c))
|
|
102
|
+
|
|
103
|
+
## [0.0.3-next.61](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.60...standards-w3c-activity-streams-v0.0.3-next.61) (2026-05-11)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
### Features
|
|
107
|
+
|
|
108
|
+
* typescript 6 update ([79bfb52](https://github.com/iotaledger/twin-standards/commit/79bfb52e3dcb24689cec7b201dde822bcee970c5))
|
|
109
|
+
|
|
110
|
+
## [0.0.3-next.60](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.59...standards-w3c-activity-streams-v0.0.3-next.60) (2026-04-21)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
### Miscellaneous Chores
|
|
114
|
+
|
|
115
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
116
|
+
|
|
117
|
+
## [0.0.3-next.59](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.58...standards-w3c-activity-streams-v0.0.3-next.59) (2026-04-07)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
### Miscellaneous Chores
|
|
121
|
+
|
|
122
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
123
|
+
|
|
124
|
+
## [0.0.3-next.58](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.57...standards-w3c-activity-streams-v0.0.3-next.58) (2026-03-25)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### Miscellaneous Chores
|
|
128
|
+
|
|
129
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
130
|
+
|
|
131
|
+
## [0.0.3-next.57](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.56...standards-w3c-activity-streams-v0.0.3-next.57) (2026-03-20)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
### Miscellaneous Chores
|
|
135
|
+
|
|
136
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
137
|
+
|
|
138
|
+
## [0.0.3-next.56](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.55...standards-w3c-activity-streams-v0.0.3-next.56) (2026-03-20)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
### Miscellaneous Chores
|
|
142
|
+
|
|
143
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
144
|
+
|
|
145
|
+
## [0.0.3-next.55](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.54...standards-w3c-activity-streams-v0.0.3-next.55) (2026-03-19)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
### Features
|
|
149
|
+
|
|
150
|
+
* update to new ts-ts-schema and generic constructs ([4dff991](https://github.com/iotaledger/twin-standards/commit/4dff991fb70de4320668641ed94abf8e9b06acad))
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Bug Fixes
|
|
154
|
+
|
|
155
|
+
* add missing activity streams question types ([3151d27](https://github.com/iotaledger/twin-standards/commit/3151d27ed53071b29b808a1ba2d0dda724b54fd1))
|
|
156
|
+
|
|
157
|
+
## [0.0.3-next.54](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.53...standards-w3c-activity-streams-v0.0.3-next.54) (2026-03-12)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
### Features
|
|
161
|
+
|
|
162
|
+
* update JsonSchemaHelper.validate usage ([fe08315](https://github.com/iotaledger/twin-standards/commit/fe0831571cc618465a4510b52c3032a750e6e149))
|
|
163
|
+
|
|
164
|
+
## [0.0.3-next.53](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.52...standards-w3c-activity-streams-v0.0.3-next.53) (2026-03-11)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Features
|
|
168
|
+
|
|
169
|
+
* improve caching ([#196](https://github.com/iotaledger/twin-standards/issues/196)) ([968e61a](https://github.com/iotaledger/twin-standards/commit/968e61a04156a22cf5ffc3ba237a42a81ec2e0c1))
|
|
170
|
+
|
|
171
|
+
## [0.0.3-next.52](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.51...standards-w3c-activity-streams-v0.0.3-next.52) (2026-03-10)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
### Miscellaneous Chores
|
|
175
|
+
|
|
176
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
177
|
+
|
|
178
|
+
## [0.0.3-next.51](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.50...standards-w3c-activity-streams-v0.0.3-next.51) (2026-03-10)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Features
|
|
182
|
+
|
|
183
|
+
* format set on strings for json-schema - W3C AS ([#191](https://github.com/iotaledger/twin-standards/issues/191)) ([d3c8d22](https://github.com/iotaledger/twin-standards/commit/d3c8d226fa5691bf7689a40b6b099ae00fa24c02))
|
|
184
|
+
|
|
185
|
+
## [0.0.3-next.50](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.49...standards-w3c-activity-streams-v0.0.3-next.50) (2026-03-09)
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
### Miscellaneous Chores
|
|
189
|
+
|
|
190
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
191
|
+
|
|
192
|
+
## [0.0.3-next.49](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.48...standards-w3c-activity-streams-v0.0.3-next.49) (2026-03-06)
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
### Bug Fixes
|
|
196
|
+
|
|
197
|
+
* json schemas for dcsa and activity streams ([26aec73](https://github.com/iotaledger/twin-standards/commit/26aec73cb431326db4bf61f3b0e01b458e288983))
|
|
198
|
+
|
|
199
|
+
## [0.0.3-next.48](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.47...standards-w3c-activity-streams-v0.0.3-next.48) (2026-03-06)
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
### Miscellaneous Chores
|
|
203
|
+
|
|
204
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
205
|
+
|
|
206
|
+
## [0.0.3-next.47](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.46...standards-w3c-activity-streams-v0.0.3-next.47) (2026-03-06)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
### Miscellaneous Chores
|
|
210
|
+
|
|
211
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
212
|
+
|
|
213
|
+
## [0.0.3-next.46](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.45...standards-w3c-activity-streams-v0.0.3-next.46) (2026-03-05)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
### Features
|
|
217
|
+
|
|
218
|
+
* improve activity stream context ([5a87b70](https://github.com/iotaledger/twin-standards/commit/5a87b7097fe59207c130751211409848c2171418))
|
|
219
|
+
|
|
220
|
+
## [0.0.3-next.45](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.44...standards-w3c-activity-streams-v0.0.3-next.45) (2026-03-04)
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
### Miscellaneous Chores
|
|
224
|
+
|
|
225
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
226
|
+
|
|
227
|
+
## [0.0.3-next.44](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.43...standards-w3c-activity-streams-v0.0.3-next.44) (2026-03-04)
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
### Miscellaneous Chores
|
|
231
|
+
|
|
232
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
233
|
+
|
|
234
|
+
## [0.0.3-next.43](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.42...standards-w3c-activity-streams-v0.0.3-next.43) (2026-02-25)
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
### Features
|
|
238
|
+
|
|
239
|
+
* update schemas to support additional properties ([4679e21](https://github.com/iotaledger/twin-standards/commit/4679e21728a54cb587f120874841c3d1ed3771de))
|
|
240
|
+
|
|
241
|
+
## [0.0.3-next.42](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.41...standards-w3c-activity-streams-v0.0.3-next.42) (2026-02-25)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
### Features
|
|
245
|
+
|
|
246
|
+
* remove IJsonLdNodeObject base interfaces ([#172](https://github.com/iotaledger/twin-standards/issues/172)) ([8ff8d7a](https://github.com/iotaledger/twin-standards/commit/8ff8d7a2892d626879b76ba5da912469ff899954))
|
|
247
|
+
|
|
248
|
+
## [0.0.3-next.41](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.40...standards-w3c-activity-streams-v0.0.3-next.41) (2026-02-23)
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
### Miscellaneous Chores
|
|
252
|
+
|
|
253
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
254
|
+
|
|
255
|
+
## [0.0.3-next.40](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.39...standards-w3c-activity-streams-v0.0.3-next.40) (2026-02-18)
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
### Miscellaneous Chores
|
|
259
|
+
|
|
260
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
261
|
+
|
|
262
|
+
## [0.0.3-next.39](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.38...standards-w3c-activity-streams-v0.0.3-next.39) (2026-02-13)
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
### Miscellaneous Chores
|
|
266
|
+
|
|
267
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
268
|
+
|
|
269
|
+
## [0.0.3-next.38](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.37...standards-w3c-activity-streams-v0.0.3-next.38) (2026-02-13)
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
### Miscellaneous Chores
|
|
273
|
+
|
|
274
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
275
|
+
|
|
276
|
+
## [0.0.3-next.37](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.36...standards-w3c-activity-streams-v0.0.3-next.37) (2026-02-12)
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
### Miscellaneous Chores
|
|
280
|
+
|
|
281
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
282
|
+
|
|
283
|
+
## [0.0.3-next.36](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.35...standards-w3c-activity-streams-v0.0.3-next.36) (2026-02-11)
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
### Miscellaneous Chores
|
|
287
|
+
|
|
288
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
289
|
+
|
|
290
|
+
## [0.0.3-next.35](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.34...standards-w3c-activity-streams-v0.0.3-next.35) (2026-02-10)
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
### Miscellaneous Chores
|
|
294
|
+
|
|
295
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
296
|
+
|
|
297
|
+
## [0.0.3-next.34](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.33...standards-w3c-activity-streams-v0.0.3-next.34) (2026-02-10)
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
### Miscellaneous Chores
|
|
301
|
+
|
|
302
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
303
|
+
|
|
304
|
+
## [0.0.3-next.33](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.32...standards-w3c-activity-streams-v0.0.3-next.33) (2026-02-06)
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
### Features
|
|
308
|
+
|
|
309
|
+
* add additional activity stream types ([aa06a3a](https://github.com/iotaledger/twin-standards/commit/aa06a3a825c3c6196b7610b0dcc2a5dc5e53aecb))
|
|
310
|
+
* add context id features ([#64](https://github.com/iotaledger/twin-standards/issues/64)) ([e68bb87](https://github.com/iotaledger/twin-standards/commit/e68bb87a215f3c3956cfd6400a5e1e2a16256085))
|
|
311
|
+
* add validate-locales ([838389c](https://github.com/iotaledger/twin-standards/commit/838389c1daf62ed42397d5758d267c3d1a37fa4d))
|
|
312
|
+
* eslint migration to flat config ([648c1a1](https://github.com/iotaledger/twin-standards/commit/648c1a1e69d99b6b0cf69358ec6bdeecdbe3a5ea))
|
|
313
|
+
* improved namespaces and contexts ([#102](https://github.com/iotaledger/twin-standards/issues/102)) ([c74c370](https://github.com/iotaledger/twin-standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
|
|
314
|
+
* inline context types in schemas ([11f8377](https://github.com/iotaledger/twin-standards/commit/11f8377b129d459a4596ff30a86651beacd7f743))
|
|
315
|
+
* naming fixing and usage ([#98](https://github.com/iotaledger/twin-standards/issues/98)) ([9e95344](https://github.com/iotaledger/twin-standards/commit/9e953440963c9bc028399be9cbea25d92922bd01))
|
|
316
|
+
* normalise type outputs ([0b3aed7](https://github.com/iotaledger/twin-standards/commit/0b3aed7df0802cd609423bbd7fda6bde601d3ceb))
|
|
317
|
+
* register schemas at hosted location ([#128](https://github.com/iotaledger/twin-standards/issues/128)) ([ab35298](https://github.com/iotaledger/twin-standards/commit/ab35298c812d69f043f69c35ab5aa1ac4a6aaa90))
|
|
318
|
+
* update framework core ([58c0c3d](https://github.com/iotaledger/twin-standards/commit/58c0c3dd6cea0e4c2393dc0e3e1eb33a6d06f617))
|
|
319
|
+
* update schemas ([c3c11e0](https://github.com/iotaledger/twin-standards/commit/c3c11e07da6c0d3eac5ea4a68e3ad57f022b2351))
|
|
320
|
+
* w3c activity streams ([#121](https://github.com/iotaledger/twin-standards/issues/121)) ([dfb85b4](https://github.com/iotaledger/twin-standards/commit/dfb85b4c3b25ee7daa77bd52bdbf9de8de457f5f))
|
|
321
|
+
* w3c activity streams ([#41](https://github.com/iotaledger/twin-standards/issues/41)) ([0a4c2cc](https://github.com/iotaledger/twin-standards/commit/0a4c2cc86c134db60d98fbc50350817c2e6f44eb))
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
### Bug Fixes
|
|
325
|
+
|
|
326
|
+
* updating the missing packages ([#114](https://github.com/iotaledger/twin-standards/issues/114)) ([90b03f8](https://github.com/iotaledger/twin-standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
|
|
327
|
+
|
|
328
|
+
## [0.0.3-next.32](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.31...standards-w3c-activity-streams-v0.0.3-next.32) (2026-02-06)
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
### Miscellaneous Chores
|
|
332
|
+
|
|
333
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
334
|
+
|
|
335
|
+
## [0.0.3-next.31](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.30...standards-w3c-activity-streams-v0.0.3-next.31) (2026-02-05)
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
### Miscellaneous Chores
|
|
339
|
+
|
|
340
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
341
|
+
|
|
342
|
+
## [0.0.3-next.30](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.29...standards-w3c-activity-streams-v0.0.3-next.30) (2026-02-04)
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
### Miscellaneous Chores
|
|
346
|
+
|
|
347
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
348
|
+
|
|
349
|
+
## [0.0.3-next.29](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.28...standards-w3c-activity-streams-v0.0.3-next.29) (2026-02-03)
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
### Miscellaneous Chores
|
|
353
|
+
|
|
354
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
355
|
+
|
|
356
|
+
## [0.0.3-next.28](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.27...standards-w3c-activity-streams-v0.0.3-next.28) (2026-02-03)
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
### Miscellaneous Chores
|
|
360
|
+
|
|
361
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
362
|
+
|
|
363
|
+
## [0.0.3-next.27](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.26...standards-w3c-activity-streams-v0.0.3-next.27) (2026-02-03)
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### Miscellaneous Chores
|
|
367
|
+
|
|
368
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
369
|
+
|
|
370
|
+
## [0.0.3-next.26](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.25...standards-w3c-activity-streams-v0.0.3-next.26) (2026-02-02)
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
### Miscellaneous Chores
|
|
374
|
+
|
|
375
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
376
|
+
|
|
377
|
+
## [0.0.3-next.25](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.24...standards-w3c-activity-streams-v0.0.3-next.25) (2026-02-02)
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
### Features
|
|
381
|
+
|
|
382
|
+
* register schemas at hosted location ([#128](https://github.com/iotaledger/twin-standards/issues/128)) ([ab35298](https://github.com/iotaledger/twin-standards/commit/ab35298c812d69f043f69c35ab5aa1ac4a6aaa90))
|
|
383
|
+
|
|
384
|
+
## [0.0.3-next.24](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.23...standards-w3c-activity-streams-v0.0.3-next.24) (2026-01-30)
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
### Miscellaneous Chores
|
|
388
|
+
|
|
389
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
390
|
+
|
|
391
|
+
## [0.0.3-next.23](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.22...standards-w3c-activity-streams-v0.0.3-next.23) (2026-01-30)
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
### Miscellaneous Chores
|
|
395
|
+
|
|
396
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
397
|
+
|
|
398
|
+
## [0.0.3-next.22](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.21...standards-w3c-activity-streams-v0.0.3-next.22) (2026-01-29)
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
### Miscellaneous Chores
|
|
402
|
+
|
|
403
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
404
|
+
|
|
405
|
+
## [0.0.3-next.21](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.20...standards-w3c-activity-streams-v0.0.3-next.21) (2026-01-23)
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
### Features
|
|
409
|
+
|
|
410
|
+
* w3c activity streams ([#121](https://github.com/iotaledger/twin-standards/issues/121)) ([dfb85b4](https://github.com/iotaledger/twin-standards/commit/dfb85b4c3b25ee7daa77bd52bdbf9de8de457f5f))
|
|
411
|
+
|
|
412
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.19...standards-w3c-activity-streams-v0.0.3-next.20) (2026-01-21)
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
### Miscellaneous Chores
|
|
416
|
+
|
|
417
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
418
|
+
|
|
419
|
+
## [0.0.3-next.19](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.18...standards-w3c-activity-streams-v0.0.3-next.19) (2026-01-21)
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
### Miscellaneous Chores
|
|
423
|
+
|
|
424
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
425
|
+
|
|
426
|
+
## [0.0.3-next.18](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.17...standards-w3c-activity-streams-v0.0.3-next.18) (2026-01-21)
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
### Miscellaneous Chores
|
|
430
|
+
|
|
431
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
432
|
+
|
|
433
|
+
## [0.0.3-next.17](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.16...standards-w3c-activity-streams-v0.0.3-next.17) (2026-01-21)
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
### Bug Fixes
|
|
437
|
+
|
|
438
|
+
* updating the missing packages ([#114](https://github.com/iotaledger/twin-standards/issues/114)) ([90b03f8](https://github.com/iotaledger/twin-standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
|
|
439
|
+
|
|
440
|
+
## [0.0.3-next.16](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.15...standards-w3c-activity-streams-v0.0.3-next.16) (2026-01-19)
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
### Miscellaneous Chores
|
|
444
|
+
|
|
445
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
446
|
+
|
|
447
|
+
## [0.0.3-next.15](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.14...standards-w3c-activity-streams-v0.0.3-next.15) (2026-01-16)
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
### Miscellaneous Chores
|
|
451
|
+
|
|
452
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
453
|
+
|
|
454
|
+
## [0.0.3-next.14](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.13...standards-w3c-activity-streams-v0.0.3-next.14) (2026-01-15)
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
### Miscellaneous Chores
|
|
458
|
+
|
|
459
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
460
|
+
|
|
461
|
+
## [0.0.3-next.13](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.12...standards-w3c-activity-streams-v0.0.3-next.13) (2026-01-14)
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
### Miscellaneous Chores
|
|
465
|
+
|
|
466
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
467
|
+
|
|
468
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.11...standards-w3c-activity-streams-v0.0.3-next.12) (2026-01-14)
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
### Miscellaneous Chores
|
|
472
|
+
|
|
473
|
+
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
474
|
+
|
|
475
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.10...standards-w3c-activity-streams-v0.0.3-next.11) (2026-01-14)
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
### Features
|
|
479
|
+
|
|
480
|
+
* improved namespaces and contexts ([#102](https://github.com/iotaledger/twin-standards/issues/102)) ([c74c370](https://github.com/iotaledger/twin-standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
|
|
481
|
+
|
|
482
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.9...standards-w3c-activity-streams-v0.0.3-next.10) (2026-01-13)
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
### Features
|
|
486
|
+
|
|
487
|
+
* naming fixing and usage ([#98](https://github.com/iotaledger/twin-standards/issues/98)) ([9e95344](https://github.com/iotaledger/twin-standards/commit/9e953440963c9bc028399be9cbea25d92922bd01))
|
|
488
|
+
|
|
489
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.8...standards-w3c-activity-streams-v0.0.3-next.9) (2026-01-09)
|
|
4
490
|
|
|
5
491
|
|
|
6
492
|
### Miscellaneous Chores
|
|
7
493
|
|
|
8
494
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
9
495
|
|
|
10
|
-
## [0.0.3-next.8](https://github.com/
|
|
496
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.7...standards-w3c-activity-streams-v0.0.3-next.8) (2026-01-08)
|
|
11
497
|
|
|
12
498
|
|
|
13
499
|
### Miscellaneous Chores
|
|
14
500
|
|
|
15
501
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
16
502
|
|
|
17
|
-
## [0.0.3-next.7](https://github.com/
|
|
503
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.6...standards-w3c-activity-streams-v0.0.3-next.7) (2026-01-06)
|
|
18
504
|
|
|
19
505
|
|
|
20
506
|
### Miscellaneous Chores
|
|
21
507
|
|
|
22
508
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
23
509
|
|
|
24
|
-
## [0.0.3-next.6](https://github.com/
|
|
510
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.5...standards-w3c-activity-streams-v0.0.3-next.6) (2025-12-03)
|
|
25
511
|
|
|
26
512
|
|
|
27
513
|
### Miscellaneous Chores
|
|
28
514
|
|
|
29
515
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
30
516
|
|
|
31
|
-
## [0.0.3-next.5](https://github.com/
|
|
517
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.4...standards-w3c-activity-streams-v0.0.3-next.5) (2025-11-28)
|
|
32
518
|
|
|
33
519
|
|
|
34
520
|
### Miscellaneous Chores
|
|
35
521
|
|
|
36
522
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
37
523
|
|
|
38
|
-
## [0.0.3-next.4](https://github.com/
|
|
524
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.3...standards-w3c-activity-streams-v0.0.3-next.4) (2025-11-18)
|
|
39
525
|
|
|
40
526
|
|
|
41
527
|
### Miscellaneous Chores
|
|
42
528
|
|
|
43
529
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
44
530
|
|
|
45
|
-
## [0.0.3-next.3](https://github.com/
|
|
531
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.2...standards-w3c-activity-streams-v0.0.3-next.3) (2025-11-18)
|
|
46
532
|
|
|
47
533
|
|
|
48
534
|
### Miscellaneous Chores
|
|
49
535
|
|
|
50
536
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
51
537
|
|
|
52
|
-
## [0.0.3-next.2](https://github.com/
|
|
538
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.1...standards-w3c-activity-streams-v0.0.3-next.2) (2025-11-11)
|
|
53
539
|
|
|
54
540
|
|
|
55
541
|
### Features
|
|
56
542
|
|
|
57
|
-
* update schemas ([c3c11e0](https://github.com/
|
|
543
|
+
* update schemas ([c3c11e0](https://github.com/iotaledger/twin-standards/commit/c3c11e07da6c0d3eac5ea4a68e3ad57f022b2351))
|
|
58
544
|
|
|
59
|
-
## [0.0.3-next.1](https://github.com/
|
|
545
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.3-next.0...standards-w3c-activity-streams-v0.0.3-next.1) (2025-11-10)
|
|
60
546
|
|
|
61
547
|
|
|
62
548
|
### Features
|
|
63
549
|
|
|
64
|
-
* add additional activity stream types ([aa06a3a](https://github.com/
|
|
65
|
-
* add context id features ([#64](https://github.com/
|
|
66
|
-
* add validate-locales ([838389c](https://github.com/
|
|
67
|
-
* eslint migration to flat config ([648c1a1](https://github.com/
|
|
68
|
-
* inline context types in schemas ([11f8377](https://github.com/
|
|
69
|
-
* normalise type outputs ([0b3aed7](https://github.com/
|
|
70
|
-
* update framework core ([58c0c3d](https://github.com/
|
|
71
|
-
* w3c activity streams ([#41](https://github.com/
|
|
550
|
+
* add additional activity stream types ([aa06a3a](https://github.com/iotaledger/twin-standards/commit/aa06a3a825c3c6196b7610b0dcc2a5dc5e53aecb))
|
|
551
|
+
* add context id features ([#64](https://github.com/iotaledger/twin-standards/issues/64)) ([e68bb87](https://github.com/iotaledger/twin-standards/commit/e68bb87a215f3c3956cfd6400a5e1e2a16256085))
|
|
552
|
+
* add validate-locales ([838389c](https://github.com/iotaledger/twin-standards/commit/838389c1daf62ed42397d5758d267c3d1a37fa4d))
|
|
553
|
+
* eslint migration to flat config ([648c1a1](https://github.com/iotaledger/twin-standards/commit/648c1a1e69d99b6b0cf69358ec6bdeecdbe3a5ea))
|
|
554
|
+
* inline context types in schemas ([11f8377](https://github.com/iotaledger/twin-standards/commit/11f8377b129d459a4596ff30a86651beacd7f743))
|
|
555
|
+
* normalise type outputs ([0b3aed7](https://github.com/iotaledger/twin-standards/commit/0b3aed7df0802cd609423bbd7fda6bde601d3ceb))
|
|
556
|
+
* update framework core ([58c0c3d](https://github.com/iotaledger/twin-standards/commit/58c0c3dd6cea0e4c2393dc0e3e1eb33a6d06f617))
|
|
557
|
+
* w3c activity streams ([#41](https://github.com/iotaledger/twin-standards/issues/41)) ([0a4c2cc](https://github.com/iotaledger/twin-standards/commit/0a4c2cc86c134db60d98fbc50350817c2e6f44eb))
|
|
72
558
|
|
|
73
|
-
## [0.0.2-next.16](https://github.com/
|
|
559
|
+
## [0.0.2-next.16](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.15...standards-w3c-activity-streams-v0.0.2-next.16) (2025-10-09)
|
|
74
560
|
|
|
75
561
|
|
|
76
562
|
### Miscellaneous Chores
|
|
77
563
|
|
|
78
564
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
79
565
|
|
|
80
|
-
## [0.0.2-next.15](https://github.com/
|
|
566
|
+
## [0.0.2-next.15](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.14...standards-w3c-activity-streams-v0.0.2-next.15) (2025-10-09)
|
|
81
567
|
|
|
82
568
|
|
|
83
569
|
### Features
|
|
84
570
|
|
|
85
|
-
* add validate-locales ([838389c](https://github.com/
|
|
571
|
+
* add validate-locales ([838389c](https://github.com/iotaledger/twin-standards/commit/838389c1daf62ed42397d5758d267c3d1a37fa4d))
|
|
86
572
|
|
|
87
|
-
## [0.0.2-next.14](https://github.com/
|
|
573
|
+
## [0.0.2-next.14](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.13...standards-w3c-activity-streams-v0.0.2-next.14) (2025-10-02)
|
|
88
574
|
|
|
89
575
|
|
|
90
576
|
### Miscellaneous Chores
|
|
91
577
|
|
|
92
578
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
93
579
|
|
|
94
|
-
## [0.0.2-next.13](https://github.com/
|
|
580
|
+
## [0.0.2-next.13](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.12...standards-w3c-activity-streams-v0.0.2-next.13) (2025-09-22)
|
|
95
581
|
|
|
96
582
|
|
|
97
583
|
### Features
|
|
98
584
|
|
|
99
|
-
* add additional activity stream types ([aa06a3a](https://github.com/
|
|
585
|
+
* add additional activity stream types ([aa06a3a](https://github.com/iotaledger/twin-standards/commit/aa06a3a825c3c6196b7610b0dcc2a5dc5e53aecb))
|
|
100
586
|
|
|
101
|
-
## [0.0.2-next.12](https://github.com/
|
|
587
|
+
## [0.0.2-next.12](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.11...standards-w3c-activity-streams-v0.0.2-next.12) (2025-09-16)
|
|
102
588
|
|
|
103
589
|
|
|
104
590
|
### Features
|
|
105
591
|
|
|
106
|
-
* inline context types in schemas ([11f8377](https://github.com/
|
|
592
|
+
* inline context types in schemas ([11f8377](https://github.com/iotaledger/twin-standards/commit/11f8377b129d459a4596ff30a86651beacd7f743))
|
|
107
593
|
|
|
108
|
-
## [0.0.2-next.11](https://github.com/
|
|
594
|
+
## [0.0.2-next.11](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.10...standards-w3c-activity-streams-v0.0.2-next.11) (2025-09-16)
|
|
109
595
|
|
|
110
596
|
|
|
111
597
|
### Miscellaneous Chores
|
|
112
598
|
|
|
113
599
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
114
600
|
|
|
115
|
-
## [0.0.2-next.10](https://github.com/
|
|
601
|
+
## [0.0.2-next.10](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.9...standards-w3c-activity-streams-v0.0.2-next.10) (2025-09-16)
|
|
116
602
|
|
|
117
603
|
|
|
118
604
|
### Miscellaneous Chores
|
|
119
605
|
|
|
120
606
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
121
607
|
|
|
122
|
-
## [0.0.2-next.9](https://github.com/
|
|
608
|
+
## [0.0.2-next.9](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.8...standards-w3c-activity-streams-v0.0.2-next.9) (2025-09-15)
|
|
123
609
|
|
|
124
610
|
|
|
125
611
|
### Miscellaneous Chores
|
|
126
612
|
|
|
127
613
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
128
614
|
|
|
129
|
-
## [0.0.2-next.8](https://github.com/
|
|
615
|
+
## [0.0.2-next.8](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.7...standards-w3c-activity-streams-v0.0.2-next.8) (2025-09-15)
|
|
130
616
|
|
|
131
617
|
|
|
132
618
|
### Miscellaneous Chores
|
|
133
619
|
|
|
134
620
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
135
621
|
|
|
136
|
-
## [0.0.2-next.7](https://github.com/
|
|
622
|
+
## [0.0.2-next.7](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.6...standards-w3c-activity-streams-v0.0.2-next.7) (2025-09-15)
|
|
137
623
|
|
|
138
624
|
|
|
139
625
|
### Miscellaneous Chores
|
|
140
626
|
|
|
141
627
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
142
628
|
|
|
143
|
-
## [0.0.2-next.6](https://github.com/
|
|
629
|
+
## [0.0.2-next.6](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.5...standards-w3c-activity-streams-v0.0.2-next.6) (2025-09-12)
|
|
144
630
|
|
|
145
631
|
|
|
146
632
|
### Miscellaneous Chores
|
|
147
633
|
|
|
148
634
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
149
635
|
|
|
150
|
-
## [0.0.2-next.5](https://github.com/
|
|
636
|
+
## [0.0.2-next.5](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.4...standards-w3c-activity-streams-v0.0.2-next.5) (2025-09-12)
|
|
151
637
|
|
|
152
638
|
|
|
153
639
|
### Miscellaneous Chores
|
|
154
640
|
|
|
155
641
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
156
642
|
|
|
157
|
-
## [0.0.2-next.4](https://github.com/
|
|
643
|
+
## [0.0.2-next.4](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.3...standards-w3c-activity-streams-v0.0.2-next.4) (2025-09-12)
|
|
158
644
|
|
|
159
645
|
|
|
160
646
|
### Miscellaneous Chores
|
|
161
647
|
|
|
162
648
|
* **standards-w3c-activity-streams:** Synchronize repo versions
|
|
163
649
|
|
|
164
|
-
## [0.0.2-next.3](https://github.com/
|
|
650
|
+
## [0.0.2-next.3](https://github.com/iotaledger/twin-standards/compare/standards-w3c-activity-streams-v0.0.2-next.2...standards-w3c-activity-streams-v0.0.2-next.3) (2025-08-29)
|
|
165
651
|
|
|
166
652
|
|
|
167
653
|
### Features
|
|
168
654
|
|
|
169
|
-
* eslint migration to flat config ([648c1a1](https://github.com/
|
|
170
|
-
* normalise type outputs ([0b3aed7](https://github.com/
|
|
171
|
-
* update framework core ([58c0c3d](https://github.com/
|
|
172
|
-
* w3c activity streams ([#41](https://github.com/
|
|
655
|
+
* eslint migration to flat config ([648c1a1](https://github.com/iotaledger/twin-standards/commit/648c1a1e69d99b6b0cf69358ec6bdeecdbe3a5ea))
|
|
656
|
+
* normalise type outputs ([0b3aed7](https://github.com/iotaledger/twin-standards/commit/0b3aed7df0802cd609423bbd7fda6bde601d3ceb))
|
|
657
|
+
* update framework core ([58c0c3d](https://github.com/iotaledger/twin-standards/commit/58c0c3dd6cea0e4c2393dc0e3e1eb33a6d06f617))
|
|
658
|
+
* w3c activity streams ([#41](https://github.com/iotaledger/twin-standards/issues/41)) ([0a4c2cc](https://github.com/iotaledger/twin-standards/commit/0a4c2cc86c134db60d98fbc50350817c2e6f44eb))
|
|
173
659
|
|
|
174
|
-
##
|
|
660
|
+
## Changelog
|