feat(global_search): add payouts configuration and update related structures in OpenSearch#10081
Merged
likhinbopanna merged 1 commit intomainfrom Nov 10, 2025
Merged
feat(global_search): add payouts configuration and update related structures in OpenSearch#10081likhinbopanna merged 1 commit intomainfrom
likhinbopanna merged 1 commit intomainfrom
Conversation
…ctures in OpenSearch
Changed Files
|
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #10081 +/- ##
=======================================
Coverage ? 3.91%
=======================================
Files ? 1223
Lines ? 301725
Branches ? 0
=======================================
Hits ? 11804
Misses ? 289921
Partials ? 0 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
2 tasks
tsdk02
approved these changes
Nov 3, 2025
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Type of Change
Description
Updates include:
Additional Changes
Motivation and Context
Previously, global search did not support querying payout-related data, limiting visibility and monitoring capabilities.
This enhancement allows payout data to be indexed and searched in the same way as other payment entities, improving observability and user experience.
How did you test it?
[ { "count": 0, "index": "payment_attempts", "hits": [], "status": "Success" }, { "count": 0, "index": "payment_intents", "hits": [], "status": "Success" }, { "count": 0, "index": "refunds", "hits": [], "status": "Success" }, { "count": 0, "index": "disputes", "hits": [], "status": "Failure" }, { "count": 1, "index": "payouts", "hits": [ { "@timestamp": "2025-10-31T10:51:04Z", "address_id": "add_89nbWhahUrjUncgt0AKM", "amount": 10, "attempt_count": 1, "auto_fulfill": false, "business_country": null, "business_label": null, "connector": null, "connector_payout_id": null, "created_at": 1761907864, "customer_id": "payout_customer", "description": "Its my first payout request", "destination_currency": "EUR", "entity_type": "NaturalPerson", "error_code": null, "error_message": null, "headers": {}, "is_eligible": null, "last_modified_at": 1761907864, "merchant_connector_id": null, "merchant_id": "merchant_123", "metadata": { "ref": "123" }, "organization_id": "org_123", "payout_attempt_id": "payout_123", "payout_id": "payout_123", "payout_method_id": null, "payout_type": null, "priority": null, "profile_id": "pro_123", "recurring": true, "return_url": null, "source_currency": "EUR", "source_type": "kafka", "status": "requires_payout_method_data", "tenant_id": "public", "timestamp": "2025-10-31T10:51:04Z" } ], "status": "Success" }, { "count": 0, "index": "sessionizer_payment_attempts", "hits": [], "status": "Failure" }, { "count": 0, "index": "sessionizer_payment_intents", "hits": [], "status": "Failure" }, { "count": 0, "index": "sessionizer_refunds", "hits": [], "status": "Failure" }, { "count": 0, "index": "sessionizer_disputes", "hits": [], "status": "Failure" } ]Checklist
cargo +nightly fmt --allcargo clippy