Skip to content
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

feat(connector): [JPMORGAN] add Payment flows for cards #6668

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

bsayak03
Copy link
Contributor

@bsayak03 bsayak03 commented Nov 26, 2024

Type of Change

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

Description

Additional Changes

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

Motivation and Context

https://developer.payments.jpmorgan.com/docs/commerce/online-payments/capabilities/online-payments/how-to/auth-and-capture-payment
https://developer.payments.jpmorgan.com/api/commerce/online-payments/online-payments#/operations/V2PaymentPost

Closes juspay/hyperswitch-cloud#7569

How did you test it?

Cypress Tests

Test Passes for

1. No3DSAutoCapture
Screenshot 2024-11-25 at 8 12 38 PM

2. Void Payment
VoidPayment

3. Sync Payment
SyncPayment

Test Cases failing for
1. No3DSManualCapture (Multi Capture not implemented)
2. RefundPayment (Connector sending the same transaction id for every hit on sandbox)
3. SyncRefund (Connector sending the same transaction id for every hit on sandbox)

Following flows need to be tested for card payments for new connector Jpmorgan:

1. Authorize (Manual)

  • Request
curl --location 'http://localhost:8082/payments' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'api-key: dev_VwPwlCTqgrrBU4OPlPTDHZz89LN0GpcHQRx7iV49U090zNugXvDd8gKK8UWl7Ipl' \
--data '{
    "amount": 90,
    "currency": "USD",
    "confirm": true,
    "capture_method":"manual",
    "profile_id": null,
    "payment_method": "card",
    "payment_method_type": "credit",
    "payment_method_data": { 
        "card": {
            "card_number": "4200000000000000",
            "card_exp_month": "10",
            "card_exp_year": "2026",
            "card_holder_name": "joseph Doe",
            "card_cvc": "123"
        }
    }
}'
  • Response
{
    "payment_id": "pay_xgDIyzRE05vHzo2y2dcj",
    "merchant_id": "merchant_1732504948",
    "status": "requires_capture",
    "amount": 90,
    "net_amount": 90,
    "shipping_cost": null,
    "amount_capturable": 90,
    "amount_received": null,
    "connector": "jpmorgan",
    "client_secret": "pay_xgDIyzRE05vHzo2y2dcj_secret_rXfBN5zk3nyQCTrBvipQ",
    "created": "2024-11-25T03:57:19.367Z",
    "currency": "USD",
    "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": "manual",
    "payment_method": "card",
    "payment_method_data": {
        "card": {
            "last4": "0000",
            "card_type": null,
            "card_network": null,
            "card_issuer": null,
            "card_issuing_country": null,
            "card_isin": "420000",
            "card_extended_bin": null,
            "card_exp_month": "10",
            "card_exp_year": "2026",
            "card_holder_name": null,
            "payment_checks": null,
            "authentication_data": null
        },
        "billing": null
    },
    "payment_token": null,
    "shipping": null,
    "billing": 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": "credit",
    "connector_label": null,
    "business_country": null,
    "business_label": "default",
    "business_sub_label": null,
    "allowed_payment_method_types": null,
    "ephemeral_key": null,
    "manual_retry_allowed": false,
    "connector_transaction_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
    "frm_message": null,
    "metadata": null,
    "connector_metadata": null,
    "feature_metadata": null,
    "reference_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
    "payment_link": null,
    "profile_id": "pro_5RER4wWpKHIE29BnX5Sc",
    "surcharge_details": null,
    "attempt_count": 1,
    "merchant_decision": null,
    "merchant_connector_id": "mca_MCfRyvSkAZajaTZO5V9g",
    "incremental_authorization_allowed": null,
    "authorization_count": null,
    "incremental_authorizations": null,
    "external_authentication_details": null,
    "external_3ds_authentication_attempted": false,
    "expires_on": "2024-11-25T04:12:19.366Z",
    "fingerprint": null,
    "browser_info": null,
    "payment_method_id": null,
    "payment_method_status": null,
    "updated": "2024-11-25T03:57:22.367Z",
    "charges": null,
    "frm_metadata": null,
    "merchant_order_reference_id": null,
    "order_tax_amount": null,
    "connector_mandate_id": null
}

2. Capture (Manual)

  • Request
