@nmshd/consumption 2.0.0-beta.1 → 2.0.0-beta.12

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 (110) hide show
  1. package/dist/buildInformation.js +4 -4
  2. package/dist/consumption/ConsumptionController.js +7 -5
  3. package/dist/consumption/ConsumptionController.js.map +1 -1
  4. package/dist/consumption/ConsumptionErrors.d.ts +11 -0
  5. package/dist/consumption/ConsumptionErrors.js +28 -1
  6. package/dist/consumption/ConsumptionErrors.js.map +1 -1
  7. package/dist/modules/attributes/LocalAttributesController.d.ts +7 -2
  8. package/dist/modules/attributes/LocalAttributesController.js +12 -1
  9. package/dist/modules/attributes/LocalAttributesController.js.map +1 -1
  10. package/dist/modules/attributes/events/AttributeCreatedEvent.d.ts +6 -0
  11. package/dist/modules/attributes/events/AttributeCreatedEvent.js +12 -0
  12. package/dist/modules/attributes/events/AttributeCreatedEvent.js.map +1 -0
  13. package/dist/modules/attributes/events/AttributeDeletedEvent.d.ts +6 -0
  14. package/dist/modules/attributes/events/AttributeDeletedEvent.js +12 -0
  15. package/dist/modules/attributes/events/AttributeDeletedEvent.js.map +1 -0
  16. package/dist/modules/attributes/events/AttributeSucceededEvent.d.ts +6 -0
  17. package/dist/modules/attributes/events/AttributeSucceededEvent.js +12 -0
  18. package/dist/modules/attributes/events/AttributeSucceededEvent.js.map +1 -0
  19. package/dist/modules/attributes/events/AttributeUpdatedEvent.d.ts +6 -0
  20. package/dist/modules/attributes/events/AttributeUpdatedEvent.js +12 -0
  21. package/dist/modules/attributes/events/AttributeUpdatedEvent.js.map +1 -0
  22. package/dist/modules/attributes/events/SharedAttributeCopyCreatedEvent.d.ts +6 -0
  23. package/dist/modules/attributes/events/SharedAttributeCopyCreatedEvent.js +12 -0
  24. package/dist/modules/attributes/events/SharedAttributeCopyCreatedEvent.js.map +1 -0
  25. package/dist/modules/attributes/events/index.d.ts +5 -0
  26. package/dist/modules/attributes/events/index.js +22 -0
  27. package/dist/modules/attributes/events/index.js.map +1 -0
  28. package/dist/modules/attributes/index.d.ts +9 -0
  29. package/dist/modules/attributes/index.js +26 -0
  30. package/dist/modules/attributes/index.js.map +1 -0
  31. package/dist/modules/attributes/local/QueryTranslator.js +0 -5
  32. package/dist/modules/attributes/local/QueryTranslator.js.map +1 -1
  33. package/dist/modules/drafts/index.d.ts +2 -0
  34. package/dist/modules/drafts/index.js +19 -0
  35. package/dist/modules/drafts/index.js.map +1 -0
  36. package/dist/modules/index.d.ts +4 -48
  37. package/dist/modules/index.js +4 -47
  38. package/dist/modules/index.js.map +1 -1
  39. package/dist/modules/requests/events/IncomingRequestReceivedEvent.d.ts +6 -0
  40. package/dist/modules/requests/events/IncomingRequestReceivedEvent.js +14 -0
  41. package/dist/modules/requests/events/IncomingRequestReceivedEvent.js.map +1 -0
  42. package/dist/modules/requests/events/IncomingRequestStatusChangedEvent.d.ts +12 -0
  43. package/dist/modules/requests/events/IncomingRequestStatusChangedEvent.js +14 -0
  44. package/dist/modules/requests/events/IncomingRequestStatusChangedEvent.js.map +1 -0
  45. package/dist/modules/requests/events/OutgoingRequestCreatedEvent.d.ts +6 -0
  46. package/dist/modules/requests/events/OutgoingRequestCreatedEvent.js +14 -0
  47. package/dist/modules/requests/events/OutgoingRequestCreatedEvent.js.map +1 -0
  48. package/dist/modules/requests/events/OutgoingRequestFromRelationshipCreationChangeCreatedAndCompletedEvent.d.ts +6 -0
  49. package/dist/modules/requests/events/OutgoingRequestFromRelationshipCreationChangeCreatedAndCompletedEvent.js +14 -0
  50. package/dist/modules/requests/events/OutgoingRequestFromRelationshipCreationChangeCreatedAndCompletedEvent.js.map +1 -0
  51. package/dist/modules/requests/events/OutgoingRequestStatusChangedEvent.d.ts +12 -0
  52. package/dist/modules/requests/events/OutgoingRequestStatusChangedEvent.js +14 -0
  53. package/dist/modules/requests/events/OutgoingRequestStatusChangedEvent.js.map +1 -0
  54. package/dist/modules/requests/events/index.d.ts +5 -0
  55. package/dist/modules/requests/events/index.js +22 -0
  56. package/dist/modules/requests/events/index.js.map +1 -0
  57. package/dist/modules/requests/incoming/DecideRequestParametersValidator.d.ts +0 -1
  58. package/dist/modules/requests/incoming/DecideRequestParametersValidator.js +10 -13
  59. package/dist/modules/requests/incoming/DecideRequestParametersValidator.js.map +1 -1
  60. package/dist/modules/requests/incoming/IncomingRequestsController.d.ts +8 -3
  61. package/dist/modules/requests/incoming/IncomingRequestsController.js +55 -30
  62. package/dist/modules/requests/incoming/IncomingRequestsController.js.map +1 -1
  63. package/dist/modules/requests/incoming/complete/CompleteIncomingRequestParameters.d.ts +2 -2
  64. package/dist/modules/requests/incoming/complete/CompleteIncomingRequestParameters.js +1 -1
  65. package/dist/modules/requests/incoming/complete/CompleteIncomingRequestParameters.js.map +1 -1
  66. package/dist/modules/requests/index.d.ts +37 -0
  67. package/dist/modules/requests/index.js +53 -0
  68. package/dist/modules/requests/index.js.map +1 -0
  69. package/dist/modules/requests/itemProcessors/GenericRequestItemProcessor.d.ts +1 -1
  70. package/dist/modules/requests/itemProcessors/GenericRequestItemProcessor.js.map +1 -1
  71. package/dist/modules/requests/itemProcessors/IRequestItemProcessor.d.ts +1 -1
  72. package/dist/modules/requests/itemProcessors/createRelationshipAttribute/AcceptCreateRelationshipAttributeRequestItemParameters.d.ts +7 -0
  73. package/dist/modules/requests/itemProcessors/{createAttribute/AcceptCreateAttributeRequestItemParameters.js → createRelationshipAttribute/AcceptCreateRelationshipAttributeRequestItemParameters.js} +7 -7
  74. package/dist/modules/requests/itemProcessors/createRelationshipAttribute/AcceptCreateRelationshipAttributeRequestItemParameters.js.map +1 -0
  75. package/dist/modules/requests/itemProcessors/createRelationshipAttribute/CreateRelationshipAttributeRequestItemProcessor.d.ts +11 -0
  76. package/dist/modules/requests/itemProcessors/createRelationshipAttribute/CreateRelationshipAttributeRequestItemProcessor.js +44 -0
  77. package/dist/modules/requests/itemProcessors/createRelationshipAttribute/CreateRelationshipAttributeRequestItemProcessor.js.map +1 -0
  78. package/dist/modules/requests/itemProcessors/proposeAttribute/ProposeAttributeRequestItemProcessor.d.ts +1 -1
  79. package/dist/modules/requests/itemProcessors/proposeAttribute/ProposeAttributeRequestItemProcessor.js +2 -2
  80. package/dist/modules/requests/itemProcessors/proposeAttribute/ProposeAttributeRequestItemProcessor.js.map +1 -1
  81. package/dist/modules/requests/itemProcessors/readAttribute/ReadAttributeRequestItemProcessor.d.ts +1 -1
  82. package/dist/modules/requests/itemProcessors/readAttribute/ReadAttributeRequestItemProcessor.js +2 -1
  83. package/dist/modules/requests/itemProcessors/readAttribute/ReadAttributeRequestItemProcessor.js.map +1 -1
  84. package/dist/modules/requests/itemProcessors/shareAttribute/ShareAttributeRequestItemProcessor.d.ts +6 -8
  85. package/dist/modules/requests/itemProcessors/shareAttribute/ShareAttributeRequestItemProcessor.js +34 -72
  86. package/dist/modules/requests/itemProcessors/shareAttribute/ShareAttributeRequestItemProcessor.js.map +1 -1
  87. package/dist/modules/requests/itemProcessors/utility/validateQuery.d.ts +1 -1
  88. package/dist/modules/requests/itemProcessors/utility/validateQuery.js.map +1 -1
  89. package/dist/modules/requests/outgoing/OutgoingRequestsController.d.ts +10 -4
  90. package/dist/modules/requests/outgoing/OutgoingRequestsController.js +34 -16
  91. package/dist/modules/requests/outgoing/OutgoingRequestsController.js.map +1 -1
  92. package/dist/modules/requests/outgoing/createOutgoingRequest/CanCreateOutgoingRequestParameters.d.ts +13 -0
  93. package/dist/modules/requests/outgoing/createOutgoingRequest/CanCreateOutgoingRequestParameters.js +35 -0
  94. package/dist/modules/requests/outgoing/createOutgoingRequest/CanCreateOutgoingRequestParameters.js.map +1 -0
  95. package/dist/modules/settings/index.d.ts +3 -0
  96. package/dist/modules/settings/index.js +20 -0
  97. package/dist/modules/settings/index.js.map +1 -0
  98. package/dist/modules/settings/local/Setting.d.ts +0 -2
  99. package/dist/modules/settings/local/Setting.js +0 -6
  100. package/dist/modules/settings/local/Setting.js.map +1 -1
  101. package/lib-web/nmshd.consumption.js +3590 -4099
  102. package/lib-web/nmshd.consumption.js.map +1 -1
  103. package/lib-web/nmshd.consumption.min.js +1 -1
  104. package/lib-web/nmshd.consumption.min.js.map +1 -1
  105. package/package.json +20 -18
  106. package/dist/modules/requests/itemProcessors/createAttribute/AcceptCreateAttributeRequestItemParameters.d.ts +0 -7
  107. package/dist/modules/requests/itemProcessors/createAttribute/AcceptCreateAttributeRequestItemParameters.js.map +0 -1
  108. package/dist/modules/requests/itemProcessors/createAttribute/CreateAttributeRequestItemProcessor.d.ts +0 -13
  109. package/dist/modules/requests/itemProcessors/createAttribute/CreateAttributeRequestItemProcessor.js +0 -71
  110. package/dist/modules/requests/itemProcessors/createAttribute/CreateAttributeRequestItemProcessor.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.