@nmshd/runtime 7.0.0-openid4vc.6 → 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +659 -3
- package/README.md +1 -1
- package/dist/Runtime.d.ts.map +1 -1
- package/dist/Runtime.js +0 -3
- package/dist/Runtime.js.map +1 -1
- package/dist/buildInformation.js +5 -5
- package/dist/dataViews/DataViewExpander.d.ts +5 -3
- package/dist/dataViews/DataViewExpander.d.ts.map +1 -1
- package/dist/dataViews/DataViewExpander.js +163 -174
- package/dist/dataViews/DataViewExpander.js.map +1 -1
- package/dist/dataViews/consumption/LocalAttributeDVO.d.ts +37 -46
- package/dist/dataViews/consumption/LocalAttributeDVO.d.ts.map +1 -1
- package/dist/dataViews/content/RequestItemDVOs.d.ts +1 -2
- package/dist/dataViews/content/RequestItemDVOs.d.ts.map +1 -1
- package/dist/dataViews/content/ResponseItemDVOs.d.ts +4 -10
- package/dist/dataViews/content/ResponseItemDVOs.d.ts.map +1 -1
- package/dist/events/EventProxy.d.ts.map +1 -1
- package/dist/events/EventProxy.js +10 -29
- package/dist/events/EventProxy.js.map +1 -1
- package/dist/events/consumption/AttributeForwardingDetailsChangedEvent.d.ts +7 -0
- package/dist/events/consumption/AttributeForwardingDetailsChangedEvent.d.ts.map +1 -0
- package/dist/events/consumption/AttributeForwardingDetailsChangedEvent.js +12 -0
- package/dist/events/consumption/AttributeForwardingDetailsChangedEvent.js.map +1 -0
- package/dist/events/consumption/AttributeSucceededEvent.d.ts +11 -0
- package/dist/events/consumption/AttributeSucceededEvent.d.ts.map +1 -0
- package/dist/events/consumption/AttributeSucceededEvent.js +12 -0
- package/dist/events/consumption/AttributeSucceededEvent.js.map +1 -0
- package/dist/events/consumption/ForwardedAttributeDeletedByPeerEvent.d.ts +7 -0
- package/dist/events/consumption/ForwardedAttributeDeletedByPeerEvent.d.ts.map +1 -0
- package/dist/events/consumption/ForwardedAttributeDeletedByPeerEvent.js +12 -0
- package/dist/events/consumption/ForwardedAttributeDeletedByPeerEvent.js.map +1 -0
- package/dist/events/consumption/OwnAttributeDeletedByOwnerEvent.d.ts +7 -0
- package/dist/events/consumption/OwnAttributeDeletedByOwnerEvent.d.ts.map +1 -0
- package/dist/events/consumption/OwnAttributeDeletedByOwnerEvent.js +12 -0
- package/dist/events/consumption/OwnAttributeDeletedByOwnerEvent.js.map +1 -0
- package/dist/events/consumption/PeerRelationshipAttributeDeletedByPeerEvent.d.ts +7 -0
- package/dist/events/consumption/PeerRelationshipAttributeDeletedByPeerEvent.d.ts.map +1 -0
- package/dist/events/consumption/PeerRelationshipAttributeDeletedByPeerEvent.js +12 -0
- package/dist/events/consumption/PeerRelationshipAttributeDeletedByPeerEvent.js.map +1 -0
- package/dist/events/consumption/index.d.ts +5 -9
- package/dist/events/consumption/index.d.ts.map +1 -1
- package/dist/events/consumption/index.js +5 -9
- package/dist/events/consumption/index.js.map +1 -1
- package/dist/extensibility/ConsumptionServices.d.ts +2 -3
- package/dist/extensibility/ConsumptionServices.d.ts.map +1 -1
- package/dist/extensibility/ConsumptionServices.js +2 -5
- package/dist/extensibility/ConsumptionServices.js.map +1 -1
- package/dist/extensibility/facades/consumption/AttributesFacade.d.ts +27 -31
- package/dist/extensibility/facades/consumption/AttributesFacade.d.ts.map +1 -1
- package/dist/extensibility/facades/consumption/AttributesFacade.js +51 -63
- package/dist/extensibility/facades/consumption/AttributesFacade.js.map +1 -1
- package/dist/extensibility/facades/consumption/index.d.ts +0 -1
- package/dist/extensibility/facades/consumption/index.d.ts.map +1 -1
- package/dist/extensibility/facades/consumption/index.js +0 -1
- package/dist/extensibility/facades/consumption/index.js.map +1 -1
- package/dist/useCases/common/RuntimeErrors.d.ts +8 -11
- package/dist/useCases/common/RuntimeErrors.d.ts.map +1 -1
- package/dist/useCases/common/RuntimeErrors.js +16 -25
- package/dist/useCases/common/RuntimeErrors.js.map +1 -1
- package/dist/useCases/common/Schemas.d.ts +13 -38
- package/dist/useCases/common/Schemas.d.ts.map +1 -1
- package/dist/useCases/common/Schemas.js +9981 -13789
- package/dist/useCases/common/Schemas.js.map +1 -1
- package/dist/useCases/consumption/attributes/AttributeMapper.d.ts +3 -2
- package/dist/useCases/consumption/attributes/AttributeMapper.d.ts.map +1 -1
- package/dist/useCases/consumption/attributes/AttributeMapper.js +27 -5
- package/dist/useCases/consumption/attributes/AttributeMapper.js.map +1 -1
- package/dist/useCases/consumption/attributes/CanCreateOwnIdentityAttribute.d.ts +37 -0
- package/dist/useCases/consumption/attributes/CanCreateOwnIdentityAttribute.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/{CanCreateRepositoryAttribute.js → CanCreateOwnIdentityAttribute.js} +20 -10
- package/dist/useCases/consumption/attributes/CanCreateOwnIdentityAttribute.js.map +1 -0
- package/dist/useCases/consumption/attributes/{ChangeDefaultRepositoryAttribute.d.ts → ChangeDefaultOwnIdentityAttribute.d.ts} +5 -5
- package/dist/useCases/consumption/attributes/ChangeDefaultOwnIdentityAttribute.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/{ChangeDefaultRepositoryAttribute.js → ChangeDefaultOwnIdentityAttribute.js} +13 -13
- package/dist/useCases/consumption/attributes/ChangeDefaultOwnIdentityAttribute.js.map +1 -0
- package/dist/useCases/consumption/attributes/CreateOwnIdentityAttribute.d.ts +30 -0
- package/dist/useCases/consumption/attributes/CreateOwnIdentityAttribute.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/{CreateRepositoryAttribute.js → CreateOwnIdentityAttribute.js} +15 -16
- package/dist/useCases/consumption/attributes/CreateOwnIdentityAttribute.js.map +1 -0
- package/dist/useCases/consumption/attributes/DeleteAttributeAndNotify.d.ts +33 -0
- package/dist/useCases/consumption/attributes/DeleteAttributeAndNotify.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/DeleteAttributeAndNotify.js +198 -0
- package/dist/useCases/consumption/attributes/DeleteAttributeAndNotify.js.map +1 -0
- package/dist/useCases/consumption/attributes/DeleteSharedAttributesForRejectedOrRevokedRelationship.d.ts.map +1 -1
- package/dist/useCases/consumption/attributes/DeleteSharedAttributesForRejectedOrRevokedRelationship.js +8 -2
- package/dist/useCases/consumption/attributes/DeleteSharedAttributesForRejectedOrRevokedRelationship.js.map +1 -1
- package/dist/useCases/consumption/attributes/GetAttributes.d.ts +5 -8
- package/dist/useCases/consumption/attributes/GetAttributes.d.ts.map +1 -1
- package/dist/useCases/consumption/attributes/GetAttributes.js +9 -18
- package/dist/useCases/consumption/attributes/GetAttributes.js.map +1 -1
- package/dist/useCases/consumption/attributes/GetForwardingDetailsForAttribute.d.ts +28 -0
- package/dist/useCases/consumption/attributes/GetForwardingDetailsForAttribute.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/GetForwardingDetailsForAttribute.js +77 -0
- package/dist/useCases/consumption/attributes/GetForwardingDetailsForAttribute.js.map +1 -0
- package/dist/useCases/consumption/attributes/{GetPeerSharedAttributes.d.ts → GetOwnAttributesSharedWithPeer.d.ts} +10 -11
- package/dist/useCases/consumption/attributes/GetOwnAttributesSharedWithPeer.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/{GetOwnSharedAttributes.js → GetOwnAttributesSharedWithPeer.js} +11 -18
- package/dist/useCases/consumption/attributes/GetOwnAttributesSharedWithPeer.js.map +1 -0
- package/dist/useCases/consumption/attributes/{GetRepositoryAttributes.d.ts → GetOwnIdentityAttributes.d.ts} +9 -9
- package/dist/useCases/consumption/attributes/GetOwnIdentityAttributes.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/{GetRepositoryAttributes.js → GetOwnIdentityAttributes.js} +8 -8
- package/dist/useCases/consumption/attributes/GetOwnIdentityAttributes.js.map +1 -0
- package/dist/useCases/consumption/attributes/GetPeerAttributes.d.ts +39 -0
- package/dist/useCases/consumption/attributes/GetPeerAttributes.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/{GetPeerSharedAttributes.js → GetPeerAttributes.js} +10 -10
- package/dist/useCases/consumption/attributes/GetPeerAttributes.js.map +1 -0
- package/dist/useCases/consumption/attributes/GetVersionsOfAttribute.js +1 -1
- package/dist/useCases/consumption/attributes/GetVersionsOfAttribute.js.map +1 -1
- package/dist/useCases/consumption/attributes/GetVersionsOfAttributeSharedWithPeer.d.ts +22 -0
- package/dist/useCases/consumption/attributes/GetVersionsOfAttributeSharedWithPeer.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/{GetSharedVersionsOfAttribute.js → GetVersionsOfAttributeSharedWithPeer.js} +14 -20
- package/dist/useCases/consumption/attributes/GetVersionsOfAttributeSharedWithPeer.js.map +1 -0
- package/dist/useCases/consumption/attributes/{NotifyPeerAboutRepositoryAttributeSuccession.d.ts → NotifyPeerAboutOwnIdentityAttributeSuccession.d.ts} +9 -9
- package/dist/useCases/consumption/attributes/NotifyPeerAboutOwnIdentityAttributeSuccession.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/NotifyPeerAboutOwnIdentityAttributeSuccession.js +95 -0
- package/dist/useCases/consumption/attributes/NotifyPeerAboutOwnIdentityAttributeSuccession.js.map +1 -0
- package/dist/useCases/consumption/attributes/{ShareRepositoryAttribute.d.ts → ShareOwnIdentityAttribute.d.ts} +5 -5
- package/dist/useCases/consumption/attributes/ShareOwnIdentityAttribute.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/{ShareRepositoryAttribute.js → ShareOwnIdentityAttribute.js} +14 -15
- package/dist/useCases/consumption/attributes/ShareOwnIdentityAttribute.js.map +1 -0
- package/dist/useCases/consumption/attributes/{SucceedRepositoryAttribute.d.ts → SucceedOwnIdentityAttribute.d.ts} +6 -6
- package/dist/useCases/consumption/attributes/SucceedOwnIdentityAttribute.d.ts.map +1 -0
- package/dist/useCases/consumption/attributes/{SucceedRepositoryAttribute.js → SucceedOwnIdentityAttribute.js} +13 -14
- package/dist/useCases/consumption/attributes/SucceedOwnIdentityAttribute.js.map +1 -0
- package/dist/useCases/consumption/attributes/SucceedRelationshipAttributeAndNotifyPeer.d.ts.map +1 -1
- package/dist/useCases/consumption/attributes/SucceedRelationshipAttributeAndNotifyPeer.js +13 -16
- package/dist/useCases/consumption/attributes/SucceedRelationshipAttributeAndNotifyPeer.js.map +1 -1
- package/dist/useCases/consumption/attributes/index.d.ts +12 -14
- package/dist/useCases/consumption/attributes/index.d.ts.map +1 -1
- package/dist/useCases/consumption/attributes/index.js +12 -14
- package/dist/useCases/consumption/attributes/index.js.map +1 -1
- package/dist/useCases/consumption/index.d.ts +0 -1
- package/dist/useCases/consumption/index.d.ts.map +1 -1
- package/dist/useCases/consumption/index.js +0 -1
- package/dist/useCases/consumption/index.js.map +1 -1
- package/dist/useCases/transport/relationships/GetAttributesForRelationship.d.ts.map +1 -1
- package/dist/useCases/transport/relationships/GetAttributesForRelationship.js +1 -8
- package/dist/useCases/transport/relationships/GetAttributesForRelationship.js.map +1 -1
- package/package.json +8 -11
- package/dist/events/consumption/OwnSharedAttributeDeletedByOwnerEvent.d.ts +0 -7
- package/dist/events/consumption/OwnSharedAttributeDeletedByOwnerEvent.d.ts.map +0 -1
- package/dist/events/consumption/OwnSharedAttributeDeletedByOwnerEvent.js +0 -12
- package/dist/events/consumption/OwnSharedAttributeDeletedByOwnerEvent.js.map +0 -1
- package/dist/events/consumption/OwnSharedAttributeSucceededEvent.d.ts +0 -7
- package/dist/events/consumption/OwnSharedAttributeSucceededEvent.d.ts.map +0 -1
- package/dist/events/consumption/OwnSharedAttributeSucceededEvent.js +0 -12
- package/dist/events/consumption/OwnSharedAttributeSucceededEvent.js.map +0 -1
- package/dist/events/consumption/PeerSharedAttributeDeletedByPeerEvent.d.ts +0 -7
- package/dist/events/consumption/PeerSharedAttributeDeletedByPeerEvent.d.ts.map +0 -1
- package/dist/events/consumption/PeerSharedAttributeDeletedByPeerEvent.js +0 -12
- package/dist/events/consumption/PeerSharedAttributeDeletedByPeerEvent.js.map +0 -1
- package/dist/events/consumption/PeerSharedAttributeSucceededEvent.d.ts +0 -7
- package/dist/events/consumption/PeerSharedAttributeSucceededEvent.d.ts.map +0 -1
- package/dist/events/consumption/PeerSharedAttributeSucceededEvent.js +0 -12
- package/dist/events/consumption/PeerSharedAttributeSucceededEvent.js.map +0 -1
- package/dist/events/consumption/RepositoryAttributeSucceededEvent.d.ts +0 -7
- package/dist/events/consumption/RepositoryAttributeSucceededEvent.d.ts.map +0 -1
- package/dist/events/consumption/RepositoryAttributeSucceededEvent.js +0 -12
- package/dist/events/consumption/RepositoryAttributeSucceededEvent.js.map +0 -1
- package/dist/events/consumption/SuccessionEventData.d.ts +0 -6
- package/dist/events/consumption/SuccessionEventData.d.ts.map +0 -1
- package/dist/events/consumption/SuccessionEventData.js +0 -3
- package/dist/events/consumption/SuccessionEventData.js.map +0 -1
- package/dist/events/consumption/ThirdPartyOwnedRelationshipAttributeSucceededEvent.d.ts +0 -7
- package/dist/events/consumption/ThirdPartyOwnedRelationshipAttributeSucceededEvent.d.ts.map +0 -1
- package/dist/events/consumption/ThirdPartyOwnedRelationshipAttributeSucceededEvent.js +0 -12
- package/dist/events/consumption/ThirdPartyOwnedRelationshipAttributeSucceededEvent.js.map +0 -1
- package/dist/events/consumption/ThirdPartyRelationshipAttributeDeletedByPeerEvent.d.ts +0 -7
- package/dist/events/consumption/ThirdPartyRelationshipAttributeDeletedByPeerEvent.d.ts.map +0 -1
- package/dist/events/consumption/ThirdPartyRelationshipAttributeDeletedByPeerEvent.js +0 -12
- package/dist/events/consumption/ThirdPartyRelationshipAttributeDeletedByPeerEvent.js.map +0 -1
- package/dist/events/consumption/ThirdPartyRelationshipAttributeSucceededEvent.d.ts +0 -7
- package/dist/events/consumption/ThirdPartyRelationshipAttributeSucceededEvent.d.ts.map +0 -1
- package/dist/events/consumption/ThirdPartyRelationshipAttributeSucceededEvent.js +0 -12
- package/dist/events/consumption/ThirdPartyRelationshipAttributeSucceededEvent.js.map +0 -1
- package/dist/extensibility/facades/consumption/OpenId4VcFacade.d.ts +0 -20
- package/dist/extensibility/facades/consumption/OpenId4VcFacade.d.ts.map +0 -1
- package/dist/extensibility/facades/consumption/OpenId4VcFacade.js +0 -64
- package/dist/extensibility/facades/consumption/OpenId4VcFacade.js.map +0 -1
- package/dist/useCases/consumption/attributes/CanCreateRepositoryAttribute.d.ts +0 -37
- package/dist/useCases/consumption/attributes/CanCreateRepositoryAttribute.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/CanCreateRepositoryAttribute.js.map +0 -1
- package/dist/useCases/consumption/attributes/ChangeDefaultRepositoryAttribute.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/ChangeDefaultRepositoryAttribute.js.map +0 -1
- package/dist/useCases/consumption/attributes/CreateRepositoryAttribute.d.ts +0 -30
- package/dist/useCases/consumption/attributes/CreateRepositoryAttribute.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/CreateRepositoryAttribute.js.map +0 -1
- package/dist/useCases/consumption/attributes/DeleteOwnSharedAttributeAndNotifyPeer.d.ts +0 -23
- package/dist/useCases/consumption/attributes/DeleteOwnSharedAttributeAndNotifyPeer.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/DeleteOwnSharedAttributeAndNotifyPeer.js +0 -89
- package/dist/useCases/consumption/attributes/DeleteOwnSharedAttributeAndNotifyPeer.js.map +0 -1
- package/dist/useCases/consumption/attributes/DeletePeerSharedAttributeAndNotifyOwner.d.ts +0 -23
- package/dist/useCases/consumption/attributes/DeletePeerSharedAttributeAndNotifyOwner.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/DeletePeerSharedAttributeAndNotifyOwner.js +0 -90
- package/dist/useCases/consumption/attributes/DeletePeerSharedAttributeAndNotifyOwner.js.map +0 -1
- package/dist/useCases/consumption/attributes/DeleteRepositoryAttribute.d.ts +0 -18
- package/dist/useCases/consumption/attributes/DeleteRepositoryAttribute.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/DeleteRepositoryAttribute.js +0 -65
- package/dist/useCases/consumption/attributes/DeleteRepositoryAttribute.js.map +0 -1
- package/dist/useCases/consumption/attributes/DeleteThirdPartyRelationshipAttributeAndNotifyPeer.d.ts +0 -23
- package/dist/useCases/consumption/attributes/DeleteThirdPartyRelationshipAttributeAndNotifyPeer.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/DeleteThirdPartyRelationshipAttributeAndNotifyPeer.js +0 -88
- package/dist/useCases/consumption/attributes/DeleteThirdPartyRelationshipAttributeAndNotifyPeer.js.map +0 -1
- package/dist/useCases/consumption/attributes/GetOwnSharedAttributes.d.ts +0 -43
- package/dist/useCases/consumption/attributes/GetOwnSharedAttributes.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/GetOwnSharedAttributes.js.map +0 -1
- package/dist/useCases/consumption/attributes/GetPeerSharedAttributes.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/GetPeerSharedAttributes.js.map +0 -1
- package/dist/useCases/consumption/attributes/GetRepositoryAttributes.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/GetRepositoryAttributes.js.map +0 -1
- package/dist/useCases/consumption/attributes/GetSharedVersionsOfAttribute.d.ts +0 -24
- package/dist/useCases/consumption/attributes/GetSharedVersionsOfAttribute.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/GetSharedVersionsOfAttribute.js.map +0 -1
- package/dist/useCases/consumption/attributes/NotifyPeerAboutRepositoryAttributeSuccession.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/NotifyPeerAboutRepositoryAttributeSuccession.js +0 -105
- package/dist/useCases/consumption/attributes/NotifyPeerAboutRepositoryAttributeSuccession.js.map +0 -1
- package/dist/useCases/consumption/attributes/ShareRepositoryAttribute.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/ShareRepositoryAttribute.js.map +0 -1
- package/dist/useCases/consumption/attributes/SucceedRepositoryAttribute.d.ts.map +0 -1
- package/dist/useCases/consumption/attributes/SucceedRepositoryAttribute.js.map +0 -1
- package/dist/useCases/consumption/openid4vc/AcceptProofRequestUseCase.d.ts +0 -17
- package/dist/useCases/consumption/openid4vc/AcceptProofRequestUseCase.d.ts.map +0 -1
- package/dist/useCases/consumption/openid4vc/AcceptProofRequestUseCase.js +0 -46
- package/dist/useCases/consumption/openid4vc/AcceptProofRequestUseCase.js.map +0 -1
- package/dist/useCases/consumption/openid4vc/FetchCredentialOfferUseCase.d.ts +0 -17
- package/dist/useCases/consumption/openid4vc/FetchCredentialOfferUseCase.d.ts.map +0 -1
- package/dist/useCases/consumption/openid4vc/FetchCredentialOfferUseCase.js +0 -46
- package/dist/useCases/consumption/openid4vc/FetchCredentialOfferUseCase.js.map +0 -1
- package/dist/useCases/consumption/openid4vc/FetchProofRequestUseCase.d.ts +0 -17
- package/dist/useCases/consumption/openid4vc/FetchProofRequestUseCase.d.ts.map +0 -1
- package/dist/useCases/consumption/openid4vc/FetchProofRequestUseCase.js +0 -46
- package/dist/useCases/consumption/openid4vc/FetchProofRequestUseCase.js.map +0 -1
- package/dist/useCases/consumption/openid4vc/GetVerifiableCredentialsUseCase.d.ts +0 -17
- package/dist/useCases/consumption/openid4vc/GetVerifiableCredentialsUseCase.d.ts.map +0 -1
- package/dist/useCases/consumption/openid4vc/GetVerifiableCredentialsUseCase.js +0 -48
- package/dist/useCases/consumption/openid4vc/GetVerifiableCredentialsUseCase.js.map +0 -1
- package/dist/useCases/consumption/openid4vc/ResolveCredentialOfferUseCase.d.ts +0 -17
- package/dist/useCases/consumption/openid4vc/ResolveCredentialOfferUseCase.d.ts.map +0 -1
- package/dist/useCases/consumption/openid4vc/ResolveCredentialOfferUseCase.js +0 -46
- package/dist/useCases/consumption/openid4vc/ResolveCredentialOfferUseCase.js.map +0 -1
- package/dist/useCases/consumption/openid4vc/ResolveFetchedCredentialUseCase.d.ts +0 -19
- package/dist/useCases/consumption/openid4vc/ResolveFetchedCredentialUseCase.d.ts.map +0 -1
- package/dist/useCases/consumption/openid4vc/ResolveFetchedCredentialUseCase.js +0 -51
- package/dist/useCases/consumption/openid4vc/ResolveFetchedCredentialUseCase.js.map +0 -1
- package/dist/useCases/consumption/openid4vc/index.d.ts +0 -6
- package/dist/useCases/consumption/openid4vc/index.d.ts.map +0 -1
- package/dist/useCases/consumption/openid4vc/index.js +0 -22
- package/dist/useCases/consumption/openid4vc/index.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AttributeForwardingDetailsChangedEvent.js","sourceRoot":"","sources":["../../../src/events/consumption/AttributeForwardingDetailsChangedEvent.ts"],"names":[],"mappings":";;;AACA,4CAAyC;AAEzC,MAAa,sCAAuC,SAAQ,qBAA4B;aAC7D,cAAS,GAAG,+CAA+C,CAAC;IAEnF,YAAmB,kBAA0B,EAAE,IAAuB;QAClE,KAAK,CAAC,sCAAsC,CAAC,SAAS,EAAE,kBAAkB,EAAE,IAAI,CAAC,CAAC;IACtF,CAAC;;AALL,wFAMC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { LocalAttributeDTO } from "@nmshd/runtime-types";
|
|
2
|
+
import { DataEvent } from "../DataEvent";
|
|
3
|
+
export interface AttributeSucceededEventData {
|
|
4
|
+
predecessor: LocalAttributeDTO;
|
|
5
|
+
successor: LocalAttributeDTO;
|
|
6
|
+
}
|
|
7
|
+
export declare class AttributeSucceededEvent extends DataEvent<AttributeSucceededEventData> {
|
|
8
|
+
static readonly namespace = "consumption.attributeSucceeded";
|
|
9
|
+
constructor(eventTargetAddress: string, data: AttributeSucceededEventData);
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=AttributeSucceededEvent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AttributeSucceededEvent.d.ts","sourceRoot":"","sources":["../../../src/events/consumption/AttributeSucceededEvent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,MAAM,WAAW,2BAA2B;IACxC,WAAW,EAAE,iBAAiB,CAAC;IAC/B,SAAS,EAAE,iBAAiB,CAAC;CAChC;AAED,qBAAa,uBAAwB,SAAQ,SAAS,CAAC,2BAA2B,CAAC;IAC/E,gBAAuB,SAAS,oCAAoC;gBAEjD,kBAAkB,EAAE,MAAM,EAAE,IAAI,EAAE,2BAA2B;CAGnF"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AttributeSucceededEvent = void 0;
|
|
4
|
+
const DataEvent_1 = require("../DataEvent");
|
|
5
|
+
class AttributeSucceededEvent extends DataEvent_1.DataEvent {
|
|
6
|
+
static { this.namespace = "consumption.attributeSucceeded"; }
|
|
7
|
+
constructor(eventTargetAddress, data) {
|
|
8
|
+
super(AttributeSucceededEvent.namespace, eventTargetAddress, data);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.AttributeSucceededEvent = AttributeSucceededEvent;
|
|
12
|
+
//# sourceMappingURL=AttributeSucceededEvent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AttributeSucceededEvent.js","sourceRoot":"","sources":["../../../src/events/consumption/AttributeSucceededEvent.ts"],"names":[],"mappings":";;;AACA,4CAAyC;AAOzC,MAAa,uBAAwB,SAAQ,qBAAsC;aACxD,cAAS,GAAG,gCAAgC,CAAC;IAEpE,YAAmB,kBAA0B,EAAE,IAAiC;QAC5E,KAAK,CAAC,uBAAuB,CAAC,SAAS,EAAE,kBAAkB,EAAE,IAAI,CAAC,CAAC;IACvE,CAAC;;AALL,0DAMC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LocalAttributeDTO } from "@nmshd/runtime-types";
|
|
2
|
+
import { DataEvent } from "../DataEvent";
|
|
3
|
+
export declare class ForwardedAttributeDeletedByPeerEvent extends DataEvent<LocalAttributeDTO> {
|
|
4
|
+
static readonly namespace = "consumption.forwardedAttributeDeletedByPeer";
|
|
5
|
+
constructor(eventTargetAddress: string, data: LocalAttributeDTO);
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=ForwardedAttributeDeletedByPeerEvent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ForwardedAttributeDeletedByPeerEvent.d.ts","sourceRoot":"","sources":["../../../src/events/consumption/ForwardedAttributeDeletedByPeerEvent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,qBAAa,oCAAqC,SAAQ,SAAS,CAAC,iBAAiB,CAAC;IAClF,gBAAuB,SAAS,iDAAiD;gBAE9D,kBAAkB,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB;CAGzE"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ForwardedAttributeDeletedByPeerEvent = void 0;
|
|
4
|
+
const DataEvent_1 = require("../DataEvent");
|
|
5
|
+
class ForwardedAttributeDeletedByPeerEvent extends DataEvent_1.DataEvent {
|
|
6
|
+
static { this.namespace = "consumption.forwardedAttributeDeletedByPeer"; }
|
|
7
|
+
constructor(eventTargetAddress, data) {
|
|
8
|
+
super(ForwardedAttributeDeletedByPeerEvent.namespace, eventTargetAddress, data);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.ForwardedAttributeDeletedByPeerEvent = ForwardedAttributeDeletedByPeerEvent;
|
|
12
|
+
//# sourceMappingURL=ForwardedAttributeDeletedByPeerEvent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ForwardedAttributeDeletedByPeerEvent.js","sourceRoot":"","sources":["../../../src/events/consumption/ForwardedAttributeDeletedByPeerEvent.ts"],"names":[],"mappings":";;;AACA,4CAAyC;AAEzC,MAAa,oCAAqC,SAAQ,qBAA4B;aAC3D,cAAS,GAAG,6CAA6C,CAAC;IAEjF,YAAmB,kBAA0B,EAAE,IAAuB;QAClE,KAAK,CAAC,oCAAoC,CAAC,SAAS,EAAE,kBAAkB,EAAE,IAAI,CAAC,CAAC;IACpF,CAAC;;AALL,oFAMC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LocalAttributeDTO } from "@nmshd/runtime-types";
|
|
2
|
+
import { DataEvent } from "../DataEvent";
|
|
3
|
+
export declare class OwnAttributeDeletedByOwnerEvent extends DataEvent<LocalAttributeDTO> {
|
|
4
|
+
static readonly namespace = "consumption.ownAttributeDeletedByOwner";
|
|
5
|
+
constructor(eventTargetAddress: string, data: LocalAttributeDTO);
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=OwnAttributeDeletedByOwnerEvent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OwnAttributeDeletedByOwnerEvent.d.ts","sourceRoot":"","sources":["../../../src/events/consumption/OwnAttributeDeletedByOwnerEvent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,qBAAa,+BAAgC,SAAQ,SAAS,CAAC,iBAAiB,CAAC;IAC7E,gBAAuB,SAAS,4CAA4C;gBAEzD,kBAAkB,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB;CAGzE"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OwnAttributeDeletedByOwnerEvent = void 0;
|
|
4
|
+
const DataEvent_1 = require("../DataEvent");
|
|
5
|
+
class OwnAttributeDeletedByOwnerEvent extends DataEvent_1.DataEvent {
|
|
6
|
+
static { this.namespace = "consumption.ownAttributeDeletedByOwner"; }
|
|
7
|
+
constructor(eventTargetAddress, data) {
|
|
8
|
+
super(OwnAttributeDeletedByOwnerEvent.namespace, eventTargetAddress, data);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.OwnAttributeDeletedByOwnerEvent = OwnAttributeDeletedByOwnerEvent;
|
|
12
|
+
//# sourceMappingURL=OwnAttributeDeletedByOwnerEvent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OwnAttributeDeletedByOwnerEvent.js","sourceRoot":"","sources":["../../../src/events/consumption/OwnAttributeDeletedByOwnerEvent.ts"],"names":[],"mappings":";;;AACA,4CAAyC;AAEzC,MAAa,+BAAgC,SAAQ,qBAA4B;aACtD,cAAS,GAAG,wCAAwC,CAAC;IAE5E,YAAmB,kBAA0B,EAAE,IAAuB;QAClE,KAAK,CAAC,+BAA+B,CAAC,SAAS,EAAE,kBAAkB,EAAE,IAAI,CAAC,CAAC;IAC/E,CAAC;;AALL,0EAMC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LocalAttributeDTO } from "@nmshd/runtime-types";
|
|
2
|
+
import { DataEvent } from "../DataEvent";
|
|
3
|
+
export declare class PeerRelationshipAttributeDeletedByPeerEvent extends DataEvent<LocalAttributeDTO> {
|
|
4
|
+
static readonly namespace = "consumption.peerRelationshipAttributeDeletedByPeer";
|
|
5
|
+
constructor(eventTargetAddress: string, data: LocalAttributeDTO);
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=PeerRelationshipAttributeDeletedByPeerEvent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PeerRelationshipAttributeDeletedByPeerEvent.d.ts","sourceRoot":"","sources":["../../../src/events/consumption/PeerRelationshipAttributeDeletedByPeerEvent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,qBAAa,2CAA4C,SAAQ,SAAS,CAAC,iBAAiB,CAAC;IACzF,gBAAuB,SAAS,wDAAwD;gBAErE,kBAAkB,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB;CAGzE"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PeerRelationshipAttributeDeletedByPeerEvent = void 0;
|
|
4
|
+
const DataEvent_1 = require("../DataEvent");
|
|
5
|
+
class PeerRelationshipAttributeDeletedByPeerEvent extends DataEvent_1.DataEvent {
|
|
6
|
+
static { this.namespace = "consumption.peerRelationshipAttributeDeletedByPeer"; }
|
|
7
|
+
constructor(eventTargetAddress, data) {
|
|
8
|
+
super(PeerRelationshipAttributeDeletedByPeerEvent.namespace, eventTargetAddress, data);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.PeerRelationshipAttributeDeletedByPeerEvent = PeerRelationshipAttributeDeletedByPeerEvent;
|
|
12
|
+
//# sourceMappingURL=PeerRelationshipAttributeDeletedByPeerEvent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PeerRelationshipAttributeDeletedByPeerEvent.js","sourceRoot":"","sources":["../../../src/events/consumption/PeerRelationshipAttributeDeletedByPeerEvent.ts"],"names":[],"mappings":";;;AACA,4CAAyC;AAEzC,MAAa,2CAA4C,SAAQ,qBAA4B;aAClE,cAAS,GAAG,oDAAoD,CAAC;IAExF,YAAmB,kBAA0B,EAAE,IAAuB;QAClE,KAAK,CAAC,2CAA2C,CAAC,SAAS,EAAE,kBAAkB,EAAE,IAAI,CAAC,CAAC;IAC3F,CAAC;;AALL,kGAMC"}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export * from "./AttributeCreatedEvent";
|
|
2
2
|
export * from "./AttributeDeletedEvent";
|
|
3
|
+
export * from "./AttributeForwardingDetailsChangedEvent";
|
|
4
|
+
export * from "./AttributeSucceededEvent";
|
|
3
5
|
export * from "./AttributeWasViewedAtChangedEvent";
|
|
6
|
+
export * from "./ForwardedAttributeDeletedByPeerEvent";
|
|
4
7
|
export * from "./IncomingRequestReceivedEvent";
|
|
5
8
|
export * from "./IncomingRequestStatusChangedEvent";
|
|
6
9
|
export * from "./MailReceivedEvent";
|
|
@@ -9,15 +12,8 @@ export * from "./OutgoingRequestCreatedAndCompletedEvent";
|
|
|
9
12
|
export * from "./OutgoingRequestCreatedEvent";
|
|
10
13
|
export * from "./OutgoingRequestFromRelationshipCreationCreatedAndCompletedEvent";
|
|
11
14
|
export * from "./OutgoingRequestStatusChangedEvent";
|
|
12
|
-
export * from "./
|
|
13
|
-
export * from "./
|
|
14
|
-
export * from "./PeerSharedAttributeDeletedByPeerEvent";
|
|
15
|
-
export * from "./PeerSharedAttributeSucceededEvent";
|
|
15
|
+
export * from "./OwnAttributeDeletedByOwnerEvent";
|
|
16
|
+
export * from "./PeerRelationshipAttributeDeletedByPeerEvent";
|
|
16
17
|
export * from "./RelationshipEvent";
|
|
17
18
|
export * from "./RelationshipTemplateProcessedEvent";
|
|
18
|
-
export * from "./RepositoryAttributeSucceededEvent";
|
|
19
|
-
export * from "./SuccessionEventData";
|
|
20
|
-
export * from "./ThirdPartyOwnedRelationshipAttributeSucceededEvent";
|
|
21
|
-
export * from "./ThirdPartyRelationshipAttributeDeletedByPeerEvent";
|
|
22
|
-
export * from "./ThirdPartyRelationshipAttributeSucceededEvent";
|
|
23
19
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/events/consumption/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,oCAAoC,CAAC;AACnD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qCAAqC,CAAC;AACpD,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2CAA2C,CAAC;AAC1D,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mEAAmE,CAAC;AAClF,cAAc,qCAAqC,CAAC;AACpD,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/events/consumption/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,0CAA0C,CAAC;AACzD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oCAAoC,CAAC;AACnD,cAAc,wCAAwC,CAAC;AACvD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qCAAqC,CAAC;AACpD,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,2CAA2C,CAAC;AAC1D,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mEAAmE,CAAC;AAClF,cAAc,qCAAqC,CAAC;AACpD,cAAc,mCAAmC,CAAC;AAClD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,qBAAqB,CAAC;AACpC,cAAc,sCAAsC,CAAC"}
|
|
@@ -16,7 +16,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./AttributeCreatedEvent"), exports);
|
|
18
18
|
__exportStar(require("./AttributeDeletedEvent"), exports);
|
|
19
|
+
__exportStar(require("./AttributeForwardingDetailsChangedEvent"), exports);
|
|
20
|
+
__exportStar(require("./AttributeSucceededEvent"), exports);
|
|
19
21
|
__exportStar(require("./AttributeWasViewedAtChangedEvent"), exports);
|
|
22
|
+
__exportStar(require("./ForwardedAttributeDeletedByPeerEvent"), exports);
|
|
20
23
|
__exportStar(require("./IncomingRequestReceivedEvent"), exports);
|
|
21
24
|
__exportStar(require("./IncomingRequestStatusChangedEvent"), exports);
|
|
22
25
|
__exportStar(require("./MailReceivedEvent"), exports);
|
|
@@ -25,15 +28,8 @@ __exportStar(require("./OutgoingRequestCreatedAndCompletedEvent"), exports);
|
|
|
25
28
|
__exportStar(require("./OutgoingRequestCreatedEvent"), exports);
|
|
26
29
|
__exportStar(require("./OutgoingRequestFromRelationshipCreationCreatedAndCompletedEvent"), exports);
|
|
27
30
|
__exportStar(require("./OutgoingRequestStatusChangedEvent"), exports);
|
|
28
|
-
__exportStar(require("./
|
|
29
|
-
__exportStar(require("./
|
|
30
|
-
__exportStar(require("./PeerSharedAttributeDeletedByPeerEvent"), exports);
|
|
31
|
-
__exportStar(require("./PeerSharedAttributeSucceededEvent"), exports);
|
|
31
|
+
__exportStar(require("./OwnAttributeDeletedByOwnerEvent"), exports);
|
|
32
|
+
__exportStar(require("./PeerRelationshipAttributeDeletedByPeerEvent"), exports);
|
|
32
33
|
__exportStar(require("./RelationshipEvent"), exports);
|
|
33
34
|
__exportStar(require("./RelationshipTemplateProcessedEvent"), exports);
|
|
34
|
-
__exportStar(require("./RepositoryAttributeSucceededEvent"), exports);
|
|
35
|
-
__exportStar(require("./SuccessionEventData"), exports);
|
|
36
|
-
__exportStar(require("./ThirdPartyOwnedRelationshipAttributeSucceededEvent"), exports);
|
|
37
|
-
__exportStar(require("./ThirdPartyRelationshipAttributeDeletedByPeerEvent"), exports);
|
|
38
|
-
__exportStar(require("./ThirdPartyRelationshipAttributeSucceededEvent"), exports);
|
|
39
35
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/events/consumption/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AACxC,0DAAwC;AACxC,qEAAmD;AACnD,iEAA+C;AAC/C,sEAAoD;AACpD,sDAAoC;AACpC,0DAAwC;AACxC,4EAA0D;AAC1D,gEAA8C;AAC9C,oGAAkF;AAClF,sEAAoD;AACpD,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/events/consumption/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AACxC,0DAAwC;AACxC,2EAAyD;AACzD,4DAA0C;AAC1C,qEAAmD;AACnD,yEAAuD;AACvD,iEAA+C;AAC/C,sEAAoD;AACpD,sDAAoC;AACpC,0DAAwC;AACxC,4EAA0D;AAC1D,gEAA8C;AAC9C,oGAAkF;AAClF,sEAAoD;AACpD,oEAAkD;AAClD,gFAA8D;AAC9D,sDAAoC;AACpC,uEAAqD"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AttributesFacade, DraftsFacade, IdentityMetadataFacade, IncomingRequestsFacade, NotificationsFacade,
|
|
1
|
+
import { AttributesFacade, DraftsFacade, IdentityMetadataFacade, IncomingRequestsFacade, NotificationsFacade, OutgoingRequestsFacade, SettingsFacade } from "./facades/consumption";
|
|
2
2
|
export declare class ConsumptionServices {
|
|
3
3
|
readonly attributes: AttributesFacade;
|
|
4
4
|
readonly drafts: DraftsFacade;
|
|
@@ -7,7 +7,6 @@ export declare class ConsumptionServices {
|
|
|
7
7
|
readonly outgoingRequests: OutgoingRequestsFacade;
|
|
8
8
|
readonly notifications: NotificationsFacade;
|
|
9
9
|
readonly identityMetadata: IdentityMetadataFacade;
|
|
10
|
-
|
|
11
|
-
constructor(attributes: AttributesFacade, drafts: DraftsFacade, settings: SettingsFacade, incomingRequests: IncomingRequestsFacade, outgoingRequests: OutgoingRequestsFacade, notifications: NotificationsFacade, identityMetadata: IdentityMetadataFacade, openId4Vc: OpenId4VcFacade);
|
|
10
|
+
constructor(attributes: AttributesFacade, drafts: DraftsFacade, settings: SettingsFacade, incomingRequests: IncomingRequestsFacade, outgoingRequests: OutgoingRequestsFacade, notifications: NotificationsFacade, identityMetadata: IdentityMetadataFacade);
|
|
12
11
|
}
|
|
13
12
|
//# sourceMappingURL=ConsumptionServices.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConsumptionServices.d.ts","sourceRoot":"","sources":["../../src/extensibility/ConsumptionServices.ts"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"ConsumptionServices.d.ts","sourceRoot":"","sources":["../../src/extensibility/ConsumptionServices.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,YAAY,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAEpL,qBAAa,mBAAmB;aAEA,UAAU,EAAE,gBAAgB;aAC5B,MAAM,EAAE,YAAY;aACpB,QAAQ,EAAE,cAAc;aACxB,gBAAgB,EAAE,sBAAsB;aACxC,gBAAgB,EAAE,sBAAsB;aACxC,aAAa,EAAE,mBAAmB;aAClC,gBAAgB,EAAE,sBAAsB;gBANxC,UAAU,EAAE,gBAAgB,EAC5B,MAAM,EAAE,YAAY,EACpB,QAAQ,EAAE,cAAc,EACxB,gBAAgB,EAAE,sBAAsB,EACxC,gBAAgB,EAAE,sBAAsB,EACxC,aAAa,EAAE,mBAAmB,EAClC,gBAAgB,EAAE,sBAAsB;CAEvE"}
|
|
@@ -16,7 +16,7 @@ exports.ConsumptionServices = void 0;
|
|
|
16
16
|
const typescript_ioc_1 = require("@nmshd/typescript-ioc");
|
|
17
17
|
const consumption_1 = require("./facades/consumption");
|
|
18
18
|
let ConsumptionServices = class ConsumptionServices {
|
|
19
|
-
constructor(attributes, drafts, settings, incomingRequests, outgoingRequests, notifications, identityMetadata
|
|
19
|
+
constructor(attributes, drafts, settings, incomingRequests, outgoingRequests, notifications, identityMetadata) {
|
|
20
20
|
this.attributes = attributes;
|
|
21
21
|
this.drafts = drafts;
|
|
22
22
|
this.settings = settings;
|
|
@@ -24,7 +24,6 @@ let ConsumptionServices = class ConsumptionServices {
|
|
|
24
24
|
this.outgoingRequests = outgoingRequests;
|
|
25
25
|
this.notifications = notifications;
|
|
26
26
|
this.identityMetadata = identityMetadata;
|
|
27
|
-
this.openId4Vc = openId4Vc;
|
|
28
27
|
}
|
|
29
28
|
};
|
|
30
29
|
exports.ConsumptionServices = ConsumptionServices;
|
|
@@ -36,14 +35,12 @@ exports.ConsumptionServices = ConsumptionServices = __decorate([
|
|
|
36
35
|
__param(4, typescript_ioc_1.Inject),
|
|
37
36
|
__param(5, typescript_ioc_1.Inject),
|
|
38
37
|
__param(6, typescript_ioc_1.Inject),
|
|
39
|
-
__param(7, typescript_ioc_1.Inject),
|
|
40
38
|
__metadata("design:paramtypes", [consumption_1.AttributesFacade,
|
|
41
39
|
consumption_1.DraftsFacade,
|
|
42
40
|
consumption_1.SettingsFacade,
|
|
43
41
|
consumption_1.IncomingRequestsFacade,
|
|
44
42
|
consumption_1.OutgoingRequestsFacade,
|
|
45
43
|
consumption_1.NotificationsFacade,
|
|
46
|
-
consumption_1.IdentityMetadataFacade
|
|
47
|
-
consumption_1.OpenId4VcFacade])
|
|
44
|
+
consumption_1.IdentityMetadataFacade])
|
|
48
45
|
], ConsumptionServices);
|
|
49
46
|
//# sourceMappingURL=ConsumptionServices.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConsumptionServices.js","sourceRoot":"","sources":["../../src/extensibility/ConsumptionServices.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,0DAA+C;AAC/C,
|
|
1
|
+
{"version":3,"file":"ConsumptionServices.js","sourceRoot":"","sources":["../../src/extensibility/ConsumptionServices.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,0DAA+C;AAC/C,uDAAoL;AAEpL,IAAa,mBAAmB,GAAhC,MAAa,mBAAmB;IAC5B,YAC4B,UAA4B,EAC5B,MAAoB,EACpB,QAAwB,EACxB,gBAAwC,EACxC,gBAAwC,EACxC,aAAkC,EAClC,gBAAwC;QANxC,eAAU,GAAV,UAAU,CAAkB;QAC5B,WAAM,GAAN,MAAM,CAAc;QACpB,aAAQ,GAAR,QAAQ,CAAgB;QACxB,qBAAgB,GAAhB,gBAAgB,CAAwB;QACxC,qBAAgB,GAAhB,gBAAgB,CAAwB;QACxC,kBAAa,GAAb,aAAa,CAAqB;QAClC,qBAAgB,GAAhB,gBAAgB,CAAwB;IACjE,CAAC;CACP,CAAA;AAVY,kDAAmB;8BAAnB,mBAAmB;IAEvB,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;qCAN6B,8BAAgB;QACpB,0BAAY;QACV,4BAAc;QACN,oCAAsB;QACtB,oCAAsB;QACzB,iCAAmB;QAChB,oCAAsB;GAR3D,mBAAmB,CAU/B"}
|
|
@@ -1,63 +1,59 @@
|
|
|
1
1
|
import { Result } from "@js-soft/ts-utils";
|
|
2
|
-
import { AttributeTagCollectionDTO, LocalAttributeDTO, LocalRequestDTO } from "@nmshd/runtime-types";
|
|
3
|
-
import {
|
|
2
|
+
import { AttributeTagCollectionDTO, LocalAttributeDTO, LocalAttributeForwardingDetailsDTO, LocalRequestDTO } from "@nmshd/runtime-types";
|
|
3
|
+
import { CanCreateOwnIdentityAttributeRequest, CanCreateOwnIdentityAttributeResponse, CanCreateOwnIdentityAttributeUseCase, ChangeDefaultOwnIdentityAttributeRequest, ChangeDefaultOwnIdentityAttributeUseCase, CreateAndShareRelationshipAttributeRequest, CreateAndShareRelationshipAttributeUseCase, CreateOwnIdentityAttributeRequest, CreateOwnIdentityAttributeUseCase, DeleteAttributeAndNotifyRequest, DeleteAttributeAndNotifyResponse, DeleteAttributeAndNotifyUseCase, DeleteSharedAttributesForRejectedOrRevokedRelationshipRequest, DeleteSharedAttributesForRejectedOrRevokedRelationshipUseCase, ExecuteIQLQueryRequest, ExecuteIQLQueryUseCase, ExecuteIdentityAttributeQueryRequest, ExecuteIdentityAttributeQueryUseCase, ExecuteRelationshipAttributeQueryRequest, ExecuteRelationshipAttributeQueryUseCase, ExecuteThirdPartyRelationshipAttributeQueryRequest, ExecuteThirdPartyRelationshipAttributeQueryUseCase, GetAttributeRequest, GetAttributeTagCollectionUseCase, GetAttributeUseCase, GetAttributesRequest, GetAttributesUseCase, GetForwardingDetailsForAttributeRequest, GetForwardingDetailsForAttributeUseCase, GetOwnAttributesSharedWithPeerRequest, GetOwnAttributesSharedWithPeerUseCase, GetOwnIdentityAttributesRequest, GetOwnIdentityAttributesUseCase, GetPeerAttributesRequest, GetPeerAttributesUseCase, GetVersionsOfAttributeRequest, GetVersionsOfAttributeSharedWithPeerRequest, GetVersionsOfAttributeSharedWithPeerUseCase, GetVersionsOfAttributeUseCase, MarkAttributeAsViewedRequest, MarkAttributeAsViewedUseCase, NotifyPeerAboutOwnIdentityAttributeSuccessionRequest, NotifyPeerAboutOwnIdentityAttributeSuccessionResponse, NotifyPeerAboutOwnIdentityAttributeSuccessionUseCase, SetAttributeDeletionInfoOfDeletionProposedRelationshipRequest, SetAttributeDeletionInfoOfDeletionProposedRelationshipUseCase, ShareOwnIdentityAttributeRequest, ShareOwnIdentityAttributeUseCase, SucceedOwnIdentityAttributeRequest, SucceedOwnIdentityAttributeResponse, SucceedOwnIdentityAttributeUseCase, SucceedRelationshipAttributeAndNotifyPeerRequest, SucceedRelationshipAttributeAndNotifyPeerResponse, SucceedRelationshipAttributeAndNotifyPeerUseCase, ValidateIQLQueryRequest, ValidateIQLQueryResponse, ValidateIQLQueryUseCase } from "../../../useCases";
|
|
4
4
|
export declare class AttributesFacade {
|
|
5
|
-
private readonly
|
|
6
|
-
private readonly
|
|
7
|
-
private readonly
|
|
8
|
-
private readonly
|
|
9
|
-
private readonly
|
|
5
|
+
private readonly canCreateOwnIdentityAttributeUseCase;
|
|
6
|
+
private readonly createOwnIdentityAttributeUseCase;
|
|
7
|
+
private readonly getPeerAttributesUseCase;
|
|
8
|
+
private readonly getOwnAttributesSharedWithPeerUseCase;
|
|
9
|
+
private readonly getOwnIdentityAttributesUseCase;
|
|
10
10
|
private readonly getAttributeUseCase;
|
|
11
11
|
private readonly getAttributesUseCase;
|
|
12
12
|
private readonly getVersionsOfAttributeUseCase;
|
|
13
|
-
private readonly
|
|
13
|
+
private readonly getVersionsOfAttributeSharedWithPeerUseCase;
|
|
14
14
|
private readonly executeIdentityAttributeQueryUseCase;
|
|
15
15
|
private readonly executeRelationshipAttributeQueryUseCase;
|
|
16
16
|
private readonly executeThirdPartyRelationshipAttributeQueryUseCase;
|
|
17
17
|
private readonly executeIQLQueryUseCase;
|
|
18
18
|
private readonly validateIQLQueryUseCase;
|
|
19
|
-
private readonly
|
|
20
|
-
private readonly
|
|
21
|
-
private readonly
|
|
19
|
+
private readonly succeedOwnIdentityAttributeUseCase;
|
|
20
|
+
private readonly shareOwnIdentityAttributeUseCase;
|
|
21
|
+
private readonly notifyPeerAboutOwnIdentityAttributeSuccessionUseCase;
|
|
22
22
|
private readonly createAndShareRelationshipAttributeUseCase;
|
|
23
23
|
private readonly succeedRelationshipAttributeAndNotifyPeerUseCase;
|
|
24
|
-
private readonly
|
|
25
|
-
private readonly
|
|
26
|
-
private readonly deletePeerSharedAttributeAndNotifyOwnerUseCase;
|
|
27
|
-
private readonly deleteThirdPartyRelationshipAttributeAndNotifyPeerUseCase;
|
|
28
|
-
private readonly deleteRepositoryAttributeUseCase;
|
|
24
|
+
private readonly changeDefaultOwnIdentityAttributeUseCase;
|
|
25
|
+
private readonly deleteAttributeAndNotifyUseCase;
|
|
29
26
|
private readonly deleteSharedAttributesForRejectedOrRevokedRelationshipUseCase;
|
|
30
27
|
private readonly getAttributeTagCollectionUseCase;
|
|
31
28
|
private readonly setAttributeDeletionInfoOfDeletionProposedRelationshipUseCase;
|
|
32
29
|
private readonly markAttributeAsViewedUseCase;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
30
|
+
private readonly getForwardingDetailsForAttributeUseCase;
|
|
31
|
+
constructor(canCreateOwnIdentityAttributeUseCase: CanCreateOwnIdentityAttributeUseCase, createOwnIdentityAttributeUseCase: CreateOwnIdentityAttributeUseCase, getPeerAttributesUseCase: GetPeerAttributesUseCase, getOwnAttributesSharedWithPeerUseCase: GetOwnAttributesSharedWithPeerUseCase, getOwnIdentityAttributesUseCase: GetOwnIdentityAttributesUseCase, getAttributeUseCase: GetAttributeUseCase, getAttributesUseCase: GetAttributesUseCase, getVersionsOfAttributeUseCase: GetVersionsOfAttributeUseCase, getVersionsOfAttributeSharedWithPeerUseCase: GetVersionsOfAttributeSharedWithPeerUseCase, executeIdentityAttributeQueryUseCase: ExecuteIdentityAttributeQueryUseCase, executeRelationshipAttributeQueryUseCase: ExecuteRelationshipAttributeQueryUseCase, executeThirdPartyRelationshipAttributeQueryUseCase: ExecuteThirdPartyRelationshipAttributeQueryUseCase, executeIQLQueryUseCase: ExecuteIQLQueryUseCase, validateIQLQueryUseCase: ValidateIQLQueryUseCase, succeedOwnIdentityAttributeUseCase: SucceedOwnIdentityAttributeUseCase, shareOwnIdentityAttributeUseCase: ShareOwnIdentityAttributeUseCase, notifyPeerAboutOwnIdentityAttributeSuccessionUseCase: NotifyPeerAboutOwnIdentityAttributeSuccessionUseCase, createAndShareRelationshipAttributeUseCase: CreateAndShareRelationshipAttributeUseCase, succeedRelationshipAttributeAndNotifyPeerUseCase: SucceedRelationshipAttributeAndNotifyPeerUseCase, changeDefaultOwnIdentityAttributeUseCase: ChangeDefaultOwnIdentityAttributeUseCase, deleteAttributeAndNotifyUseCase: DeleteAttributeAndNotifyUseCase, deleteSharedAttributesForRejectedOrRevokedRelationshipUseCase: DeleteSharedAttributesForRejectedOrRevokedRelationshipUseCase, getAttributeTagCollectionUseCase: GetAttributeTagCollectionUseCase, setAttributeDeletionInfoOfDeletionProposedRelationshipUseCase: SetAttributeDeletionInfoOfDeletionProposedRelationshipUseCase, markAttributeAsViewedUseCase: MarkAttributeAsViewedUseCase, getForwardingDetailsForAttributeUseCase: GetForwardingDetailsForAttributeUseCase);
|
|
32
|
+
canCreateOwnIdentityAttribute(request: CanCreateOwnIdentityAttributeRequest): Promise<Result<CanCreateOwnIdentityAttributeResponse>>;
|
|
33
|
+
createOwnIdentityAttribute(request: CreateOwnIdentityAttributeRequest): Promise<Result<LocalAttributeDTO>>;
|
|
34
|
+
getPeerAttributes(request: GetPeerAttributesRequest): Promise<Result<LocalAttributeDTO[]>>;
|
|
35
|
+
getOwnAttributesSharedWithPeer(request: GetOwnAttributesSharedWithPeerRequest): Promise<Result<LocalAttributeDTO[]>>;
|
|
36
|
+
getOwnIdentityAttributes(request: GetOwnIdentityAttributesRequest): Promise<Result<LocalAttributeDTO[]>>;
|
|
39
37
|
getAttribute(request: GetAttributeRequest): Promise<Result<LocalAttributeDTO>>;
|
|
40
38
|
getAttributes(request: GetAttributesRequest): Promise<Result<LocalAttributeDTO[]>>;
|
|
41
39
|
getVersionsOfAttribute(request: GetVersionsOfAttributeRequest): Promise<Result<LocalAttributeDTO[]>>;
|
|
42
|
-
|
|
40
|
+
getVersionsOfAttributeSharedWithPeer(request: GetVersionsOfAttributeSharedWithPeerRequest): Promise<Result<LocalAttributeDTO[]>>;
|
|
43
41
|
executeIdentityAttributeQuery(request: ExecuteIdentityAttributeQueryRequest): Promise<Result<LocalAttributeDTO[]>>;
|
|
44
42
|
executeRelationshipAttributeQuery(request: ExecuteRelationshipAttributeQueryRequest): Promise<Result<LocalAttributeDTO>>;
|
|
45
43
|
executeThirdPartyRelationshipAttributeQuery(request: ExecuteThirdPartyRelationshipAttributeQueryRequest): Promise<Result<LocalAttributeDTO[]>>;
|
|
46
44
|
executeIQLQuery(request: ExecuteIQLQueryRequest): Promise<Result<LocalAttributeDTO[]>>;
|
|
47
45
|
validateIQLQuery(request: ValidateIQLQueryRequest): Promise<Result<ValidateIQLQueryResponse>>;
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
46
|
+
succeedOwnIdentityAttribute(request: SucceedOwnIdentityAttributeRequest): Promise<Result<SucceedOwnIdentityAttributeResponse>>;
|
|
47
|
+
shareOwnIdentityAttribute(request: ShareOwnIdentityAttributeRequest): Promise<Result<LocalRequestDTO>>;
|
|
48
|
+
notifyPeerAboutOwnIdentityAttributeSuccession(request: NotifyPeerAboutOwnIdentityAttributeSuccessionRequest): Promise<Result<NotifyPeerAboutOwnIdentityAttributeSuccessionResponse>>;
|
|
51
49
|
createAndShareRelationshipAttribute(request: CreateAndShareRelationshipAttributeRequest): Promise<Result<LocalRequestDTO>>;
|
|
52
50
|
succeedRelationshipAttributeAndNotifyPeer(request: SucceedRelationshipAttributeAndNotifyPeerRequest): Promise<Result<SucceedRelationshipAttributeAndNotifyPeerResponse>>;
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
deletePeerSharedAttributeAndNotifyOwner(request: DeletePeerSharedAttributeAndNotifyOwnerRequest): Promise<Result<DeletePeerSharedAttributeAndNotifyOwnerResponse>>;
|
|
56
|
-
deleteThirdPartyRelationshipAttributeAndNotifyPeer(request: DeleteThirdPartyRelationshipAttributeAndNotifyPeerRequest): Promise<Result<DeleteThirdPartyRelationshipAttributeAndNotifyPeerResponse>>;
|
|
57
|
-
deleteRepositoryAttribute(request: DeleteRepositoryAttributeRequest): Promise<Result<void>>;
|
|
51
|
+
changeDefaultOwnIdentityAttribute(request: ChangeDefaultOwnIdentityAttributeRequest): Promise<Result<LocalAttributeDTO>>;
|
|
52
|
+
deleteAttributeAndNotify(request: DeleteAttributeAndNotifyRequest): Promise<Result<DeleteAttributeAndNotifyResponse>>;
|
|
58
53
|
deleteSharedAttributesForRejectedOrRevokedRelationship(request: DeleteSharedAttributesForRejectedOrRevokedRelationshipRequest): Promise<Result<void>>;
|
|
59
54
|
getAttributeTagCollection(): Promise<Result<AttributeTagCollectionDTO>>;
|
|
60
55
|
setAttributeDeletionInfoOfDeletionProposedRelationship(request: SetAttributeDeletionInfoOfDeletionProposedRelationshipRequest): Promise<Result<void>>;
|
|
61
56
|
markAttributeAsViewed(request: MarkAttributeAsViewedRequest): Promise<Result<LocalAttributeDTO>>;
|
|
57
|
+
getForwardingDetailsForAttribute(request: GetForwardingDetailsForAttributeRequest): Promise<Result<LocalAttributeForwardingDetailsDTO[]>>;
|
|
62
58
|
}
|
|
63
59
|
//# sourceMappingURL=AttributesFacade.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AttributesFacade.d.ts","sourceRoot":"","sources":["../../../../src/extensibility/facades/consumption/AttributesFacade.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,yBAAyB,EAAE,iBAAiB,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"AttributesFacade.d.ts","sourceRoot":"","sources":["../../../../src/extensibility/facades/consumption/AttributesFacade.ts"],"names":[],"mappings":"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"}
|