@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
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
-
};
|
|
14
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.AcceptProofRequestUseCase = void 0;
|
|
16
|
-
const ts_utils_1 = require("@js-soft/ts-utils");
|
|
17
|
-
const consumption_1 = require("@nmshd/consumption");
|
|
18
|
-
const typescript_ioc_1 = require("@nmshd/typescript-ioc");
|
|
19
|
-
const common_1 = require("../../common");
|
|
20
|
-
let Validator = class Validator extends common_1.SchemaValidator {
|
|
21
|
-
constructor(schemaRepository) {
|
|
22
|
-
super(schemaRepository.getSchema("AcceptProofRequestRequest"));
|
|
23
|
-
}
|
|
24
|
-
};
|
|
25
|
-
Validator = __decorate([
|
|
26
|
-
__param(0, typescript_ioc_1.Inject),
|
|
27
|
-
__metadata("design:paramtypes", [common_1.SchemaRepository])
|
|
28
|
-
], Validator);
|
|
29
|
-
let AcceptProofRequestUseCase = class AcceptProofRequestUseCase extends common_1.UseCase {
|
|
30
|
-
constructor(openId4VcContoller, validator) {
|
|
31
|
-
super(validator);
|
|
32
|
-
this.openId4VcContoller = openId4VcContoller;
|
|
33
|
-
}
|
|
34
|
-
async executeInternal(request) {
|
|
35
|
-
const result = await this.openId4VcContoller.acceptProofRequest(request.jsonEncodedRequest);
|
|
36
|
-
return ts_utils_1.Result.ok({ status: result.status, message: result.success });
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
exports.AcceptProofRequestUseCase = AcceptProofRequestUseCase;
|
|
40
|
-
exports.AcceptProofRequestUseCase = AcceptProofRequestUseCase = __decorate([
|
|
41
|
-
__param(0, typescript_ioc_1.Inject),
|
|
42
|
-
__param(1, typescript_ioc_1.Inject),
|
|
43
|
-
__metadata("design:paramtypes", [consumption_1.OpenId4VcController,
|
|
44
|
-
Validator])
|
|
45
|
-
], AcceptProofRequestUseCase);
|
|
46
|
-
//# sourceMappingURL=AcceptProofRequestUseCase.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AcceptProofRequestUseCase.js","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/AcceptProofRequestUseCase.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,gDAA2C;AAC3C,oDAAyD;AAEzD,0DAA+C;AAC/C,yCAA0E;AAM1E,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,wBAA0C;IAC9D,YAA2B,gBAAkC;QACzD,KAAK,CAAC,gBAAgB,CAAC,SAAS,CAAC,2BAA2B,CAAC,CAAC,CAAC;IACnE,CAAC;CACJ,CAAA;AAJK,SAAS;IACS,WAAA,uBAAM,CAAA;qCAAmB,yBAAgB;GAD3D,SAAS,CAId;AAED,IAAa,yBAAyB,GAAtC,MAAa,yBAA0B,SAAQ,gBAAyD;IACpG,YAC6B,kBAAuC,EACxD,SAAoB;QAE5B,KAAK,CAAC,SAAS,CAAC,CAAC;QAHQ,uBAAkB,GAAlB,kBAAkB,CAAqB;IAIpE,CAAC;IAEkB,KAAK,CAAC,eAAe,CAAC,OAAkC;QACvE,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,kBAAkB,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC;QAC5F,OAAO,iBAAM,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,OAAO,EAA2B,CAAC,CAAC;IAClG,CAAC;CACJ,CAAA;AAZY,8DAAyB;oCAAzB,yBAAyB;IAE7B,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;qCADsC,iCAAmB;QAC7C,SAAS;GAHvB,yBAAyB,CAYrC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Result } from "@js-soft/ts-utils";
|
|
2
|
-
import { OpenId4VcController } from "@nmshd/consumption";
|
|
3
|
-
import { FetchedCredentialOfferDTO } from "@nmshd/runtime-types";
|
|
4
|
-
import { SchemaRepository, SchemaValidator, UseCase } from "../../common";
|
|
5
|
-
export interface FetchCredentialOfferRequest {
|
|
6
|
-
credentialOfferUrl: string;
|
|
7
|
-
}
|
|
8
|
-
declare class Validator extends SchemaValidator<FetchCredentialOfferRequest> {
|
|
9
|
-
constructor(schemaRepository: SchemaRepository);
|
|
10
|
-
}
|
|
11
|
-
export declare class FetchCredentialOfferUseCase extends UseCase<FetchCredentialOfferRequest, FetchedCredentialOfferDTO> {
|
|
12
|
-
private readonly openId4VcContoller;
|
|
13
|
-
constructor(openId4VcContoller: OpenId4VcController, validator: Validator);
|
|
14
|
-
protected executeInternal(request: FetchCredentialOfferRequest): Promise<Result<FetchedCredentialOfferDTO>>;
|
|
15
|
-
}
|
|
16
|
-
export {};
|
|
17
|
-
//# sourceMappingURL=FetchCredentialOfferUseCase.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FetchCredentialOfferUseCase.d.ts","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/FetchCredentialOfferUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AACzD,OAAO,EAAE,yBAAyB,EAAE,MAAM,sBAAsB,CAAC;AAEjE,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAE1E,MAAM,WAAW,2BAA2B;IACxC,kBAAkB,EAAE,MAAM,CAAC;CAC9B;AAED,cAAM,SAAU,SAAQ,eAAe,CAAC,2BAA2B,CAAC;gBACrC,gBAAgB,EAAE,gBAAgB;CAGhE;AAED,qBAAa,2BAA4B,SAAQ,OAAO,CAAC,2BAA2B,EAAE,yBAAyB,CAAC;IAEhG,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,mBAAmB,EACxD,SAAS,EAAE,SAAS;cAKP,eAAe,CAAC,OAAO,EAAE,2BAA2B,GAAG,OAAO,CAAC,MAAM,CAAC,yBAAyB,CAAC,CAAC;CAI7H"}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
-
};
|
|
14
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.FetchCredentialOfferUseCase = void 0;
|
|
16
|
-
const ts_utils_1 = require("@js-soft/ts-utils");
|
|
17
|
-
const consumption_1 = require("@nmshd/consumption");
|
|
18
|
-
const typescript_ioc_1 = require("@nmshd/typescript-ioc");
|
|
19
|
-
const common_1 = require("../../common");
|
|
20
|
-
let Validator = class Validator extends common_1.SchemaValidator {
|
|
21
|
-
constructor(schemaRepository) {
|
|
22
|
-
super(schemaRepository.getSchema("ResolveCredentialOfferRequest"));
|
|
23
|
-
}
|
|
24
|
-
};
|
|
25
|
-
Validator = __decorate([
|
|
26
|
-
__param(0, typescript_ioc_1.Inject),
|
|
27
|
-
__metadata("design:paramtypes", [common_1.SchemaRepository])
|
|
28
|
-
], Validator);
|
|
29
|
-
let FetchCredentialOfferUseCase = class FetchCredentialOfferUseCase extends common_1.UseCase {
|
|
30
|
-
constructor(openId4VcContoller, validator) {
|
|
31
|
-
super(validator);
|
|
32
|
-
this.openId4VcContoller = openId4VcContoller;
|
|
33
|
-
}
|
|
34
|
-
async executeInternal(request) {
|
|
35
|
-
const result = await this.openId4VcContoller.fetchCredentialOffer(request.credentialOfferUrl);
|
|
36
|
-
return ts_utils_1.Result.ok({ jsonRepresentation: result.data });
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
exports.FetchCredentialOfferUseCase = FetchCredentialOfferUseCase;
|
|
40
|
-
exports.FetchCredentialOfferUseCase = FetchCredentialOfferUseCase = __decorate([
|
|
41
|
-
__param(0, typescript_ioc_1.Inject),
|
|
42
|
-
__param(1, typescript_ioc_1.Inject),
|
|
43
|
-
__metadata("design:paramtypes", [consumption_1.OpenId4VcController,
|
|
44
|
-
Validator])
|
|
45
|
-
], FetchCredentialOfferUseCase);
|
|
46
|
-
//# sourceMappingURL=FetchCredentialOfferUseCase.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FetchCredentialOfferUseCase.js","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/FetchCredentialOfferUseCase.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,gDAA2C;AAC3C,oDAAyD;AAEzD,0DAA+C;AAC/C,yCAA0E;AAM1E,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,wBAA4C;IAChE,YAA2B,gBAAkC;QACzD,KAAK,CAAC,gBAAgB,CAAC,SAAS,CAAC,+BAA+B,CAAC,CAAC,CAAC;IACvE,CAAC;CACJ,CAAA;AAJK,SAAS;IACS,WAAA,uBAAM,CAAA;qCAAmB,yBAAgB;GAD3D,SAAS,CAId;AAED,IAAa,2BAA2B,GAAxC,MAAa,2BAA4B,SAAQ,gBAA+D;IAC5G,YAC6B,kBAAuC,EACxD,SAAoB;QAE5B,KAAK,CAAC,SAAS,CAAC,CAAC;QAHQ,uBAAkB,GAAlB,kBAAkB,CAAqB;IAIpE,CAAC;IAEkB,KAAK,CAAC,eAAe,CAAC,OAAoC;QACzE,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,oBAAoB,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC;QAC9F,OAAO,iBAAM,CAAC,EAAE,CAAC,EAAE,kBAAkB,EAAE,MAAM,CAAC,IAAI,EAA+B,CAAC,CAAC;IACvF,CAAC;CACJ,CAAA;AAZY,kEAA2B;sCAA3B,2BAA2B;IAE/B,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;qCADsC,iCAAmB;QAC7C,SAAS;GAHvB,2BAA2B,CAYvC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Result } from "@js-soft/ts-utils";
|
|
2
|
-
import { OpenId4VcController } from "@nmshd/consumption";
|
|
3
|
-
import { FetchedProofRequestDTO } from "@nmshd/runtime-types";
|
|
4
|
-
import { SchemaRepository, SchemaValidator, UseCase } from "../../common";
|
|
5
|
-
export interface FetchProofRequestRequest {
|
|
6
|
-
proofRequestUrl: string;
|
|
7
|
-
}
|
|
8
|
-
declare class Validator extends SchemaValidator<FetchProofRequestRequest> {
|
|
9
|
-
constructor(schemaRepository: SchemaRepository);
|
|
10
|
-
}
|
|
11
|
-
export declare class FetchProofRequestUseCase extends UseCase<FetchProofRequestRequest, FetchedProofRequestDTO> {
|
|
12
|
-
private readonly openId4VcContoller;
|
|
13
|
-
constructor(openId4VcContoller: OpenId4VcController, validator: Validator);
|
|
14
|
-
protected executeInternal(request: FetchProofRequestRequest): Promise<Result<FetchedProofRequestDTO>>;
|
|
15
|
-
}
|
|
16
|
-
export {};
|
|
17
|
-
//# sourceMappingURL=FetchProofRequestUseCase.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FetchProofRequestUseCase.d.ts","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/FetchProofRequestUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AACzD,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAE9D,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAE1E,MAAM,WAAW,wBAAwB;IACrC,eAAe,EAAE,MAAM,CAAC;CAC3B;AAED,cAAM,SAAU,SAAQ,eAAe,CAAC,wBAAwB,CAAC;gBAClC,gBAAgB,EAAE,gBAAgB;CAGhE;AAED,qBAAa,wBAAyB,SAAQ,OAAO,CAAC,wBAAwB,EAAE,sBAAsB,CAAC;IAEvF,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,mBAAmB,EACxD,SAAS,EAAE,SAAS;cAKP,eAAe,CAAC,OAAO,EAAE,wBAAwB,GAAG,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAC,CAAC;CAIvH"}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
-
};
|
|
14
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.FetchProofRequestUseCase = void 0;
|
|
16
|
-
const ts_utils_1 = require("@js-soft/ts-utils");
|
|
17
|
-
const consumption_1 = require("@nmshd/consumption");
|
|
18
|
-
const typescript_ioc_1 = require("@nmshd/typescript-ioc");
|
|
19
|
-
const common_1 = require("../../common");
|
|
20
|
-
let Validator = class Validator extends common_1.SchemaValidator {
|
|
21
|
-
constructor(schemaRepository) {
|
|
22
|
-
super(schemaRepository.getSchema("FetchProofRequestRequest"));
|
|
23
|
-
}
|
|
24
|
-
};
|
|
25
|
-
Validator = __decorate([
|
|
26
|
-
__param(0, typescript_ioc_1.Inject),
|
|
27
|
-
__metadata("design:paramtypes", [common_1.SchemaRepository])
|
|
28
|
-
], Validator);
|
|
29
|
-
let FetchProofRequestUseCase = class FetchProofRequestUseCase extends common_1.UseCase {
|
|
30
|
-
constructor(openId4VcContoller, validator) {
|
|
31
|
-
super(validator);
|
|
32
|
-
this.openId4VcContoller = openId4VcContoller;
|
|
33
|
-
}
|
|
34
|
-
async executeInternal(request) {
|
|
35
|
-
const result = await this.openId4VcContoller.fetchProofRequest(request.proofRequestUrl);
|
|
36
|
-
return ts_utils_1.Result.ok({ jsonRepresentation: result.data });
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
exports.FetchProofRequestUseCase = FetchProofRequestUseCase;
|
|
40
|
-
exports.FetchProofRequestUseCase = FetchProofRequestUseCase = __decorate([
|
|
41
|
-
__param(0, typescript_ioc_1.Inject),
|
|
42
|
-
__param(1, typescript_ioc_1.Inject),
|
|
43
|
-
__metadata("design:paramtypes", [consumption_1.OpenId4VcController,
|
|
44
|
-
Validator])
|
|
45
|
-
], FetchProofRequestUseCase);
|
|
46
|
-
//# sourceMappingURL=FetchProofRequestUseCase.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FetchProofRequestUseCase.js","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/FetchProofRequestUseCase.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,gDAA2C;AAC3C,oDAAyD;AAEzD,0DAA+C;AAC/C,yCAA0E;AAM1E,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,wBAAyC;IAC7D,YAA2B,gBAAkC;QACzD,KAAK,CAAC,gBAAgB,CAAC,SAAS,CAAC,0BAA0B,CAAC,CAAC,CAAC;IAClE,CAAC;CACJ,CAAA;AAJK,SAAS;IACS,WAAA,uBAAM,CAAA;qCAAmB,yBAAgB;GAD3D,SAAS,CAId;AAED,IAAa,wBAAwB,GAArC,MAAa,wBAAyB,SAAQ,gBAAyD;IACnG,YAC6B,kBAAuC,EACxD,SAAoB;QAE5B,KAAK,CAAC,SAAS,CAAC,CAAC;QAHQ,uBAAkB,GAAlB,kBAAkB,CAAqB;IAIpE,CAAC;IAEkB,KAAK,CAAC,eAAe,CAAC,OAAiC;QACtE,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;QACxF,OAAO,iBAAM,CAAC,EAAE,CAAC,EAAE,kBAAkB,EAAE,MAAM,CAAC,IAAI,EAA4B,CAAC,CAAC;IACpF,CAAC;CACJ,CAAA;AAZY,4DAAwB;mCAAxB,wBAAwB;IAE5B,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;qCADsC,iCAAmB;QAC7C,SAAS;GAHvB,wBAAwB,CAYpC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Result } from "@js-soft/ts-utils";
|
|
2
|
-
import { OpenId4VcController } from "@nmshd/consumption";
|
|
3
|
-
import { VerifiableCredentialDTO } from "@nmshd/runtime-types";
|
|
4
|
-
import { SchemaRepository, SchemaValidator, UseCase } from "../../common";
|
|
5
|
-
export interface GetVerifiableCredentialsRequest {
|
|
6
|
-
ids: string[] | undefined;
|
|
7
|
-
}
|
|
8
|
-
declare class Validator extends SchemaValidator<GetVerifiableCredentialsRequest> {
|
|
9
|
-
constructor(schemaRepository: SchemaRepository);
|
|
10
|
-
}
|
|
11
|
-
export declare class GetVerifiableCredentialsUseCase extends UseCase<GetVerifiableCredentialsRequest, VerifiableCredentialDTO[]> {
|
|
12
|
-
private readonly openId4VcContoller;
|
|
13
|
-
constructor(openId4VcContoller: OpenId4VcController, validator: Validator);
|
|
14
|
-
protected executeInternal(request: GetVerifiableCredentialsRequest): Promise<Result<VerifiableCredentialDTO[]>>;
|
|
15
|
-
}
|
|
16
|
-
export {};
|
|
17
|
-
//# sourceMappingURL=GetVerifiableCredentialsUseCase.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GetVerifiableCredentialsUseCase.d.ts","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/GetVerifiableCredentialsUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AACzD,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAE/D,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAE1E,MAAM,WAAW,+BAA+B;IAC5C,GAAG,EAAE,MAAM,EAAE,GAAG,SAAS,CAAC;CAC7B;AAED,cAAM,SAAU,SAAQ,eAAe,CAAC,+BAA+B,CAAC;gBACzC,gBAAgB,EAAE,gBAAgB;CAGhE;AAED,qBAAa,+BAAgC,SAAQ,OAAO,CAAC,+BAA+B,EAAE,uBAAuB,EAAE,CAAC;IAExG,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,mBAAmB,EACxD,SAAS,EAAE,SAAS;cAKP,eAAe,CAAC,OAAO,EAAE,+BAA+B,GAAG,OAAO,CAAC,MAAM,CAAC,uBAAuB,EAAE,CAAC,CAAC;CAMjI"}
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
-
};
|
|
14
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.GetVerifiableCredentialsUseCase = void 0;
|
|
16
|
-
const ts_utils_1 = require("@js-soft/ts-utils");
|
|
17
|
-
const consumption_1 = require("@nmshd/consumption");
|
|
18
|
-
const typescript_ioc_1 = require("@nmshd/typescript-ioc");
|
|
19
|
-
const common_1 = require("../../common");
|
|
20
|
-
let Validator = class Validator extends common_1.SchemaValidator {
|
|
21
|
-
constructor(schemaRepository) {
|
|
22
|
-
super(schemaRepository.getSchema("GetVerifiableCredentialsRequest"));
|
|
23
|
-
}
|
|
24
|
-
};
|
|
25
|
-
Validator = __decorate([
|
|
26
|
-
__param(0, typescript_ioc_1.Inject),
|
|
27
|
-
__metadata("design:paramtypes", [common_1.SchemaRepository])
|
|
28
|
-
], Validator);
|
|
29
|
-
let GetVerifiableCredentialsUseCase = class GetVerifiableCredentialsUseCase extends common_1.UseCase {
|
|
30
|
-
constructor(openId4VcContoller, validator) {
|
|
31
|
-
super(validator);
|
|
32
|
-
this.openId4VcContoller = openId4VcContoller;
|
|
33
|
-
}
|
|
34
|
-
async executeInternal(request) {
|
|
35
|
-
// eslint-disable-next-line no-console
|
|
36
|
-
console.log("GetVerifiableCredentialsUseCase called with ids:", JSON.stringify(request.ids));
|
|
37
|
-
const credentials = await this.openId4VcContoller.getVerifiableCredentials(request.ids);
|
|
38
|
-
return ts_utils_1.Result.ok(credentials);
|
|
39
|
-
}
|
|
40
|
-
};
|
|
41
|
-
exports.GetVerifiableCredentialsUseCase = GetVerifiableCredentialsUseCase;
|
|
42
|
-
exports.GetVerifiableCredentialsUseCase = GetVerifiableCredentialsUseCase = __decorate([
|
|
43
|
-
__param(0, typescript_ioc_1.Inject),
|
|
44
|
-
__param(1, typescript_ioc_1.Inject),
|
|
45
|
-
__metadata("design:paramtypes", [consumption_1.OpenId4VcController,
|
|
46
|
-
Validator])
|
|
47
|
-
], GetVerifiableCredentialsUseCase);
|
|
48
|
-
//# sourceMappingURL=GetVerifiableCredentialsUseCase.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GetVerifiableCredentialsUseCase.js","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/GetVerifiableCredentialsUseCase.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,gDAA2C;AAC3C,oDAAyD;AAEzD,0DAA+C;AAC/C,yCAA0E;AAM1E,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,wBAAgD;IACpE,YAA2B,gBAAkC;QACzD,KAAK,CAAC,gBAAgB,CAAC,SAAS,CAAC,iCAAiC,CAAC,CAAC,CAAC;IACzE,CAAC;CACJ,CAAA;AAJK,SAAS;IACS,WAAA,uBAAM,CAAA;qCAAmB,yBAAgB;GAD3D,SAAS,CAId;AAED,IAAa,+BAA+B,GAA5C,MAAa,+BAAgC,SAAQ,gBAAmE;IACpH,YAC6B,kBAAuC,EACxD,SAAoB;QAE5B,KAAK,CAAC,SAAS,CAAC,CAAC;QAHQ,uBAAkB,GAAlB,kBAAkB,CAAqB;IAIpE,CAAC;IAEkB,KAAK,CAAC,eAAe,CAAC,OAAwC;QAC7E,sCAAsC;QACtC,OAAO,CAAC,GAAG,CAAC,kDAAkD,EAAE,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;QAC7F,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,wBAAwB,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;QACxF,OAAO,iBAAM,CAAC,EAAE,CAAC,WAAwC,CAAC,CAAC;IAC/D,CAAC;CACJ,CAAA;AAdY,0EAA+B;0CAA/B,+BAA+B;IAEnC,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;qCADsC,iCAAmB;QAC7C,SAAS;GAHvB,+BAA+B,CAc3C"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Result } from "@js-soft/ts-utils";
|
|
2
|
-
import { OpenId4VcController } from "@nmshd/consumption";
|
|
3
|
-
import { VerifiableCredentialDTO } from "@nmshd/runtime-types";
|
|
4
|
-
import { SchemaRepository, SchemaValidator, UseCase } from "../../common";
|
|
5
|
-
export interface ResolveCredentialOfferRequest {
|
|
6
|
-
credentialOfferUrl: string;
|
|
7
|
-
}
|
|
8
|
-
declare class Validator extends SchemaValidator<ResolveCredentialOfferRequest> {
|
|
9
|
-
constructor(schemaRepository: SchemaRepository);
|
|
10
|
-
}
|
|
11
|
-
export declare class ResolveCredentialOfferUseCase extends UseCase<ResolveCredentialOfferRequest, VerifiableCredentialDTO> {
|
|
12
|
-
private readonly openId4VcContoller;
|
|
13
|
-
constructor(openId4VcContoller: OpenId4VcController, validator: Validator);
|
|
14
|
-
protected executeInternal(request: ResolveCredentialOfferRequest): Promise<Result<VerifiableCredentialDTO>>;
|
|
15
|
-
}
|
|
16
|
-
export {};
|
|
17
|
-
//# sourceMappingURL=ResolveCredentialOfferUseCase.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResolveCredentialOfferUseCase.d.ts","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/ResolveCredentialOfferUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AACzD,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAE/D,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAE1E,MAAM,WAAW,6BAA6B;IAC1C,kBAAkB,EAAE,MAAM,CAAC;CAC9B;AAED,cAAM,SAAU,SAAQ,eAAe,CAAC,6BAA6B,CAAC;gBACvC,gBAAgB,EAAE,gBAAgB;CAGhE;AAED,qBAAa,6BAA8B,SAAQ,OAAO,CAAC,6BAA6B,EAAE,uBAAuB,CAAC;IAElG,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,mBAAmB,EACxD,SAAS,EAAE,SAAS;cAKP,eAAe,CAAC,OAAO,EAAE,6BAA6B,GAAG,OAAO,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAAC;CAI7H"}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
-
};
|
|
14
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.ResolveCredentialOfferUseCase = void 0;
|
|
16
|
-
const ts_utils_1 = require("@js-soft/ts-utils");
|
|
17
|
-
const consumption_1 = require("@nmshd/consumption");
|
|
18
|
-
const typescript_ioc_1 = require("@nmshd/typescript-ioc");
|
|
19
|
-
const common_1 = require("../../common");
|
|
20
|
-
let Validator = class Validator extends common_1.SchemaValidator {
|
|
21
|
-
constructor(schemaRepository) {
|
|
22
|
-
super(schemaRepository.getSchema("ResolveCredentialOfferRequest"));
|
|
23
|
-
}
|
|
24
|
-
};
|
|
25
|
-
Validator = __decorate([
|
|
26
|
-
__param(0, typescript_ioc_1.Inject),
|
|
27
|
-
__metadata("design:paramtypes", [common_1.SchemaRepository])
|
|
28
|
-
], Validator);
|
|
29
|
-
let ResolveCredentialOfferUseCase = class ResolveCredentialOfferUseCase extends common_1.UseCase {
|
|
30
|
-
constructor(openId4VcContoller, validator) {
|
|
31
|
-
super(validator);
|
|
32
|
-
this.openId4VcContoller = openId4VcContoller;
|
|
33
|
-
}
|
|
34
|
-
async executeInternal(request) {
|
|
35
|
-
const result = await this.openId4VcContoller.processCredentialOffer(request.credentialOfferUrl);
|
|
36
|
-
return ts_utils_1.Result.ok({ id: result.value.id, data: result.value.data });
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
exports.ResolveCredentialOfferUseCase = ResolveCredentialOfferUseCase;
|
|
40
|
-
exports.ResolveCredentialOfferUseCase = ResolveCredentialOfferUseCase = __decorate([
|
|
41
|
-
__param(0, typescript_ioc_1.Inject),
|
|
42
|
-
__param(1, typescript_ioc_1.Inject),
|
|
43
|
-
__metadata("design:paramtypes", [consumption_1.OpenId4VcController,
|
|
44
|
-
Validator])
|
|
45
|
-
], ResolveCredentialOfferUseCase);
|
|
46
|
-
//# sourceMappingURL=ResolveCredentialOfferUseCase.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResolveCredentialOfferUseCase.js","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/ResolveCredentialOfferUseCase.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,gDAA2C;AAC3C,oDAAyD;AAEzD,0DAA+C;AAC/C,yCAA0E;AAM1E,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,wBAA8C;IAClE,YAA2B,gBAAkC;QACzD,KAAK,CAAC,gBAAgB,CAAC,SAAS,CAAC,+BAA+B,CAAC,CAAC,CAAC;IACvE,CAAC;CACJ,CAAA;AAJK,SAAS;IACS,WAAA,uBAAM,CAAA;qCAAmB,yBAAgB;GAD3D,SAAS,CAId;AAED,IAAa,6BAA6B,GAA1C,MAAa,6BAA8B,SAAQ,gBAA+D;IAC9G,YAC6B,kBAAuC,EACxD,SAAoB;QAE5B,KAAK,CAAC,SAAS,CAAC,CAAC;QAHQ,uBAAkB,GAAlB,kBAAkB,CAAqB;IAIpE,CAAC;IAEkB,KAAK,CAAC,eAAe,CAAC,OAAsC;QAC3E,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,sBAAsB,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC;QAChG,OAAO,iBAAM,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,IAAI,EAA6B,CAAC,CAAC;IAClG,CAAC;CACJ,CAAA;AAZY,sEAA6B;wCAA7B,6BAA6B;IAEjC,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;qCADsC,iCAAmB;QAC7C,SAAS;GAHvB,6BAA6B,CAYzC"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Result } from "@js-soft/ts-utils";
|
|
2
|
-
import { OpenId4VcController } from "@nmshd/consumption";
|
|
3
|
-
import { VerifiableCredentialDTO } from "@nmshd/runtime-types";
|
|
4
|
-
import { SchemaRepository, SchemaValidator, UseCase } from "../../common";
|
|
5
|
-
export interface FetchedCredentialOfferRequest {
|
|
6
|
-
data: string;
|
|
7
|
-
pinCode?: string;
|
|
8
|
-
requestedCredentials: string[];
|
|
9
|
-
}
|
|
10
|
-
declare class Validator extends SchemaValidator<FetchedCredentialOfferRequest> {
|
|
11
|
-
constructor(schemaRepository: SchemaRepository);
|
|
12
|
-
}
|
|
13
|
-
export declare class ResolveFetchedCredentialOfferUseCase extends UseCase<FetchedCredentialOfferRequest, VerifiableCredentialDTO> {
|
|
14
|
-
private readonly openId4VcContoller;
|
|
15
|
-
constructor(openId4VcContoller: OpenId4VcController, validator: Validator);
|
|
16
|
-
protected executeInternal(request: FetchedCredentialOfferRequest): Promise<Result<VerifiableCredentialDTO>>;
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
19
|
-
//# sourceMappingURL=ResolveFetchedCredentialUseCase.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResolveFetchedCredentialUseCase.d.ts","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/ResolveFetchedCredentialUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AACzD,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAE/D,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAE1E,MAAM,WAAW,6BAA6B;IAC1C,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,oBAAoB,EAAE,MAAM,EAAE,CAAC;CAClC;AAED,cAAM,SAAU,SAAQ,eAAe,CAAC,6BAA6B,CAAC;gBACvC,gBAAgB,EAAE,gBAAgB;CAGhE;AAED,qBAAa,oCAAqC,SAAQ,OAAO,CAAC,6BAA6B,EAAE,uBAAuB,CAAC;IAEzG,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,mBAAmB,EACxD,SAAS,EAAE,SAAS;cAKP,eAAe,CAAC,OAAO,EAAE,6BAA6B,GAAG,OAAO,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAAC;CAS7H"}
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
-
};
|
|
14
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.ResolveFetchedCredentialOfferUseCase = void 0;
|
|
16
|
-
const ts_utils_1 = require("@js-soft/ts-utils");
|
|
17
|
-
const consumption_1 = require("@nmshd/consumption");
|
|
18
|
-
const typescript_ioc_1 = require("@nmshd/typescript-ioc");
|
|
19
|
-
const common_1 = require("../../common");
|
|
20
|
-
let Validator = class Validator extends common_1.SchemaValidator {
|
|
21
|
-
constructor(schemaRepository) {
|
|
22
|
-
super(schemaRepository.getSchema("FetchedCredentialOfferRequest"));
|
|
23
|
-
}
|
|
24
|
-
};
|
|
25
|
-
Validator = __decorate([
|
|
26
|
-
__param(0, typescript_ioc_1.Inject),
|
|
27
|
-
__metadata("design:paramtypes", [common_1.SchemaRepository])
|
|
28
|
-
], Validator);
|
|
29
|
-
let ResolveFetchedCredentialOfferUseCase = class ResolveFetchedCredentialOfferUseCase extends common_1.UseCase {
|
|
30
|
-
constructor(openId4VcContoller, validator) {
|
|
31
|
-
super(validator);
|
|
32
|
-
this.openId4VcContoller = openId4VcContoller;
|
|
33
|
-
}
|
|
34
|
-
async executeInternal(request) {
|
|
35
|
-
const result = await this.openId4VcContoller.processFetchedCredentialOffer(request.data, request.requestedCredentials, request.pinCode);
|
|
36
|
-
return ts_utils_1.Result.ok({
|
|
37
|
-
data: result.data,
|
|
38
|
-
id: result.id,
|
|
39
|
-
type: result.type,
|
|
40
|
-
displayInformation: result.displayInformation
|
|
41
|
-
});
|
|
42
|
-
}
|
|
43
|
-
};
|
|
44
|
-
exports.ResolveFetchedCredentialOfferUseCase = ResolveFetchedCredentialOfferUseCase;
|
|
45
|
-
exports.ResolveFetchedCredentialOfferUseCase = ResolveFetchedCredentialOfferUseCase = __decorate([
|
|
46
|
-
__param(0, typescript_ioc_1.Inject),
|
|
47
|
-
__param(1, typescript_ioc_1.Inject),
|
|
48
|
-
__metadata("design:paramtypes", [consumption_1.OpenId4VcController,
|
|
49
|
-
Validator])
|
|
50
|
-
], ResolveFetchedCredentialOfferUseCase);
|
|
51
|
-
//# sourceMappingURL=ResolveFetchedCredentialUseCase.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResolveFetchedCredentialUseCase.js","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/ResolveFetchedCredentialUseCase.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,gDAA2C;AAC3C,oDAAyD;AAEzD,0DAA+C;AAC/C,yCAA0E;AAQ1E,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,wBAA8C;IAClE,YAA2B,gBAAkC;QACzD,KAAK,CAAC,gBAAgB,CAAC,SAAS,CAAC,+BAA+B,CAAC,CAAC,CAAC;IACvE,CAAC;CACJ,CAAA;AAJK,SAAS;IACS,WAAA,uBAAM,CAAA;qCAAmB,yBAAgB;GAD3D,SAAS,CAId;AAED,IAAa,oCAAoC,GAAjD,MAAa,oCAAqC,SAAQ,gBAA+D;IACrH,YAC6B,kBAAuC,EACxD,SAAoB;QAE5B,KAAK,CAAC,SAAS,CAAC,CAAC;QAHQ,uBAAkB,GAAlB,kBAAkB,CAAqB;IAIpE,CAAC;IAEkB,KAAK,CAAC,eAAe,CAAC,OAAsC;QAC3E,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,6BAA6B,CAAC,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,oBAAoB,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;QACxI,OAAO,iBAAM,CAAC,EAAE,CAAC;YACb,IAAI,EAAE,MAAM,CAAC,IAAI;YACjB,EAAE,EAAE,MAAM,CAAC,EAAE;YACb,IAAI,EAAE,MAAM,CAAC,IAAI;YACjB,kBAAkB,EAAE,MAAM,CAAC,kBAAkB;SAChD,CAAC,CAAC;IACP,CAAC;CACJ,CAAA;AAjBY,oFAAoC;+CAApC,oCAAoC;IAExC,WAAA,uBAAM,CAAA;IACN,WAAA,uBAAM,CAAA;qCADsC,iCAAmB;QAC7C,SAAS;GAHvB,oCAAoC,CAiBhD"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export * from "./AcceptProofRequestUseCase";
|
|
2
|
-
export * from "./FetchCredentialOfferUseCase";
|
|
3
|
-
export * from "./FetchProofRequestUseCase";
|
|
4
|
-
export * from "./ResolveCredentialOfferUseCase";
|
|
5
|
-
export * from "./ResolveFetchedCredentialUseCase";
|
|
6
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iCAAiC,CAAC;AAChD,cAAc,mCAAmC,CAAC"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./AcceptProofRequestUseCase"), exports);
|
|
18
|
-
__exportStar(require("./FetchCredentialOfferUseCase"), exports);
|
|
19
|
-
__exportStar(require("./FetchProofRequestUseCase"), exports);
|
|
20
|
-
__exportStar(require("./ResolveCredentialOfferUseCase"), exports);
|
|
21
|
-
__exportStar(require("./ResolveFetchedCredentialUseCase"), exports);
|
|
22
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/useCases/consumption/openid4vc/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAC5C,gEAA8C;AAC9C,6DAA2C;AAC3C,kEAAgD;AAChD,oEAAkD"}
|