@twin.org/rights-management-plugins 0.0.3-next.8 → 0.9.0-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (150) hide show
  1. package/README.md +11 -3
  2. package/dist/es/index.js +20 -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/IIdentityPolicyInformationSourceConstructorOptions.js.map +1 -1
  15. package/dist/es/models/IIdentityProfilePolicyInformationSourceConstructorOptions.js +4 -0
  16. package/dist/es/models/IIdentityProfilePolicyInformationSourceConstructorOptions.js.map +1 -0
  17. package/dist/es/models/ILoggingPolicyExecutionActionConfig.js.map +1 -1
  18. package/dist/es/models/ILoggingPolicyExecutionActionConstructorOptions.js.map +1 -1
  19. package/dist/es/models/{IExampleDataAccessHandlerConstructorOptions.js → IPassThroughPolicyArbiterConstructorOptions.js} +1 -1
  20. package/dist/es/models/IPassThroughPolicyArbiterConstructorOptions.js.map +1 -0
  21. package/dist/es/models/IPassThroughPolicyEnforcementProcessorConstructorOptions.js +4 -0
  22. package/dist/es/models/IPassThroughPolicyEnforcementProcessorConstructorOptions.js.map +1 -0
  23. package/dist/es/models/IPassThroughPolicyNegotiatorConstructorOptions.js +4 -0
  24. package/dist/es/models/IPassThroughPolicyNegotiatorConstructorOptions.js.map +1 -0
  25. package/dist/es/models/IPassThroughPolicyObligationEnforcerConstructorOptions.js +4 -0
  26. package/dist/es/models/IPassThroughPolicyObligationEnforcerConstructorOptions.js.map +1 -0
  27. package/dist/es/models/{IExamplePolicyNegotiatorConstructorOptions.js → IPassThroughPolicyRequesterConstructorOptions.js} +1 -1
  28. package/dist/es/models/IPassThroughPolicyRequesterConstructorOptions.js.map +1 -0
  29. package/dist/es/models/IStaticPolicyInformationSource.js.map +1 -1
  30. package/dist/es/models/IStaticPolicyInformationSourceConstructorOptions.js.map +1 -1
  31. package/dist/es/policyArbiters/defaultPolicyArbiter.js +1790 -0
  32. package/dist/es/policyArbiters/defaultPolicyArbiter.js.map +1 -0
  33. package/dist/es/policyArbiters/passThroughPolicyArbiter.js +59 -0
  34. package/dist/es/policyArbiters/passThroughPolicyArbiter.js.map +1 -0
  35. package/dist/es/policyEnforcementProcessor/defaultPolicyEnforcementProcessor.js +147 -0
  36. package/dist/es/policyEnforcementProcessor/defaultPolicyEnforcementProcessor.js.map +1 -0
  37. package/dist/es/policyEnforcementProcessor/passThroughPolicyEnforcementProcessor.js +54 -0
  38. package/dist/es/policyEnforcementProcessor/passThroughPolicyEnforcementProcessor.js.map +1 -0
  39. package/dist/es/policyExecutionActions/automationPolicyExecutionAction.js +77 -0
  40. package/dist/es/policyExecutionActions/automationPolicyExecutionAction.js.map +1 -0
  41. package/dist/es/policyExecutionActions/loggingPolicyExecutionAction.js +22 -18
  42. package/dist/es/policyExecutionActions/loggingPolicyExecutionAction.js.map +1 -1
  43. package/dist/es/policyInformationSources/identityPolicyInformationSource.js +44 -32
  44. package/dist/es/policyInformationSources/identityPolicyInformationSource.js.map +1 -1
  45. package/dist/es/policyInformationSources/identityProfilePolicyInformationSource.js +112 -0
  46. package/dist/es/policyInformationSources/identityProfilePolicyInformationSource.js.map +1 -0
  47. package/dist/es/policyInformationSources/staticPolicyInformationSource.js +18 -16
  48. package/dist/es/policyInformationSources/staticPolicyInformationSource.js.map +1 -1
  49. package/dist/es/policyNegotiators/passThroughPolicyNegotiator.js +88 -0
  50. package/dist/es/policyNegotiators/passThroughPolicyNegotiator.js.map +1 -0
  51. package/dist/es/policyObligationEnforcers/passThroughPolicyObligationEnforcer.js +56 -0
  52. package/dist/es/policyObligationEnforcers/passThroughPolicyObligationEnforcer.js.map +1 -0
  53. package/dist/es/policyRequesters/passThroughPolicyRequester.js +103 -0
  54. package/dist/es/policyRequesters/passThroughPolicyRequester.js.map +1 -0
  55. package/dist/types/index.d.ts +20 -10
  56. package/dist/types/models/IAutomationPolicyExecutionActionConfig.d.ts +9 -0
  57. package/dist/types/models/IAutomationPolicyExecutionActionConstructorOptions.d.ts +15 -0
  58. package/dist/types/models/IDefaultPolicyArbiterConfig.d.ts +10 -0
  59. package/dist/types/models/IDefaultPolicyArbiterConstructorOptions.d.ts +19 -0
  60. package/dist/types/models/IDefaultPolicyEnforcementProcessorConstructorOptions.d.ts +9 -0
  61. package/dist/types/models/IIdentityPolicyInformationSourceConstructorOptions.d.ts +0 -1
  62. package/dist/types/models/IIdentityProfilePolicyInformationSourceConstructorOptions.d.ts +14 -0
  63. package/dist/types/models/ILoggingPolicyExecutionActionConfig.d.ts +2 -2
  64. package/dist/types/models/ILoggingPolicyExecutionActionConstructorOptions.d.ts +0 -1
  65. package/dist/types/models/IPassThroughPolicyArbiterConstructorOptions.d.ts +9 -0
  66. package/dist/types/models/IPassThroughPolicyEnforcementProcessorConstructorOptions.d.ts +9 -0
  67. package/dist/types/models/IPassThroughPolicyNegotiatorConstructorOptions.d.ts +9 -0
  68. package/dist/types/models/IPassThroughPolicyObligationEnforcerConstructorOptions.d.ts +9 -0
  69. package/dist/types/models/IPassThroughPolicyRequesterConstructorOptions.d.ts +9 -0
  70. package/dist/types/models/IStaticPolicyInformationSource.d.ts +8 -5
  71. package/dist/types/models/IStaticPolicyInformationSourceConstructorOptions.d.ts +0 -1
  72. package/dist/types/policyArbiters/defaultPolicyArbiter.d.ts +38 -0
  73. package/dist/types/policyArbiters/passThroughPolicyArbiter.d.ts +32 -0
  74. package/dist/types/policyEnforcementProcessor/defaultPolicyEnforcementProcessor.d.ts +32 -0
  75. package/dist/types/policyEnforcementProcessor/passThroughPolicyEnforcementProcessor.d.ts +32 -0
  76. package/dist/types/policyExecutionActions/automationPolicyExecutionAction.d.ts +45 -0
  77. package/dist/types/policyExecutionActions/loggingPolicyExecutionAction.d.ts +6 -18
  78. package/dist/types/policyInformationSources/identityPolicyInformationSource.d.ts +5 -6
  79. package/dist/types/policyInformationSources/identityProfilePolicyInformationSource.d.ts +31 -0
  80. package/dist/types/policyInformationSources/staticPolicyInformationSource.d.ts +5 -6
  81. package/dist/types/policyNegotiators/passThroughPolicyNegotiator.d.ts +47 -0
  82. package/dist/types/policyObligationEnforcers/passThroughPolicyObligationEnforcer.d.ts +32 -0
  83. package/dist/types/policyRequesters/passThroughPolicyRequester.d.ts +48 -0
  84. package/docs/changelog.md +1235 -9
  85. package/docs/examples.md +295 -1
  86. package/docs/reference/classes/AutomationPolicyExecutionAction.md +143 -0
  87. package/docs/reference/classes/DefaultPolicyArbiter.md +113 -0
  88. package/docs/reference/classes/DefaultPolicyEnforcementProcessor.md +107 -0
  89. package/docs/reference/classes/IdentityPolicyInformationSource.md +14 -14
  90. package/docs/reference/classes/IdentityProfilePolicyInformationSource.md +103 -0
  91. package/docs/reference/classes/LoggingPolicyExecutionAction.md +20 -20
  92. package/docs/reference/classes/PassThroughPolicyArbiter.md +103 -0
  93. package/docs/reference/classes/PassThroughPolicyEnforcementProcessor.md +107 -0
  94. package/docs/reference/classes/{ExamplePolicyNegotiator.md → PassThroughPolicyNegotiator.md} +27 -21
  95. package/docs/reference/classes/PassThroughPolicyObligationEnforcer.md +109 -0
  96. package/docs/reference/classes/{ExamplePolicyRequester.md → PassThroughPolicyRequester.md} +22 -40
  97. package/docs/reference/classes/StaticPolicyInformationSource.md +15 -15
  98. package/docs/reference/index.md +20 -10
  99. package/docs/reference/interfaces/IAutomationPolicyExecutionActionConfig.md +11 -0
  100. package/docs/reference/interfaces/IAutomationPolicyExecutionActionConstructorOptions.md +25 -0
  101. package/docs/reference/interfaces/IDefaultPolicyArbiterConfig.md +17 -0
  102. package/docs/reference/interfaces/IDefaultPolicyArbiterConstructorOptions.md +33 -0
  103. package/docs/reference/interfaces/IDefaultPolicyEnforcementProcessorConstructorOptions.md +11 -0
  104. package/docs/reference/interfaces/IIdentityPolicyInformationSourceConstructorOptions.md +4 -10
  105. package/docs/reference/interfaces/IIdentityProfilePolicyInformationSourceConstructorOptions.md +25 -0
  106. package/docs/reference/interfaces/ILoggingPolicyExecutionActionConfig.md +9 -9
  107. package/docs/reference/interfaces/ILoggingPolicyExecutionActionConstructorOptions.md +4 -10
  108. package/docs/reference/interfaces/IPassThroughPolicyArbiterConstructorOptions.md +11 -0
  109. package/docs/reference/interfaces/IPassThroughPolicyEnforcementProcessorConstructorOptions.md +11 -0
  110. package/docs/reference/interfaces/IPassThroughPolicyNegotiatorConstructorOptions.md +11 -0
  111. package/docs/reference/interfaces/IPassThroughPolicyObligationEnforcerConstructorOptions.md +11 -0
  112. package/docs/reference/interfaces/IPassThroughPolicyRequesterConstructorOptions.md +11 -0
  113. package/docs/reference/interfaces/IStaticPolicyInformationSource.md +21 -6
  114. package/docs/reference/interfaces/IStaticPolicyInformationSourceConfig.md +2 -2
  115. package/docs/reference/interfaces/IStaticPolicyInformationSourceConstructorOptions.md +4 -10
  116. package/locales/en.json +65 -6
  117. package/package.json +14 -11
  118. package/dist/es/dataAccessHandlers/examplePolicyRequester.js +0 -82
  119. package/dist/es/dataAccessHandlers/examplePolicyRequester.js.map +0 -1
  120. package/dist/es/models/IExampleDataAccessHandlerConstructorOptions.js.map +0 -1
  121. package/dist/es/models/IExamplePolicyArbiterConstructorOptions.js.map +0 -1
  122. package/dist/es/models/IExamplePolicyEnforcementProcessorConstructorOptions.js.map +0 -1
  123. package/dist/es/models/IExamplePolicyNegotiatorConstructorOptions.js.map +0 -1
  124. package/dist/es/models/IExamplePolicyRequesterConstructorOptions.js.map +0 -1
  125. package/dist/es/policyArbiters/examplePolicyArbiter.js +0 -50
  126. package/dist/es/policyArbiters/examplePolicyArbiter.js.map +0 -1
  127. package/dist/es/policyEnforcementProcessor/examplePolicyEnforcementProcessor.js +0 -42
  128. package/dist/es/policyEnforcementProcessor/examplePolicyEnforcementProcessor.js.map +0 -1
  129. package/dist/es/policyNegotiators/examplePolicyNegotiator.js +0 -61
  130. package/dist/es/policyNegotiators/examplePolicyNegotiator.js.map +0 -1
  131. package/dist/es/policyRequesters/examplePolicyRequester.js +0 -69
  132. package/dist/es/policyRequesters/examplePolicyRequester.js.map +0 -1
  133. package/dist/types/dataAccessHandlers/examplePolicyRequester.d.ts +0 -68
  134. package/dist/types/models/IExampleDataAccessHandlerConstructorOptions.d.ts +0 -10
  135. package/dist/types/models/IExamplePolicyArbiterConstructorOptions.d.ts +0 -10
  136. package/dist/types/models/IExamplePolicyEnforcementProcessorConstructorOptions.d.ts +0 -10
  137. package/dist/types/models/IExamplePolicyNegotiatorConstructorOptions.d.ts +0 -10
  138. package/dist/types/models/IExamplePolicyRequesterConstructorOptions.d.ts +0 -10
  139. package/dist/types/policyArbiters/examplePolicyArbiter.d.ts +0 -36
  140. package/dist/types/policyEnforcementProcessor/examplePolicyEnforcementProcessor.d.ts +0 -29
  141. package/dist/types/policyNegotiators/examplePolicyNegotiator.d.ts +0 -45
  142. package/dist/types/policyRequesters/examplePolicyRequester.d.ts +0 -53
  143. package/docs/reference/classes/ExampleDataAccessHandler.md +0 -243
  144. package/docs/reference/classes/ExamplePolicyArbiter.md +0 -121
  145. package/docs/reference/classes/ExamplePolicyEnforcementProcessor.md +0 -101
  146. package/docs/reference/interfaces/IExampleDataAccessHandlerConstructorOptions.md +0 -17
  147. package/docs/reference/interfaces/IExamplePolicyArbiterConstructorOptions.md +0 -17
  148. package/docs/reference/interfaces/IExamplePolicyEnforcementProcessorConstructorOptions.md +0 -17
  149. package/docs/reference/interfaces/IExamplePolicyNegotiatorConstructorOptions.md +0 -17
  150. package/docs/reference/interfaces/IExamplePolicyRequesterConstructorOptions.md +0 -17
