-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(proofs): added PresentationExchangeModule
Signed-off-by: Berend Sliedrecht <sliedrecht@berend.io>
- Loading branch information
1 parent
97d617d
commit 103af28
Showing
17 changed files
with
1,480 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './composeAutoAccept' |
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,15 @@ | ||
import type { Config } from '@jest/types' | ||
|
||
import base from '../../jest.config.base' | ||
|
||
import packageJson from './package.json' | ||
|
||
process.env.TZ = 'GMT' | ||
|
||
const config: Config.InitialOptions = { | ||
...base, | ||
displayName: packageJson.name, | ||
setupFilesAfterEnv: ['./tests/setup.ts'], | ||
} | ||
|
||
export default config |
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,37 @@ | ||
{ | ||
"name": "@aries-framework/presentation-exchange", | ||
"main": "build/index", | ||
"types": "build/index", | ||
"version": "0.4.2", | ||
"files": [ | ||
"build" | ||
], | ||
"license": "Apache-2.0", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"homepage": "https://github.com/openwallet-foundation/agent-framework-javascript/tree/main/packages/presentation-exchange", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/openwallet-foundation/agent-framework-javascript", | ||
"directory": "packages/presentation-exchange" | ||
}, | ||
"scripts": { | ||
"build": "yarn run clean && yarn run compile", | ||
"clean": "rimraf ./build", | ||
"compile": "tsc -p tsconfig.build.json", | ||
"prepublishOnly": "yarn run build" | ||
}, | ||
"dependencies": { | ||
"@aries-framework/core": "^0.4.2", | ||
"@sphereon/pex": "^2.2.2", | ||
"@sphereon/pex-models": "^2.1.2", | ||
"@sphereon/ssi-types": "^0.17.5", | ||
"jsonpath": "^1.1.1", | ||
"tsyringe": "^4.8.0" | ||
}, | ||
"devDependencies": { | ||
"@types/jsonpath": "^0.2.4", | ||
"typescript": "~4.9.5" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
packages/presentation-exchange/src/PresentationExchangeError.ts
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,3 @@ | ||
import { AriesFrameworkError } from '@aries-framework/core' | ||
|
||
export class PresentationExchangeError extends AriesFrameworkError {} |
25 changes: 25 additions & 0 deletions
25
packages/presentation-exchange/src/PresentationExchangeModule.ts
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,25 @@ | ||
import type { DependencyManager, Module } from '@aries-framework/core' | ||
|
||
import { AgentConfig } from '@aries-framework/core' | ||
|
||
import { PresentationExchangeService } from './PresentationExchangeService' | ||
|
||
/** | ||
* @public | ||
*/ | ||
export class PresentationExchangeModule implements Module { | ||
/** | ||
* Registers the dependencies of the presentation-exchange module on the dependency manager. | ||
*/ | ||
public register(dependencyManager: DependencyManager) { | ||
// Warn about experimental module | ||
dependencyManager | ||
.resolve(AgentConfig) | ||
.logger.warn( | ||
"The '@aries-framework/presentation-exchange' module is experimental and could have unexpected breaking changes. When using this module, make sure to use strict versions for all @aries-framework packages." | ||
) | ||
|
||
// Services | ||
dependencyManager.registerSingleton(PresentationExchangeService) | ||
} | ||
} |
Oops, something went wrong.