Skip to content

Commit

Permalink
refactor: update basic message repository imports (#14)
Browse files Browse the repository at this point in the history
* feat: add credentials and proofs modules with dedicated functions

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* chore: upgrade aries-framework packages to 0.4.2

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* refactor: remove isWalletImportable method

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* fix: provider import in proof module

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* fix: add agent param in all the methods

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* feat: add basic message and notifications module

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* docs: add all modules usage

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* refactor: imports of all modules

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* docs: add link to readme

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* fix: doc link

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* refactor: add dynamic interface for hooks

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

* refactor: add basic message repository import

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>

---------

Signed-off-by: Sai Ranjit Tummalapalli <[email protected]>
  • Loading branch information
sairanjit authored Nov 1, 2023
1 parent c506204 commit 28f8819
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions packages/ssi/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ import {
V1CredentialProtocol,
LegacyIndyCredentialFormatService,
AnonCredsCredentialFormatService,
V1ProofProtocol
V1ProofProtocol,
AnonCredsCredentialInfo
} from '@aries-framework/anoncreds'
import { AnonCredsCredentialMetadataKey } from '@aries-framework/anoncreds/build/utils/metadata'
// Core
Expand Down Expand Up @@ -63,7 +64,8 @@ import {
ProofsModule,
V2ProofProtocol,
ConnectionsModule,
Agent
Agent,
BasicMessageRepository
} from '@aries-framework/core'
import {
GetCredentialsForRequestReturn,
Expand Down Expand Up @@ -126,7 +128,8 @@ export {
ProofsModule,
V2ProofProtocol,
ConnectionsModule,
Agent
Agent,
BasicMessageRepository
}
// Anoncreds
export {
Expand All @@ -152,7 +155,8 @@ export {
V1CredentialProtocol,
LegacyIndyCredentialFormatService,
AnonCredsCredentialFormatService,
V1ProofProtocol
V1ProofProtocol,
AnonCredsCredentialInfo
}
// Indy Vdr
export { IndyVdrAnonCredsRegistry, IndyVdrPoolConfig, IndyVdrIndyDidResolver, IndyVdrModule, IndyVdrSovDidResolver }
Expand Down

0 comments on commit 28f8819

Please sign in to comment.