@nmshd/runtime 7.0.0-openid4vc.5 → 7.0.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.
- 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
|
@@ -16,50 +16,48 @@ exports.AttributesFacade = void 0;
|
|
|
16
16
|
const typescript_ioc_1 = require("@nmshd/typescript-ioc");
|
|
17
17
|
const useCases_1 = require("../../../useCases");
|
|
18
18
|
let AttributesFacade = class AttributesFacade {
|
|
19
|
-
constructor(
|
|
20
|
-
this.
|
|
21
|
-
this.
|
|
22
|
-
this.
|
|
23
|
-
this.
|
|
24
|
-
this.
|
|
19
|
+
constructor(canCreateOwnIdentityAttributeUseCase, createOwnIdentityAttributeUseCase, getPeerAttributesUseCase, getOwnAttributesSharedWithPeerUseCase, getOwnIdentityAttributesUseCase, getAttributeUseCase, getAttributesUseCase, getVersionsOfAttributeUseCase, getVersionsOfAttributeSharedWithPeerUseCase, executeIdentityAttributeQueryUseCase, executeRelationshipAttributeQueryUseCase, executeThirdPartyRelationshipAttributeQueryUseCase, executeIQLQueryUseCase, validateIQLQueryUseCase, succeedOwnIdentityAttributeUseCase, shareOwnIdentityAttributeUseCase, notifyPeerAboutOwnIdentityAttributeSuccessionUseCase, createAndShareRelationshipAttributeUseCase, succeedRelationshipAttributeAndNotifyPeerUseCase, changeDefaultOwnIdentityAttributeUseCase, deleteAttributeAndNotifyUseCase, deleteSharedAttributesForRejectedOrRevokedRelationshipUseCase, getAttributeTagCollectionUseCase, setAttributeDeletionInfoOfDeletionProposedRelationshipUseCase, markAttributeAsViewedUseCase, getForwardingDetailsForAttributeUseCase) {
|
|
20
|
+
this.canCreateOwnIdentityAttributeUseCase = canCreateOwnIdentityAttributeUseCase;
|
|
21
|
+
this.createOwnIdentityAttributeUseCase = createOwnIdentityAttributeUseCase;
|
|
22
|
+
this.getPeerAttributesUseCase = getPeerAttributesUseCase;
|
|
23
|
+
this.getOwnAttributesSharedWithPeerUseCase = getOwnAttributesSharedWithPeerUseCase;
|
|
24
|
+
this.getOwnIdentityAttributesUseCase = getOwnIdentityAttributesUseCase;
|
|
25
25
|
this.getAttributeUseCase = getAttributeUseCase;
|
|
26
26
|
this.getAttributesUseCase = getAttributesUseCase;
|
|
27
27
|
this.getVersionsOfAttributeUseCase = getVersionsOfAttributeUseCase;
|
|
28
|
-
this.
|
|
28
|
+
this.getVersionsOfAttributeSharedWithPeerUseCase = getVersionsOfAttributeSharedWithPeerUseCase;
|
|
29
29
|
this.executeIdentityAttributeQueryUseCase = executeIdentityAttributeQueryUseCase;
|
|
30
30
|
this.executeRelationshipAttributeQueryUseCase = executeRelationshipAttributeQueryUseCase;
|
|
31
31
|
this.executeThirdPartyRelationshipAttributeQueryUseCase = executeThirdPartyRelationshipAttributeQueryUseCase;
|
|
32
32
|
this.executeIQLQueryUseCase = executeIQLQueryUseCase;
|
|
33
33
|
this.validateIQLQueryUseCase = validateIQLQueryUseCase;
|
|
34
|
-
this.
|
|
35
|
-
this.
|
|
36
|
-
this.
|
|
34
|
+
this.succeedOwnIdentityAttributeUseCase = succeedOwnIdentityAttributeUseCase;
|
|
35
|
+
this.shareOwnIdentityAttributeUseCase = shareOwnIdentityAttributeUseCase;
|
|
36
|
+
this.notifyPeerAboutOwnIdentityAttributeSuccessionUseCase = notifyPeerAboutOwnIdentityAttributeSuccessionUseCase;
|
|
37
37
|
this.createAndShareRelationshipAttributeUseCase = createAndShareRelationshipAttributeUseCase;
|
|
38
38
|
this.succeedRelationshipAttributeAndNotifyPeerUseCase = succeedRelationshipAttributeAndNotifyPeerUseCase;
|
|
39
|
-
this.
|
|
40
|
-
this.
|
|
41
|
-
this.deletePeerSharedAttributeAndNotifyOwnerUseCase = deletePeerSharedAttributeAndNotifyOwnerUseCase;
|
|
42
|
-
this.deleteThirdPartyRelationshipAttributeAndNotifyPeerUseCase = deleteThirdPartyRelationshipAttributeAndNotifyPeerUseCase;
|
|
43
|
-
this.deleteRepositoryAttributeUseCase = deleteRepositoryAttributeUseCase;
|
|
39
|
+
this.changeDefaultOwnIdentityAttributeUseCase = changeDefaultOwnIdentityAttributeUseCase;
|
|
40
|
+
this.deleteAttributeAndNotifyUseCase = deleteAttributeAndNotifyUseCase;
|
|
44
41
|
this.deleteSharedAttributesForRejectedOrRevokedRelationshipUseCase = deleteSharedAttributesForRejectedOrRevokedRelationshipUseCase;
|
|
45
42
|
this.getAttributeTagCollectionUseCase = getAttributeTagCollectionUseCase;
|
|
46
43
|
this.setAttributeDeletionInfoOfDeletionProposedRelationshipUseCase = setAttributeDeletionInfoOfDeletionProposedRelationshipUseCase;
|
|
47
44
|
this.markAttributeAsViewedUseCase = markAttributeAsViewedUseCase;
|
|
45
|
+
this.getForwardingDetailsForAttributeUseCase = getForwardingDetailsForAttributeUseCase;
|
|
48
46
|
}
|
|
49
|
-
async
|
|
50
|
-
return await this.
|
|
47
|
+
async canCreateOwnIdentityAttribute(request) {
|
|
48
|
+
return await this.canCreateOwnIdentityAttributeUseCase.execute(request);
|
|
51
49
|
}
|
|
52
|
-
async
|
|
53
|
-
return await this.
|
|
50
|
+
async createOwnIdentityAttribute(request) {
|
|
51
|
+
return await this.createOwnIdentityAttributeUseCase.execute(request);
|
|
54
52
|
}
|
|
55
|
-
async
|
|
56
|
-
return await this.
|
|
53
|
+
async getPeerAttributes(request) {
|
|
54
|
+
return await this.getPeerAttributesUseCase.execute(request);
|
|
57
55
|
}
|
|
58
|
-
async
|
|
59
|
-
return await this.
|
|
56
|
+
async getOwnAttributesSharedWithPeer(request) {
|
|
57
|
+
return await this.getOwnAttributesSharedWithPeerUseCase.execute(request);
|
|
60
58
|
}
|
|
61
|
-
async
|
|
62
|
-
return await this.
|
|
59
|
+
async getOwnIdentityAttributes(request) {
|
|
60
|
+
return await this.getOwnIdentityAttributesUseCase.execute(request);
|
|
63
61
|
}
|
|
64
62
|
async getAttribute(request) {
|
|
65
63
|
return await this.getAttributeUseCase.execute(request);
|
|
@@ -70,8 +68,8 @@ let AttributesFacade = class AttributesFacade {
|
|
|
70
68
|
async getVersionsOfAttribute(request) {
|
|
71
69
|
return await this.getVersionsOfAttributeUseCase.execute(request);
|
|
72
70
|
}
|
|
73
|
-
async
|
|
74
|
-
return await this.
|
|
71
|
+
async getVersionsOfAttributeSharedWithPeer(request) {
|
|
72
|
+
return await this.getVersionsOfAttributeSharedWithPeerUseCase.execute(request);
|
|
75
73
|
}
|
|
76
74
|
async executeIdentityAttributeQuery(request) {
|
|
77
75
|
return await this.executeIdentityAttributeQueryUseCase.execute(request);
|
|
@@ -88,14 +86,14 @@ let AttributesFacade = class AttributesFacade {
|
|
|
88
86
|
async validateIQLQuery(request) {
|
|
89
87
|
return await this.validateIQLQueryUseCase.execute(request);
|
|
90
88
|
}
|
|
91
|
-
async
|
|
92
|
-
return await this.
|
|
89
|
+
async succeedOwnIdentityAttribute(request) {
|
|
90
|
+
return await this.succeedOwnIdentityAttributeUseCase.execute(request);
|
|
93
91
|
}
|
|
94
|
-
async
|
|
95
|
-
return await this.
|
|
92
|
+
async shareOwnIdentityAttribute(request) {
|
|
93
|
+
return await this.shareOwnIdentityAttributeUseCase.execute(request);
|
|
96
94
|
}
|
|
97
|
-
async
|
|
98
|
-
return await this.
|
|
95
|
+
async notifyPeerAboutOwnIdentityAttributeSuccession(request) {
|
|
96
|
+
return await this.notifyPeerAboutOwnIdentityAttributeSuccessionUseCase.execute(request);
|
|
99
97
|
}
|
|
100
98
|
async createAndShareRelationshipAttribute(request) {
|
|
101
99
|
return await this.createAndShareRelationshipAttributeUseCase.execute(request);
|
|
@@ -103,20 +101,11 @@ let AttributesFacade = class AttributesFacade {
|
|
|
103
101
|
async succeedRelationshipAttributeAndNotifyPeer(request) {
|
|
104
102
|
return await this.succeedRelationshipAttributeAndNotifyPeerUseCase.execute(request);
|
|
105
103
|
}
|
|
106
|
-
async
|
|
107
|
-
return await this.
|
|
104
|
+
async changeDefaultOwnIdentityAttribute(request) {
|
|
105
|
+
return await this.changeDefaultOwnIdentityAttributeUseCase.execute(request);
|
|
108
106
|
}
|
|
109
|
-
async
|
|
110
|
-
return await this.
|
|
111
|
-
}
|
|
112
|
-
async deletePeerSharedAttributeAndNotifyOwner(request) {
|
|
113
|
-
return await this.deletePeerSharedAttributeAndNotifyOwnerUseCase.execute(request);
|
|
114
|
-
}
|
|
115
|
-
async deleteThirdPartyRelationshipAttributeAndNotifyPeer(request) {
|
|
116
|
-
return await this.deleteThirdPartyRelationshipAttributeAndNotifyPeerUseCase.execute(request);
|
|
117
|
-
}
|
|
118
|
-
async deleteRepositoryAttribute(request) {
|
|
119
|
-
return await this.deleteRepositoryAttributeUseCase.execute(request);
|
|
107
|
+
async deleteAttributeAndNotify(request) {
|
|
108
|
+
return await this.deleteAttributeAndNotifyUseCase.execute(request);
|
|
120
109
|
}
|
|
121
110
|
async deleteSharedAttributesForRejectedOrRevokedRelationship(request) {
|
|
122
111
|
return await this.deleteSharedAttributesForRejectedOrRevokedRelationshipUseCase.execute(request);
|
|
@@ -130,6 +119,9 @@ let AttributesFacade = class AttributesFacade {
|
|
|
130
119
|
async markAttributeAsViewed(request) {
|
|
131
120
|
return await this.markAttributeAsViewedUseCase.execute(request);
|
|
132
121
|
}
|
|
122
|
+
async getForwardingDetailsForAttribute(request) {
|
|
123
|
+
return await this.getForwardingDetailsForAttributeUseCase.execute(request);
|
|
124
|
+
}
|
|
133
125
|
};
|
|
134
126
|
exports.AttributesFacade = AttributesFacade;
|
|
135
127
|
exports.AttributesFacade = AttributesFacade = __decorate([
|
|
@@ -159,35 +151,31 @@ exports.AttributesFacade = AttributesFacade = __decorate([
|
|
|
159
151
|
__param(23, typescript_ioc_1.Inject),
|
|
160
152
|
__param(24, typescript_ioc_1.Inject),
|
|
161
153
|
__param(25, typescript_ioc_1.Inject),
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
useCases_1.
|
|
166
|
-
useCases_1.
|
|
167
|
-
useCases_1.GetOwnSharedAttributesUseCase,
|
|
168
|
-
useCases_1.GetRepositoryAttributesUseCase,
|
|
154
|
+
__metadata("design:paramtypes", [useCases_1.CanCreateOwnIdentityAttributeUseCase,
|
|
155
|
+
useCases_1.CreateOwnIdentityAttributeUseCase,
|
|
156
|
+
useCases_1.GetPeerAttributesUseCase,
|
|
157
|
+
useCases_1.GetOwnAttributesSharedWithPeerUseCase,
|
|
158
|
+
useCases_1.GetOwnIdentityAttributesUseCase,
|
|
169
159
|
useCases_1.GetAttributeUseCase,
|
|
170
160
|
useCases_1.GetAttributesUseCase,
|
|
171
161
|
useCases_1.GetVersionsOfAttributeUseCase,
|
|
172
|
-
useCases_1.
|
|
162
|
+
useCases_1.GetVersionsOfAttributeSharedWithPeerUseCase,
|
|
173
163
|
useCases_1.ExecuteIdentityAttributeQueryUseCase,
|
|
174
164
|
useCases_1.ExecuteRelationshipAttributeQueryUseCase,
|
|
175
165
|
useCases_1.ExecuteThirdPartyRelationshipAttributeQueryUseCase,
|
|
176
166
|
useCases_1.ExecuteIQLQueryUseCase,
|
|
177
167
|
useCases_1.ValidateIQLQueryUseCase,
|
|
178
|
-
useCases_1.
|
|
179
|
-
useCases_1.
|
|
180
|
-
useCases_1.
|
|
168
|
+
useCases_1.SucceedOwnIdentityAttributeUseCase,
|
|
169
|
+
useCases_1.ShareOwnIdentityAttributeUseCase,
|
|
170
|
+
useCases_1.NotifyPeerAboutOwnIdentityAttributeSuccessionUseCase,
|
|
181
171
|
useCases_1.CreateAndShareRelationshipAttributeUseCase,
|
|
182
172
|
useCases_1.SucceedRelationshipAttributeAndNotifyPeerUseCase,
|
|
183
|
-
useCases_1.
|
|
184
|
-
useCases_1.
|
|
185
|
-
useCases_1.DeletePeerSharedAttributeAndNotifyOwnerUseCase,
|
|
186
|
-
useCases_1.DeleteThirdPartyRelationshipAttributeAndNotifyPeerUseCase,
|
|
187
|
-
useCases_1.DeleteRepositoryAttributeUseCase,
|
|
173
|
+
useCases_1.ChangeDefaultOwnIdentityAttributeUseCase,
|
|
174
|
+
useCases_1.DeleteAttributeAndNotifyUseCase,
|
|
188
175
|
useCases_1.DeleteSharedAttributesForRejectedOrRevokedRelationshipUseCase,
|
|
189
176
|
useCases_1.GetAttributeTagCollectionUseCase,
|
|
190
177
|
useCases_1.SetAttributeDeletionInfoOfDeletionProposedRelationshipUseCase,
|
|
191
|
-
useCases_1.MarkAttributeAsViewedUseCase
|
|
178
|
+
useCases_1.MarkAttributeAsViewedUseCase,
|
|
179
|
+
useCases_1.GetForwardingDetailsForAttributeUseCase])
|
|
192
180
|
], AttributesFacade);
|
|
193
181
|
//# sourceMappingURL=AttributesFacade.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AttributesFacade.js","sourceRoot":"","sources":["../../../../src/extensibility/facades/consumption/AttributesFacade.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAEA,0DAA+C;AAC/C,
|
|
1
|
+
{"version":3,"file":"AttributesFacade.js","sourceRoot":"","sources":["../../../../src/extensibility/facades/consumption/AttributesFacade.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,7 +3,6 @@ export * from "./DraftsFacade";
|
|
|
3
3
|
export * from "./IdentityMetadataFacade";
|
|
4
4
|
export * from "./IncomingRequestsFacade";
|
|
5
5
|
export * from "./NotificationsFacade";
|
|
6
|
-
export * from "./OpenId4VcFacade";
|
|
7
6
|
export * from "./OutgoingRequestsFacade";
|
|
8
7
|
export * from "./SettingsFacade";
|
|
9
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/extensibility/facades/consumption/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/extensibility/facades/consumption/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC"}
|
|
@@ -19,7 +19,6 @@ __exportStar(require("./DraftsFacade"), exports);
|
|
|
19
19
|
__exportStar(require("./IdentityMetadataFacade"), exports);
|
|
20
20
|
__exportStar(require("./IncomingRequestsFacade"), exports);
|
|
21
21
|
__exportStar(require("./NotificationsFacade"), exports);
|
|
22
|
-
__exportStar(require("./OpenId4VcFacade"), exports);
|
|
23
22
|
__exportStar(require("./OutgoingRequestsFacade"), exports);
|
|
24
23
|
__exportStar(require("./SettingsFacade"), exports);
|
|
25
24
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/extensibility/facades/consumption/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC;AACnC,iDAA+B;AAC/B,2DAAyC;AACzC,2DAAyC;AACzC,wDAAsC;AACtC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/extensibility/facades/consumption/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC;AACnC,iDAA+B;AAC/B,2DAAyC;AACzC,2DAAyC;AACzC,wDAAsC;AACtC,2DAAyC;AACzC,mDAAiC"}
|
|
@@ -56,18 +56,15 @@ declare class Notifications {
|
|
|
56
56
|
messageDoesNotContainNotification(messageId: CoreId): ApplicationError;
|
|
57
57
|
}
|
|
58
58
|
declare class Attributes {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
isNotThirdPartyRelationshipAttribute(attributeId: CoreId | string): ApplicationError;
|
|
59
|
+
isNotOwnIdentityAttribute(attributeId: CoreId | string): ApplicationError;
|
|
60
|
+
ownIdentityAttributeHasAlreadyBeenSharedWithPeer(attributeId: CoreId | string, peer: CoreAddress | string): ApplicationError;
|
|
61
|
+
successorOfOwnIdentityAttributeHasAlreadyBeenSharedWithPeer(attributeId: CoreId | string, successorId: CoreId | string, peer: CoreAddress | string): ApplicationError;
|
|
62
|
+
peerHasNoPreviousVersionOfAttribute(attributeId: CoreId | string, peer: CoreAddress | string): ApplicationError;
|
|
63
|
+
isNotOwnRelationshipAttribute(attributeId: CoreId | string): ApplicationError;
|
|
65
64
|
hasSuccessor(predecessor: LocalAttribute): ApplicationError;
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
setDefaultRepositoryAttributesIsDisabled(): ApplicationError;
|
|
70
|
-
cannotDeleteSharedAttributeWhileRelationshipIsPending(): ApplicationError;
|
|
65
|
+
cannotCreateDuplicateOwnIdentityAttribute(attributeId: CoreId | string): ApplicationError;
|
|
66
|
+
setDefaultOwnIdentityAttributesIsDisabled(): ApplicationError;
|
|
67
|
+
cannotDeleteSharedAttributeWhileRelationshipIsPending(attributeId: CoreId | string): ApplicationError;
|
|
71
68
|
}
|
|
72
69
|
declare class IdentityDeletionProcess {
|
|
73
70
|
noActiveIdentityDeletionProcess(): ApplicationError;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RuntimeErrors.d.ts","sourceRoot":"","sources":["../../../src/useCases/common/RuntimeErrors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAExD,cAAM,OAAO;IACF,OAAO,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,GAAG;IAInC,kBAAkB;IAIlB,cAAc;IAId,cAAc;IAId,UAAU;IAIV,cAAc,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,gBAAgB;IAIhE,yBAAyB,CAAC,OAAO,EAAE,MAAM,GAAG,gBAAgB;IAI5D,oBAAoB,CAAC,OAAO,EAAE,MAAM,GAAG,gBAAgB;IAIvD,cAAc,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,gBAAgB;IAIlD,YAAY,CAAC,OAAO,EAAE,MAAM;IAI5B,mBAAmB;IAInB,gBAAgB,IAAI,gBAAgB;CAG9C;AAED,cAAM,MAAM;IACD,WAAW,CAAC,OAAO,EAAE,MAAM;IAI3B,OAAO,CAAC,OAAO,EAAE,MAAM;IAIvB,sBAAsB,CAAC,OAAO,EAAE,MAAM;CAGhD;AAED,cAAM,KAAK;IACA,aAAa,IAAI,gBAAgB;CAG3C;AAED,cAAM,qBAAqB;IAChB,8BAA8B,IAAI,gBAAgB;IAOlD,iCAAiC,IAAI,gBAAgB;IAOrD,gCAAgC,IAAI,gBAAgB;IAIpD,4CAA4C,IAAI,gBAAgB;CAM1E;AAED,cAAM,aAAa;IACR,2BAA2B,IAAI,gBAAgB;IAI/C,yBAAyB,IAAI,gBAAgB;IAO7C,sCAAsC,IAAI,gBAAgB;CAMpE;AAED,cAAM,QAAQ;IACH,uBAAuB,CAAC,SAAS,EAAE,MAAM,EAAE;IAO3C,mCAAmC;IAOnC,mCAAmC;IAOnC,gBAAgB,CAAC,SAAS,EAAE,MAAM,EAAE;IAOpC,qBAAqB,CAAC,YAAY,EAAE,MAAM;CAGpD;AAED,cAAM,OAAO;IACF,eAAe,IAAI,gBAAgB;IAInC,6BAA6B,IAAI,gBAAgB;IAIjD,gBAAgB,IAAI,gBAAgB;CAG9C;AAED,cAAM,UAAU;IACL,gBAAgB,IAAI,gBAAgB;IAIpC,sBAAsB,IAAI,gBAAgB;CAGpD;AAED,cAAM,aAAa;IACR,uCAAuC,IAAI,gBAAgB;IAI3D,yCAAyC,CAAC,SAAS,EAAE,MAAM,GAAG,gBAAgB;IAO9E,iCAAiC,CAAC,SAAS,EAAE,MAAM,GAAG,gBAAgB;CAMhF;AAED,cAAM,UAAU;IACL,
|
|
1
|
+
{"version":3,"file":"RuntimeErrors.d.ts","sourceRoot":"","sources":["../../../src/useCases/common/RuntimeErrors.ts"],"names":[],"mappings":"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"}
|
|
@@ -129,41 +129,32 @@ class Notifications {
|
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
131
|
class Attributes {
|
|
132
|
-
|
|
133
|
-
return new ts_utils_1.ApplicationError("error.runtime.attributes.
|
|
132
|
+
isNotOwnIdentityAttribute(attributeId) {
|
|
133
|
+
return new ts_utils_1.ApplicationError("error.runtime.attributes.isNotOwnIdentityAttribute", `The Attribute '${attributeId.toString()}' is not an OwnIdentityAttribute.`);
|
|
134
134
|
}
|
|
135
|
-
|
|
136
|
-
return new ts_utils_1.ApplicationError("error.runtime.attributes.
|
|
135
|
+
ownIdentityAttributeHasAlreadyBeenSharedWithPeer(attributeId, peer) {
|
|
136
|
+
return new ts_utils_1.ApplicationError("error.runtime.attributes.ownIdentityAttributeHasAlreadyBeenSharedWithPeer", `The OwnIdentityAttribute '${attributeId.toString()}' has already been shared with peer '${peer.toString()}'.'.`);
|
|
137
137
|
}
|
|
138
|
-
|
|
139
|
-
return new ts_utils_1.ApplicationError("error.runtime.attributes.
|
|
138
|
+
successorOfOwnIdentityAttributeHasAlreadyBeenSharedWithPeer(attributeId, successorId, peer) {
|
|
139
|
+
return new ts_utils_1.ApplicationError("error.runtime.attributes.successorOfOwnIdentityAttributeHasAlreadyBeenSharedWithPeer", `A successor '${successorId.toString()}' of the OwnIdentityAttribute '${attributeId.toString()}' has already been shared with peer '${peer.toString()}'.'.`);
|
|
140
140
|
}
|
|
141
|
-
|
|
142
|
-
return new ts_utils_1.ApplicationError("error.runtime.attributes.
|
|
141
|
+
peerHasNoPreviousVersionOfAttribute(attributeId, peer) {
|
|
142
|
+
return new ts_utils_1.ApplicationError("error.runtime.attributes.peerHasNoPreviousVersionOfAttribute", `The peer '${peer.toString()}' doesn't have any previous version of the Attribute '${attributeId.toString()}'. Either you haven't shared it before or the peer has deleted it.`);
|
|
143
143
|
}
|
|
144
|
-
|
|
145
|
-
return new ts_utils_1.ApplicationError("error.runtime.attributes.
|
|
146
|
-
}
|
|
147
|
-
isNotThirdPartyRelationshipAttribute(attributeId) {
|
|
148
|
-
return new ts_utils_1.ApplicationError("error.runtime.attributes.isNotThirdPartyRelationshipAttribute", `Attribute '${attributeId.toString()}' is not a ThirdPartyRelationshipAttribute.`);
|
|
144
|
+
isNotOwnRelationshipAttribute(attributeId) {
|
|
145
|
+
return new ts_utils_1.ApplicationError("error.runtime.attributes.isNotOwnRelationshipAttribute", `The Attribute '${attributeId.toString()}' is not an OwnRelationshipAttribute.`);
|
|
149
146
|
}
|
|
150
147
|
hasSuccessor(predecessor) {
|
|
151
148
|
return new ts_utils_1.ApplicationError("error.runtime.attributes.hasSuccessor", `Attribute '${predecessor.id.toString()}' already has a successor ${predecessor.succeededBy?.toString()}.`);
|
|
152
149
|
}
|
|
153
|
-
|
|
154
|
-
return new ts_utils_1.ApplicationError("error.runtime.attributes.
|
|
155
|
-
}
|
|
156
|
-
cannotSeparatelyDeleteChildOfComplexAttribute(attributeId) {
|
|
157
|
-
return new ts_utils_1.ApplicationError("error.runtime.attributes.cannotSeparatelyDeleteChildOfComplexAttribute", `Attribute '${attributeId.toString()}' is a child of a complex Attribute. If you want to delete it, you must delete its parent.`);
|
|
158
|
-
}
|
|
159
|
-
cannotCreateDuplicateRepositoryAttribute(attributeId) {
|
|
160
|
-
return new ts_utils_1.ApplicationError("error.runtime.attributes.cannotCreateDuplicateRepositoryAttribute", `The RepositoryAttribute cannot be created because it has the same content.value as the already existing RepositoryAttribute with id '${attributeId.toString()}'.`);
|
|
150
|
+
cannotCreateDuplicateOwnIdentityAttribute(attributeId) {
|
|
151
|
+
return new ts_utils_1.ApplicationError("error.runtime.attributes.cannotCreateDuplicateOwnIdentityAttribute", `The OwnIdentityAttribute cannot be created because it has the same content.value as the already existing OwnIdentityAttribute with id '${attributeId.toString()}'.`);
|
|
161
152
|
}
|
|
162
|
-
|
|
163
|
-
return new ts_utils_1.ApplicationError("error.runtime.attributes.
|
|
153
|
+
setDefaultOwnIdentityAttributesIsDisabled() {
|
|
154
|
+
return new ts_utils_1.ApplicationError("error.runtime.attributes.setDefaultOwnIdentityAttributesIsDisabled", "Setting default OwnIdentityAttributes is disabled for this Account.");
|
|
164
155
|
}
|
|
165
|
-
cannotDeleteSharedAttributeWhileRelationshipIsPending() {
|
|
166
|
-
return new ts_utils_1.ApplicationError("error.runtime.attributes.cannotDeleteSharedAttributeWhileRelationshipIsPending",
|
|
156
|
+
cannotDeleteSharedAttributeWhileRelationshipIsPending(attributeId) {
|
|
157
|
+
return new ts_utils_1.ApplicationError("error.runtime.attributes.cannotDeleteSharedAttributeWhileRelationshipIsPending", `The shared Attribute '${attributeId.toString()}' cannot be deleted while the Relationship to a peer is in status 'Pending'. If you want to delete it now, you'll have to accept, reject or revoke the pending Relationship.`);
|
|
167
158
|
}
|
|
168
159
|
}
|
|
169
160
|
class IdentityDeletionProcess {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RuntimeErrors.js","sourceRoot":"","sources":["../../../src/useCases/common/RuntimeErrors.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"RuntimeErrors.js","sourceRoot":"","sources":["../../../src/useCases/common/RuntimeErrors.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const LoadPeerTokenAnonymousRequest: any;
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
2
|
+
export declare const CanCreateOwnIdentityAttributeRequest: any;
|
|
3
|
+
export declare const ChangeDefaultOwnIdentityAttributeRequest: any;
|
|
4
4
|
export declare const AcceptIncomingRequestRequest: any;
|
|
5
5
|
export declare const CanCreateOutgoingRequestRequest: any;
|
|
6
6
|
export declare const RejectIncomingRequestRequest: any;
|
|
@@ -19,29 +19,27 @@ export declare const ReceivedIncomingRequestRequest: any;
|
|
|
19
19
|
export declare const RequireManualDecisionOfIncomingRequestRequest: any;
|
|
20
20
|
export declare const SentOutgoingRequestRequest: any;
|
|
21
21
|
export declare const CreateAndShareRelationshipAttributeRequest: any;
|
|
22
|
-
export declare const
|
|
23
|
-
export declare const
|
|
24
|
-
export declare const DeletePeerSharedAttributeAndNotifyOwnerRequest: any;
|
|
25
|
-
export declare const DeleteRepositoryAttributeRequest: any;
|
|
22
|
+
export declare const CreateOwnIdentityAttributeRequest: any;
|
|
23
|
+
export declare const DeleteAttributeAndNotifyRequest: any;
|
|
26
24
|
export declare const DeleteSharedAttributesForRejectedOrRevokedRelationshipRequest: any;
|
|
27
|
-
export declare const DeleteThirdPartyRelationshipAttributeAndNotifyPeerRequest: any;
|
|
28
25
|
export declare const ExecuteIdentityAttributeQueryRequest: any;
|
|
29
26
|
export declare const ExecuteIQLQueryRequest: any;
|
|
30
27
|
export declare const ExecuteRelationshipAttributeQueryRequest: any;
|
|
31
28
|
export declare const ExecuteThirdPartyRelationshipAttributeQueryRequest: any;
|
|
32
29
|
export declare const GetAttributeRequest: any;
|
|
33
30
|
export declare const GetAttributesRequest: any;
|
|
34
|
-
export declare const
|
|
35
|
-
export declare const
|
|
36
|
-
export declare const
|
|
37
|
-
export declare const
|
|
31
|
+
export declare const GetForwardingDetailsForAttributeRequest: any;
|
|
32
|
+
export declare const GetOwnAttributesSharedWithPeerRequest: any;
|
|
33
|
+
export declare const GetOwnIdentityAttributesRequest: any;
|
|
34
|
+
export declare const GetPeerAttributesRequest: any;
|
|
38
35
|
export declare const GetVersionsOfAttributeRequest: any;
|
|
36
|
+
export declare const GetVersionsOfAttributeSharedWithPeerRequest: any;
|
|
39
37
|
export declare const MarkAttributeAsViewedRequest: any;
|
|
40
|
-
export declare const
|
|
38
|
+
export declare const NotifyPeerAboutOwnIdentityAttributeSuccessionRequest: any;
|
|
41
39
|
export declare const SetAttributeDeletionInfoOfDeletionProposedRelationshipRequest: any;
|
|
42
|
-
export declare const
|
|
40
|
+
export declare const ShareOwnIdentityAttributeRequest: any;
|
|
41
|
+
export declare const SucceedOwnIdentityAttributeRequest: any;
|
|
43
42
|
export declare const SucceedRelationshipAttributeAndNotifyPeerRequest: any;
|
|
44
|
-
export declare const SucceedRepositoryAttributeRequest: any;
|
|
45
43
|
export declare const ValidateIQLQueryRequest: any;
|
|
46
44
|
export declare const CreateDraftRequest: any;
|
|
47
45
|
export declare const DeleteDraftRequest: any;
|
|
@@ -56,11 +54,6 @@ export declare const GetNotificationsRequest: any;
|
|
|
56
54
|
export declare const ProcessNotificationByIdRequest: any;
|
|
57
55
|
export declare const ReceivedNotificationRequest: any;
|
|
58
56
|
export declare const SentNotificationRequest: any;
|
|
59
|
-
export declare const AcceptProofRequestRequest: any;
|
|
60
|
-
export declare const FetchCredentialOfferRequest: any;
|
|
61
|
-
export declare const FetchProofRequestRequest: any;
|
|
62
|
-
export declare const ResolveCredentialOfferRequest: any;
|
|
63
|
-
export declare const FetchedCredentialOfferRequest: any;
|
|
64
57
|
export declare const CreateSettingRequest: any;
|
|
65
58
|
export declare const DeleteSettingRequest: any;
|
|
66
59
|
export declare const GetSettingRequest: any;
|
|
@@ -131,32 +124,16 @@ export declare const DeleteTokenRequest: any;
|
|
|
131
124
|
export declare const GetTokenRequest: any;
|
|
132
125
|
export declare const GetTokensRequest: any;
|
|
133
126
|
export declare const LoadPeerTokenRequest: any;
|
|
134
|
-
export declare const GetVerifiableCredentialsRequest: any;
|
|
135
|
-
export declare const City: any;
|
|
136
|
-
export declare const Country: any;
|
|
137
127
|
export declare const CommunicationLanguage: any;
|
|
138
128
|
export declare const EMailAddress: any;
|
|
139
129
|
export declare const FaxNumber: any;
|
|
140
130
|
export declare const PhoneNumber: any;
|
|
141
131
|
export declare const Website: any;
|
|
142
|
-
export declare const State: any;
|
|
143
|
-
export declare const ZipCode: any;
|
|
144
132
|
export declare const DeliveryBoxAddress: any;
|
|
145
|
-
export declare const HouseNumber: any;
|
|
146
133
|
export declare const PostOfficeBoxAddress: any;
|
|
147
|
-
export declare const Street: any;
|
|
148
134
|
export declare const StreetAddress: any;
|
|
149
|
-
export declare const AffiliationOrganization: any;
|
|
150
|
-
export declare const AffiliationRole: any;
|
|
151
|
-
export declare const AffiliationUnit: any;
|
|
152
135
|
export declare const Affiliation: any;
|
|
153
|
-
export declare const BirthCity: any;
|
|
154
|
-
export declare const BirthCountry: any;
|
|
155
|
-
export declare const BirthDay: any;
|
|
156
|
-
export declare const BirthMonth: any;
|
|
157
|
-
export declare const BirthYear: any;
|
|
158
136
|
export declare const BirthDate: any;
|
|
159
|
-
export declare const BirthState: any;
|
|
160
137
|
export declare const BirthPlace: any;
|
|
161
138
|
export declare const DisplayName: any;
|
|
162
139
|
export declare const IdentityFileReference: any;
|
|
@@ -166,12 +143,10 @@ export declare const GivenName: any;
|
|
|
166
143
|
export declare const HonorificPrefix: any;
|
|
167
144
|
export declare const HonorificSuffix: any;
|
|
168
145
|
export declare const MiddleName: any;
|
|
169
|
-
export declare const Surname: any;
|
|
170
|
-
export declare const PersonName: any;
|
|
171
146
|
export declare const Pseudonym: any;
|
|
147
|
+
export declare const Surname: any;
|
|
172
148
|
export declare const Citizenship: any;
|
|
173
149
|
export declare const JobTitle: any;
|
|
174
150
|
export declare const Nationality: any;
|
|
175
151
|
export declare const Sex: any;
|
|
176
|
-
export declare const VerifiableCredential: any;
|
|
177
152
|
//# sourceMappingURL=Schemas.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Schemas.d.ts","sourceRoot":"","sources":["../../../src/useCases/common/Schemas.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,6BAA6B,EAAE,GAmC3C,CAAA;AAED,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"Schemas.d.ts","sourceRoot":"","sources":["../../../src/useCases/common/Schemas.ts"],"names":[],"mappings":"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"}
|