curl --location 'http://localhost:8082/payments/pay_xgDIyzRE05vHzo2y2dcj/capture' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'api-key: dev_VwPwlCTqgrrBU4OPlPTDHZz89LN0GpcHQRx7iV49U090zNugXvDd8gKK8UWl7Ipl' \
--data '{
  "amount_to_capture": 90,
  "statement_descriptor_name": "Joseph",
  "statement_descriptor_prefix" :"joseph",
  "statement_descriptor_suffix": "JS"
}'
  • Response
{
    "payment_id": "pay_xgDIyzRE05vHzo2y2dcj",
    "merchant_id": "merchant_1732504948",
    "status": "succeeded",
    "amount": 90,
    "net_amount": 90,
    "shipping_cost": null,
    "amount_capturable": 0,
    "amount_received": 90,
    "connector": "jpmorgan",
    "client_secret": "pay_xgDIyzRE05vHzo2y2dcj_secret_rXfBN5zk3nyQCTrBvipQ",
    "created": "2024-11-25T03:57:19.367Z",
    "currency": "USD",
    "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": "manual",
    "payment_method": "card",
    "payment_method_data": {
        "card": {
            "last4": "0000",
            "card_type": null,
            "card_network": null,
            "card_issuer": null,
            "card_issuing_country": null,
            "card_isin": "420000",
            "card_extended_bin": null,
            "card_exp_month": "10",
            "card_exp_year": "2026",
            "card_holder_name": null,
            "payment_checks": null,
            "authentication_data": null
        },
        "billing": null
    },
    "payment_token": null,
    "shipping": null,
    "billing": 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": "credit",
    "connector_label": null,
    "business_country": null,
    "business_label": "default",
    "business_sub_label": null,
    "allowed_payment_method_types": null,
    "ephemeral_key": null,
    "manual_retry_allowed": false,
    "connector_transaction_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
    "frm_message": null,
    "metadata": null,
    "connector_metadata": null,
    "feature_metadata": null,
    "reference_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
    "payment_link": null,
    "profile_id": "pro_5RER4wWpKHIE29BnX5Sc",
    "surcharge_details": null,
    "attempt_count": 1,
    "merchant_decision": null,
    "merchant_connector_id": "mca_MCfRyvSkAZajaTZO5V9g",
    "incremental_authorization_allowed": null,
    "authorization_count": null,
    "incremental_authorizations": null,
    "external_authentication_details": null,
    "external_3ds_authentication_attempted": false,
    "expires_on": "2024-11-25T04:12:19.366Z",
    "fingerprint": null,
    "browser_info": null,
    "payment_method_id": null,
    "payment_method_status": null,
    "updated": "2024-11-25T03:59:41.611Z",
    "charges": null,
    "frm_metadata": null,
    "merchant_order_reference_id": null,
    "order_tax_amount": null,
    "connector_mandate_id": null
}

3. Authorize + Capture

  • Request
curl --location 'http://localhost:8082/payments' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'api-key: dev_VwPwlCTqgrrBU4OPlPTDHZz89LN0GpcHQRx7iV49U090zNugXvDd8gKK8UWl7Ipl' \
--data '{
    "amount": 29,
    "currency": "USD",
    "confirm": true,
    "capture_method":"automatic",
    "profile_id": null,
    "payment_method": "card",
    "payment_method_type": "credit",
    "payment_method_data": { 
        "card": {
            "card_number": "4200000000000000",
            "card_exp_month": "10",
            "card_exp_year": "2026",
            "card_holder_name": "joseph Doe",
            "card_cvc": "123"
        }
    }
}'
  • Response
{
    "payment_id": "pay_rNoRS0s4cL5sKIpKx9Mc",
    "merchant_id": "merchant_1732504948",
    "status": "succeeded",
    "amount": 29,
    "net_amount": 29,
    "shipping_cost": null,
    "amount_capturable": 0,
    "amount_received": 29,
    "connector": "jpmorgan",
    "client_secret": "pay_rNoRS0s4cL5sKIpKx9Mc_secret_VdFa9Ka56kCCggZd2JNs",
    "created": "2024-11-25T04:02:26.242Z",
    "currency": "USD",
    "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": "card",
    "payment_method_data": {
        "card": {
            "last4": "0000",
            "card_type": null,
            "card_network": null,
            "card_issuer": null,
            "card_issuing_country": null,
            "card_isin": "420000",
            "card_extended_bin": null,
            "card_exp_month": "10",
            "card_exp_year": "2026",
            "card_holder_name": null,
            "payment_checks": null,
            "authentication_data": null
        },
        "billing": null
    },
    "payment_token": null,
    "shipping": null,
    "billing": 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": "credit",
    "connector_label": null,
    "business_country": null,
    "business_label": "default",
    "business_sub_label": null,
    "allowed_payment_method_types": null,
    "ephemeral_key": null,
    "manual_retry_allowed": false,
    "connector_transaction_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
    "frm_message": null,
    "metadata": null,
    "connector_metadata": null,
    "feature_metadata": null,
    "reference_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
    "payment_link": null,
    "profile_id": "pro_5RER4wWpKHIE29BnX5Sc",
    "surcharge_details": null,
    "attempt_count": 1,
    "merchant_decision": null,
    "merchant_connector_id": "mca_MCfRyvSkAZajaTZO5V9g",
    "incremental_authorization_allowed": null,
    "authorization_count": null,
    "incremental_authorizations": null,
    "external_authentication_details": null,
    "external_3ds_authentication_attempted": false,
    "expires_on": "2024-11-25T04:17:26.242Z",
    "fingerprint": null,
    "browser_info": null,
    "payment_method_id": null,
    "payment_method_status": null,
    "updated": "2024-11-25T04:02:27.807Z",
    "charges": null,
    "frm_metadata": null,
    "merchant_order_reference_id": null,
    "order_tax_amount": null,
    "connector_mandate_id": null
}

