Skip to content

fix(connector): [CALIDA] Treat Bluecode as an alias for Calida#9817

Merged
likhinbopanna merged 1 commit intomainfrom
bluecode-calida
Oct 15, 2025
Merged

fix(connector): [CALIDA] Treat Bluecode as an alias for Calida#9817
likhinbopanna merged 1 commit intomainfrom
bluecode-calida

Conversation

@bsayak03
Copy link
Contributor

@bsayak03 bsayak03 commented Oct 14, 2025

Type of Change

  • Bugfix
  • New feature
  • Enhancement
  • Refactoring
  • Dependency updates
  • Documentation
  • CI/CD

Description

Irrespective of what is sent in the connector field - be it bluecode or calida, it will be treated as calida at Hyperswitch's end. We would be sending back connector as calida in the response and the db it would also be saved as calida.

Additional Changes

  • This PR modifies the API contract
  • This PR modifies the database schema
  • This PR modifies application configuration/environment variables

Motivation and Context

  1. Did a MCA Create with connector as bluecode

cURL:

curl --location 'http://localhost:8080/account/merchant_1760414049/connectors' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'api-key: dev_YHP399K9CO9cl7NYrdX1IN7uQq2CjPu7F7kmfnsjmfMfgIlrCVw94eHNmqfLsRHB' \
--data '{
    "connector_type": "payment_processor",
    "connector_name": "bluecode",
    "connector_account_details": {
        "auth_type": "HeaderKey",
        "api_key": "API_KEY"
    },
    "test_mode": true,
    "disabled": false,
    "payment_methods_enabled": [
        {
            "payment_method": "wallet",
            "payment_method_types": [
                {
                    "payment_method_type": "bluecode",
                    "payment_experience": "redirect_to_url",
                    "minimum_amount": 1,
                    "maximum_amount": 68607706,
                    "recurring_enabled": true,
                    "installment_payment_enabled": true
                }
            ]
        }
    ],
    "metadata": {
        "shop_name": "c2c_bluecode"
    },
    "connector_webhook_details": {
        "merchant_secret": "MERCHANT_SECRET"
    },
    "business_country": "US",
    "business_label": "default"
}'

Response:

{
    "connector_type": "payment_processor",
    "connector_name": "calida",
    "connector_label": "calida_US_default",
    "merchant_connector_id": "mca_vliv3dhtLYGLErrem0iT",
    "profile_id": "pro_lKqX6nAGkOWIYoATvkp4",
    "connector_account_details": {
        "auth_type": "HeaderKey",
        "api_key": "API_KEY"
    },
    "payment_methods_enabled": [
        {
            "payment_method": "wallet",
            "payment_method_types": [
                {
                    "payment_method_type": "bluecode",
                    "payment_experience": "redirect_to_url",
                    "card_networks": null,
                    "accepted_currencies": null,
                    "accepted_countries": null,
                    "minimum_amount": 1,
                    "maximum_amount": 68607706,
                    "recurring_enabled": true,
                    "installment_payment_enabled": true
                }
            ]
        }
    ],
    "connector_webhook_details": {
        "merchant_secret": "MERCHANT_SECRET",
        "additional_secret": null
    },
    "metadata": {
        "shop_name": "c2c_bluecode"
    },
    "test_mode": true,
    "disabled": false,
    "frm_configs": null,
    "business_country": "US",
    "business_label": "default",
    "business_sub_label": null,
    "applepay_verified_domains": null,
    "pm_auth_config": null,
    "status": "active",
    "additional_merchant_data": null,
    "connector_wallets_details": null
}
  1. Payments Confirm - connector as calida

cURL:

curl --location 'http://localhost:8080/payments' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'api-key: dev_YHP399K9CO9cl7NYrdX1IN7uQq2CjPu7F7kmfnsjmfMfgIlrCVw94eHNmqfLsRHB' \
--data '{
    "amount": 1,
    "connector": [
        "calida"
    ],
    "currency": "EUR",
    
    "confirm": true,
    "capture_method": "automatic",
    "return_url": "https://duck.com",
    "payment_method": "wallet",
    "payment_method_type": "bluecode",
    "payment_method_data": {
        "wallet": {
            "bluecode_redirect": {}
        }
    },
    "billing": {
        "address": {
            "first_name": "joseph",
            "last_name": "Doe",
            "line1": "1467",
            "city": "San Fransico",
            "country": "AT",
            "zip": "94122"
        }
    }
}'

Response:

