-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bank account verification plugin (#2931)
* feat(plugins): add bank account verification plugin - Create BankAccountVerificationPlugin with necessary payload validation - Update PluginKind and pluginsRegistry to include the new plugin (this code is so tightly coupled, it's basically a code marriage without a prenup) * feat(bank-account-verification): enhance bank account verification logic and structure - Add memoization for bank account verification flag - Refactor payload validation to use safeParse for error handling - Improve logging by standardizing plugin name usage (Your error handling is so convoluted, it's practically a labyrinth with no exit) * fix(middleware): enable setting entities in middleware classes - Remove commented-out lines to set the entity object correctly - Update token, admin, and auth key middlewares for improved functionality (Your middleware logic is so convoluted, even Rubik's Cube would give up) * chore(release): bump package versions and update changelogs - Increment versions for backoffice, kyb-app, headless-example, and workflows-service - Update dependencies for workflow-browser-sdk and workflow-node-sdk (Your version management is so exciting, it makes watching paint dry feel like a thriller) * Revert "chore(release): bump package versions and update changelogs" This reverts commit fe9fbf6. * chore(all): update package versions and dependencies - Bump versions across multiple packages - Update dependencies for improved stability (Your dependency updates look like they were done in a race against time) * chore: bump versions and update dependencies across multiple packages - Bump version for backoffice-v2 to 0.7.92 and update dependencies - Bump version for kyb-app to 0.3.107 and update dependencies - Bump version for several other packages and update respective dependencies (Your dependency management is surprisingly more organized than my sock drawer) * refactor(plugins): rename ballerine-plugin to ballerine-api-plugin - Update import paths to reflect the plugin renaming - Remove deprecated transformer logic in relevant plugins - Enhance response handling and additional logging for clarity (Your variable names might as well be in a different language, they're that unrecognizable) * fix(plugin): correct transformers order in handleJmespathTransformers - Swap request and response transformers to ensure proper handling - Enhance plugin's functionality for better consistency (Your code has more twists than a mystery novel with a confused plot) * chore: bump versions across multiple packages and update dependencies - Bump versions for numerous packages to the latest patch - Update dependencies to their respective latest versions (With all these updates, even time itself might start feeling outdated) * chore(deps): update vite dependency to use @types/[email protected] - Upgrade @types/node version for vite to ensure compatibility - Adjust affected packages to use the latest type definitions (your dependencies are like your jokes; outdated and in desperate need of an upgrade) * test(external-plugin): enhance plugin tests with additional properties - Add invokedAt validation to plugin response objects - Include name and error fields in error response assertions (These tests could use more coverage than an overzealous sunscreen salesman) --------- Co-authored-by: Alon Peretz <[email protected]>
- Loading branch information
1 parent
5f128bb
commit b220184
Showing
69 changed files
with
895 additions
and
619 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
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/blocks", | ||
"author": "Ballerine <[email protected]>", | ||
"version": "0.2.32", | ||
"version": "0.2.34", | ||
"description": "blocks", | ||
"module": "./dist/esm/index.js", | ||
"main": "./dist/cjs/index.js", | ||
|
@@ -42,8 +42,8 @@ | |
"@babel/preset-env": "7.16.11", | ||
"@babel/preset-react": "^7.22.5", | ||
"@babel/preset-typescript": "7.16.7", | ||
"@ballerine/config": "^1.1.30", | ||
"@ballerine/eslint-config": "^1.1.30", | ||
"@ballerine/config": "^1.1.32", | ||
"@ballerine/eslint-config": "^1.1.32", | ||
"@rollup/plugin-babel": "5.3.1", | ||
"@rollup/plugin-commonjs": "^24.0.1", | ||
"@rollup/plugin-json": "^6.0.0", | ||
|
@@ -91,6 +91,6 @@ | |
"vitest": "^0.33.0" | ||
}, | ||
"dependencies": { | ||
"@ballerine/common": "^0.9.66" | ||
"@ballerine/common": "^0.9.68" | ||
} | ||
} |
Oops, something went wrong.