4. PSync

  • Request
curl --location 'http://localhost:8082/payments/pay_rNoRS0s4cL5sKIpKx9Mc?force_sync=true&expand_captures=true&expand_attempts=true' \
--header 'Accept: application/json' \
--header 'api-key: dev_VwPwlCTqgrrBU4OPlPTDHZz89LN0GpcHQRx7iV49U090zNugXvDd8gKK8UWl7Ipl' \
--data ''
  • Response
{
    "payment_id": "pay_rNoRS0s4cL5sKIpKx9Mc",
    "merchant_id": "merchant_1732504948",
    "status": "succeeded",
    "amount": 29,
    "net_amount": 29,
    "shipping_cost": null,
    "amount_capturable": 0,
    "amount_received": 29,
    "connector": "jpmorgan",
    "client_secret": "pay_rNoRS0s4cL5sKIpKx9Mc_secret_VdFa9Ka56kCCggZd2JNs",
    "created": "2024-11-25T04:02:26.242Z",
    "currency": "USD",
    "customer_id": null,
    "customer": null,
    "description": null,
    "refunds": null,
    "disputes": null,
    "attempts": [
        {
            "attempt_id": "pay_rNoRS0s4cL5sKIpKx9Mc_1",
            "status": "charged",
            "amount": 29,
            "currency": "USD",
            "connector": "jpmorgan",
            "error_message": null,
            "payment_method": "card",
            "connector_transaction_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
            "capture_method": "automatic",
            "authentication_type": "no_three_ds",
            "created_at": "2024-11-25T04:02:26.242Z",
            "modified_at": "2024-11-25T04:02:27.806Z",
            "cancellation_reason": null,
            "mandate_id": null,
            "error_code": null,
            "payment_token": null,
            "connector_metadata": null,
            "payment_experience": null,
            "payment_method_type": "credit",
            "reference_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
            "unified_code": null,
            "unified_message": null,
            "client_source": null,
            "client_version": null
        }
    ],
    "mandate_id": null,
    "mandate_data": null,
    "setup_future_usage": null,
    "off_session": null,
    "capture_on": null,
    "capture_method": "automatic",
    "payment_method": "card",
    "payment_method_data": {
        "card": {
            "last4": "0000",
            "card_type": null,
            "card_network": null,
            "card_issuer": null,
            "card_issuing_country": null,
            "card_isin": "420000",
            "card_extended_bin": null,
            "card_exp_month": "10",
            "card_exp_year": "2026",
            "card_holder_name": null,
            "payment_checks": null,
            "authentication_data": null
        },
        "billing": null
    },
    "payment_token": null,
    "shipping": null,
    "billing": 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": "credit",
    "connector_label": null,
    "business_country": null,
    "business_label": "default",
    "business_sub_label": null,
    "allowed_payment_method_types": null,
    "ephemeral_key": null,
    "manual_retry_allowed": false,
    "connector_transaction_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
    "frm_message": null,
    "metadata": null,
    "connector_metadata": null,
    "feature_metadata": null,
    "reference_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
    "payment_link": null,
    "profile_id": "pro_5RER4wWpKHIE29BnX5Sc",
    "surcharge_details": null,
    "attempt_count": 1,
    "merchant_decision": null,
    "merchant_connector_id": "mca_MCfRyvSkAZajaTZO5V9g",
    "incremental_authorization_allowed": null,
    "authorization_count": null,
    "incremental_authorizations": null,
    "external_authentication_details": null,
    "external_3ds_authentication_attempted": false,
    "expires_on": "2024-11-25T04:17:26.242Z",
    "fingerprint": null,
    "browser_info": null,
    "payment_method_id": null,
    "payment_method_status": null,
    "updated": "2024-11-25T04:02:27.807Z",
    "charges": null,
    "frm_metadata": null,
    "merchant_order_reference_id": null,
    "order_tax_amount": null,
    "connector_mandate_id": null
}

