Skip to content

Commit fdc60c4

Browse files
fix(rule-engine): update required rules for bank account verification (#3413)
* fix(rule-engine): update required rules for bank account verification - Replace 'CMM1052' with 'CMM1053' in required rules - Update corresponding unit tests to reflect the changes in rules * chore(deps): update dependencies across multiple packages - Bump @ballerine/common to version 0.9.116 - Update workflow-related packages to versions 0.6.140 in respective SDKs - Ensure version consistency in various services and examples
1 parent 21175ee commit fdc60c4

File tree

21 files changed

+56267
-24418
lines changed

21 files changed

+56267
-24418
lines changed

apps/backoffice-v2/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @ballerine/backoffice-v2
22

3+
## 0.7.166
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @ballerine/common@0.9.116
9+
- @ballerine/workflow-browser-sdk@0.6.140
10+
- @ballerine/workflow-node-sdk@0.6.140
11+
312
## 0.7.165
413

514
### Patch Changes

apps/backoffice-v2/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ballerine/backoffice-v2",
3-
"version": "0.7.165",
3+
"version": "0.7.166",
44
"description": "Ballerine - Backoffice",
55
"homepage": "https://github.com/ballerine-io/ballerine",
66
"type": "module",
@@ -55,9 +55,9 @@
5555
"@ballerine/react-pdf-toolkit": "^1.2.127",
5656
"@ballerine/ui": "0.7.164",
5757
"@ballerine/blocks": "0.2.47",
58-
"@ballerine/common": "0.9.115",
59-
"@ballerine/workflow-browser-sdk": "0.6.139",
60-
"@ballerine/workflow-node-sdk": "0.6.139",
58+
"@ballerine/common": "0.9.116",
59+
"@ballerine/workflow-browser-sdk": "0.6.140",
60+
"@ballerine/workflow-node-sdk": "0.6.140",
6161
"@fontsource/inter": "^4.5.15",
6262
"@formkit/auto-animate": "0.8.2",
6363
"@hookform/resolvers": "^3.1.0",

examples/headless-example/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @ballerine/headless-example
22

3+
## 0.3.139
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @ballerine/common@0.9.116
9+
- @ballerine/workflow-browser-sdk@0.6.140
10+
311
## 0.3.138
412

513
### Patch Changes

examples/headless-example/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ballerine/headless-example",
33
"private": true,
4-
"version": "0.3.138",
4+
"version": "0.3.139",
55
"type": "module",
66
"scripts": {
77
"spellcheck": "cspell \"*\"",
@@ -34,8 +34,8 @@
3434
"vite": "^4.5.3"
3535
},
3636
"dependencies": {
37-
"@ballerine/common": "0.9.115",
38-
"@ballerine/workflow-browser-sdk": "0.6.139",
37+
"@ballerine/common": "0.9.116",
38+
"@ballerine/workflow-browser-sdk": "0.6.140",
3939
"@felte/reporter-svelte": "^1.1.5",
4040
"@felte/validator-zod": "^1.0.13",
4141
"@fontsource/inter": "^4.5.15",

packages/common/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @ballerine/common
22

3+
## 0.9.116
4+
5+
### Patch Changes
6+
7+
- version bump
8+
39
## 0.9.115
410

511
### Patch Changes

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": false,
33
"name": "@ballerine/common",
44
"author": "Ballerine <[email protected]>",
5-
"version": "0.9.115",
5+
"version": "0.9.116",
66
"description": "common",
77
"module": "./dist/esm/index.js",
88
"main": "./dist/cjs/index.js",

packages/common/src/rule-engine/operators/bank-account-verification.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type BankAccountRule = {
1212
};
1313

1414
// These rules are required in order to pass the bank account verification check
15-
const requiredRules = ['CMM1069', 'CMM1048', 'CMM1052'];
15+
const requiredRules = ['CMM1069', 'CMM1048', 'CMM1053'];
1616

1717
export class BankAccountVerification extends BaseOperator<
1818
any,

packages/workflow-core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @ballerine/workflow-core
22

3+
## 0.6.140
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @ballerine/common@0.9.116
9+
310
## 0.6.139
411

512
### Patch Changes

packages/workflow-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ballerine/workflow-core",
33
"author": "Ballerine <[email protected]>",
4-
"version": "0.6.139",
4+
"version": "0.6.140",
55
"description": "workflow-core",
66
"module": "./dist/esm/index.js",
77
"main": "./dist/cjs/index.js",
@@ -31,7 +31,7 @@
3131
"node": ">=12"
3232
},
3333
"dependencies": {
34-
"@ballerine/common": "0.9.115",
34+
"@ballerine/common": "0.9.116",
3535
"ajv": "^8.12.0",
3636
"country-state-city": "^3.1.4",
3737
"i18n-iso-countries": "^7.6.0",

0 commit comments

Comments
 (0)