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

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