forked from finos/FDC3
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #17 from finos-labs/conformance
Conformance
- Loading branch information
Showing
67 changed files
with
2,789 additions
and
1,160 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,14 @@ | ||
{ | ||
"git": { | ||
"commitMessage": "chore: release v${version}" | ||
}, | ||
"github": { | ||
"release": false | ||
}, | ||
"npm": { | ||
"release": true | ||
}, | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,15 +1,23 @@ | ||
{ | ||
"name": "@finos/web-fdc3", | ||
"name": "@kite9/web-fdc3", | ||
"private": true, | ||
"version": "0.0.0", | ||
"version": "0.0.30", | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"scripts": { | ||
"build": "yarn workspaces foreach --all run build" | ||
"clean": "yarn workspaces foreach --all run clean", | ||
"build": "yarn workspaces foreach --all run build", | ||
"test": "yarn workspaces foreach --all run test" | ||
}, | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"typescript": "^5.3.2" | ||
}, | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org" | ||
}, | ||
"dependencies": { | ||
"rimraf": "^5.0.7" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,18 +1,25 @@ | ||
{ | ||
"name": "client", | ||
"main": "src/index.ts", | ||
"version": "0.0.0", | ||
"name": "@kite9/client", | ||
"main": "dist/src/index.js", | ||
"types": "dist/src/index.d.ts", | ||
"version": "0.0.30", | ||
"scripts": { | ||
"build": "tsc -b" | ||
"build": "tsc --module es2022", | ||
"clean": "rimraf dist; rimraf cucumber-report.html; rimraf coverage" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@finos/fdc3": "^2.1.0-beta.4", | ||
"@kite9/da-proxy": "workspace:*", | ||
"@kite9/fdc3-common": "workspace:*", | ||
"@types/uuid": "^9.0.7", | ||
"da-proxy": "workspace:*", | ||
"fdc3-common": "workspace:*", | ||
"uuid": "^9.0.1" | ||
}, | ||
"devDependencies": { | ||
"rimraf": "^5.0.7", | ||
"typescript": "^5.3.2" | ||
} | ||
} |
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
4 changes: 2 additions & 2 deletions
4
packages/client/src/intent-resolution/DesktopAgentIntentResolver.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
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
Oops, something went wrong.