package/docs/changelog.md CHANGED
@@ -1,6 +1,1232 @@
1
1
  # Changelog
2
2
 
3
- ## [0.0.3-next.8](https://github.com/twinfoundation/rights-management/compare/rights-management-plugins-v0.0.3-next.7...rights-management-plugins-v0.0.3-next.8) (2026-01-21)
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.9.0-next.1](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.9.0-next.0...rights-management-plugins-v0.9.0-next.1) (2026-06-23)
10
+
11
+
12
+ ### Features
13
+
14
+ * 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))
15
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
16
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
17
+ * 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))
18
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
19
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
20
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
21
+ * add pxp automation action ([#127](https://github.com/iotaledger/twin-rights-management/issues/127)) ([ea3325a](https://github.com/iotaledger/twin-rights-management/commit/ea3325a90c4714e599fcffb73e7517affd3a688f))
22
+ * 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))
23
+ * consistent uid usage ([#83](https://github.com/iotaledger/twin-rights-management/issues/83)) ([bdfb9f9](https://github.com/iotaledger/twin-rights-management/commit/bdfb9f92777cbfdb65b5b7df5660b70d869ed19d))
24
+ * identity profile information source ([#194](https://github.com/iotaledger/twin-rights-management/issues/194)) ([c17bd14](https://github.com/iotaledger/twin-rights-management/commit/c17bd14387ab3945cac6f1d0ba2a8adb57d2302b))
25
+ * improve json path handling ([#133](https://github.com/iotaledger/twin-rights-management/issues/133)) ([0a3c0c4](https://github.com/iotaledger/twin-rights-management/commit/0a3c0c41f15f74a6e2463ed9802c7b662d3e95f6))
26
+ * left operators ([#203](https://github.com/iotaledger/twin-rights-management/issues/203)) ([93dced6](https://github.com/iotaledger/twin-rights-management/commit/93dced6186097794ef5f3620bcf8cc86c0a77f9d))
27
+ * local optimization ([#216](https://github.com/iotaledger/twin-rights-management/issues/216)) ([13858ea](https://github.com/iotaledger/twin-rights-management/commit/13858ea223654468b69c7ac5793fa6a03a0a61e0))
28
+ * organization identifiers ([#177](https://github.com/iotaledger/twin-rights-management/issues/177)) ([98d2484](https://github.com/iotaledger/twin-rights-management/commit/98d24841e3ecbb9a5225c151d171f8a9c08ccfbc))
29
+ * 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))
30
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
31
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
32
+ * typescript 6 update ([18f6f1e](https://github.com/iotaledger/twin-rights-management/commit/18f6f1edba890462c068ba0b76ae6dd005e798be))
33
+ * update dependencies ([5bfbb30](https://github.com/iotaledger/twin-rights-management/commit/5bfbb302bb245c8cd8015ff497db3793077d43cd))
34
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
35
+ * update standards packages ([db0740b](https://github.com/iotaledger/twin-rights-management/commit/db0740b1d8925fcb3bf4204641e0dc573af40f2b))
36
+ * update to more specific ds odrl types ([c56dc49](https://github.com/iotaledger/twin-rights-management/commit/c56dc4991d4e1e8ca3beb737d2a70dddf6f5cd44))
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * array check for undefined ([df6a6aa](https://github.com/iotaledger/twin-rights-management/commit/df6a6aa4e02ed1860e9a7431eda46597c75cc35d))
42
+ * 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))
43
+ * make logging tests deterministic and complete hosting mock ([#173](https://github.com/iotaledger/twin-rights-management/issues/173)) ([80fa587](https://github.com/iotaledger/twin-rights-management/commit/80fa587a83cb73ab0cfc14b40fa7b878ccf64da5))
44
+ * use async getStore in tests ([61b9951](https://github.com/iotaledger/twin-rights-management/commit/61b99512f90faa26d22d57b6fbd3186a5cb53672))
45
+
46
+
47
+ ### Dependencies
48
+
49
+ * The following workspace dependencies were updated
50
+ * dependencies
51
+ * @twin.org/rights-management-models bumped from 0.9.0-next.0 to 0.9.0-next.1
52
+ * devDependencies
53
+ * @twin.org/rights-management-pap-service bumped from 0.9.0-next.0 to 0.9.0-next.1
54
+ * @twin.org/rights-management-pdp-service bumped from 0.9.0-next.0 to 0.9.0-next.1
55
+ * @twin.org/rights-management-pep-service bumped from 0.9.0-next.0 to 0.9.0-next.1
56
+ * @twin.org/rights-management-pip-service bumped from 0.9.0-next.0 to 0.9.0-next.1
57
+ * @twin.org/rights-management-pmp-service bumped from 0.9.0-next.0 to 0.9.0-next.1
58
+ * @twin.org/rights-management-pnp-service bumped from 0.9.0-next.0 to 0.9.0-next.1
59
+ * @twin.org/rights-management-pxp-service bumped from 0.9.0-next.0 to 0.9.0-next.1
60
+
61
+ ## [0.0.3-next.58](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.57...rights-management-plugins-v0.0.3-next.58) (2026-06-19)
62
+
63
+
64
+ ### Features
65
+
66
+ * local optimization ([#216](https://github.com/iotaledger/twin-rights-management/issues/216)) ([13858ea](https://github.com/iotaledger/twin-rights-management/commit/13858ea223654468b69c7ac5793fa6a03a0a61e0))
67
+
68
+
69
+ ### Dependencies
70
+
71
+ * The following workspace dependencies were updated
72
+ * dependencies
73
+ * @twin.org/rights-management-models bumped from 0.0.3-next.57 to 0.0.3-next.58
74
+ * devDependencies
75
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.57 to 0.0.3-next.58
76
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.57 to 0.0.3-next.58
77
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.57 to 0.0.3-next.58
78
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.57 to 0.0.3-next.58
79
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.57 to 0.0.3-next.58
80
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.57 to 0.0.3-next.58
81
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.57 to 0.0.3-next.58
82
+
83
+ ## [0.0.3-next.57](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.56...rights-management-plugins-v0.0.3-next.57) (2026-06-19)
84
+
85
+
86
+ ### Miscellaneous Chores
87
+
88
+ * **rights-management-plugins:** Synchronize repo versions
89
+
90
+
91
+ ### Dependencies
92
+
93
+ * The following workspace dependencies were updated
94
+ * dependencies
95
+ * @twin.org/rights-management-models bumped from 0.0.3-next.56 to 0.0.3-next.57
96
+ * devDependencies
97
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.56 to 0.0.3-next.57
98
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.56 to 0.0.3-next.57
99
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.56 to 0.0.3-next.57
100
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.56 to 0.0.3-next.57
101
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.56 to 0.0.3-next.57
102
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.56 to 0.0.3-next.57
103
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.56 to 0.0.3-next.57
104
+
105
+ ## [0.0.3-next.56](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.55...rights-management-plugins-v0.0.3-next.56) (2026-06-19)
106
+
107
+
108
+ ### Miscellaneous Chores
109
+
110
+ * **rights-management-plugins:** Synchronize repo versions
111
+
112
+
113
+ ### Dependencies
114
+
115
+ * The following workspace dependencies were updated
116
+ * dependencies
117
+ * @twin.org/rights-management-models bumped from 0.0.3-next.55 to 0.0.3-next.56
118
+ * devDependencies
119
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.55 to 0.0.3-next.56
120
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.55 to 0.0.3-next.56
121
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.55 to 0.0.3-next.56
122
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.55 to 0.0.3-next.56
123
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.55 to 0.0.3-next.56
124
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.55 to 0.0.3-next.56
125
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.55 to 0.0.3-next.56
126
+
127
+ ## [0.0.3-next.55](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.54...rights-management-plugins-v0.0.3-next.55) (2026-06-18)
128
+
129
+
130
+ ### Miscellaneous Chores
131
+
132
+ * **rights-management-plugins:** Synchronize repo versions
133
+
134
+
135
+ ### Dependencies
136
+
137
+ * The following workspace dependencies were updated
138
+ * dependencies
139
+ * @twin.org/rights-management-models bumped from 0.0.3-next.54 to 0.0.3-next.55
140
+ * devDependencies
141
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.54 to 0.0.3-next.55
142
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.54 to 0.0.3-next.55
143
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.54 to 0.0.3-next.55
144
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.54 to 0.0.3-next.55
145
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.54 to 0.0.3-next.55
146
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.54 to 0.0.3-next.55
147
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.54 to 0.0.3-next.55
148
+
149
+ ## [0.0.3-next.54](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.53...rights-management-plugins-v0.0.3-next.54) (2026-06-18)
150
+
151
+
152
+ ### Features
153
+
154
+ * left operators ([#203](https://github.com/iotaledger/twin-rights-management/issues/203)) ([93dced6](https://github.com/iotaledger/twin-rights-management/commit/93dced6186097794ef5f3620bcf8cc86c0a77f9d))
155
+
156
+
157
+ ### Dependencies
158
+
159
+ * The following workspace dependencies were updated
160
+ * dependencies
161
+ * @twin.org/rights-management-models bumped from 0.0.3-next.53 to 0.0.3-next.54
162
+ * devDependencies
163
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.53 to 0.0.3-next.54
164
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.53 to 0.0.3-next.54
165
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.53 to 0.0.3-next.54
166
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.53 to 0.0.3-next.54
167
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.53 to 0.0.3-next.54
168
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.53 to 0.0.3-next.54
169
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.53 to 0.0.3-next.54
170
+
171
+ ## [0.0.3-next.53](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.52...rights-management-plugins-v0.0.3-next.53) (2026-06-17)
172
+
173
+
174
+ ### Miscellaneous Chores
175
+
176
+ * **rights-management-plugins:** Synchronize repo versions
177
+
178
+
179
+ ### Dependencies
180
+
181
+ * The following workspace dependencies were updated
182
+ * dependencies
183
+ * @twin.org/rights-management-models bumped from 0.0.3-next.52 to 0.0.3-next.53
184
+ * devDependencies
185
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.52 to 0.0.3-next.53
186
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.52 to 0.0.3-next.53
187
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.52 to 0.0.3-next.53
188
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.52 to 0.0.3-next.53
189
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.52 to 0.0.3-next.53
190
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.52 to 0.0.3-next.53
191
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.52 to 0.0.3-next.53
192
+
193
+ ## [0.0.3-next.52](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.51...rights-management-plugins-v0.0.3-next.52) (2026-06-17)
194
+
195
+
196
+ ### Miscellaneous Chores
197
+
198
+ * **rights-management-plugins:** Synchronize repo versions
199
+
200
+
201
+ ### Dependencies
202
+
203
+ * The following workspace dependencies were updated
204
+ * dependencies
205
+ * @twin.org/rights-management-models bumped from 0.0.3-next.51 to 0.0.3-next.52
206
+ * devDependencies
207
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.51 to 0.0.3-next.52
208
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.51 to 0.0.3-next.52
209
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.51 to 0.0.3-next.52
210
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.51 to 0.0.3-next.52
211
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.51 to 0.0.3-next.52
212
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.51 to 0.0.3-next.52
213
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.51 to 0.0.3-next.52
214
+
215
+ ## [0.0.3-next.51](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.50...rights-management-plugins-v0.0.3-next.51) (2026-06-16)
216
+
217
+
218
+ ### Features
219
+
220
+ * identity profile information source ([#194](https://github.com/iotaledger/twin-rights-management/issues/194)) ([c17bd14](https://github.com/iotaledger/twin-rights-management/commit/c17bd14387ab3945cac6f1d0ba2a8adb57d2302b))
221
+
222
+
223
+ ### Dependencies
224
+
225
+ * The following workspace dependencies were updated
226
+ * dependencies
227
+ * @twin.org/rights-management-models bumped from 0.0.3-next.50 to 0.0.3-next.51
228
+ * devDependencies
229
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.50 to 0.0.3-next.51
230
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.50 to 0.0.3-next.51
231
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.50 to 0.0.3-next.51
232
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.50 to 0.0.3-next.51
233
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.50 to 0.0.3-next.51
234
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.50 to 0.0.3-next.51
235
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.50 to 0.0.3-next.51
236
+
237
+ ## [0.0.3-next.50](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.49...rights-management-plugins-v0.0.3-next.50) (2026-06-15)
238
+
239
+
240
+ ### Miscellaneous Chores
241
+
242
+ * **rights-management-plugins:** Synchronize repo versions
243
+
244
+
245
+ ### Dependencies
246
+
247
+ * The following workspace dependencies were updated
248
+ * dependencies
249
+ * @twin.org/rights-management-models bumped from 0.0.3-next.49 to 0.0.3-next.50
250
+ * devDependencies
251
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.49 to 0.0.3-next.50
252
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.49 to 0.0.3-next.50
253
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.49 to 0.0.3-next.50
254
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.49 to 0.0.3-next.50
255
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.49 to 0.0.3-next.50
256
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.49 to 0.0.3-next.50
257
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.49 to 0.0.3-next.50
258
+
259
+ ## [0.0.3-next.49](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.48...rights-management-plugins-v0.0.3-next.49) (2026-06-15)
260
+
261
+
262
+ ### Miscellaneous Chores
263
+
264
+ * **rights-management-plugins:** Synchronize repo versions
265
+
266
+
267
+ ### Dependencies
268
+
269
+ * The following workspace dependencies were updated
270
+ * dependencies
271
+ * @twin.org/rights-management-models bumped from 0.0.3-next.48 to 0.0.3-next.49
272
+ * devDependencies
273
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.48 to 0.0.3-next.49
274
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.48 to 0.0.3-next.49
275
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.48 to 0.0.3-next.49
276
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.48 to 0.0.3-next.49
277
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.48 to 0.0.3-next.49
278
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.48 to 0.0.3-next.49
279
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.48 to 0.0.3-next.49
280
+
281
+ ## [0.0.3-next.48](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.47...rights-management-plugins-v0.0.3-next.48) (2026-06-15)
282
+
283
+
284
+ ### Bug Fixes
285
+
286
+ * use async getStore in tests ([61b9951](https://github.com/iotaledger/twin-rights-management/commit/61b99512f90faa26d22d57b6fbd3186a5cb53672))
287
+
288
+
289
+ ### Dependencies
290
+
291
+ * The following workspace dependencies were updated
292
+ * dependencies
293
+ * @twin.org/rights-management-models bumped from 0.0.3-next.47 to 0.0.3-next.48
294
+ * devDependencies
295
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.47 to 0.0.3-next.48
296
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.47 to 0.0.3-next.48
297
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.47 to 0.0.3-next.48
298
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.47 to 0.0.3-next.48
299
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.47 to 0.0.3-next.48
300
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.47 to 0.0.3-next.48
301
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.47 to 0.0.3-next.48
302
+
303
+ ## [0.0.3-next.47](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.46...rights-management-plugins-v0.0.3-next.47) (2026-06-12)
304
+
305
+
306
+ ### Miscellaneous Chores
307
+
308
+ * **rights-management-plugins:** Synchronize repo versions
309
+
310
+
311
+ ### Dependencies
312
+
313
+ * The following workspace dependencies were updated
314
+ * dependencies
315
+ * @twin.org/rights-management-models bumped from 0.0.3-next.46 to 0.0.3-next.47
316
+ * devDependencies
317
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.46 to 0.0.3-next.47
318
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.46 to 0.0.3-next.47
319
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.46 to 0.0.3-next.47
320
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.46 to 0.0.3-next.47
321
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.46 to 0.0.3-next.47
322
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.46 to 0.0.3-next.47
323
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.46 to 0.0.3-next.47
324
+
325
+ ## [0.0.3-next.46](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.45...rights-management-plugins-v0.0.3-next.46) (2026-06-11)
326
+
327
+
328
+ ### Features
329
+
330
+ * organization identifiers ([#177](https://github.com/iotaledger/twin-rights-management/issues/177)) ([98d2484](https://github.com/iotaledger/twin-rights-management/commit/98d24841e3ecbb9a5225c151d171f8a9c08ccfbc))
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.45 to 0.0.3-next.46
338
+ * devDependencies
339
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.45 to 0.0.3-next.46
340
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.45 to 0.0.3-next.46
341
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.45 to 0.0.3-next.46
342
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.45 to 0.0.3-next.46
343
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.45 to 0.0.3-next.46
344
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.45 to 0.0.3-next.46
345
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.45 to 0.0.3-next.46
346
+
347
+ ## [0.0.3-next.45](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.44...rights-management-plugins-v0.0.3-next.45) (2026-06-05)
348
+
349
+
350
+ ### Features
351
+
352
+ * 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))
353
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
354
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
355
+ * 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))
356
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
357
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
358
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
359
+ * add pxp automation action ([#127](https://github.com/iotaledger/twin-rights-management/issues/127)) ([ea3325a](https://github.com/iotaledger/twin-rights-management/commit/ea3325a90c4714e599fcffb73e7517affd3a688f))
360
+ * 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))
361
+ * consistent uid usage ([#83](https://github.com/iotaledger/twin-rights-management/issues/83)) ([bdfb9f9](https://github.com/iotaledger/twin-rights-management/commit/bdfb9f92777cbfdb65b5b7df5660b70d869ed19d))
362
+ * improve json path handling ([#133](https://github.com/iotaledger/twin-rights-management/issues/133)) ([0a3c0c4](https://github.com/iotaledger/twin-rights-management/commit/0a3c0c41f15f74a6e2463ed9802c7b662d3e95f6))
363
+ * 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))
364
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
365
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
366
+ * typescript 6 update ([18f6f1e](https://github.com/iotaledger/twin-rights-management/commit/18f6f1edba890462c068ba0b76ae6dd005e798be))
367
+ * update dependencies ([5bfbb30](https://github.com/iotaledger/twin-rights-management/commit/5bfbb302bb245c8cd8015ff497db3793077d43cd))
368
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
369
+ * update standards packages ([db0740b](https://github.com/iotaledger/twin-rights-management/commit/db0740b1d8925fcb3bf4204641e0dc573af40f2b))
370
+ * update to more specific ds odrl types ([c56dc49](https://github.com/iotaledger/twin-rights-management/commit/c56dc4991d4e1e8ca3beb737d2a70dddf6f5cd44))
371
+
372
+
373
+ ### Bug Fixes
374
+
375
+ * array check for undefined ([df6a6aa](https://github.com/iotaledger/twin-rights-management/commit/df6a6aa4e02ed1860e9a7431eda46597c75cc35d))
376
+ * 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))
377
+ * make logging tests deterministic and complete hosting mock ([#173](https://github.com/iotaledger/twin-rights-management/issues/173)) ([80fa587](https://github.com/iotaledger/twin-rights-management/commit/80fa587a83cb73ab0cfc14b40fa7b878ccf64da5))
378
+
379
+
380
+ ### Dependencies
381
+
382
+ * The following workspace dependencies were updated
383
+ * dependencies
384
+ * @twin.org/rights-management-models bumped from 0.0.3-next.44 to 0.0.3-next.45
385
+ * devDependencies
386
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.44 to 0.0.3-next.45
387
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.44 to 0.0.3-next.45
388
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.44 to 0.0.3-next.45
389
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.44 to 0.0.3-next.45
390
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.44 to 0.0.3-next.45
391
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.44 to 0.0.3-next.45
392
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.44 to 0.0.3-next.45
393
+
394
+ ## [0.0.3-next.44](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.43...rights-management-plugins-v0.0.3-next.44) (2026-06-05)
395
+
396
+
397
+ ### Miscellaneous Chores
398
+
399
+ * **rights-management-plugins:** Synchronize repo versions
400
+
401
+
402
+ ### Dependencies
403
+
404
+ * The following workspace dependencies were updated
405
+ * dependencies
406
+ * @twin.org/rights-management-models bumped from 0.0.3-next.43 to 0.0.3-next.44
407
+ * devDependencies
408
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.43 to 0.0.3-next.44
409
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.43 to 0.0.3-next.44
410
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.43 to 0.0.3-next.44
411
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.43 to 0.0.3-next.44
412
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.43 to 0.0.3-next.44
413
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.43 to 0.0.3-next.44
414
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.43 to 0.0.3-next.44
415
+
416
+ ## [0.0.3-next.43](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.42...rights-management-plugins-v0.0.3-next.43) (2026-06-04)
417
+
418
+
419
+ ### Miscellaneous Chores
420
+
421
+ * **rights-management-plugins:** Synchronize repo versions
422
+
423
+
424
+ ### Dependencies
425
+
426
+ * The following workspace dependencies were updated
427
+ * dependencies
428
+ * @twin.org/rights-management-models bumped from 0.0.3-next.42 to 0.0.3-next.43
429
+ * devDependencies
430
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.42 to 0.0.3-next.43
431
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.42 to 0.0.3-next.43
432
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.42 to 0.0.3-next.43
433
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.42 to 0.0.3-next.43
434
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.42 to 0.0.3-next.43
435
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.42 to 0.0.3-next.43
436
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.42 to 0.0.3-next.43
437
+
438
+ ## [0.0.3-next.42](https://github.com/iotaledger/twin-rights-management/compare/rights-management-plugins-v0.0.3-next.41...rights-management-plugins-v0.0.3-next.42) (2026-06-04)
439
+
440
+
441
+ ### Miscellaneous Chores
442
+
443
+ * **rights-management-plugins:** Synchronize repo versions
444
+
445
+
446
+ ### Dependencies
447
+
448
+ * The following workspace dependencies were updated
449
+ * dependencies
450
+ * @twin.org/rights-management-models bumped from 0.0.3-next.41 to 0.0.3-next.42
451
+ * devDependencies
452
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.41 to 0.0.3-next.42
453
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.41 to 0.0.3-next.42
454
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.41 to 0.0.3-next.42
455
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.41 to 0.0.3-next.42
456
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.41 to 0.0.3-next.42
457
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.41 to 0.0.3-next.42
458
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.41 to 0.0.3-next.42
459
+
460
+ ## [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)
461
+
462
+
463
+ ### Miscellaneous Chores
464
+
465
+ * **rights-management-plugins:** Synchronize repo versions
466
+
467
+
468
+ ### Dependencies
469
+
470
+ * The following workspace dependencies were updated
471
+ * dependencies
472
+ * @twin.org/rights-management-models bumped from 0.0.3-next.40 to 0.0.3-next.41
473
+ * devDependencies
474
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.40 to 0.0.3-next.41
475
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.40 to 0.0.3-next.41
476
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.40 to 0.0.3-next.41
477
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.40 to 0.0.3-next.41
478
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.40 to 0.0.3-next.41
479
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.40 to 0.0.3-next.41
480
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.40 to 0.0.3-next.41
481
+
482
+ ## [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)
483
+
484
+
485
+ ### Miscellaneous Chores
486
+
487
+ * **rights-management-plugins:** Synchronize repo versions
488
+
489
+
490
+ ### Dependencies
491
+
492
+ * The following workspace dependencies were updated
493
+ * dependencies
494
+ * @twin.org/rights-management-models bumped from 0.0.3-next.39 to 0.0.3-next.40
495
+ * devDependencies
496
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.39 to 0.0.3-next.40
497
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.39 to 0.0.3-next.40
498
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.39 to 0.0.3-next.40
499
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.39 to 0.0.3-next.40
500
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.39 to 0.0.3-next.40
501
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.39 to 0.0.3-next.40
502
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.39 to 0.0.3-next.40
503
+
504
+ ## [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)
505
+
506
+
507
+ ### Miscellaneous Chores
508
+
509
+ * **rights-management-plugins:** Synchronize repo versions
510
+
511
+
512
+ ### Dependencies
513
+
514
+ * The following workspace dependencies were updated
515
+ * dependencies
516
+ * @twin.org/rights-management-models bumped from 0.0.3-next.38 to 0.0.3-next.39
517
+ * devDependencies
518
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.38 to 0.0.3-next.39
519
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.38 to 0.0.3-next.39
520
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.38 to 0.0.3-next.39
521
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.38 to 0.0.3-next.39
522
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.38 to 0.0.3-next.39
523
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.38 to 0.0.3-next.39
524
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.38 to 0.0.3-next.39
525
+
526
+ ## [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)
527
+
528
+
529
+ ### Miscellaneous Chores
530
+
531
+ * **rights-management-plugins:** Synchronize repo versions
532
+
533
+
534
+ ### Dependencies
535
+
536
+ * The following workspace dependencies were updated
537
+ * dependencies
538
+ * @twin.org/rights-management-models bumped from 0.0.3-next.37 to 0.0.3-next.38
539
+ * devDependencies
540
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.37 to 0.0.3-next.38
541
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.37 to 0.0.3-next.38
542
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.37 to 0.0.3-next.38
543
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.37 to 0.0.3-next.38
544
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.37 to 0.0.3-next.38
545
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.37 to 0.0.3-next.38
546
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.37 to 0.0.3-next.38
547
+
548
+ ## [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)
549
+
550
+
551
+ ### Features
552
+
553
+ * 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))
554
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
555
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
556
+ * 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))
557
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
558
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
559
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
560
+ * add pxp automation action ([#127](https://github.com/iotaledger/twin-rights-management/issues/127)) ([ea3325a](https://github.com/iotaledger/twin-rights-management/commit/ea3325a90c4714e599fcffb73e7517affd3a688f))
561
+ * 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))
562
+ * consistent uid usage ([#83](https://github.com/iotaledger/twin-rights-management/issues/83)) ([bdfb9f9](https://github.com/iotaledger/twin-rights-management/commit/bdfb9f92777cbfdb65b5b7df5660b70d869ed19d))
563
+ * improve json path handling ([#133](https://github.com/iotaledger/twin-rights-management/issues/133)) ([0a3c0c4](https://github.com/iotaledger/twin-rights-management/commit/0a3c0c41f15f74a6e2463ed9802c7b662d3e95f6))
564
+ * 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))
565
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
566
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
567
+ * typescript 6 update ([18f6f1e](https://github.com/iotaledger/twin-rights-management/commit/18f6f1edba890462c068ba0b76ae6dd005e798be))
568
+ * update dependencies ([5bfbb30](https://github.com/iotaledger/twin-rights-management/commit/5bfbb302bb245c8cd8015ff497db3793077d43cd))
569
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
570
+ * update standards packages ([db0740b](https://github.com/iotaledger/twin-rights-management/commit/db0740b1d8925fcb3bf4204641e0dc573af40f2b))
571
+ * update to more specific ds odrl types ([c56dc49](https://github.com/iotaledger/twin-rights-management/commit/c56dc4991d4e1e8ca3beb737d2a70dddf6f5cd44))
572
+
573
+
574
+ ### Bug Fixes
575
+
576
+ * array check for undefined ([df6a6aa](https://github.com/iotaledger/twin-rights-management/commit/df6a6aa4e02ed1860e9a7431eda46597c75cc35d))
577
+ * 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))
578
+
579
+
580
+ ### Dependencies
581
+
582
+ * The following workspace dependencies were updated
583
+ * dependencies
584
+ * @twin.org/rights-management-models bumped from 0.0.3-next.36 to 0.0.3-next.37
585
+ * devDependencies
586
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.36 to 0.0.3-next.37
587
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.36 to 0.0.3-next.37
588
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.36 to 0.0.3-next.37
589
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.36 to 0.0.3-next.37
590
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.36 to 0.0.3-next.37
591
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.36 to 0.0.3-next.37
592
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.36 to 0.0.3-next.37
593
+
594
+ ## [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)
595
+
596
+
597
+ ### Features
598
+
599
+ * 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))
600
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
601
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
602
+ * 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))
603
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
604
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
605
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
606
+ * add pxp automation action ([#127](https://github.com/iotaledger/twin-rights-management/issues/127)) ([ea3325a](https://github.com/iotaledger/twin-rights-management/commit/ea3325a90c4714e599fcffb73e7517affd3a688f))
607
+ * 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))
608
+ * consistent uid usage ([#83](https://github.com/iotaledger/twin-rights-management/issues/83)) ([bdfb9f9](https://github.com/iotaledger/twin-rights-management/commit/bdfb9f92777cbfdb65b5b7df5660b70d869ed19d))
609
+ * improve json path handling ([#133](https://github.com/iotaledger/twin-rights-management/issues/133)) ([0a3c0c4](https://github.com/iotaledger/twin-rights-management/commit/0a3c0c41f15f74a6e2463ed9802c7b662d3e95f6))
610
+ * 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))
611
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
612
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
613
+ * typescript 6 update ([18f6f1e](https://github.com/iotaledger/twin-rights-management/commit/18f6f1edba890462c068ba0b76ae6dd005e798be))
614
+ * update dependencies ([5bfbb30](https://github.com/iotaledger/twin-rights-management/commit/5bfbb302bb245c8cd8015ff497db3793077d43cd))
615
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
616
+ * update standards packages ([db0740b](https://github.com/iotaledger/twin-rights-management/commit/db0740b1d8925fcb3bf4204641e0dc573af40f2b))
617
+ * update to more specific ds odrl types ([c56dc49](https://github.com/iotaledger/twin-rights-management/commit/c56dc4991d4e1e8ca3beb737d2a70dddf6f5cd44))
618
+
619
+
620
+ ### Bug Fixes
621
+
622
+ * array check for undefined ([df6a6aa](https://github.com/iotaledger/twin-rights-management/commit/df6a6aa4e02ed1860e9a7431eda46597c75cc35d))
623
+ * 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))
624
+
625
+
626
+ ### Dependencies
627
+
628
+ * The following workspace dependencies were updated
629
+ * dependencies
630
+ * @twin.org/rights-management-models bumped from 0.0.3-next.35 to 0.0.3-next.36
631
+ * devDependencies
632
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.35 to 0.0.3-next.36
633
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.35 to 0.0.3-next.36
634
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.35 to 0.0.3-next.36
635
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.35 to 0.0.3-next.36
636
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.35 to 0.0.3-next.36
637
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.35 to 0.0.3-next.36
638
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.35 to 0.0.3-next.36
639
+
640
+ ## [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)
641
+
642
+
643
+ ### Features
644
+
645
+ * 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))
646
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
647
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
648
+ * 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))
649
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
650
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
651
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
652
+ * add pxp automation action ([#127](https://github.com/iotaledger/twin-rights-management/issues/127)) ([ea3325a](https://github.com/iotaledger/twin-rights-management/commit/ea3325a90c4714e599fcffb73e7517affd3a688f))
653
+ * 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))
654
+ * consistent uid usage ([#83](https://github.com/iotaledger/twin-rights-management/issues/83)) ([bdfb9f9](https://github.com/iotaledger/twin-rights-management/commit/bdfb9f92777cbfdb65b5b7df5660b70d869ed19d))
655
+ * improve json path handling ([#133](https://github.com/iotaledger/twin-rights-management/issues/133)) ([0a3c0c4](https://github.com/iotaledger/twin-rights-management/commit/0a3c0c41f15f74a6e2463ed9802c7b662d3e95f6))
656
+ * 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))
657
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
658
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
659
+ * typescript 6 update ([18f6f1e](https://github.com/iotaledger/twin-rights-management/commit/18f6f1edba890462c068ba0b76ae6dd005e798be))
660
+ * update dependencies ([5bfbb30](https://github.com/iotaledger/twin-rights-management/commit/5bfbb302bb245c8cd8015ff497db3793077d43cd))
661
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
662
+ * update standards packages ([db0740b](https://github.com/iotaledger/twin-rights-management/commit/db0740b1d8925fcb3bf4204641e0dc573af40f2b))
663
+ * update to more specific ds odrl types ([c56dc49](https://github.com/iotaledger/twin-rights-management/commit/c56dc4991d4e1e8ca3beb737d2a70dddf6f5cd44))
664
+
665
+
666
+ ### Bug Fixes
667
+
668
+ * array check for undefined ([df6a6aa](https://github.com/iotaledger/twin-rights-management/commit/df6a6aa4e02ed1860e9a7431eda46597c75cc35d))
669
+ * 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))
670
+
671
+
672
+ ### Dependencies
673
+
674
+ * The following workspace dependencies were updated
675
+ * dependencies
676
+ * @twin.org/rights-management-models bumped from 0.0.3-next.34 to 0.0.3-next.35
677
+ * devDependencies
678
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.34 to 0.0.3-next.35
679
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.34 to 0.0.3-next.35
680
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.34 to 0.0.3-next.35
681
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.34 to 0.0.3-next.35
682
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.34 to 0.0.3-next.35
683
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.34 to 0.0.3-next.35
684
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.34 to 0.0.3-next.35
685
+
686
+ ## [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)
687
+
688
+
689
+ ### Miscellaneous Chores
690
+
691
+ * **rights-management-plugins:** Synchronize repo versions
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.33 to 0.0.3-next.34
699
+ * devDependencies
700
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.33 to 0.0.3-next.34
701
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.33 to 0.0.3-next.34
702
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.33 to 0.0.3-next.34
703
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.33 to 0.0.3-next.34
704
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.33 to 0.0.3-next.34
705
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.33 to 0.0.3-next.34
706
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.33 to 0.0.3-next.34
707
+
708
+ ## [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)
709
+
710
+
711
+ ### Features
712
+
713
+ * typescript 6 update ([18f6f1e](https://github.com/iotaledger/twin-rights-management/commit/18f6f1edba890462c068ba0b76ae6dd005e798be))
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.32 to 0.0.3-next.33
721
+ * devDependencies
722
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.32 to 0.0.3-next.33
723
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.32 to 0.0.3-next.33
724
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.32 to 0.0.3-next.33
725
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.32 to 0.0.3-next.33
726
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.32 to 0.0.3-next.33
727
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.32 to 0.0.3-next.33
728
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.32 to 0.0.3-next.33
729
+
730
+ ## [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)
731
+
732
+
733
+ ### Miscellaneous Chores
734
+
735
+ * **rights-management-plugins:** Synchronize repo versions
736
+
737
+
738
+ ### Dependencies
739
+
740
+ * The following workspace dependencies were updated
741
+ * dependencies
742
+ * @twin.org/rights-management-models bumped from 0.0.3-next.31 to 0.0.3-next.32
743
+ * devDependencies
744
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.31 to 0.0.3-next.32
745
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.31 to 0.0.3-next.32
746
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.31 to 0.0.3-next.32
747
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.31 to 0.0.3-next.32
748
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.31 to 0.0.3-next.32
749
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.31 to 0.0.3-next.32
750
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.31 to 0.0.3-next.32
751
+
752
+ ## [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)
753
+
754
+
755
+ ### Features
756
+
757
+ * improve json path handling ([#133](https://github.com/iotaledger/twin-rights-management/issues/133)) ([0a3c0c4](https://github.com/iotaledger/twin-rights-management/commit/0a3c0c41f15f74a6e2463ed9802c7b662d3e95f6))
758
+ * 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))
759
+
760
+
761
+ ### Dependencies
762
+
763
+ * The following workspace dependencies were updated
764
+ * dependencies
765
+ * @twin.org/rights-management-models bumped from 0.0.3-next.30 to 0.0.3-next.31
766
+ * devDependencies
767
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.30 to 0.0.3-next.31
768
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.30 to 0.0.3-next.31
769
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.30 to 0.0.3-next.31
770
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.30 to 0.0.3-next.31
771
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.30 to 0.0.3-next.31
772
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.30 to 0.0.3-next.31
773
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.30 to 0.0.3-next.31
774
+
775
+ ## [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)
776
+
777
+
778
+ ### Features
779
+
780
+ * 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))
781
+ * add pxp automation action ([#127](https://github.com/iotaledger/twin-rights-management/issues/127)) ([ea3325a](https://github.com/iotaledger/twin-rights-management/commit/ea3325a90c4714e599fcffb73e7517affd3a688f))
782
+
783
+
784
+ ### Dependencies
785
+
786
+ * The following workspace dependencies were updated
787
+ * dependencies
788
+ * @twin.org/rights-management-models bumped from 0.0.3-next.29 to 0.0.3-next.30
789
+ * devDependencies
790
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.29 to 0.0.3-next.30
791
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.29 to 0.0.3-next.30
792
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.29 to 0.0.3-next.30
793
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.29 to 0.0.3-next.30
794
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.29 to 0.0.3-next.30
795
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.29 to 0.0.3-next.30
796
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.29 to 0.0.3-next.30
797
+
798
+ ## [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)
799
+
800
+
801
+ ### Miscellaneous Chores
802
+
803
+ * **rights-management-plugins:** Synchronize repo versions
804
+
805
+
806
+ ### Dependencies
807
+
808
+ * The following workspace dependencies were updated
809
+ * dependencies
810
+ * @twin.org/rights-management-models bumped from 0.0.3-next.28 to 0.0.3-next.29
811
+ * devDependencies
812
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.28 to 0.0.3-next.29
813
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.28 to 0.0.3-next.29
814
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.28 to 0.0.3-next.29
815
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.28 to 0.0.3-next.29
816
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.28 to 0.0.3-next.29
817
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.28 to 0.0.3-next.29
818
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.28 to 0.0.3-next.29
819
+
820
+ ## [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)
821
+
822
+
823
+ ### Features
824
+
825
+ * 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))
826
+
827
+
828
+ ### Dependencies
829
+
830
+ * The following workspace dependencies were updated
831
+ * dependencies
832
+ * @twin.org/rights-management-models bumped from 0.0.3-next.27 to 0.0.3-next.28
833
+ * devDependencies
834
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.27 to 0.0.3-next.28
835
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.27 to 0.0.3-next.28
836
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.27 to 0.0.3-next.28
837
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.27 to 0.0.3-next.28
838
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.27 to 0.0.3-next.28
839
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.27 to 0.0.3-next.28
840
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.27 to 0.0.3-next.28
841
+
842
+ ## [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)
843
+
844
+
845
+ ### Miscellaneous Chores
846
+
847
+ * **rights-management-plugins:** Synchronize repo versions
848
+
849
+
850
+ ### Dependencies
851
+
852
+ * The following workspace dependencies were updated
853
+ * dependencies
854
+ * @twin.org/rights-management-models bumped from 0.0.3-next.26 to 0.0.3-next.27
855
+ * devDependencies
856
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.26 to 0.0.3-next.27
857
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.26 to 0.0.3-next.27
858
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.26 to 0.0.3-next.27
859
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.26 to 0.0.3-next.27
860
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.26 to 0.0.3-next.27
861
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.26 to 0.0.3-next.27
862
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.26 to 0.0.3-next.27
863
+
864
+ ## [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)
865
+
866
+
867
+ ### Features
868
+
869
+ * 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))
870
+
871
+
872
+ ### Dependencies
873
+
874
+ * The following workspace dependencies were updated
875
+ * dependencies
876
+ * @twin.org/rights-management-models bumped from 0.0.3-next.25 to 0.0.3-next.26
877
+ * devDependencies
878
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.25 to 0.0.3-next.26
879
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.25 to 0.0.3-next.26
880
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.25 to 0.0.3-next.26
881
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.25 to 0.0.3-next.26
882
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.25 to 0.0.3-next.26
883
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.25 to 0.0.3-next.26
884
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.25 to 0.0.3-next.26
885
+
886
+ ## [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)
887
+
888
+
889
+ ### Features
890
+
891
+ * update standards packages ([db0740b](https://github.com/iotaledger/twin-rights-management/commit/db0740b1d8925fcb3bf4204641e0dc573af40f2b))
892
+
893
+
894
+ ### Dependencies
895
+
896
+ * The following workspace dependencies were updated
897
+ * dependencies
898
+ * @twin.org/rights-management-models bumped from 0.0.3-next.24 to 0.0.3-next.25
899
+ * devDependencies
900
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.24 to 0.0.3-next.25
901
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.24 to 0.0.3-next.25
902
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.24 to 0.0.3-next.25
903
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.24 to 0.0.3-next.25
904
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.24 to 0.0.3-next.25
905
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.24 to 0.0.3-next.25
906
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.24 to 0.0.3-next.25
907
+
908
+ ## [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)
909
+
910
+
911
+ ### Bug Fixes
912
+
913
+ * 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))
914
+
915
+
916
+ ### Dependencies
917
+
918
+ * The following workspace dependencies were updated
919
+ * dependencies
920
+ * @twin.org/rights-management-models bumped from 0.0.3-next.23 to 0.0.3-next.24
921
+ * devDependencies
922
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.23 to 0.0.3-next.24
923
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.23 to 0.0.3-next.24
924
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.23 to 0.0.3-next.24
925
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.23 to 0.0.3-next.24
926
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.23 to 0.0.3-next.24
927
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.23 to 0.0.3-next.24
928
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.23 to 0.0.3-next.24
929
+
930
+ ## [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)
931
+
932
+
933
+ ### Miscellaneous Chores
934
+
935
+ * **rights-management-plugins:** Synchronize repo versions
936
+
937
+
938
+ ### Dependencies
939
+
940
+ * The following workspace dependencies were updated
941
+ * dependencies
942
+ * @twin.org/rights-management-models bumped from 0.0.3-next.22 to 0.0.3-next.23
943
+ * devDependencies
944
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.22 to 0.0.3-next.23
945
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.22 to 0.0.3-next.23
946
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.22 to 0.0.3-next.23
947
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.22 to 0.0.3-next.23
948
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.22 to 0.0.3-next.23
949
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.22 to 0.0.3-next.23
950
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.22 to 0.0.3-next.23
951
+
952
+ ## [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)
953
+
954
+
955
+ ### Miscellaneous Chores
956
+
957
+ * **rights-management-plugins:** Synchronize repo versions
958
+
959
+
960
+ ### Dependencies
961
+
962
+ * The following workspace dependencies were updated
963
+ * dependencies
964
+ * @twin.org/rights-management-models bumped from 0.0.3-next.21 to 0.0.3-next.22
965
+ * devDependencies
966
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.21 to 0.0.3-next.22
967
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.21 to 0.0.3-next.22
968
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.21 to 0.0.3-next.22
969
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.21 to 0.0.3-next.22
970
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.21 to 0.0.3-next.22
971
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.21 to 0.0.3-next.22
972
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.21 to 0.0.3-next.22
973
+
974
+ ## [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)
975
+
976
+
977
+ ### Features
978
+
979
+ * update to more specific ds odrl types ([c56dc49](https://github.com/iotaledger/twin-rights-management/commit/c56dc4991d4e1e8ca3beb737d2a70dddf6f5cd44))
980
+
981
+
982
+ ### Dependencies
983
+
984
+ * The following workspace dependencies were updated
985
+ * dependencies
986
+ * @twin.org/rights-management-models bumped from 0.0.3-next.20 to 0.0.3-next.21
987
+ * devDependencies
988
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.20 to 0.0.3-next.21
989
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.20 to 0.0.3-next.21
990
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.20 to 0.0.3-next.21
991
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.20 to 0.0.3-next.21
992
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.20 to 0.0.3-next.21
993
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.20 to 0.0.3-next.21
994
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.20 to 0.0.3-next.21
995
+
996
+ ## [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)
997
+
998
+
999
+ ### Miscellaneous Chores
1000
+
1001
+ * **rights-management-plugins:** Synchronize repo versions
1002
+
1003
+
1004
+ ### Dependencies
1005
+
1006
+ * The following workspace dependencies were updated
1007
+ * dependencies
1008
+ * @twin.org/rights-management-models bumped from 0.0.3-next.19 to 0.0.3-next.20
1009
+ * devDependencies
1010
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.19 to 0.0.3-next.20
1011
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.19 to 0.0.3-next.20
1012
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.19 to 0.0.3-next.20
1013
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.19 to 0.0.3-next.20
1014
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.19 to 0.0.3-next.20
1015
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.19 to 0.0.3-next.20
1016
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.19 to 0.0.3-next.20
1017
+
1018
+ ## [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)
1019
+
1020
+
1021
+ ### Miscellaneous Chores
1022
+
1023
+ * **rights-management-plugins:** Synchronize repo versions
1024
+
1025
+
1026
+ ### Dependencies
1027
+
1028
+ * The following workspace dependencies were updated
1029
+ * dependencies
1030
+ * @twin.org/rights-management-models bumped from 0.0.3-next.18 to 0.0.3-next.19
1031
+ * devDependencies
1032
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.18 to 0.0.3-next.19
1033
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.18 to 0.0.3-next.19
1034
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.18 to 0.0.3-next.19
1035
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.18 to 0.0.3-next.19
1036
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.18 to 0.0.3-next.19
1037
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.18 to 0.0.3-next.19
1038
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.18 to 0.0.3-next.19
1039
+
1040
+ ## [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)
1041
+
1042
+
1043
+ ### Miscellaneous Chores
1044
+
1045
+ * **rights-management-plugins:** Synchronize repo versions
1046
+
1047
+
1048
+ ### Dependencies
1049
+
1050
+ * The following workspace dependencies were updated
1051
+ * dependencies
1052
+ * @twin.org/rights-management-models bumped from 0.0.3-next.17 to 0.0.3-next.18
1053
+ * devDependencies
1054
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.17 to 0.0.3-next.18
1055
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.17 to 0.0.3-next.18
1056
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.17 to 0.0.3-next.18
1057
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.17 to 0.0.3-next.18
1058
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.17 to 0.0.3-next.18
1059
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.17 to 0.0.3-next.18
1060
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.17 to 0.0.3-next.18
1061
+
1062
+ ## [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)
1063
+
1064
+
1065
+ ### Features
1066
+
1067
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
1068
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
1069
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
1070
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
1071
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
1072
+ * consistent uid usage ([#83](https://github.com/iotaledger/twin-rights-management/issues/83)) ([bdfb9f9](https://github.com/iotaledger/twin-rights-management/commit/bdfb9f92777cbfdb65b5b7df5660b70d869ed19d))
1073
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
1074
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
1075
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
1076
+
1077
+
1078
+ ### Dependencies
1079
+
1080
+ * The following workspace dependencies were updated
1081
+ * dependencies
1082
+ * @twin.org/rights-management-models bumped from 0.0.3-next.16 to 0.0.3-next.17
1083
+ * devDependencies
1084
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.16 to 0.0.3-next.17
1085
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.16 to 0.0.3-next.17
1086
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.16 to 0.0.3-next.17
1087
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.16 to 0.0.3-next.17
1088
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.16 to 0.0.3-next.17
1089
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.16 to 0.0.3-next.17
1090
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.16 to 0.0.3-next.17
1091
+
1092
+ ## [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)
1093
+
1094
+
1095
+ ### Miscellaneous Chores
1096
+
1097
+ * **rights-management-plugins:** Synchronize repo versions
1098
+
1099
+
1100
+ ### Dependencies
1101
+
1102
+ * The following workspace dependencies were updated
1103
+ * dependencies
1104
+ * @twin.org/rights-management-models bumped from 0.0.3-next.15 to 0.0.3-next.16
1105
+ * devDependencies
1106
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.15 to 0.0.3-next.16
1107
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.15 to 0.0.3-next.16
1108
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.15 to 0.0.3-next.16
1109
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.15 to 0.0.3-next.16
1110
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.15 to 0.0.3-next.16
1111
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.15 to 0.0.3-next.16
1112
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.15 to 0.0.3-next.16
1113
+
1114
+ ## [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)
1115
+
1116
+
1117
+ ### Miscellaneous Chores
1118
+
1119
+ * **rights-management-plugins:** Synchronize repo versions
1120
+
1121
+
1122
+ ### Dependencies
1123
+
1124
+ * The following workspace dependencies were updated
1125
+ * dependencies
1126
+ * @twin.org/rights-management-models bumped from 0.0.3-next.14 to 0.0.3-next.15
1127
+ * devDependencies
1128
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.14 to 0.0.3-next.15
1129
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.14 to 0.0.3-next.15
1130
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.14 to 0.0.3-next.15
1131
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.14 to 0.0.3-next.15
1132
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.14 to 0.0.3-next.15
1133
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.14 to 0.0.3-next.15
1134
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.14 to 0.0.3-next.15
1135
+
1136
+ ## [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)
1137
+
1138
+
1139
+ ### Features
1140
+
1141
+ * add default policy arbiter ([#76](https://github.com/iotaledger/twin-rights-management/issues/76)) ([b62ff9c](https://github.com/iotaledger/twin-rights-management/commit/b62ff9ce1b3400c4a95909da01863af47f430dbf))
1142
+ * policy negotiator callback ([#77](https://github.com/iotaledger/twin-rights-management/issues/77)) ([6566ed0](https://github.com/iotaledger/twin-rights-management/commit/6566ed0e2186b6445f1669f9b2f88a6ce059ab83))
1143
+
1144
+
1145
+ ### Dependencies
1146
+
1147
+ * The following workspace dependencies were updated
1148
+ * dependencies
1149
+ * @twin.org/rights-management-models bumped from 0.0.3-next.13 to 0.0.3-next.14
1150
+ * devDependencies
1151
+ * @twin.org/rights-management-pap-service bumped from 0.0.3-next.13 to 0.0.3-next.14
1152
+ * @twin.org/rights-management-pdp-service bumped from 0.0.3-next.13 to 0.0.3-next.14
1153
+ * @twin.org/rights-management-pep-service bumped from 0.0.3-next.13 to 0.0.3-next.14
1154
+ * @twin.org/rights-management-pip-service bumped from 0.0.3-next.13 to 0.0.3-next.14
1155
+ * @twin.org/rights-management-pmp-service bumped from 0.0.3-next.13 to 0.0.3-next.14
1156
+ * @twin.org/rights-management-pnp-service bumped from 0.0.3-next.13 to 0.0.3-next.14
1157
+ * @twin.org/rights-management-pxp-service bumped from 0.0.3-next.13 to 0.0.3-next.14
1158
+
1159
+ ## [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)
1160
+
1161
+
1162
+ ### Features
1163
+
1164
+ * add default enforcement processor ([#73](https://github.com/iotaledger/twin-rights-management/issues/73)) ([0c64d49](https://github.com/iotaledger/twin-rights-management/commit/0c64d49bab363b3da6d197536a605f7929a7c584))
1165
+
1166
+
1167
+ ### Dependencies
1168
+
1169
+ * The following workspace dependencies were updated
1170
+ * dependencies
1171
+ * @twin.org/rights-management-models bumped from 0.0.3-next.12 to 0.0.3-next.13
1172
+
1173
+ ## [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)
1174
+
1175
+
1176
+ ### Features
1177
+
1178
+ * update processors ([#71](https://github.com/iotaledger/twin-rights-management/issues/71)) ([d6e8c1e](https://github.com/iotaledger/twin-rights-management/commit/d6e8c1e593acb28556674d5180123f220766eb6b))
1179
+
1180
+
1181
+ ### Dependencies
1182
+
1183
+ * The following workspace dependencies were updated
1184
+ * dependencies
1185
+ * @twin.org/rights-management-models bumped from 0.0.3-next.11 to 0.0.3-next.12
1186
+
1187
+ ## [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)
1188
+
1189
+
1190
+ ### Miscellaneous Chores
1191
+
1192
+ * **rights-management-plugins:** Synchronize repo versions
1193
+
1194
+
1195
+ ### Dependencies
1196
+
1197
+ * The following workspace dependencies were updated
1198
+ * dependencies
1199
+ * @twin.org/rights-management-models bumped from 0.0.3-next.10 to 0.0.3-next.11
1200
+
1201
+ ## [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)
1202
+
1203
+
1204
+ ### Features
1205
+
1206
+ * remove data access point ([#67](https://github.com/iotaledger/twin-rights-management/issues/67)) ([8573676](https://github.com/iotaledger/twin-rights-management/commit/8573676862c9f1634a66a0677b225b4de16a89cd))
1207
+
1208
+
1209
+ ### Dependencies
1210
+
1211
+ * The following workspace dependencies were updated
1212
+ * dependencies
1213
+ * @twin.org/rights-management-models bumped from 0.0.3-next.9 to 0.0.3-next.10
1214
+
1215
+ ## [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)
1216
+
1217
+
1218
+ ### Miscellaneous Chores
1219
+
1220
+ * **rights-management-plugins:** Synchronize repo versions
1221
+
1222
+
1223
+ ### Dependencies
1224
+
1225
+ * The following workspace dependencies were updated
1226
+ * dependencies
1227
+ * @twin.org/rights-management-models bumped from 0.0.3-next.8 to 0.0.3-next.9
1228
+
1229
+ ## [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)
4
1230
 
5
1231
 
6
1232
  ### Miscellaneous Chores
@@ -14,7 +1240,7 @@
14
1240
  * dependencies
15
1241
  * @twin.org/rights-management-models bumped from 0.0.3-next.7 to 0.0.3-next.8
16
1242
 
17
- ## [0.0.3-next.7](https://github.com/twinfoundation/rights-management/compare/rights-management-plugins-v0.0.3-next.6...rights-management-plugins-v0.0.3-next.7) (2026-01-14)
1243
+ ## [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)
18
1244
 
19
1245
 
20
1246
  ### Miscellaneous Chores
@@ -28,7 +1254,7 @@
28
1254
  * dependencies
29
1255
  * @twin.org/rights-management-models bumped from 0.0.3-next.6 to 0.0.3-next.7
30
1256
 
31
- ## [0.0.3-next.6](https://github.com/twinfoundation/rights-management/compare/rights-management-plugins-v0.0.3-next.5...rights-management-plugins-v0.0.3-next.6) (2026-01-12)
1257
+ ## [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)
32
1258
 
33
1259
 
34
1260
  ### Miscellaneous Chores
@@ -42,13 +1268,13 @@
42
1268
  * dependencies
43
1269
  * @twin.org/rights-management-models bumped from 0.0.3-next.5 to 0.0.3-next.6
44
1270
 
45
- ## [0.0.3-next.5](https://github.com/twinfoundation/rights-management/compare/rights-management-plugins-v0.0.3-next.4...rights-management-plugins-v0.0.3-next.5) (2026-01-06)
1271
+ ## [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)
46
1272
 
47
1273
 
48
1274
  ### Features
49
1275
 
50
- * add missing dependency ([f7c8e0e](https://github.com/twinfoundation/rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
51
- * add missing dependency ([c62a098](https://github.com/twinfoundation/rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
1276
+ * add missing dependency ([f7c8e0e](https://github.com/iotaledger/twin-rights-management/commit/f7c8e0e4819c945ef823b853139440ad7999b9b9))
1277
+ * add missing dependency ([c62a098](https://github.com/iotaledger/twin-rights-management/commit/c62a0983e912c252ab0c27261c9bb92a63c06f96))
52
1278
 
53
1279
 
54
1280
  ### Dependencies
@@ -57,12 +1283,12 @@
57
1283
  * dependencies
58
1284
  * @twin.org/rights-management-models bumped from 0.0.3-next.4 to 0.0.3-next.5
59
1285
 
60
- ## [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)
1286
+ ## [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)
61
1287
 
62
1288
 
63
1289
  ### Features
64
1290
 
65
- * add factory pattern ([d26b4c0](https://github.com/twinfoundation/rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
1291
+ * add factory pattern ([d26b4c0](https://github.com/iotaledger/twin-rights-management/commit/d26b4c08a2f3ba5758df66a1c48203b8d8e3638e))
66
1292
 
67
1293
 
68
1294
  ### Dependencies
@@ -71,4 +1297,4 @@
71
1297
  * dependencies
72
1298
  * @twin.org/rights-management-models bumped from 0.0.3-next.3 to 0.0.3-next.4
73
1299
 
74
- ## @twin.org/rights-management-plugins - Changelog
1300
+ ## Changelog