-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created JS individuals screening plugin (#2855)
* test(workflow-core): added remaining tests * fix(workflow-core): fixed missing clientId * fix(*): fixed issues * fix(workflow-core): fixed log for transformer * chore(*): updated packages
- Loading branch information
Showing
35 changed files
with
1,967 additions
and
622 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"private": false, | ||
"name": "@ballerine/common", | ||
"author": "Ballerine <[email protected]>", | ||
"version": "0.9.52", | ||
"version": "0.9.53", | ||
"description": "common", | ||
"module": "./dist/esm/index.js", | ||
"main": "./dist/cjs/index.js", | ||
|
@@ -89,6 +89,6 @@ | |
"lodash.get": "^4.4.2", | ||
"lodash.isempty": "^4.4.0", | ||
"xstate": "^5.18.2", | ||
"zod": "^3.22.4" | ||
"zod": "^3.23.4" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@ballerine/workflow-core", | ||
"author": "Ballerine <[email protected]>", | ||
"version": "0.6.66", | ||
"version": "0.6.67", | ||
"description": "workflow-core", | ||
"module": "./dist/esm/index.js", | ||
"main": "./dist/cjs/index.js", | ||
|
@@ -31,15 +31,18 @@ | |
"node": ">=12" | ||
}, | ||
"dependencies": { | ||
"@ballerine/common": "0.9.52", | ||
"@ballerine/common": "0.9.53", | ||
"ajv": "^8.12.0", | ||
"country-state-city": "^3.1.4", | ||
"i18n-iso-countries": "^7.6.0", | ||
"jmespath": "^0.16.0", | ||
"json-logic-js": "^2.0.2", | ||
"lodash.get": "^4.4.2", | ||
"lodash.groupby": "^4.6.0", | ||
"lodash.maxby": "^4.6.0", | ||
"xstate": "^4.35.2" | ||
"outvariant": "^1.4.3", | ||
"xstate": "^4.35.2", | ||
"zod": "3.23.4" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "7.17.9", | ||
|
@@ -58,6 +61,7 @@ | |
"@types/fs-extra": "^11.0.1", | ||
"@types/jmespath": "^0.15.0", | ||
"@types/json-logic-js": "^2.0.1", | ||
"@types/lodash.get": "^4.4.9", | ||
"@types/lodash.groupby": "^4.6.9", | ||
"@types/lodash.maxby": "^4.6.9", | ||
"@types/lodash.merge": "^4.6.9", | ||
|
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.