@nmshd/consumption 2.0.0-alpha.9 → 2.0.0-beta.3

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 (176) hide show
  1. package/README.md +2 -2
  2. package/dist/buildInformation.js +5 -5
  3. package/dist/consumption/ConsumptionController.d.ts +9 -6
  4. package/dist/consumption/ConsumptionController.js +24 -7
  5. package/dist/consumption/ConsumptionController.js.map +1 -1
  6. package/dist/consumption/ConsumptionControllerName.d.ts +1 -1
  7. package/dist/consumption/ConsumptionControllerName.js +1 -1
  8. package/dist/consumption/ConsumptionControllerName.js.map +1 -1
  9. package/dist/consumption/ConsumptionErrors.d.ts +5 -2
  10. package/dist/consumption/ConsumptionErrors.js +12 -3
  11. package/dist/consumption/ConsumptionErrors.js.map +1 -1
  12. package/dist/consumption/ConsumptionIds.d.ts +2 -2
  13. package/dist/consumption/ConsumptionIds.js +4 -4
  14. package/dist/consumption/ConsumptionIds.js.map +1 -1
  15. package/dist/index.d.ts +1 -1
  16. package/dist/index.js +1 -1
  17. package/dist/index.js.map +1 -1
  18. package/dist/modules/attributes/LocalAttributesController.d.ts +34 -0
  19. package/dist/modules/attributes/LocalAttributesController.js +182 -0
  20. package/dist/modules/attributes/LocalAttributesController.js.map +1 -0
  21. package/dist/modules/attributes/events/AttributeCreatedEvent.d.ts +6 -0
  22. package/dist/modules/attributes/events/AttributeCreatedEvent.js +12 -0
  23. package/dist/modules/attributes/events/AttributeCreatedEvent.js.map +1 -0
  24. package/dist/modules/attributes/events/AttributeDeletedEvent.d.ts +6 -0
  25. package/dist/modules/attributes/events/AttributeDeletedEvent.js +12 -0
  26. package/dist/modules/attributes/events/AttributeDeletedEvent.js.map +1 -0
  27. package/dist/modules/attributes/events/AttributeSucceededEvent.d.ts +6 -0
  28. package/dist/modules/attributes/events/AttributeSucceededEvent.js +12 -0
  29. package/dist/modules/attributes/events/AttributeSucceededEvent.js.map +1 -0
  30. package/dist/modules/attributes/events/AttributeUpdatedEvent.d.ts +6 -0
  31. package/dist/modules/attributes/events/AttributeUpdatedEvent.js +12 -0
  32. package/dist/modules/attributes/events/AttributeUpdatedEvent.js.map +1 -0
  33. package/dist/modules/attributes/events/SharedAttributeCopyCreatedEvent.d.ts +6 -0
  34. package/dist/modules/attributes/events/SharedAttributeCopyCreatedEvent.js +12 -0
  35. package/dist/modules/attributes/events/SharedAttributeCopyCreatedEvent.js.map +1 -0
  36. package/dist/modules/attributes/events/index.d.ts +5 -0
  37. package/dist/modules/attributes/events/index.js +22 -0
  38. package/dist/modules/attributes/events/index.js.map +1 -0
  39. package/dist/modules/attributes/local/CreateLocalAttributeParams.d.ts +12 -0
  40. package/dist/modules/attributes/local/CreateLocalAttributeParams.js +26 -0
  41. package/dist/modules/attributes/local/CreateLocalAttributeParams.js.map +1 -0
  42. package/dist/modules/attributes/local/CreatePeerLocalAttributeParams.d.ts +22 -0
  43. package/dist/modules/attributes/local/CreatePeerLocalAttributeParams.js +42 -0
  44. package/dist/modules/attributes/local/CreatePeerLocalAttributeParams.js.map +1 -0
  45. package/dist/modules/attributes/local/CreateRelationshipAttributeParams.d.ts +14 -0
  46. package/dist/modules/attributes/local/CreateRelationshipAttributeParams.js +40 -0
  47. package/dist/modules/attributes/local/CreateRelationshipAttributeParams.js.map +1 -0
  48. package/dist/modules/attributes/local/CreateSharedLocalAttributeCopyParams.d.ts +21 -0
  49. package/dist/modules/{signatures/SignatureContent.js → attributes/local/CreateSharedLocalAttributeCopyParams.js} +13 -31
  50. package/dist/modules/attributes/local/CreateSharedLocalAttributeCopyParams.js.map +1 -0
  51. package/dist/modules/attributes/local/LocalAttribute.d.ts +30 -0
  52. package/dist/modules/attributes/local/{ConsumptionAttribute.js → LocalAttribute.js} +36 -24
  53. package/dist/modules/attributes/local/LocalAttribute.js.map +1 -0
  54. package/dist/modules/attributes/local/LocalAttributeShareInfo.d.ts +17 -0
  55. package/dist/modules/attributes/local/LocalAttributeShareInfo.js +36 -0
  56. package/dist/modules/attributes/local/LocalAttributeShareInfo.js.map +1 -0
  57. package/dist/modules/attributes/local/QueryTranslator.d.ts +9 -0
  58. package/dist/modules/attributes/local/QueryTranslator.js +125 -0
  59. package/dist/modules/attributes/local/QueryTranslator.js.map +1 -0
  60. package/dist/modules/attributes/local/SucceedLocalAttributeParams.d.ts +16 -0
  61. package/dist/modules/attributes/local/SucceedLocalAttributeParams.js +32 -0
  62. package/dist/modules/attributes/local/SucceedLocalAttributeParams.js.map +1 -0
  63. package/dist/modules/attributes/local/UpdateLocalAttributeParams.d.ts +16 -0
  64. package/dist/modules/attributes/local/UpdateLocalAttributeParams.js +32 -0
  65. package/dist/modules/attributes/local/UpdateLocalAttributeParams.js.map +1 -0
  66. package/dist/modules/drafts/DraftsController.js.map +1 -1
  67. package/dist/modules/index.d.ts +25 -8
  68. package/dist/modules/index.js +24 -8
  69. package/dist/modules/index.js.map +1 -1
  70. package/dist/modules/requests/events/IncomingRequestReceivedEvent.d.ts +6 -0
  71. package/dist/modules/requests/events/IncomingRequestReceivedEvent.js +14 -0
  72. package/dist/modules/requests/events/IncomingRequestReceivedEvent.js.map +1 -0
  73. package/dist/modules/requests/events/IncomingRequestStatusChangedEvent.d.ts +12 -0
  74. package/dist/modules/requests/events/IncomingRequestStatusChangedEvent.js +14 -0
  75. package/dist/modules/requests/events/IncomingRequestStatusChangedEvent.js.map +1 -0
  76. package/dist/modules/requests/events/OutgoingRequestCreatedEvent.d.ts +6 -0
  77. package/dist/modules/requests/events/OutgoingRequestCreatedEvent.js +14 -0
  78. package/dist/modules/requests/events/OutgoingRequestCreatedEvent.js.map +1 -0
  79. package/dist/modules/requests/events/OutgoingRequestFromRelationshipCreationChangeCreatedAndCompletedEvent.d.ts +6 -0
  80. package/dist/modules/requests/events/OutgoingRequestFromRelationshipCreationChangeCreatedAndCompletedEvent.js +14 -0
  81. package/dist/modules/requests/events/OutgoingRequestFromRelationshipCreationChangeCreatedAndCompletedEvent.js.map +1 -0
  82. package/dist/modules/requests/events/OutgoingRequestStatusChangedEvent.d.ts +12 -0
  83. package/dist/modules/requests/events/OutgoingRequestStatusChangedEvent.js +14 -0
  84. package/dist/modules/requests/events/OutgoingRequestStatusChangedEvent.js.map +1 -0
  85. package/dist/modules/requests/events/index.d.ts +5 -0
  86. package/dist/modules/requests/events/index.js +22 -0
  87. package/dist/modules/requests/events/index.js.map +1 -0
  88. package/dist/modules/requests/incoming/DecideRequestParametersValidator.d.ts +3 -3
  89. package/dist/modules/requests/incoming/DecideRequestParametersValidator.js +20 -27
  90. package/dist/modules/requests/incoming/DecideRequestParametersValidator.js.map +1 -1
  91. package/dist/modules/requests/incoming/IncomingRequestsController.d.ts +18 -13
  92. package/dist/modules/requests/incoming/IncomingRequestsController.js +90 -64
  93. package/dist/modules/requests/incoming/IncomingRequestsController.js.map +1 -1
  94. package/dist/modules/requests/itemProcessors/AbstractRequestItemProcessor.d.ts +21 -0
  95. package/dist/modules/requests/itemProcessors/AbstractRequestItemProcessor.js +12 -0
  96. package/dist/modules/requests/itemProcessors/AbstractRequestItemProcessor.js.map +1 -0
  97. package/dist/modules/requests/itemProcessors/GenericRequestItemProcessor.d.ts +13 -11
  98. package/dist/modules/requests/itemProcessors/GenericRequestItemProcessor.js +13 -17
  99. package/dist/modules/requests/itemProcessors/GenericRequestItemProcessor.js.map +1 -1
  100. package/dist/modules/requests/itemProcessors/IRequestItemProcessor.d.ts +14 -9
  101. package/dist/modules/requests/itemProcessors/ProcessorConstructor.d.ts +2 -1
  102. package/dist/modules/requests/itemProcessors/RequestItemProcessorRegistry.d.ts +6 -7
  103. package/dist/modules/requests/itemProcessors/RequestItemProcessorRegistry.js +10 -12
  104. package/dist/modules/requests/itemProcessors/RequestItemProcessorRegistry.js.map +1 -1
  105. package/dist/modules/requests/itemProcessors/ValidationResult.d.ts +7 -7
  106. package/dist/modules/requests/itemProcessors/ValidationResult.js +11 -11
  107. package/dist/modules/requests/itemProcessors/ValidationResult.js.map +1 -1
  108. package/dist/modules/requests/itemProcessors/createAttribute/AcceptCreateAttributeRequestItemParameters.d.ts +7 -0
  109. package/dist/modules/requests/itemProcessors/createAttribute/AcceptCreateAttributeRequestItemParameters.js +20 -0
  110. package/dist/modules/requests/itemProcessors/createAttribute/AcceptCreateAttributeRequestItemParameters.js.map +1 -0
  111. package/dist/modules/requests/itemProcessors/createAttribute/CreateAttributeRequestItemProcessor.d.ts +12 -0
  112. package/dist/modules/requests/itemProcessors/createAttribute/CreateAttributeRequestItemProcessor.js +60 -0
  113. package/dist/modules/requests/itemProcessors/createAttribute/CreateAttributeRequestItemProcessor.js.map +1 -0
  114. package/dist/modules/requests/itemProcessors/proposeAttribute/AcceptProposeAttributeRequestItemParameters.d.ts +20 -0
  115. package/dist/modules/requests/itemProcessors/proposeAttribute/AcceptProposeAttributeRequestItemParameters.js +47 -0
  116. package/dist/modules/requests/itemProcessors/proposeAttribute/AcceptProposeAttributeRequestItemParameters.js.map +1 -0
  117. package/dist/modules/requests/itemProcessors/proposeAttribute/ProposeAttributeRequestItemProcessor.d.ts +16 -0
  118. package/dist/modules/requests/itemProcessors/proposeAttribute/ProposeAttributeRequestItemProcessor.js +110 -0
  119. package/dist/modules/requests/itemProcessors/proposeAttribute/ProposeAttributeRequestItemProcessor.js.map +1 -0
  120. package/dist/modules/requests/itemProcessors/readAttribute/AcceptReadAttributeRequestItemParameters.d.ts +23 -0
  121. package/dist/modules/requests/itemProcessors/readAttribute/AcceptReadAttributeRequestItemParameters.js +54 -0
  122. package/dist/modules/requests/itemProcessors/readAttribute/AcceptReadAttributeRequestItemParameters.js.map +1 -0
  123. package/dist/modules/requests/itemProcessors/readAttribute/ReadAttributeRequestItemProcessor.d.ts +14 -0
  124. package/dist/modules/requests/itemProcessors/readAttribute/ReadAttributeRequestItemProcessor.js +88 -0
  125. package/dist/modules/requests/itemProcessors/readAttribute/ReadAttributeRequestItemProcessor.js.map +1 -0
  126. package/dist/modules/requests/itemProcessors/shareAttribute/AcceptShareAttributeRequestItemParameters.d.ts +7 -0
  127. package/dist/modules/requests/itemProcessors/shareAttribute/AcceptShareAttributeRequestItemParameters.js +20 -0
  128. package/dist/modules/requests/itemProcessors/shareAttribute/AcceptShareAttributeRequestItemParameters.js.map +1 -0
  129. package/dist/modules/requests/itemProcessors/shareAttribute/ShareAttributeRequestItemProcessor.d.ts +15 -0
  130. package/dist/modules/requests/itemProcessors/shareAttribute/ShareAttributeRequestItemProcessor.js +94 -0
  131. package/dist/modules/requests/itemProcessors/shareAttribute/ShareAttributeRequestItemProcessor.js.map +1 -0
  132. package/dist/modules/requests/itemProcessors/utility/validateQuery.d.ts +4 -0
  133. package/dist/modules/requests/itemProcessors/utility/validateQuery.js +21 -0
  134. package/dist/modules/requests/itemProcessors/utility/validateQuery.js.map +1 -0
  135. package/dist/modules/requests/local/LocalRequest.d.ts +37 -0
  136. package/dist/modules/requests/local/{ConsumptionRequest.js → LocalRequest.js} +32 -32
  137. package/dist/modules/requests/local/LocalRequest.js.map +1 -0
  138. package/dist/modules/requests/local/{ConsumptionRequestStatus.d.ts → LocalRequestStatus.d.ts} +1 -1
  139. package/dist/modules/requests/local/LocalRequestStatus.js +13 -0
  140. package/dist/modules/requests/local/LocalRequestStatus.js.map +1 -0
  141. package/dist/modules/requests/local/LocalRequestStatusLogEntry.d.ts +17 -0
  142. package/dist/modules/requests/local/{ConsumptionRequestStatusLogEntry.js → LocalRequestStatusLogEntry.js} +13 -13
  143. package/dist/modules/requests/local/LocalRequestStatusLogEntry.js.map +1 -0
  144. package/dist/modules/requests/local/LocalResponse.d.ts +22 -0
  145. package/dist/modules/requests/local/{ConsumptionResponse.js → LocalResponse.js} +18 -18
  146. package/dist/modules/requests/local/LocalResponse.js.map +1 -0
  147. package/dist/modules/requests/outgoing/OutgoingRequestsController.d.ts +15 -10
  148. package/dist/modules/requests/outgoing/OutgoingRequestsController.js +79 -52
  149. package/dist/modules/requests/outgoing/OutgoingRequestsController.js.map +1 -1
  150. package/dist/modules/settings/SettingsController.js.map +1 -1
  151. package/dist/modules/settings/local/Setting.d.ts +0 -2
  152. package/dist/modules/settings/local/Setting.js +0 -6
  153. package/dist/modules/settings/local/Setting.js.map +1 -1
  154. package/lib-web/nmshd.consumption.js +12522 -3378
  155. package/lib-web/nmshd.consumption.js.map +1 -1
  156. package/lib-web/nmshd.consumption.min.js +1 -1
  157. package/lib-web/nmshd.consumption.min.js.map +1 -1
  158. package/package.json +31 -25
  159. package/dist/modules/attributes/ConsumptionAttributesController.d.ts +0 -22
  160. package/dist/modules/attributes/ConsumptionAttributesController.js +0 -141
  161. package/dist/modules/attributes/ConsumptionAttributesController.js.map +0 -1
  162. package/dist/modules/attributes/local/ConsumptionAttribute.d.ts +0 -19
  163. package/dist/modules/attributes/local/ConsumptionAttribute.js.map +0 -1
  164. package/dist/modules/requests/local/ConsumptionRequest.d.ts +0 -37
  165. package/dist/modules/requests/local/ConsumptionRequest.js.map +0 -1
  166. package/dist/modules/requests/local/ConsumptionRequestStatus.js +0 -13
  167. package/dist/modules/requests/local/ConsumptionRequestStatus.js.map +0 -1
  168. package/dist/modules/requests/local/ConsumptionRequestStatusLogEntry.d.ts +0 -17
  169. package/dist/modules/requests/local/ConsumptionRequestStatusLogEntry.js.map +0 -1
  170. package/dist/modules/requests/local/ConsumptionResponse.d.ts +0 -22
  171. package/dist/modules/requests/local/ConsumptionResponse.js.map +0 -1
  172. package/dist/modules/signatures/Signature.d.ts +0 -16
  173. package/dist/modules/signatures/Signature.js +0 -56
  174. package/dist/modules/signatures/Signature.js.map +0 -1
  175. package/dist/modules/signatures/SignatureContent.d.ts +0 -21
  176. package/dist/modules/signatures/SignatureContent.js.map +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.