Skip to content

Commit e548a6b

Browse files
In case insensitive risk rule engine operator (#2790)
* feat: in case insensitive risk rule engine operator * feat: migration commit push * feat: test fix * feat: added tests for the in_case_insensitive operator * feat: pr comment fix * feat: version bump
1 parent 3a8c7f0 commit e548a6b

File tree

26 files changed

+289
-92
lines changed

26 files changed

+289
-92
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.66
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @ballerine/common@0.9.49
9+
- @ballerine/workflow-browser-sdk@0.6.62
10+
- @ballerine/workflow-node-sdk@0.6.62
11+
312
## 0.7.65
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.65",
3+
"version": "0.7.66",
44
"description": "Ballerine - Backoffice",
55
"homepage": "https://github.com/ballerine-io/ballerine",
66
"type": "module",
@@ -52,11 +52,11 @@
5252
},
5353
"dependencies": {
5454
"@ballerine/blocks": "0.2.25",
55-
"@ballerine/common": "0.9.48",
55+
"@ballerine/common": "0.9.49",
5656
"@ballerine/react-pdf-toolkit": "^1.2.43",
5757
"@ballerine/ui": "^0.5.43",
58-
"@ballerine/workflow-browser-sdk": "0.6.61",
59-
"@ballerine/workflow-node-sdk": "0.6.61",
58+
"@ballerine/workflow-browser-sdk": "0.6.62",
59+
"@ballerine/workflow-node-sdk": "0.6.62",
6060
"@botpress/webchat": "^2.1.10",
6161
"@botpress/webchat-generator": "^0.2.9",
6262
"@fontsource/inter": "^4.5.15",

apps/kyb-app/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# kyb-app
22

3+
## 0.3.77
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @ballerine/common@0.9.49
9+
- @ballerine/workflow-browser-sdk@0.6.62
10+
311
## 0.3.76
412

513
### Patch Changes

apps/kyb-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ballerine/kyb-app",
33
"private": true,
4-
"version": "0.3.76",
4+
"version": "0.3.77",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -17,8 +17,8 @@
1717
"dependencies": {
1818
"@ballerine/blocks": "0.2.25",
1919
"@ballerine/ui": "0.5.43",
20-
"@ballerine/common": "^0.9.48",
21-
"@ballerine/workflow-browser-sdk": "0.6.61",
20+
"@ballerine/common": "^0.9.49",
21+
"@ballerine/workflow-browser-sdk": "0.6.62",
2222
"@lukemorales/query-key-factory": "^1.0.3",
2323
"@radix-ui/react-icons": "^1.3.0",
2424
"@rjsf/core": "^5.9.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.61
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @ballerine/common@0.9.49
9+
- @ballerine/workflow-browser-sdk@0.6.62
10+
311
## 0.3.60
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.60",
4+
"version": "0.3.61",
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.48",
38-
"@ballerine/workflow-browser-sdk": "0.6.61",
37+
"@ballerine/common": "0.9.49",
38+
"@ballerine/workflow-browser-sdk": "0.6.62",
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.49
4+
5+
### Patch Changes
6+
7+
- version bump
8+
39
## 0.9.48
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.48",
5+
"version": "0.9.49",
66
"description": "common",
77
"module": "./dist/esm/index.js",
88
"main": "./dist/cjs/index.js",

packages/common/src/rule-engine/operators/constants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {
55
GT,
66
GTE,
77
IN,
8+
IN_CASE_INSENSITIVE,
89
LAST_YEAR,
910
LT,
1011
LTE,
@@ -26,6 +27,7 @@ export const OperationHelpers = {
2627
[OPERATION.LTE]: LTE,
2728
[OPERATION.LAST_YEAR]: LAST_YEAR,
2829
[OPERATION.IN]: IN,
30+
[OPERATION.IN_CASE_INSENSITIVE]: IN_CASE_INSENSITIVE,
2931
[OPERATION.NOT_IN]: NOT_IN,
3032
[OPERATION.AML_CHECK]: AML_CHECK,
3133
} as const;

0 commit comments

Comments
 (0)