@twin.org/rights-management-plugins 0.0.3-next.4 → 0.0.3-next.41

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.
Files changed (131) hide show
  1. package/README.md +11 -3
  2. package/dist/es/index.js +18 -10
  3. package/dist/es/index.js.map +1 -1
  4. package/dist/es/models/IAutomationPolicyExecutionActionConfig.js +4 -0
  5. package/dist/es/models/IAutomationPolicyExecutionActionConfig.js.map +1 -0
  6. package/dist/es/models/IAutomationPolicyExecutionActionConstructorOptions.js +2 -0
  7. package/dist/es/models/IAutomationPolicyExecutionActionConstructorOptions.js.map +1 -0
  8. package/dist/es/models/{IExamplePolicyArbiterConstructorOptions.js → IDefaultPolicyArbiterConfig.js} +1 -1
  9. package/dist/es/models/IDefaultPolicyArbiterConfig.js.map +1 -0
  10. package/dist/es/models/{IExamplePolicyRequesterConstructorOptions.js → IDefaultPolicyArbiterConstructorOptions.js} +1 -1
  11. package/dist/es/models/IDefaultPolicyArbiterConstructorOptions.js.map +1 -0
  12. package/dist/es/models/{IExamplePolicyEnforcementProcessorConstructorOptions.js → IDefaultPolicyEnforcementProcessorConstructorOptions.js} +1 -1
  13. package/dist/es/models/IDefaultPolicyEnforcementProcessorConstructorOptions.js.map +1 -0
  14. package/dist/es/models/ILoggingPolicyExecutionActionConfig.js.map +1 -1
  15. package/dist/es/models/{IExampleDataAccessHandlerConstructorOptions.js → IPassThroughPolicyArbiterConstructorOptions.js} +1 -1
  16. package/dist/es/models/IPassThroughPolicyArbiterConstructorOptions.js.map +1 -0
  17. package/dist/es/models/IPassThroughPolicyEnforcementProcessorConstructorOptions.js +4 -0
  18. package/dist/es/models/IPassThroughPolicyEnforcementProcessorConstructorOptions.js.map +1 -0
  19. package/dist/es/models/IPassThroughPolicyNegotiatorConstructorOptions.js +4 -0
  20. package/dist/es/models/IPassThroughPolicyNegotiatorConstructorOptions.js.map +1 -0
  21. package/dist/es/models/IPassThroughPolicyObligationEnforcerConstructorOptions.js +4 -0
  22. package/dist/es/models/IPassThroughPolicyObligationEnforcerConstructorOptions.js.map +1 -0
  23. package/dist/es/models/{IExamplePolicyNegotiatorConstructorOptions.js → IPassThroughPolicyRequesterConstructorOptions.js} +1 -1
  24. package/dist/es/models/IPassThroughPolicyRequesterConstructorOptions.js.map +1 -0
  25. package/dist/es/models/IStaticPolicyInformationSource.js.map +1 -1
  26. package/dist/es/policyArbiters/defaultPolicyArbiter.js +1657 -0
  27. package/dist/es/policyArbiters/defaultPolicyArbiter.js.map +1 -0
  28. package/dist/es/policyArbiters/passThroughPolicyArbiter.js +59 -0
  29. package/dist/es/policyArbiters/passThroughPolicyArbiter.js.map +1 -0
  30. package/dist/es/policyEnforcementProcessor/defaultPolicyEnforcementProcessor.js +146 -0
  31. package/dist/es/policyEnforcementProcessor/defaultPolicyEnforcementProcessor.js.map +1 -0
  32. package/dist/es/policyEnforcementProcessor/passThroughPolicyEnforcementProcessor.js +54 -0
  33. package/dist/es/policyEnforcementProcessor/passThroughPolicyEnforcementProcessor.js.map +1 -0
  34. package/dist/es/policyExecutionActions/automationPolicyExecutionAction.js +76 -0
  35. package/dist/es/policyExecutionActions/automationPolicyExecutionAction.js.map +1 -0
  36. package/dist/es/policyExecutionActions/loggingPolicyExecutionAction.js +16 -15
  37. package/dist/es/policyExecutionActions/loggingPolicyExecutionAction.js.map +1 -1
  38. package/dist/es/policyInformationSources/identityPolicyInformationSource.js +43 -31
  39. package/dist/es/policyInformationSources/identityPolicyInformationSource.js.map +1 -1
  40. package/dist/es/policyInformationSources/staticPolicyInformationSource.js +17 -15
  41. package/dist/es/policyInformationSources/staticPolicyInformationSource.js.map +1 -1
  42. package/dist/es/policyNegotiators/passThroughPolicyNegotiator.js +88 -0
  43. package/dist/es/policyNegotiators/passThroughPolicyNegotiator.js.map +1 -0
  44. package/dist/es/policyObligationEnforcers/passThroughPolicyObligationEnforcer.js +56 -0
  45. package/dist/es/policyObligationEnforcers/passThroughPolicyObligationEnforcer.js.map +1 -0
  46. package/dist/es/policyRequesters/passThroughPolicyRequester.js +103 -0
  47. package/dist/es/policyRequesters/passThroughPolicyRequester.js.map +1 -0
  48. package/dist/types/index.d.ts +18 -10
  49. package/dist/types/models/IAutomationPolicyExecutionActionConfig.d.ts +9 -0
  50. package/dist/types/models/IAutomationPolicyExecutionActionConstructorOptions.d.ts +15 -0
  51. package/dist/types/models/IDefaultPolicyArbiterConfig.d.ts +10 -0
  52. package/dist/types/models/IDefaultPolicyArbiterConstructorOptions.d.ts +20 -0
  53. package/dist/types/models/{IExamplePolicyEnforcementProcessorConstructorOptions.d.ts → IDefaultPolicyEnforcementProcessorConstructorOptions.d.ts} +2 -2
  54. package/dist/types/models/ILoggingPolicyExecutionActionConfig.d.ts +2 -2
  55. package/dist/types/models/{IExamplePolicyArbiterConstructorOptions.d.ts → IPassThroughPolicyArbiterConstructorOptions.d.ts} +2 -2
  56. package/dist/types/models/IPassThroughPolicyEnforcementProcessorConstructorOptions.d.ts +10 -0
  57. package/dist/types/models/{IExamplePolicyNegotiatorConstructorOptions.d.ts → IPassThroughPolicyNegotiatorConstructorOptions.d.ts} +2 -2
  58. package/dist/types/models/IPassThroughPolicyObligationEnforcerConstructorOptions.d.ts +10 -0
  59. package/dist/types/models/{IExamplePolicyRequesterConstructorOptions.d.ts → IPassThroughPolicyRequesterConstructorOptions.d.ts} +2 -2
  60. package/dist/types/models/IStaticPolicyInformationSource.d.ts +10 -4
  61. package/dist/types/policyArbiters/defaultPolicyArbiter.d.ts +41 -0
  62. package/dist/types/policyArbiters/passThroughPolicyArbiter.d.ts +35 -0
  63. package/dist/types/policyEnforcementProcessor/defaultPolicyEnforcementProcessor.d.ts +40 -0
  64. package/dist/types/policyEnforcementProcessor/passThroughPolicyEnforcementProcessor.d.ts +32 -0
  65. package/dist/types/policyExecutionActions/automationPolicyExecutionAction.d.ts +49 -0
  66. package/dist/types/policyExecutionActions/loggingPolicyExecutionAction.d.ts +8 -8
  67. package/dist/types/policyInformationSources/identityPolicyInformationSource.d.ts +8 -6
  68. package/dist/types/policyInformationSources/staticPolicyInformationSource.d.ts +7 -5
  69. package/dist/types/policyNegotiators/passThroughPolicyNegotiator.d.ts +52 -0
  70. package/dist/types/policyObligationEnforcers/passThroughPolicyObligationEnforcer.d.ts +35 -0
  71. package/dist/types/policyRequesters/{examplePolicyRequester.d.ts → passThroughPolicyRequester.d.ts} +15 -20
  72. package/docs/changelog.md +835 -3
  73. package/docs/examples.md +295 -1
  74. package/docs/reference/classes/AutomationPolicyExecutionAction.md +143 -0
  75. package/docs/reference/classes/DefaultPolicyArbiter.md +111 -0
  76. package/docs/reference/classes/DefaultPolicyEnforcementProcessor.md +107 -0
  77. package/docs/reference/classes/IdentityPolicyInformationSource.md +14 -14
  78. package/docs/reference/classes/LoggingPolicyExecutionAction.md +20 -20
  79. package/docs/reference/classes/PassThroughPolicyArbiter.md +101 -0
  80. package/docs/reference/classes/PassThroughPolicyEnforcementProcessor.md +107 -0
  81. package/docs/reference/classes/{ExamplePolicyNegotiator.md → PassThroughPolicyNegotiator.md} +24 -22
  82. package/docs/reference/classes/PassThroughPolicyObligationEnforcer.md +107 -0
  83. package/docs/reference/classes/{ExamplePolicyRequester.md → PassThroughPolicyRequester.md} +20 -38
  84. package/docs/reference/classes/StaticPolicyInformationSource.md +15 -15
  85. package/docs/reference/index.md +18 -10
  86. package/docs/reference/interfaces/IAutomationPolicyExecutionActionConfig.md +11 -0
  87. package/docs/reference/interfaces/IAutomationPolicyExecutionActionConstructorOptions.md +25 -0
  88. package/docs/reference/interfaces/IDefaultPolicyArbiterConfig.md +17 -0
  89. package/docs/reference/interfaces/IDefaultPolicyArbiterConstructorOptions.md +39 -0
  90. package/docs/reference/interfaces/IDefaultPolicyEnforcementProcessorConstructorOptions.md +17 -0
  91. package/docs/reference/interfaces/IIdentityPolicyInformationSourceConstructorOptions.md +4 -4
  92. package/docs/reference/interfaces/ILoggingPolicyExecutionActionConfig.md +9 -9
  93. package/docs/reference/interfaces/ILoggingPolicyExecutionActionConstructorOptions.md +4 -4
  94. package/docs/reference/interfaces/IPassThroughPolicyArbiterConstructorOptions.md +17 -0
  95. package/docs/reference/interfaces/IPassThroughPolicyEnforcementProcessorConstructorOptions.md +17 -0
  96. package/docs/reference/interfaces/IPassThroughPolicyNegotiatorConstructorOptions.md +17 -0
  97. package/docs/reference/interfaces/IPassThroughPolicyObligationEnforcerConstructorOptions.md +17 -0
  98. package/docs/reference/interfaces/IPassThroughPolicyRequesterConstructorOptions.md +17 -0
  99. package/docs/reference/interfaces/IStaticPolicyInformationSource.md +25 -6
  100. package/docs/reference/interfaces/IStaticPolicyInformationSourceConfig.md +2 -2
  101. package/docs/reference/interfaces/IStaticPolicyInformationSourceConstructorOptions.md +4 -4
  102. package/locales/en.json +58 -6
  103. package/package.json +7 -5
  104. package/dist/es/dataAccessHandlers/examplePolicyRequester.js +0 -82
  105. package/dist/es/dataAccessHandlers/examplePolicyRequester.js.map +0 -1
  106. package/dist/es/models/IExampleDataAccessHandlerConstructorOptions.js.map +0 -1
  107. package/dist/es/models/IExamplePolicyArbiterConstructorOptions.js.map +0 -1
  108. package/dist/es/models/IExamplePolicyEnforcementProcessorConstructorOptions.js.map +0 -1
  109. package/dist/es/models/IExamplePolicyNegotiatorConstructorOptions.js.map +0 -1
  110. package/dist/es/models/IExamplePolicyRequesterConstructorOptions.js.map +0 -1
  111. package/dist/es/policyArbiters/examplePolicyArbiter.js +0 -50
  112. package/dist/es/policyArbiters/examplePolicyArbiter.js.map +0 -1
  113. package/dist/es/policyEnforcementProcessor/examplePolicyEnforcementProcessor.js +0 -42
  114. package/dist/es/policyEnforcementProcessor/examplePolicyEnforcementProcessor.js.map +0 -1
  115. package/dist/es/policyNegotiators/examplePolicyNegotiator.js +0 -61
  116. package/dist/es/policyNegotiators/examplePolicyNegotiator.js.map +0 -1
  117. package/dist/es/policyRequesters/examplePolicyRequester.js +0 -69
  118. package/dist/es/policyRequesters/examplePolicyRequester.js.map +0 -1
  119. package/dist/types/dataAccessHandlers/examplePolicyRequester.d.ts +0 -68
  120. package/dist/types/models/IExampleDataAccessHandlerConstructorOptions.d.ts +0 -10
  121. package/dist/types/policyArbiters/examplePolicyArbiter.d.ts +0 -36
  122. package/dist/types/policyEnforcementProcessor/examplePolicyEnforcementProcessor.d.ts +0 -29
  123. package/dist/types/policyNegotiators/examplePolicyNegotiator.d.ts +0 -45
  124. package/docs/reference/classes/ExampleDataAccessHandler.md +0 -243
  125. package/docs/reference/classes/ExamplePolicyArbiter.md +0 -121
  126. package/docs/reference/classes/ExamplePolicyEnforcementProcessor.md +0 -101
  127. package/docs/reference/interfaces/IExampleDataAccessHandlerConstructorOptions.md +0 -17
  128. package/docs/reference/interfaces/IExamplePolicyArbiterConstructorOptions.md +0 -17
  129. package/docs/reference/interfaces/IExamplePolicyEnforcementProcessorConstructorOptions.md +0 -17
  130. package/docs/reference/interfaces/IExamplePolicyNegotiatorConstructorOptions.md +0 -17
  131. package/docs/reference/interfaces/IExamplePolicyRequesterConstructorOptions.md +0 -17