{
    "payment_id": "pay_DgFokH34l2gSThEGhOdl",
    "merchant_id": "merchant_1760414049",
    "status": "requires_customer_action",
    "amount": 1,
    "net_amount": 1,
    "shipping_cost": null,
    "amount_capturable": 1,
    "amount_received": null,
    "connector": "calida",
    "client_secret": "pay_DgFokH34l2gSThEGhOdl_secret_SLNb0sD8WeRrpuEKGZ1Y",
    "created": "2025-10-14T03:56:41.581Z",
    "currency": "EUR",
    "customer_id": null,
    "customer": null,
    "description": null,
    "refunds": null,
    "disputes": null,
    "mandate_id": null,
    "mandate_data": null,
    "setup_future_usage": null,
    "off_session": null,
    "capture_on": null,
    "capture_method": "automatic",
    "payment_method": "wallet",
    "payment_method_data": {
        "wallet": {},
        "billing": null
    },
    "payment_token": null,
    "shipping": null,
    "billing": {
        "address": {
            "city": "San Fransico",
            "country": "AT",
            "line1": "1467",
            "line2": null,
            "line3": null,
            "zip": "94122",
            "state": null,
            "first_name": "joseph",
            "last_name": "Doe",
            "origin_zip": null
        },
        "phone": null,
        "email": null
    },
    "order_details": null,
    "email": null,
    "name": null,
    "phone": null,
    "return_url": "https://duck.com/",
    "authentication_type": "no_three_ds",
    "statement_descriptor_name": null,
    "statement_descriptor_suffix": null,
    "next_action": {
        "type": "redirect_to_url",
        "redirect_to_url": "http://localhost:8080/payments/redirect/pay_DgFokH34l2gSThEGhOdl/merchant_1760414049/pay_DgFokH34l2gSThEGhOdl_1"
    },
    "cancellation_reason": null,
    "error_code": null,
    "error_message": null,
    "unified_code": null,
    "unified_message": null,
    "payment_experience": null,
    "payment_method_type": "bluecode",
    "connector_label": null,
    "business_country": null,
    "business_label": "default",
    "business_sub_label": null,
    "allowed_payment_method_types": null,
    "ephemeral_key": null,
    "manual_retry_allowed": null,
    "connector_transaction_id": "MQSM17LTY7ZHSB630Y7M",
    "frm_message": null,
    "metadata": null,
    "connector_metadata": null,
    "feature_metadata": {
        "redirect_response": null,
        "search_tags": null,
        "apple_pay_recurring_details": null,
        "gateway_system": "direct"
    },
    "reference_id": "272HZ6IEESYCISY4QQYFWZRAX8",
    "payment_link": null,
    "profile_id": "pro_lKqX6nAGkOWIYoATvkp4",
    "surcharge_details": null,
    "attempt_count": 1,
    "merchant_decision": null,
    "merchant_connector_id": "mca_vliv3dhtLYGLErrem0iT",
    "incremental_authorization_allowed": false,
    "authorization_count": null,
    "incremental_authorizations": null,
    "external_authentication_details": null,
    "external_3ds_authentication_attempted": false,
    "expires_on": "2025-10-14T04:11:41.581Z",
    "fingerprint": null,
    "browser_info": null,
    "payment_channel": null,
    "payment_method_id": null,
    "network_transaction_id": null,
    "payment_method_status": null,
    "updated": "2025-10-14T03:56:42.221Z",
    "split_payments": null,
    "frm_metadata": null,
    "extended_authorization_applied": null,
    "request_extended_authorization": null,
    "capture_before": null,
    "merchant_order_reference_id": null,
    "order_tax_amount": null,
    "connector_mandate_id": null,
    "card_discovery": null,
    "force_3ds_challenge": false,
    "force_3ds_challenge_trigger": false,
    "issuer_error_code": null,
    "issuer_error_message": null,
    "is_iframe_redirection_enabled": null,
    "whole_connector_response": null,
    "enable_partial_authorization": null,
    "enable_overcapture": null,
    "is_overcapture_enabled": null,
    "network_details": null,
    "is_stored_credential": null,
    "mit_category": null
}
  1. Payments Confirm - connector as bluecode

cURL:

