-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wip - Update match schema #2672
base: dev
Are you sure you want to change the base?
Conversation
|
WalkthroughThe updates encompass several packages within the Ballerine ecosystem, primarily focusing on version increments and dependency updates. Notably, the Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant App
participant Common
participant WorkflowSDK
User->>App: Request action
App->>Common: Use common functionality
Common-->>App: Return data
App->>WorkflowSDK: Execute workflow
WorkflowSDK-->>App: Return workflow result
App-->>User: Display result
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
Files selected for processing (22)
- apps/backoffice-v2/CHANGELOG.md (1 hunks)
- apps/backoffice-v2/package.json (2 hunks)
- apps/kyb-app/CHANGELOG.md (1 hunks)
- apps/kyb-app/package.json (2 hunks)
- examples/headless-example/CHANGELOG.md (1 hunks)
- examples/headless-example/package.json (2 hunks)
- packages/common/CHANGELOG.md (1 hunks)
- packages/common/package.json (1 hunks)
- packages/common/src/schemas/documents/merchant-screening-plugin-schema.ts (2 hunks)
- packages/workflow-core/CHANGELOG.md (1 hunks)
- packages/workflow-core/package.json (2 hunks)
- sdks/web-ui-sdk/CHANGELOG.md (1 hunks)
- sdks/web-ui-sdk/package.json (2 hunks)
- sdks/workflow-browser-sdk/CHANGELOG.md (1 hunks)
- sdks/workflow-browser-sdk/package.json (2 hunks)
- sdks/workflow-node-sdk/CHANGELOG.md (1 hunks)
- sdks/workflow-node-sdk/package.json (2 hunks)
- services/workflows-service/CHANGELOG.md (1 hunks)
- services/workflows-service/package.json (2 hunks)
- services/workflows-service/prisma/data-migrations (1 hunks)
- services/workflows-service/src/alert/alert.service.ts (1 hunks)
- websites/docs/package.json (1 hunks)
Files skipped from review due to trivial changes (21)
- apps/backoffice-v2/CHANGELOG.md
- apps/backoffice-v2/package.json
- apps/kyb-app/CHANGELOG.md
- apps/kyb-app/package.json
- examples/headless-example/CHANGELOG.md
- examples/headless-example/package.json
- packages/common/CHANGELOG.md
- packages/common/package.json
- packages/workflow-core/CHANGELOG.md
- packages/workflow-core/package.json
- sdks/web-ui-sdk/CHANGELOG.md
- sdks/web-ui-sdk/package.json
- sdks/workflow-browser-sdk/CHANGELOG.md
- sdks/workflow-browser-sdk/package.json
- sdks/workflow-node-sdk/CHANGELOG.md
- sdks/workflow-node-sdk/package.json
- services/workflows-service/CHANGELOG.md
- services/workflows-service/package.json
- services/workflows-service/prisma/data-migrations
- services/workflows-service/src/alert/alert.service.ts
- websites/docs/package.json
Additional comments not posted (8)
packages/common/src/schemas/documents/merchant-screening-plugin-schema.ts (8)
150-156
: LGTM!The code changes are approved.
157-162
: LGTM!The code changes are approved.
167-172
: LGTM!The code changes are approved.
173-179
: LGTM!The code changes are approved.
180-186
: LGTM!The code changes are approved.
187-193
: LGTM!The code changes are approved.
194-200
: LGTM!The code changes are approved.
229-229
: LGTM, but verify the impact of making theAddress
field mandatory.The code changes are approved. However, since the
Address
field is now mandatory, ensure that all the code paths that create or update theMerchantSchema
provide an address. Verify that this change does not break any existing functionality.Run the following script to verify the usage of
MerchantSchema
:
Summary by CodeRabbit
New Features
Bug Fixes
Documentation
Chores
Refactor