5. Refund (Issue in the refund flow, because the connector sends the same transaction id for every hit on sandbox, hence conflicting)

  • Request
curl --location 'http://localhost:8082/refunds' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'api-key: dev_UrUqvKI4VJryn9DBhpNn28eNR8xKKKX6wgUAzBgkZS6JxPTL02KWowsVVBLWKKLB' \
--data '{
    "payment_id": "pay_LSvriAUkv1EQ7H0IiCtj",
    
    
    "reason": "Customer returned product",
    "refund_type": "instant",
    "metadata": {
        "udf1": "value1",
        "new_customer": "true",
        "login_date": "2019-09-10T10:11:12Z"
    }
}'
  • Response
{
    "refund_id": "ref_pf6FYPvh9OReebKK6lr0",
    "payment_id": "pay_LSvriAUkv1EQ7H0IiCtj",
    "amount": 128,
    "currency": "USD",
    "status": "succeeded",
    "reason": "Customer returned product",
    "metadata": {
        "udf1": "value1",
        "new_customer": "true",
        "login_date": "2019-09-10T10:11:12Z"
    },
    "error_message": null,
    "error_code": null,
    "created_at": "2024-11-25T04:15:14.312Z",
    "updated_at": "2024-11-25T04:15:14.914Z",
    "connector": "jpmorgan",
    "profile_id": "pro_ReWjg2xQYvoCCp6Aedli",
    "merchant_connector_id": "mca_xn15JFYJguLAd1PB45jr",
    "charges": null
}

6. RSync

  • Request
curl --location 'http://localhost:8082/refunds/ref_pf6FYPvh9OReebKK6lr0' \
--header 'Accept: application/json' \
--header 'api-key: dev_UrUqvKI4VJryn9DBhpNn28eNR8xKKKX6wgUAzBgkZS6JxPTL02KWowsVVBLWKKLB' \
--data ''
  • Response
{
    "refund_id": "ref_pf6FYPvh9OReebKK6lr0",
    "payment_id": "pay_LSvriAUkv1EQ7H0IiCtj",
    "amount": 128,
    "currency": "USD",
    "status": "succeeded",
    "reason": "Customer returned product",
    "metadata": {
        "udf1": "value1",
        "new_customer": "true",
        "login_date": "2019-09-10T10:11:12Z"
    },
    "error_message": null,
    "error_code": null,
    "created_at": "2024-11-25T04:15:14.312Z",
    "updated_at": "2024-11-25T04:15:14.914Z",
    "connector": "jpmorgan",
    "profile_id": "pro_ReWjg2xQYvoCCp6Aedli",
    "merchant_connector_id": "mca_xn15JFYJguLAd1PB45jr",
    "charges": null
}

7. Cancel/Void

  • Request