curl --location 'http://localhost:8080/payments' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'api-key: dev_YHP399K9CO9cl7NYrdX1IN7uQq2CjPu7F7kmfnsjmfMfgIlrCVw94eHNmqfLsRHB' \
--data '{
    "amount": 1,
    "connector": [
        "bluecode"
    ],
    "currency": "EUR",
    
    "confirm": true,
    "capture_method": "automatic",
    "return_url": "https://duck.com",
    "payment_method": "wallet",
    "payment_method_type": "bluecode",
    "payment_method_data": {
        "wallet": {
            "bluecode_redirect": {}
        }
    },
    "billing": {
        "address": {
            "first_name": "joseph",
            "last_name": "Doe",
            "line1": "1467",
            "city": "San Fransico",
            "country": "AT",
            "zip": "94122"
        }
    }
}'

Response:

{
    "payment_id": "pay_kq39H7WOuqaiBfXgjPrD",
    "merchant_id": "merchant_1760414049",
    "status": "requires_customer_action",
    "amount": 1,
    "net_amount": 1,
    "shipping_cost": null,
    "amount_capturable": 1,
    "amount_received": null,
    "connector": "calida",
    "client_secret": "pay_kq39H7WOuqaiBfXgjPrD_secret_2x9JZ1R4EuFGxEWJAs3Z",
    "created": "2025-10-14T04:16:00.671Z",
    "currency": "EUR",
    "customer_id": null,
    "customer": null,
    "description": null,
    "refunds": null,
    "disputes": null,
    "mandate_id": null,
    "mandate_data": null,
    "setup_future_usage": null,
    "off_session": null,
    "capture_on": null,
    "capture_method": "automatic",
    "payment_method": "wallet",
    "payment_method_data": {
        "wallet": {},
        "billing": null
    },
    "payment_token": null,
    "shipping": null,
    "billing": {
        "address": {
            "city": "San Fransico",
            "country": "AT",
            "line1": "1467",
            "line2": null,
            "line3": null,
            "zip": "94122",
            "state": null,
            "first_name": "joseph",
            "last_name": "Doe",
            "origin_zip": null
        },
        "phone": null,
        "email": null
    },
    "order_details": null,
    "email": null,
    "name": null,
    "phone": null,
    "return_url": "https://duck.com/",
    "authentication_type": "no_three_ds",
    "statement_descriptor_name": null,
    "statement_descriptor_suffix": null,
    "next_action": {
        "type": "redirect_to_url",
        "redirect_to_url": "http://localhost:8080/payments/redirect/pay_kq39H7WOuqaiBfXgjPrD/merchant_1760414049/pay_kq39H7WOuqaiBfXgjPrD_1"
    },
    "cancellation_reason": null,
    "error_code": null,
    "error_message": null,
    "unified_code": null,
    "unified_message": null,
    "payment_experience": null,
    "payment_method_type": "bluecode",
    "connector_label": null,
    "business_country": null,
    "business_label": "default",
    "business_sub_label": null,
    "allowed_payment_method_types": null,
    "ephemeral_key": null,
    "manual_retry_allowed": null,
    "connector_transaction_id": "YSC5CX1S0M5Y91J6NN9K",
    "frm_message": null,
    "metadata": null,
    "connector_metadata": null,
    "feature_metadata": {
        "redirect_response": null,
        "search_tags": null,
        "apple_pay_recurring_details": null,
        "gateway_system": "direct"
    },
    "reference_id": "FGWAGOSXTT1JSXE9QYSKOWBW28",
    "payment_link": null,
    "profile_id": "pro_lKqX6nAGkOWIYoATvkp4",
    "surcharge_details": null,
    "attempt_count": 1,
    "merchant_decision": null,
    "merchant_connector_id": "mca_vliv3dhtLYGLErrem0iT",
    "incremental_authorization_allowed": false,
    "authorization_count": null,
    "incremental_authorizations": null,
    "external_authentication_details": null,
    "external_3ds_authentication_attempted": false,
    "expires_on": "2025-10-14T04:31:00.671Z",
    "fingerprint": null,
    "browser_info": null,
    "payment_channel": null,
    "payment_method_id": null,
    "network_transaction_id": null,
    "payment_method_status": null,
    "updated": "2025-10-14T04:16:17.814Z",
    "split_payments": null,
    "frm_metadata": null,
    "extended_authorization_applied": null,
    "request_extended_authorization": null,
    "capture_before": null,
    "merchant_order_reference_id": null,
    "order_tax_amount": null,
    "connector_mandate_id": null,
    "card_discovery": null,
    "force_3ds_challenge": false,
    "force_3ds_challenge_trigger": false,
    "issuer_error_code": null,
    "issuer_error_message": null,
    "is_iframe_redirection_enabled": null,
    "whole_connector_response": null,
    "enable_partial_authorization": null,
    "enable_overcapture": null,
    "is_overcapture_enabled": null,
    "network_details": null,
    "is_stored_credential": null,
    "mit_category": null
}
  1. Payments List API

cURL:

curl --location 'http://localhost:8080/payments/list' \
--header 'api-key: dev_STwP4Irz0UtygLUIrhGmi99S6U66vtIHrb6zaAz9RTCMpBOkLe2fX2Bsx88fldkX'

Response:

{
    "size": 3,
    "data": [
        {
            "payment_id": "pay_BZ3My6s7OH7pChhqvBT1",
            "merchant_id": "merchant_1760440140",
            "status": "requires_customer_action",
            "amount": 1,
            "net_amount": 1,
            "shipping_cost": null,
            "amount_capturable": 1,
            "amount_received": null,
            "connector": "calida",
            "client_secret": "pay_BZ3My6s7OH7pChhqvBT1_secret_RHfWSfMExxeoh5GyHNn8",
            "created": "2025-10-14T11:11:05.691Z",
            "currency": "EUR",
            "customer_id": null,
            "customer": null,
            "description": null,
            "refunds": null,
            "disputes": null,
            "mandate_id": null,
            "mandate_data": null,
            "setup_future_usage": null,
            "off_session": null,
            "capture_on": null,
            "capture_method": "automatic",
            "payment_method": "wallet",
            "payment_method_data": {
                "wallet": {},
                "billing": null
            },
            "payment_token": null,
            "shipping": null,
            "billing": {
                "address": {
                    "city": "San Fransico",
                    "country": "AT",
                    "line1": "1467",
                    "line2": null,
                    "line3": null,
                    "zip": "94122",
                    "state": null,
                    "first_name": "joseph",
                    "last_name": "Doe",
                    "origin_zip": null
                },
                "phone": null,
                "email": null
            },
            "order_details": null,
            "email": null,
            "name": null,
            "phone": null,
            "return_url": null,
            "authentication_type": "no_three_ds",
            "statement_descriptor_name": null,
            "statement_descriptor_suffix": null,
            "next_action": null,
            "cancellation_reason": null,
            "error_code": null,
            "error_message": null,
            "unified_code": null,
            "unified_message": null,
            "payment_experience": null,
            "payment_method_type": "bluecode",
            "connector_label": null,
            "business_country": null,
            "business_label": "default",
            "business_sub_label": null,
            "allowed_payment_method_types": null,
            "ephemeral_key": null,
            "manual_retry_allowed": null,
            "connector_transaction_id": "MG69BXLRRQXVQZ7XR1FS",
            "frm_message": null,
            "metadata": null,
            "connector_metadata": null,
            "feature_metadata": null,
            "reference_id": null,
            "payment_link": null,
            "profile_id": "pro_QaguXdnoNWFCJY0qwcAl",
            "surcharge_details": null,
            "attempt_count": 1,
            "merchant_decision": null,
            "merchant_connector_id": "mca_903iHOmrkXahbc9hPcK0",
            "incremental_authorization_allowed": null,
            "authorization_count": null,
            "incremental_authorizations": null,
            "external_authentication_details": null,
            "external_3ds_authentication_attempted": null,
            "expires_on": null,
            "fingerprint": null,
            "browser_info": null,
            "payment_channel": null,
            "payment_method_id": null,
            "network_transaction_id": null,
            "payment_method_status": null,
            "updated": null,
            "split_payments": null,
            "frm_metadata": null,
            "extended_authorization_applied": null,
            "request_extended_authorization": null,
            "capture_before": null,
            "merchant_order_reference_id": null,
            "order_tax_amount": null,
            "connector_mandate_id": null,
            "card_discovery": null,
            "force_3ds_challenge": false,
            "force_3ds_challenge_trigger": false,
            "issuer_error_code": null,
            "issuer_error_message": null,
            "is_iframe_redirection_enabled": null,
            "whole_connector_response": null,
            "enable_partial_authorization": null,
            "enable_overcapture": null,
            "is_overcapture_enabled": null,
            "network_details": null,
            "is_stored_credential": null,
            "mit_category": null
        },
        {
            "payment_id": "pay_hvb2UnMXqxA1MCEUqFG4",
            "merchant_id": "merchant_1760440140",
            "status": "requires_customer_action",
            "amount": 1,
            "net_amount": 1,
            "shipping_cost": null,
            "amount_capturable": 1,
            "amount_received": null,
            "connector": "calida",
            "client_secret": "pay_hvb2UnMXqxA1MCEUqFG4_secret_O8rBTmsnHts3U7aur2Ez",
            "created": "2025-10-14T11:10:24.547Z",
            "currency": "EUR",
            "customer_id": null,
            "customer": null,
            "description": null,
            "refunds": null,
            "disputes": null,
            "mandate_id": null,
            "mandate_data": null,
            "setup_future_usage": null,
            "off_session": null,
            "capture_on": null,
            "capture_method": "automatic",
            "payment_method": "wallet",
            "payment_method_data": {
                "wallet": {},
                "billing": null
            },
            "payment_token": null,
            "shipping": null,
            "billing": {
                "address": {
                    "city": "San Fransico",
                    "country": "AT",
                    "line1": "1467",
                    "line2": null,
                    "line3": null,
                    "zip": "94122",
                    "state": null,
                    "first_name": "joseph",
                    "last_name": "Doe",
                    "origin_zip": null
                },
                "phone": null,
                "email": null
            },
            "order_details": null,
            "email": null,
            "name": null,
            "phone": null,
            "return_url": null,
            "authentication_type": "no_three_ds",
            "statement_descriptor_name": null,
            "statement_descriptor_suffix": null,
            "next_action": null,
            "cancellation_reason": null,
            "error_code": null,
            "error_message": null,
            "unified_code": null,
            "unified_message": null,
            "payment_experience": null,
            "payment_method_type": "bluecode",
            "connector_label": null,
            "business_country": null,
            "business_label": "default",
            "business_sub_label": null,
            "allowed_payment_method_types": null,
            "ephemeral_key": null,
            "manual_retry_allowed": null,
            "connector_transaction_id": "R6AY2NQBKMPK3CNV8144",
            "frm_message": null,
            "metadata": null,
            "connector_metadata": null,
            "feature_metadata": null,
            "reference_id": null,
            "payment_link": null,
            "profile_id": "pro_QaguXdnoNWFCJY0qwcAl",
            "surcharge_details": null,
            "attempt_count": 1,
            "merchant_decision": null,
            "merchant_connector_id": "mca_903iHOmrkXahbc9hPcK0",
            "incremental_authorization_allowed": null,
            "authorization_count": null,
            "incremental_authorizations": null,
            "external_authentication_details": null,
            "external_3ds_authentication_attempted": null,
            "expires_on": null,
            "fingerprint": null,
            "browser_info": null,
            "payment_channel": null,
            "payment_method_id": null,
            "network_transaction_id": null,
            "payment_method_status": null,
            "updated": null,
            "split_payments": null,
            "frm_metadata": null,
            "extended_authorization_applied": null,
            "request_extended_authorization": null,
            "capture_before": null,
            "merchant_order_reference_id": null,
            "order_tax_amount": null,
            "connector_mandate_id": null,
            "card_discovery": null,
            "force_3ds_challenge": false,
            "force_3ds_challenge_trigger": false,
            "issuer_error_code": null,
            "issuer_error_message": null,
            "is_iframe_redirection_enabled": null,
            "whole_connector_response": null,
            "enable_partial_authorization": null,
            "enable_overcapture": null,
            "is_overcapture_enabled": null,
            "network_details": null,
            "is_stored_credential": null,
            "mit_category": null
        },
        {
            "payment_id": "pay_oUb1wIdeVTUqFSU0ayEk",
            "merchant_id": "merchant_1760440140",
            "status": "processing",
            "amount": 1,
            "net_amount": 1,
            "shipping_cost": null,
            "amount_capturable": 0,
            "amount_received": null,
            "connector": "calida",
            "client_secret": "pay_oUb1wIdeVTUqFSU0ayEk_secret_mXRdZM3fGA6iPZKaWQAJ",
            "created": "2025-10-14T11:09:49.143Z",
            "currency": "EUR",
            "customer_id": null,
            "customer": null,
            "description": null,
            "refunds": null,
            "disputes": null,
            "mandate_id": null,
            "mandate_data": null,
            "setup_future_usage": null,
            "off_session": null,
            "capture_on": null,
            "capture_method": "automatic",
            "payment_method": "wallet",
            "payment_method_data": {
                "wallet": {},
                "billing": null
            },
            "payment_token": null,
            "shipping": null,
            "billing": {
                "address": {
                    "city": "San Fransico",
                    "country": "AT",
                    "line1": "1467",
                    "line2": null,
                    "line3": null,
                    "zip": "94122",
                    "state": null,
                    "first_name": "joseph",
                    "last_name": "Doe",
                    "origin_zip": null
                },
                "phone": null,
                "email": null
            },
            "order_details": null,
            "email": null,
            "name": null,
            "phone": null,
            "return_url": null,
            "authentication_type": null,
            "statement_descriptor_name": null,
            "statement_descriptor_suffix": null,
            "next_action": null,
            "cancellation_reason": null,
            "error_code": null,
            "error_message": null,
            "unified_code": null,
            "unified_message": null,
            "payment_experience": null,
            "payment_method_type": "bluecode",
            "connector_label": null,
            "business_country": null,
            "business_label": "default",
            "business_sub_label": null,
            "allowed_payment_method_types": null,
            "ephemeral_key": null,
            "manual_retry_allowed": null,
            "connector_transaction_id": null,
            "frm_message": null,
            "metadata": null,
            "connector_metadata": null,
            "feature_metadata": null,
            "reference_id": null,
            "payment_link": null,
            "profile_id": "pro_QaguXdnoNWFCJY0qwcAl",
            "surcharge_details": null,
            "attempt_count": 1,
            "merchant_decision": null,
            "merchant_connector_id": "mca_903iHOmrkXahbc9hPcK0",
            "incremental_authorization_allowed": null,
            "authorization_count": null,
            "incremental_authorizations": null,
            "external_authentication_details": null,
            "external_3ds_authentication_attempted": null,
            "expires_on": null,
            "fingerprint": null,
            "browser_info": null,
            "payment_channel": null,
            "payment_method_id": null,
            "network_transaction_id": null,
            "payment_method_status": null,
            "updated": null,
            "split_payments": null,
            "frm_metadata": null,
            "extended_authorization_applied": null,
            "request_extended_authorization": null,
            "capture_before": null,
            "merchant_order_reference_id": null,
            "order_tax_amount": null,
            "connector_mandate_id": null,
            "card_discovery": null,
            "force_3ds_challenge": false,
            "force_3ds_challenge_trigger": false,
            "issuer_error_code": null,
            "issuer_error_message": null,
            "is_iframe_redirection_enabled": null,
            "whole_connector_response": null,
            "enable_partial_authorization": null,
            "enable_overcapture": null,
            "is_overcapture_enabled": null,
            "network_details": null,
            "is_stored_credential": null,
            "mit_category": null
        }
    ]
}