package/docs/changelog.md CHANGED
@@ -1,11 +1,843 @@
1
1
  # Changelog
2
2
 
3
- ## [0.0.3-next.4](https://github.com/twinfoundation/rights-management/compare/rights-management-plugins-v0.0.3-next.3...rights-management-plugins-v0.0.3-next.4) (2025-12-04)
3
+ ## Unreleased
4
+
5
+ ### ⚠ BREAKING CHANGES
6
+
7
+ * remove EcosystemPolicy-related examples/assumptions; plugins now target standard ODRL policy types for v2.
8
+
9
+ ## [0.0.3-next.41](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.40...rights-management-plugins-v0.0.3-next.41) (2026-06-03)
10
+
11
+
12
+ ### Miscellaneous Chores
13
+
14
+ * **rights-management-plugins:** Synchronize repo versions
15
+
16
+
17
+ ### Dependencies
18
+
19
+ * The following workspace dependencies were updated
20
+ * dependencies
21
+ * @twin.org/rights-management-models bumped from 0.0.3-next.40 to 0.0.3-next.41
22
+ * devDependencies
23
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.40 to 0.0.3-next.41
24
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.40 to 0.0.3-next.41
25
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.40 to 0.0.3-next.41
26
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.40 to 0.0.3-next.41
27
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.40 to 0.0.3-next.41
28
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.40 to 0.0.3-next.41
29
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.40 to 0.0.3-next.41
30
+
31
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.39...rights-management-plugins-v0.0.3-next.40) (2026-06-03)
32
+
33
+
34
+ ### Miscellaneous Chores
35
+
36
+ * **rights-management-plugins:** Synchronize repo versions
37
+
38
+
39
+ ### Dependencies
40
+
41
+ * The following workspace dependencies were updated
42
+ * dependencies
43
+ * @twin.org/rights-management-models bumped from 0.0.3-next.39 to 0.0.3-next.40
44
+ * devDependencies
45
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.39 to 0.0.3-next.40
46
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.39 to 0.0.3-next.40
47
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.39 to 0.0.3-next.40
48
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.39 to 0.0.3-next.40
49
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.39 to 0.0.3-next.40
50
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.39 to 0.0.3-next.40
51
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.39 to 0.0.3-next.40
52
+
53
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.38...rights-management-plugins-v0.0.3-next.39) (2026-06-02)
54
+
55
+
56
+ ### Miscellaneous Chores
57
+
58
+ * **rights-management-plugins:** Synchronize repo versions
59
+
60
+
61
+ ### Dependencies
62
+
63
+ * The following workspace dependencies were updated
64
+ * dependencies
65
+ * @twin.org/rights-management-models bumped from 0.0.3-next.38 to 0.0.3-next.39
66
+ * devDependencies
67
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.38 to 0.0.3-next.39
68
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.38 to 0.0.3-next.39
69
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.38 to 0.0.3-next.39
70
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.38 to 0.0.3-next.39
71
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.38 to 0.0.3-next.39
72
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.38 to 0.0.3-next.39
73
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.38 to 0.0.3-next.39
74
+
75
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.37...rights-management-plugins-v0.0.3-next.38) (2026-06-02)
76
+
77
+
78
+ ### Miscellaneous Chores
79
+
80
+ * **rights-management-plugins:** Synchronize repo versions
81
+
82
+
83
+ ### Dependencies
84
+
85
+ * The following workspace dependencies were updated
86
+ * dependencies
87
+ * @twin.org/rights-management-models bumped from 0.0.3-next.37 to 0.0.3-next.38
88
+ * devDependencies
89
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.37 to 0.0.3-next.38
90
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.37 to 0.0.3-next.38
91
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.37 to 0.0.3-next.38
92
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.37 to 0.0.3-next.38
93
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.37 to 0.0.3-next.38
94
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.37 to 0.0.3-next.38
95
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.37 to 0.0.3-next.38
96
+
97
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.36...rights-management-plugins-v0.0.3-next.37) (2026-05-26)
98
+
99
+
100
+ ### Features
101
+
102
+ * add canonical twin:jsonPath operand support with legacy compatibility ([#126](https://github.com/iotaledger/twin-rights-management/issues/126)) ([3ab8078](https://github.com/iotaledger/twin-rights-management/commit/3ab8078cacc47a09202e73d66d788276ae218025))
103
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
104
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
105
+ * add EcosystemPolicy typed getter across PAP stack ([#114](https://github.com/iotaledger/twin-rights-management/issues/114)) ([2a8e941](https://github.com/iotaledger/twin-rights-management/commit/2a8e941bbea229fb74f81dc869ce1f85c66c300d))
106
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
107
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
108
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
109
+ * add pxp automation action ([#127](https://github.com/iotaledger/twin-rights-management/issues/127)) ([ea3325a](https://github.com/iotaledger/twin-rights-management/commit/ea3325a90c4714e599fcffb73e7517affd3a688f))
110
+ * additional feature set for default policy arbiter ([#106](https://github.com/iotaledger/twin-rights-management/issues/106)) ([7081416](https://github.com/iotaledger/twin-rights-management/commit/70814160aae1d718065fe3f15532959b186f5af0))
111
+ * consistent uid usage ([#83](https://github.com/iotaledger/twin-rights-management/issues/83)) ([bdfb9f9](https://github.com/iotaledger/twin-rights-management/commit/bdfb9f92777cbfdb65b5b7df5660b70d869ed19d))
112
+ * improve json path handling ([#133](https://github.com/iotaledger/twin-rights-management/issues/133)) ([0a3c0c4](https://github.com/iotaledger/twin-rights-management/commit/0a3c0c41f15f74a6e2463ed9802c7b662d3e95f6))
113
+ * pnp callback encryption, getDatasetTargets helper, engine-driven callbackPath ([#132](https://github.com/iotaledger/twin-rights-management/issues/132)) ([e642154](https://github.com/iotaledger/twin-rights-management/commit/e6421546336bfa73a7c0a9fe102beeaa518249dd))
114
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
115
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
116
+ * typescript 6 update ([18f6f1e](https://github.com/iotaledger/twin-rights-management/commit/18f6f1edba890462c068ba0b76ae6dd005e798be))
117
+ * update dependencies ([5bfbb30](https://github.com/iotaledger/twin-rights-management/commit/5bfbb302bb245c8cd8015ff497db3793077d43cd))
118
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
119
+ * update standards packages ([db0740b](https://github.com/iotaledger/twin-rights-management/commit/db0740b1d8925fcb3bf4204641e0dc573af40f2b))
120
+ * update to more specific ds odrl types ([c56dc49](https://github.com/iotaledger/twin-rights-management/commit/c56dc4991d4e1e8ca3beb737d2a70dddf6f5cd44))
121
+
122
+
123
+ ### Bug Fixes
124
+
125
+ * array check for undefined ([df6a6aa](https://github.com/iotaledger/twin-rights-management/commit/df6a6aa4e02ed1860e9a7431eda46597c75cc35d))
126
+ * generate unique agreement UID to prevent overwriting offer in PAP ([#102](https://github.com/iotaledger/twin-rights-management/issues/102)) ([bd3dc1b](https://github.com/iotaledger/twin-rights-management/commit/bd3dc1bb240547c7642c7e90f67205bd34651662))
127
+
128
+
129
+ ### Dependencies
130
+
131
+ * The following workspace dependencies were updated
132
+ * dependencies
133
+ * @twin.org/rights-management-models bumped from 0.0.3-next.36 to 0.0.3-next.37
134
+ * devDependencies
135
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.36 to 0.0.3-next.37
136
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.36 to 0.0.3-next.37
137
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.36 to 0.0.3-next.37
138
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.36 to 0.0.3-next.37
139
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.36 to 0.0.3-next.37
140
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.36 to 0.0.3-next.37
141
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.36 to 0.0.3-next.37
142
+
143
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.35...rights-management-plugins-v0.0.3-next.36) (2026-05-20)
144
+
145
+
146
+ ### Features
147
+
148
+ * add canonical twin:jsonPath operand support with legacy compatibility ([#126](https://github.com/iotaledger/twin-rights-management/issues/126)) ([3ab8078](https://github.com/iotaledger/twin-rights-management/commit/3ab8078cacc47a09202e73d66d788276ae218025))
149
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
150
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
151
+ * add EcosystemPolicy typed getter across PAP stack ([#114](https://github.com/iotaledger/twin-rights-management/issues/114)) ([2a8e941](https://github.com/iotaledger/twin-rights-management/commit/2a8e941bbea229fb74f81dc869ce1f85c66c300d))
152
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
153
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
154
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
155
+ * add pxp automation action ([#127](https://github.com/iotaledger/twin-rights-management/issues/127)) ([ea3325a](https://github.com/iotaledger/twin-rights-management/commit/ea3325a90c4714e599fcffb73e7517affd3a688f))
156
+ * additional feature set for default policy arbiter ([#106](https://github.com/iotaledger/twin-rights-management/issues/106)) ([7081416](https://github.com/iotaledger/twin-rights-management/commit/70814160aae1d718065fe3f15532959b186f5af0))
157
+ * consistent uid usage ([#83](https://github.com/iotaledger/twin-rights-management/issues/83)) ([bdfb9f9](https://github.com/iotaledger/twin-rights-management/commit/bdfb9f92777cbfdb65b5b7df5660b70d869ed19d))
158
+ * improve json path handling ([#133](https://github.com/iotaledger/twin-rights-management/issues/133)) ([0a3c0c4](https://github.com/iotaledger/twin-rights-management/commit/0a3c0c41f15f74a6e2463ed9802c7b662d3e95f6))
159
+ * pnp callback encryption, getDatasetTargets helper, engine-driven callbackPath ([#132](https://github.com/iotaledger/twin-rights-management/issues/132)) ([e642154](https://github.com/iotaledger/twin-rights-management/commit/e6421546336bfa73a7c0a9fe102beeaa518249dd))
160
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
161
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
162
+ * typescript 6 update ([18f6f1e](https://github.com/iotaledger/twin-rights-management/commit/18f6f1edba890462c068ba0b76ae6dd005e798be))
163
+ * update dependencies ([5bfbb30](https://github.com/iotaledger/twin-rights-management/commit/5bfbb302bb245c8cd8015ff497db3793077d43cd))
164
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
165
+ * update standards packages ([db0740b](https://github.com/iotaledger/twin-rights-management/commit/db0740b1d8925fcb3bf4204641e0dc573af40f2b))
166
+ * update to more specific ds odrl types ([c56dc49](https://github.com/iotaledger/twin-rights-management/commit/c56dc4991d4e1e8ca3beb737d2a70dddf6f5cd44))
167
+
168
+
169
+ ### Bug Fixes
170
+
171
+ * array check for undefined ([df6a6aa](https://github.com/iotaledger/twin-rights-management/commit/df6a6aa4e02ed1860e9a7431eda46597c75cc35d))
172
+ * generate unique agreement UID to prevent overwriting offer in PAP ([#102](https://github.com/iotaledger/twin-rights-management/issues/102)) ([bd3dc1b](https://github.com/iotaledger/twin-rights-management/commit/bd3dc1bb240547c7642c7e90f67205bd34651662))
173
+
174
+
175
+ ### Dependencies
176
+
177
+ * The following workspace dependencies were updated
178
+ * dependencies
179
+ * @twin.org/rights-management-models bumped from 0.0.3-next.35 to 0.0.3-next.36
180
+ * devDependencies
181
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.35 to 0.0.3-next.36
182
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.35 to 0.0.3-next.36
183
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.35 to 0.0.3-next.36
184
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.35 to 0.0.3-next.36
185
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.35 to 0.0.3-next.36
186
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.35 to 0.0.3-next.36
187
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.35 to 0.0.3-next.36
188
+
189
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.34...rights-management-plugins-v0.0.3-next.35) (2026-05-20)
190
+
191
+
192
+ ### Features
193
+
194
+ * add canonical twin:jsonPath operand support with legacy compatibility ([#126](https://github.com/iotaledger/twin-rights-management/issues/126)) ([3ab8078](https://github.com/iotaledger/twin-rights-management/commit/3ab8078cacc47a09202e73d66d788276ae218025))
195
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
196
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
197
+ * add EcosystemPolicy typed getter across PAP stack ([#114](https://github.com/iotaledger/twin-rights-management/issues/114)) ([2a8e941](https://github.com/iotaledger/twin-rights-management/commit/2a8e941bbea229fb74f81dc869ce1f85c66c300d))
198
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
199
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
200
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
201
+ * add pxp automation action ([#127](https://github.com/iotaledger/twin-rights-management/issues/127)) ([ea3325a](https://github.com/iotaledger/twin-rights-management/commit/ea3325a90c4714e599fcffb73e7517affd3a688f))
202
+ * additional feature set for default policy arbiter ([#106](https://github.com/iotaledger/twin-rights-management/issues/106)) ([7081416](https://github.com/iotaledger/twin-rights-management/commit/70814160aae1d718065fe3f15532959b186f5af0))
203
+ * consistent uid usage ([#83](https://github.com/iotaledger/twin-rights-management/issues/83)) ([bdfb9f9](https://github.com/iotaledger/twin-rights-management/commit/bdfb9f92777cbfdb65b5b7df5660b70d869ed19d))
204
+ * improve json path handling ([#133](https://github.com/iotaledger/twin-rights-management/issues/133)) ([0a3c0c4](https://github.com/iotaledger/twin-rights-management/commit/0a3c0c41f15f74a6e2463ed9802c7b662d3e95f6))
205
+ * pnp callback encryption, getDatasetTargets helper, engine-driven callbackPath ([#132](https://github.com/iotaledger/twin-rights-management/issues/132)) ([e642154](https://github.com/iotaledger/twin-rights-management/commit/e6421546336bfa73a7c0a9fe102beeaa518249dd))
206
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
207
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
208
+ * typescript 6 update ([18f6f1e](https://github.com/iotaledger/twin-rights-management/commit/18f6f1edba890462c068ba0b76ae6dd005e798be))
209
+ * update dependencies ([5bfbb30](https://github.com/iotaledger/twin-rights-management/commit/5bfbb302bb245c8cd8015ff497db3793077d43cd))
210
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
211
+ * update standards packages ([db0740b](https://github.com/iotaledger/twin-rights-management/commit/db0740b1d8925fcb3bf4204641e0dc573af40f2b))
212
+ * update to more specific ds odrl types ([c56dc49](https://github.com/iotaledger/twin-rights-management/commit/c56dc4991d4e1e8ca3beb737d2a70dddf6f5cd44))
213
+
214
+
215
+ ### Bug Fixes
216
+
217
+ * array check for undefined ([df6a6aa](https://github.com/iotaledger/twin-rights-management/commit/df6a6aa4e02ed1860e9a7431eda46597c75cc35d))
218
+ * generate unique agreement UID to prevent overwriting offer in PAP ([#102](https://github.com/iotaledger/twin-rights-management/issues/102)) ([bd3dc1b](https://github.com/iotaledger/twin-rights-management/commit/bd3dc1bb240547c7642c7e90f67205bd34651662))
219
+
220
+
221
+ ### Dependencies
222
+
223
+ * The following workspace dependencies were updated
224
+ * dependencies
225
+ * @twin.org/rights-management-models bumped from 0.0.3-next.34 to 0.0.3-next.35
226
+ * devDependencies
227
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.34 to 0.0.3-next.35
228
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.34 to 0.0.3-next.35
229
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.34 to 0.0.3-next.35
230
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.34 to 0.0.3-next.35
231
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.34 to 0.0.3-next.35
232
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.34 to 0.0.3-next.35
233
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.34 to 0.0.3-next.35
234
+
235
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.33...rights-management-plugins-v0.0.3-next.34) (2026-05-13)
236
+
237
+
238
+ ### Miscellaneous Chores
239
+
240
+ * **rights-management-plugins:** Synchronize repo versions
241
+
242
+
243
+ ### Dependencies
244
+
245
+ * The following workspace dependencies were updated
246
+ * dependencies
247
+ * @twin.org/rights-management-models bumped from 0.0.3-next.33 to 0.0.3-next.34
248
+ * devDependencies
249
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.33 to 0.0.3-next.34
250
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.33 to 0.0.3-next.34
251
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.33 to 0.0.3-next.34
252
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.33 to 0.0.3-next.34
253
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.33 to 0.0.3-next.34
254
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.33 to 0.0.3-next.34
255
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.33 to 0.0.3-next.34
256
+
257
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.32...rights-management-plugins-v0.0.3-next.33) (2026-05-11)
258
+
259
+
260
+ ### Features
261
+
262
+ * typescript 6 update ([18f6f1e](https://github.com/iotaledger/twin-rights-management/commit/18f6f1edba890462c068ba0b76ae6dd005e798be))
263
+
264
+
265
+ ### Dependencies
266
+
267
+ * The following workspace dependencies were updated
268
+ * dependencies
269
+ * @twin.org/rights-management-models bumped from 0.0.3-next.32 to 0.0.3-next.33
270
+ * devDependencies
271
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.32 to 0.0.3-next.33
272
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.32 to 0.0.3-next.33
273
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.32 to 0.0.3-next.33
274
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.32 to 0.0.3-next.33
275
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.32 to 0.0.3-next.33
276
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.32 to 0.0.3-next.33
277
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.32 to 0.0.3-next.33
278
+
279
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.31...rights-management-plugins-v0.0.3-next.32) (2026-05-05)
280
+
281
+
282
+ ### Miscellaneous Chores
283
+
284
+ * **rights-management-plugins:** Synchronize repo versions
285
+
286
+
287
+ ### Dependencies
288
+
289
+ * The following workspace dependencies were updated
290
+ * dependencies
291
+ * @twin.org/rights-management-models bumped from 0.0.3-next.31 to 0.0.3-next.32
292
+ * devDependencies
293
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.31 to 0.0.3-next.32
294
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.31 to 0.0.3-next.32
295
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.31 to 0.0.3-next.32
296
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.31 to 0.0.3-next.32
297
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.31 to 0.0.3-next.32
298
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.31 to 0.0.3-next.32
299
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.31 to 0.0.3-next.32
300
+
301
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.30...rights-management-plugins-v0.0.3-next.31) (2026-05-01)
302
+
303
+
304
+ ### Features
305
+
306
+ * improve json path handling ([#133](https://github.com/iotaledger/twin-rights-management/issues/133)) ([0a3c0c4](https://github.com/iotaledger/twin-rights-management/commit/0a3c0c41f15f74a6e2463ed9802c7b662d3e95f6))
307
+ * pnp callback encryption, getDatasetTargets helper, engine-driven callbackPath ([#132](https://github.com/iotaledger/twin-rights-management/issues/132)) ([e642154](https://github.com/iotaledger/twin-rights-management/commit/e6421546336bfa73a7c0a9fe102beeaa518249dd))
308
+
309
+
310
+ ### Dependencies
311
+
312
+ * The following workspace dependencies were updated
313
+ * dependencies
314
+ * @twin.org/rights-management-models bumped from 0.0.3-next.30 to 0.0.3-next.31
315
+ * devDependencies
316
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.30 to 0.0.3-next.31
317
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.30 to 0.0.3-next.31
318
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.30 to 0.0.3-next.31
319
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.30 to 0.0.3-next.31
320
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.30 to 0.0.3-next.31
321
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.30 to 0.0.3-next.31
322
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.30 to 0.0.3-next.31
323
+
324
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.29...rights-management-plugins-v0.0.3-next.30) (2026-04-29)
325
+
326
+
327
+ ### Features
328
+
329
+ * add canonical twin:jsonPath operand support with legacy compatibility ([#126](https://github.com/iotaledger/twin-rights-management/issues/126)) ([3ab8078](https://github.com/iotaledger/twin-rights-management/commit/3ab8078cacc47a09202e73d66d788276ae218025))
330
+ * add pxp automation action ([#127](https://github.com/iotaledger/twin-rights-management/issues/127)) ([ea3325a](https://github.com/iotaledger/twin-rights-management/commit/ea3325a90c4714e599fcffb73e7517affd3a688f))
331
+
332
+
333
+ ### Dependencies
334
+
335
+ * The following workspace dependencies were updated
336
+ * dependencies
337
+ * @twin.org/rights-management-models bumped from 0.0.3-next.29 to 0.0.3-next.30
338
+ * devDependencies
339
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.29 to 0.0.3-next.30
340
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.29 to 0.0.3-next.30
341
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.29 to 0.0.3-next.30
342
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.29 to 0.0.3-next.30
343
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.29 to 0.0.3-next.30
344
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.29 to 0.0.3-next.30
345
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.29 to 0.0.3-next.30
346
+
347
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.28...rights-management-plugins-v0.0.3-next.29) (2026-04-10)
348
+
349
+
350
+ ### Miscellaneous Chores
351
+
352
+ * **rights-management-plugins:** Synchronize repo versions
353
+
354
+
355
+ ### Dependencies
356
+
357
+ * The following workspace dependencies were updated
358
+ * dependencies
359
+ * @twin.org/rights-management-models bumped from 0.0.3-next.28 to 0.0.3-next.29
360
+ * devDependencies
361
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.28 to 0.0.3-next.29
362
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.28 to 0.0.3-next.29
363
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.28 to 0.0.3-next.29
364
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.28 to 0.0.3-next.29
365
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.28 to 0.0.3-next.29
366
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.28 to 0.0.3-next.29
367
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.28 to 0.0.3-next.29
368
+
369
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.27...rights-management-plugins-v0.0.3-next.28) (2026-04-09)
370
+
371
+
372
+ ### Features
373
+
374
+ * add EcosystemPolicy typed getter across PAP stack ([#114](https://github.com/iotaledger/twin-rights-management/issues/114)) ([2a8e941](https://github.com/iotaledger/twin-rights-management/commit/2a8e941bbea229fb74f81dc869ce1f85c66c300d))
375
+
376
+
377
+ ### Dependencies
378
+
379
+ * The following workspace dependencies were updated
380
+ * dependencies
381
+ * @twin.org/rights-management-models bumped from 0.0.3-next.27 to 0.0.3-next.28
382
+ * devDependencies
383
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.27 to 0.0.3-next.28
384
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.27 to 0.0.3-next.28
385
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.27 to 0.0.3-next.28
386
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.27 to 0.0.3-next.28
387
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.27 to 0.0.3-next.28
388
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.27 to 0.0.3-next.28
389
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.27 to 0.0.3-next.28
390
+
391
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.26...rights-management-plugins-v0.0.3-next.27) (2026-03-31)
392
+
393
+
394
+ ### Miscellaneous Chores
395
+
396
+ * **rights-management-plugins:** Synchronize repo versions
397
+
398
+
399
+ ### Dependencies
400
+
401
+ * The following workspace dependencies were updated
402
+ * dependencies
403
+ * @twin.org/rights-management-models bumped from 0.0.3-next.26 to 0.0.3-next.27
404
+ * devDependencies
405
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.26 to 0.0.3-next.27
406
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.26 to 0.0.3-next.27
407
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.26 to 0.0.3-next.27
408
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.26 to 0.0.3-next.27
409
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.26 to 0.0.3-next.27
410
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.26 to 0.0.3-next.27
411
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.26 to 0.0.3-next.27
412
+
413
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.25...rights-management-plugins-v0.0.3-next.26) (2026-03-27)
414
+
415
+
416
+ ### Features
417
+
418
+ * additional feature set for default policy arbiter ([#106](https://github.com/iotaledger/twin-rights-management/issues/106)) ([7081416](https://github.com/iotaledger/twin-rights-management/commit/70814160aae1d718065fe3f15532959b186f5af0))
419
+
420
+
421
+ ### Dependencies
422
+
423
+ * The following workspace dependencies were updated
424
+ * dependencies
425
+ * @twin.org/rights-management-models bumped from 0.0.3-next.25 to 0.0.3-next.26
426
+ * devDependencies
427
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.25 to 0.0.3-next.26
428
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.25 to 0.0.3-next.26
429
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.25 to 0.0.3-next.26
430
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.25 to 0.0.3-next.26
431
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.25 to 0.0.3-next.26
432
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.25 to 0.0.3-next.26
433
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.25 to 0.0.3-next.26
434
+
435
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.24...rights-management-plugins-v0.0.3-next.25) (2026-03-20)
436
+
437
+
438
+ ### Features
439
+
440
+ * update standards packages ([db0740b](https://github.com/iotaledger/twin-rights-management/commit/db0740b1d8925fcb3bf4204641e0dc573af40f2b))
441
+
442
+
443
+ ### Dependencies
444
+
445
+ * The following workspace dependencies were updated
446
+ * dependencies
447
+ * @twin.org/rights-management-models bumped from 0.0.3-next.24 to 0.0.3-next.25
448
+ * devDependencies
449
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.24 to 0.0.3-next.25
450
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.24 to 0.0.3-next.25
451
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.24 to 0.0.3-next.25
452
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.24 to 0.0.3-next.25
453
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.24 to 0.0.3-next.25
454
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.24 to 0.0.3-next.25
455
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.24 to 0.0.3-next.25
456
+
457
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.23...rights-management-plugins-v0.0.3-next.24) (2026-03-17)
458
+
459
+
460
+ ### Bug Fixes
461
+
462
+ * generate unique agreement UID to prevent overwriting offer in PAP ([#102](https://github.com/iotaledger/twin-rights-management/issues/102)) ([bd3dc1b](https://github.com/iotaledger/twin-rights-management/commit/bd3dc1bb240547c7642c7e90f67205bd34651662))
463
+
464
+
465
+ ### Dependencies
466
+
467
+ * The following workspace dependencies were updated
468
+ * dependencies
469
+ * @twin.org/rights-management-models bumped from 0.0.3-next.23 to 0.0.3-next.24
470
+ * devDependencies
471
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.23 to 0.0.3-next.24
472
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.23 to 0.0.3-next.24
473
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.23 to 0.0.3-next.24
474
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.23 to 0.0.3-next.24
475
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.23 to 0.0.3-next.24
476
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.23 to 0.0.3-next.24
477
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.23 to 0.0.3-next.24
478
+
479
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.22...rights-management-plugins-v0.0.3-next.23) (2026-03-13)
480
+
481
+
482
+ ### Miscellaneous Chores
483
+
484
+ * **rights-management-plugins:** Synchronize repo versions
485
+
486
+
487
+ ### Dependencies
488
+
489
+ * The following workspace dependencies were updated
490
+ * dependencies
491
+ * @twin.org/rights-management-models bumped from 0.0.3-next.22 to 0.0.3-next.23
492
+ * devDependencies
493
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.22 to 0.0.3-next.23
494
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.22 to 0.0.3-next.23
495
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.22 to 0.0.3-next.23
496
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.22 to 0.0.3-next.23
497
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.22 to 0.0.3-next.23
498
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.22 to 0.0.3-next.23
499
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.22 to 0.0.3-next.23
500
+
501
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.21...rights-management-plugins-v0.0.3-next.22) (2026-03-09)
502
+
503
+
504
+ ### Miscellaneous Chores
505
+
506
+ * **rights-management-plugins:** Synchronize repo versions
507
+
508
+
509
+ ### Dependencies
510
+
511
+ * The following workspace dependencies were updated
512
+ * dependencies
513
+ * @twin.org/rights-management-models bumped from 0.0.3-next.21 to 0.0.3-next.22
514
+ * devDependencies
515
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.21 to 0.0.3-next.22
516
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.21 to 0.0.3-next.22
517
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.21 to 0.0.3-next.22
518
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.21 to 0.0.3-next.22
519
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.21 to 0.0.3-next.22
520
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.21 to 0.0.3-next.22
521
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.21 to 0.0.3-next.22
522
+
523
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.20...rights-management-plugins-v0.0.3-next.21) (2026-03-06)
524
+
525
+
526
+ ### Features
527
+
528
+ * update to more specific ds odrl types ([c56dc49](https://github.com/iotaledger/twin-rights-management/commit/c56dc4991d4e1e8ca3beb737d2a70dddf6f5cd44))
529
+
530
+
531
+ ### Dependencies
532
+
533
+ * The following workspace dependencies were updated
534
+ * dependencies
535
+ * @twin.org/rights-management-models bumped from 0.0.3-next.20 to 0.0.3-next.21
536
+ * devDependencies
537
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.20 to 0.0.3-next.21
538
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.20 to 0.0.3-next.21
539
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.20 to 0.0.3-next.21
540
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.20 to 0.0.3-next.21
541
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.20 to 0.0.3-next.21
542
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.20 to 0.0.3-next.21
543
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.20 to 0.0.3-next.21
544
+
545
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.19...rights-management-plugins-v0.0.3-next.20) (2026-02-27)
546
+
547
+
548
+ ### Miscellaneous Chores
549
+
550
+ * **rights-management-plugins:** Synchronize repo versions
551
+
552
+
553
+ ### Dependencies
554
+
555
+ * The following workspace dependencies were updated
556
+ * dependencies
557
+ * @twin.org/rights-management-models bumped from 0.0.3-next.19 to 0.0.3-next.20
558
+ * devDependencies
559
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.19 to 0.0.3-next.20
560
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.19 to 0.0.3-next.20
561
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.19 to 0.0.3-next.20
562
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.19 to 0.0.3-next.20
563
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.19 to 0.0.3-next.20
564
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.19 to 0.0.3-next.20
565
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.19 to 0.0.3-next.20
566
+
567
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.18...rights-management-plugins-v0.0.3-next.19) (2026-02-26)
568
+
569
+
570
+ ### Miscellaneous Chores
571
+
572
+ * **rights-management-plugins:** Synchronize repo versions
573
+
574
+
575
+ ### Dependencies
576
+
577
+ * The following workspace dependencies were updated
578
+ * dependencies
579
+ * @twin.org/rights-management-models bumped from 0.0.3-next.18 to 0.0.3-next.19
580
+ * devDependencies
581
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.18 to 0.0.3-next.19
582
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.18 to 0.0.3-next.19
583
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.18 to 0.0.3-next.19
584
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.18 to 0.0.3-next.19
585
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.18 to 0.0.3-next.19
586
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.18 to 0.0.3-next.19
587
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.18 to 0.0.3-next.19
588
+
589
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.17...rights-management-plugins-v0.0.3-next.18) (2026-02-26)
590
+
591
+
592
+ ### Miscellaneous Chores
593
+
594
+ * **rights-management-plugins:** Synchronize repo versions
595
+
596
+
597
+ ### Dependencies
598
+
599
+ * The following workspace dependencies were updated
600
+ * dependencies
601
+ * @twin.org/rights-management-models bumped from 0.0.3-next.17 to 0.0.3-next.18
602
+ * devDependencies
603
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.17 to 0.0.3-next.18
604
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.17 to 0.0.3-next.18
605
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.17 to 0.0.3-next.18
606
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.17 to 0.0.3-next.18
607
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.17 to 0.0.3-next.18
608
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.17 to 0.0.3-next.18
609
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.17 to 0.0.3-next.18
610
+
611
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.16...rights-management-plugins-v0.0.3-next.17) (2026-02-25)
612
+
613
+
614
+ ### Features
615
+
616
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
617
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
618
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
619
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
620
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
621
+ * consistent uid usage ([#83](https://github.com/iotaledger/twin-rights-management/issues/83)) ([bdfb9f9](https://github.com/iotaledger/twin-rights-management/commit/bdfb9f92777cbfdb65b5b7df5660b70d869ed19d))
622
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
623
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
624
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
625
+
626
+
627
+ ### Dependencies
628
+
629
+ * The following workspace dependencies were updated
630
+ * dependencies
631
+ * @twin.org/rights-management-models bumped from 0.0.3-next.16 to 0.0.3-next.17
632
+ * devDependencies
633
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.16 to 0.0.3-next.17
634
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.16 to 0.0.3-next.17
635
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.16 to 0.0.3-next.17
636
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.16 to 0.0.3-next.17
637
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.16 to 0.0.3-next.17
638
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.16 to 0.0.3-next.17
639
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.16 to 0.0.3-next.17
640
+
641
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.15...rights-management-plugins-v0.0.3-next.16) (2026-02-24)
642
+
643
+
644
+ ### Miscellaneous Chores
645
+
646
+ * **rights-management-plugins:** Synchronize repo versions
647
+
648
+
649
+ ### Dependencies
650
+
651
+ * The following workspace dependencies were updated
652
+ * dependencies
653
+ * @twin.org/rights-management-models bumped from 0.0.3-next.15 to 0.0.3-next.16
654
+ * devDependencies
655
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.15 to 0.0.3-next.16
656
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.15 to 0.0.3-next.16
657
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.15 to 0.0.3-next.16
658
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.15 to 0.0.3-next.16
659
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.15 to 0.0.3-next.16
660
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.15 to 0.0.3-next.16
661
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.15 to 0.0.3-next.16
662
+
663
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.14...rights-management-plugins-v0.0.3-next.15) (2026-02-12)
664
+
665
+
666
+ ### Miscellaneous Chores
667
+
668
+ * **rights-management-plugins:** Synchronize repo versions
669
+
670
+
671
+ ### Dependencies
672
+
673
+ * The following workspace dependencies were updated
674
+ * dependencies
675
+ * @twin.org/rights-management-models bumped from 0.0.3-next.14 to 0.0.3-next.15
676
+ * devDependencies
677
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.14 to 0.0.3-next.15
678
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.14 to 0.0.3-next.15
679
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.14 to 0.0.3-next.15
680
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.14 to 0.0.3-next.15
681
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.14 to 0.0.3-next.15
682
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.14 to 0.0.3-next.15
683
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.14 to 0.0.3-next.15
684
+
685
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.13...rights-management-plugins-v0.0.3-next.14) (2026-02-12)
686
+
687
+
688
+ ### Features
689
+
690
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
691
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
692
+
693
+
694
+ ### Dependencies
695
+
696
+ * The following workspace dependencies were updated
697
+ * dependencies
698
+ * @twin.org/rights-management-models bumped from 0.0.3-next.13 to 0.0.3-next.14
699
+ * devDependencies
700
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.13 to 0.0.3-next.14
701
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.13 to 0.0.3-next.14
702
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.13 to 0.0.3-next.14
703
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.13 to 0.0.3-next.14
704
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.13 to 0.0.3-next.14
705
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.13 to 0.0.3-next.14
706
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.13 to 0.0.3-next.14
707
+
708
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.12...rights-management-plugins-v0.0.3-next.13) (2026-02-02)
709
+
710
+
711
+ ### Features
712
+
713
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
714
+
715
+
716
+ ### Dependencies
717
+
718
+ * The following workspace dependencies were updated
719
+ * dependencies
720
+ * @twin.org/rights-management-models bumped from 0.0.3-next.12 to 0.0.3-next.13
721
+
722
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.11...rights-management-plugins-v0.0.3-next.12) (2026-02-02)
723
+
724
+
725
+ ### Features
726
+
727
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
728
+
729
+
730
+ ### Dependencies
731
+
732
+ * The following workspace dependencies were updated
733
+ * dependencies
734
+ * @twin.org/rights-management-models bumped from 0.0.3-next.11 to 0.0.3-next.12
735
+
736
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.10...rights-management-plugins-v0.0.3-next.11) (2026-01-29)
737
+
738
+
739
+ ### Miscellaneous Chores
740
+
741
+ * **rights-management-plugins:** Synchronize repo versions
742
+
743
+
744
+ ### Dependencies
745
+
746
+ * The following workspace dependencies were updated
747
+ * dependencies
748
+ * @twin.org/rights-management-models bumped from 0.0.3-next.10 to 0.0.3-next.11
749
+
750
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.9...rights-management-plugins-v0.0.3-next.10) (2026-01-28)
751
+
752
+
753
+ ### Features
754
+
755
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
756
+
757
+
758
+ ### Dependencies
759
+
760
+ * The following workspace dependencies were updated
761
+ * dependencies
762
+ * @twin.org/rights-management-models bumped from 0.0.3-next.9 to 0.0.3-next.10
763
+
764
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.8...rights-management-plugins-v0.0.3-next.9) (2026-01-26)
765
+
766
+
767
+ ### Miscellaneous Chores
768
+
769
+ * **rights-management-plugins:** Synchronize repo versions
770
+
771
+
772
+ ### Dependencies
773
+
774
+ * The following workspace dependencies were updated
775
+ * dependencies
776
+ * @twin.org/rights-management-models bumped from 0.0.3-next.8 to 0.0.3-next.9
777
+
778
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.7...rights-management-plugins-v0.0.3-next.8) (2026-01-21)
779
+
780
+
781
+ ### Miscellaneous Chores
782
+
783
+ * **rights-management-plugins:** Synchronize repo versions
784
+
785
+
786
+ ### Dependencies
787
+
788
+ * The following workspace dependencies were updated
789
+ * dependencies
790
+ * @twin.org/rights-management-models bumped from 0.0.3-next.7 to 0.0.3-next.8
791
+
792
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.6...rights-management-plugins-v0.0.3-next.7) (2026-01-14)
793
+
794
+
795
+ ### Miscellaneous Chores
796
+
797
+ * **rights-management-plugins:** Synchronize repo versions
798
+
799
+
800
+ ### Dependencies
801
+
802
+ * The following workspace dependencies were updated
803
+ * dependencies
804
+ * @twin.org/rights-management-models bumped from 0.0.3-next.6 to 0.0.3-next.7
805
+
806
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.5...rights-management-plugins-v0.0.3-next.6) (2026-01-12)
807
+
808
+
809
+ ### Miscellaneous Chores
810
+
811
+ * **rights-management-plugins:** Synchronize repo versions
812
+
813
+
814
+ ### Dependencies
815
+
816
+ * The following workspace dependencies were updated
817
+ * dependencies
818
+ * @twin.org/rights-management-models bumped from 0.0.3-next.5 to 0.0.3-next.6
819
+
820
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.4...rights-management-plugins-v0.0.3-next.5) (2026-01-06)
821
+
822
+
823
+ ### Features
824
+
825
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
826
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
827
+
828
+
829
+ ### Dependencies
830
+
831
+ * The following workspace dependencies were updated
832
+ * dependencies
833
+ * @twin.org/rights-management-models bumped from 0.0.3-next.4 to 0.0.3-next.5
834
+
835
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.3...rights-management-plugins-v0.0.3-next.4) (2025-12-04)
4
836
 
5
837
 
6
838
  ### Features
7
839
 
8
- * add factory pattern ([d26b4c0](https://github.com/twinfoundation/rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
840
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
9
841
 
10
842
 
11
843
  ### Dependencies
@@ -14,4 +846,4 @@
14
846
  * dependencies
15
847
  * @twin.org/rights-management-models bumped from 0.0.3-next.3 to 0.0.3-next.4
16
848
 
17
- ## @twin.org/rights-management-plugins - Changelog
849
+ ## Changelog