curl --location 'http://localhost:8082/payments/pay_Bxl3iUqyNMHkUXfqdL0E/cancel' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'api-key: dev_VwPwlCTqgrrBU4OPlPTDHZz89LN0GpcHQRx7iV49U090zNugXvDd8gKK8UWl7Ipl' \
--data '{
  "cancellation_reason": "requested_by_customer"
}'
  • Response
{
    "payment_id": "pay_Bxl3iUqyNMHkUXfqdL0E",
    "merchant_id": "merchant_1732504948",
    "status": "cancelled",
    "amount": 128,
    "net_amount": 128,
    "shipping_cost": null,
    "amount_capturable": 0,
    "amount_received": null,
    "connector": "jpmorgan",
    "client_secret": "pay_Bxl3iUqyNMHkUXfqdL0E_secret_6t6Ersg5ctM0YMqHP4IZ",
    "created": "2024-11-25T04:12:12.347Z",
    "currency": "USD",
    "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": "manual",
    "payment_method": "card",
    "payment_method_data": {
        "card": {
            "last4": "0000",
            "card_type": null,
            "card_network": null,
            "card_issuer": null,
            "card_issuing_country": null,
            "card_isin": "420000",
            "card_extended_bin": null,
            "card_exp_month": "10",
            "card_exp_year": "2026",
            "card_holder_name": null,
            "payment_checks": null,
            "authentication_data": null
        },
        "billing": null
    },
    "payment_token": null,
    "shipping": null,
    "billing": 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": "requested_by_customer",
    "error_code": null,
    "error_message": null,
    "unified_code": null,
    "unified_message": null,
    "payment_experience": null,
    "payment_method_type": "credit",
    "connector_label": null,
    "business_country": null,
    "business_label": "default",
    "business_sub_label": null,
    "allowed_payment_method_types": null,
    "ephemeral_key": null,
    "manual_retry_allowed": false,
    "connector_transaction_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
    "frm_message": null,
    "metadata": null,
    "connector_metadata": null,
    "feature_metadata": null,
    "reference_id": "cdf62f90-6440-496f-817c-c05dd3b7b01a",
    "payment_link": null,
    "profile_id": "pro_5RER4wWpKHIE29BnX5Sc",
    "surcharge_details": null,
    "attempt_count": 1,
    "merchant_decision": null,
    "merchant_connector_id": "mca_MCfRyvSkAZajaTZO5V9g",
    "incremental_authorization_allowed": null,
    "authorization_count": null,
    "incremental_authorizations": null,
    "external_authentication_details": null,
    "external_3ds_authentication_attempted": false,
    "expires_on": "2024-11-25T04:27:12.347Z",
    "fingerprint": null,
    "browser_info": null,
    "payment_method_id": null,
    "payment_method_status": null,
    "updated": "2024-11-25T04:12:58.939Z",
    "charges": null,
    "frm_metadata": null,
    "merchant_order_reference_id": null,
    "order_tax_amount": null,
    "connector_mandate_id": null
}

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 review from a team as code owners November 26, 2024 14:13
Copy link

semanticdiff-com bot commented Nov 26, 2024

Review changes with  SemanticDiff

Changed Files
File Status
  crates/hyperswitch_connectors/src/connectors/jpmorgan/transformers.rs  6% smaller
  crates/hyperswitch_connectors/src/connectors/jpmorgan.rs  3% smaller
  api-reference-v2/openapi_spec.json  0% smaller
  api-reference/openapi_spec.json  0% smaller
  config/config.example.toml Unsupported file format
  config/deployments/integration_test.toml Unsupported file format
  config/deployments/production.toml Unsupported file format
  config/deployments/sandbox.toml Unsupported file format
  config/development.toml Unsupported file format
  config/docker_compose.toml Unsupported file format
  crates/api_models/src/connector_enums.rs  0% smaller
  crates/common_enums/src/connector_enums.rs  0% smaller
  crates/connector_configs/src/connector.rs  0% smaller
  crates/connector_configs/toml/development.toml Unsupported file format
  crates/connector_configs/toml/production.toml Unsupported file format
  crates/connector_configs/toml/sandbox.toml Unsupported file format
  crates/router/src/core/admin.rs  0% smaller
  crates/router/src/core/payments/flows.rs  0% smaller
  crates/router/src/types/api.rs  0% smaller
  crates/router/src/types/transformers.rs  0% smaller
  crates/router/tests/connectors/sample_auth.toml Unsupported file format
  crates/test_utils/src/connector_auth.rs  0% smaller
  cypress-tests/cypress/e2e/PaymentUtils/Jpmorgan.js  0% smaller
  cypress-tests/cypress/e2e/PaymentUtils/Utils.js  0% smaller
  loadtest/config/development.toml Unsupported file format

@hyperswitch-bot hyperswitch-bot bot added the M-api-contract-changes Metadata: This PR involves API contract changes label Nov 26, 2024
@bsayak03 bsayak03 self-assigned this Nov 26, 2024
@bsayak03 bsayak03 added this to the November 2024 Release milestone Nov 26, 2024
@bsayak03 bsayak03 force-pushed the jpmorgan-cards branch 3 times, most recently from d6f5ae6 to 0596582 Compare November 27, 2024 08:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
M-api-contract-changes Metadata: This PR involves API contract changes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant