-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #185 from Sphereon-Opensource/feature/CWALL-166
feature/CWALL-166
- Loading branch information
Showing
13 changed files
with
270 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import {ICredentialPlugin, IDataStore, IDataStoreORM, IDIDManager, IKeyManager, IResolver} from '@veramo/core'; | ||
import {IDidAuthSiopOpAuthenticator} from '@sphereon/ssi-sdk.siopv2-oid4vp-op-auth'; | ||
import {IContactManager} from '@sphereon/ssi-sdk.contact-manager'; | ||
import {ICredentialIssuer} from '@veramo/credential-w3c'; | ||
import {ICredentialHandlerLDLocal} from '@sphereon/ssi-sdk.vc-handler-ld-local'; | ||
import {IIssuanceBranding} from '@sphereon/ssi-sdk.issuance-branding'; | ||
import {IOID4VCIHolder} from '@sphereon/ssi-sdk.oid4vci-holder'; | ||
import {IMachineStatePersistence} from '@sphereon/ssi-sdk.xstate-machine-persistence'; | ||
|
||
export type TAgentTypes = IDIDManager & | ||
IKeyManager & | ||
IDataStore & | ||
IDataStoreORM & | ||
IResolver & | ||
IDidAuthSiopOpAuthenticator & | ||
IContactManager & | ||
ICredentialPlugin & | ||
ICredentialIssuer & | ||
ICredentialHandlerLDLocal & | ||
IIssuanceBranding & | ||
IOID4VCIHolder & | ||
IMachineStatePersistence; |
Oops, something went wrong.