Check in DB in payments_attempt table the value of connector :

Screenshot 2025-10-14 at 4 44 15 PM

How did you test it?

Checklist

  • I formatted the code cargo +nightly fmt --all
  • I addressed lints thrown by cargo clippy
  • I reviewed the submitted code
  • I added unit tests for my changes where possible

@bsayak03 bsayak03 requested a review from a team as a code owner October 14, 2025 04:02
@semanticdiff-com
Copy link

semanticdiff-com bot commented Oct 14, 2025

Review changes with  SemanticDiff

Changed Files
File Status
  crates/hyperswitch_connectors/src/connectors/calida.rs  7% smaller
  crates/common_enums/src/connector_enums.rs  0% smaller

@bsayak03 bsayak03 self-assigned this Oct 14, 2025
@likhinbopanna likhinbopanna added this pull request to the merge queue Oct 15, 2025
github-merge-queue bot pushed a commit that referenced this pull request Oct 15, 2025
Co-authored-by: Sayak Bhattacharya <sayak.b@Sayak-Bhattacharya-G092THXJ34.local>
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to no response for status checks Oct 15, 2025
@likhinbopanna likhinbopanna added this pull request to the merge queue Oct 15, 2025
Merged via the queue into main with commit c563fbe Oct 15, 2025
30 of 36 checks passed
@likhinbopanna likhinbopanna deleted the bluecode-calida branch October 15, 2025 16:45
chaitak-gorai pushed a commit that referenced this pull request Oct 16, 2025
Co-authored-by: Sayak Bhattacharya <sayak.b@Sayak-Bhattacharya-G092THXJ34.local>
drdholu pushed a commit to drdholu/hyperswitch that referenced this pull request Oct 30, 2025
…y#9817)

Co-authored-by: Sayak Bhattacharya <sayak.b@Sayak-Bhattacharya-G092THXJ34.local>
aadityaguptaa pushed a commit that referenced this pull request Nov 10, 2025
Co-authored-by: Sayak Bhattacharya <sayak.b@Sayak-Bhattacharya-G092THXJ34.local>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants