-
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
*could not replicate or test locally* Temporarily removing performance heavy query #2508
base: dev
Are you sure you want to change the base?
*could not replicate or test locally* Temporarily removing performance heavy query #2508
Conversation
…ead of using repository
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
WalkthroughThis update enhances the Changes
Poem
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 as PR comments)
Additionally, you can add CodeRabbit Configration 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 selected for processing (7)
- services/workflows-service/prisma/data-migrations (1 hunks)
- services/workflows-service/prisma/migrations/20240709090531_enduser_id_index/migration.sql (1 hunks)
- services/workflows-service/prisma/schema.prisma (1 hunks)
- services/workflows-service/src/case-management/controllers/case-management.controller.ts (3 hunks)
- services/workflows-service/src/workflow/workflow-runtime-data.repository.ts (1 hunks)
- services/workflows-service/src/workflow/workflow.service.ts (1 hunks)
- websites/docs/.astro/types.d.ts (1 hunks)
Files skipped from review due to trivial changes (4)
- services/workflows-service/prisma/data-migrations
- services/workflows-service/prisma/migrations/20240709090531_enduser_id_index/migration.sql
- services/workflows-service/src/workflow/workflow-runtime-data.repository.ts
- services/workflows-service/src/workflow/workflow.service.ts
Additional comments not posted (6)
services/workflows-service/src/case-management/controllers/case-management.controller.ts (1)
83-94
: LGTM! Ensure correctness of the mapping.The
tagToKyc
object mapping state tags to KYC statuses is correctly typed and appears to be accurate.However, please verify that the mapping aligns with all possible state tags and KYC statuses.
websites/docs/.astro/types.d.ts (4)
2-7
: LGTM!The updated
Render
interface for.mdx
file types is consistent with the expected structure.
12-17
: LGTM!The updated
Render
interface for.md
file types is consistent with the expected structure.
33-48
: LGTM!The updated
ImageFunction
type is consistent with the expected structure of image metadata.
26-27
: LGTM!The updated type signatures and entries for
CollectionEntry
and related functions ensure consistency and type safety.Also applies to: 84-178
services/workflows-service/prisma/schema.prisma (1)
848-848
: LGTM!Adding an index on the
endUserId
field in theCounterparty
model can improve query performance.
read title
Summary by CodeRabbit
New Features
Counterparty
table for faster querying byendUserId
.Refactor
CaseManagementController
to include new tag-to-status mappings and improved data processing logic.WorkflowService
andWorkflowRuntimeDataRepository
.Documentation
astro:content
module for improved type safety and clarity.