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): [AMAZONPAY] add Payment flows for Amazon Pay Wallet #7062

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

Conversation

Anurag-05-prog
Copy link
Contributor

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.amazon.com/docs/amazon-pay-api-v2/introduction.html

closes juspay/hyperswitch-cloud#7805

How did you test it?

Postman Test

  1. Connector configuration with merchant account
curl --location --globoff 'http://localhost:8080/account/{{merchant_id}}/connectors' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'api-key: {{admin_api_key}}' \
--data '{
    "connector_type": "payment_processor",
    "connector_name": "amazonpay",
    "connector_account_details": {
        "auth_type": "BodyKey",
        "api_key": "Merchant'\''s Public Key here",
        "key1": "Merchant'\''s Private Key here"
    },
    "test_mode": true,
    "disabled": false,
    "payment_methods_enabled": [
        {
            "payment_method": "wallet",
            "payment_method_types": [
                {
                    "payment_method_type": "amazon_pay",
                    "payment_experience": "invoke_sdk_client",
                    "card_networks": null,
                    "accepted_currencies": null,
                    "accepted_countries": null,
                    "minimum_amount": 1,
                    "maximum_amount": 68607706,
                    "recurring_enabled": true,
                    "installment_payment_enabled": true
                }
            ]
        }
    ],
    "connector_wallets_details": {
        "amazon_pay": {
            "merchant_id": "A3UJN62U20X4GB",
            "store_id": "amzn1.application-oa2-client.43ee1af277a94b6c8efd9118dd6c156c"
        }
    },
    "metadata": {
        "city": "NY",
        "unit": "245"
    },
    "connector_webhook_details": {
        "merchant_secret": "MyWebhookSecret"
    },
    "business_country": "US",
    "business_label": "default"
}'

Response:

{
    "connector_type": "payment_processor",
    "connector_name": "amazonpay",
    "connector_label": "amazonpay_US_default",
    "merchant_connector_id": "mca_dzcaJz3OXpbsEUtmnRRB",
    "profile_id": "pro_KjH58F7Kk38DKamoARZo",
    "connector_account_details": {
        "auth_type": "BodyKey",
        "api_key": "SA****************************YL",
        "key1": "--*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************--"
    },
    "payment_methods_enabled": [
        {
            "payment_method": "wallet",
            "payment_method_types": [
                {
                    "payment_method_type": "amazon_pay",
                    "payment_experience": "invoke_sdk_client",
                    "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": "MyWebhookSecret",
        "additional_secret": null
    },
    "metadata": {
        "city": "NY",
        "unit": "245"
    },
    "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": {
        "amazon_pay": {
            "merchant_id": "A3UJN62U20X4GB",
            "store_id": "amzn1.application-oa2-client.43ee1af277a94b6c8efd9118dd6c156c"
        }
    }
}
  1. Create Payment
curl --location 'http://localhost:8080/payments' \
--header 'Content-Type: application/json' \
--data '{
    "amount": 1000,
    "currency": "USD",
    "shipping_cost": 2000,
    "confirm": false,
    "customer": {
        "id": "customer123",
        "name": "Susie Smith",
        "phone": "8000000000"
    },
    "payment_method": "wallet",
    "payment_method_type": "amazon_pay",
    "payment_method_data": {
        "wallet": {
            "amazon_pay": {
                "checkout_session_id": "Checkout Session ID here"
            }
        }
    },
    "metadata": {
        "delivery_options": [
            {
                "id": "standard-delivery",
                "price":{
                    "amount": "20.00",
                    "currency_code":"USD"
                },
                "shipping_method":{
                    "shipping_method_name":"standard-courier",
                    "shipping_method_code":"standard-courier"
                },
                "date_time_window":[
                    {
                        "type":"DATE",
                        "value":[
                            "2025-01-18",
                            "2025-01-19",
                            "2025-01-20"
                        ]
                    }
                ],
                "is_default":true,
                "discounted_price": {
                    "amount": "5.00",
                    "currency_code": "USD"
                },
                "shipping_estimate": {
                    "time_unit": "HOUR",
                    "value": "36"
                }
            },
            {
                "id":"express-delivery",
                "price":{
                    "amount":"50",
                    "currency_code":"USD"
                },
                "shipping_method":{
                    "shipping_method_name":"express-courier",
                    "shipping_method_code":"express-courier"
                },
                "date_time_window":[
                    {
                        "type":"DATE",
                        "value":[
                            "2025-01-16",
                            "2025-01-17"
                        ]
                    }
                ],
                "is_default":false,
                "discounted_price": {
                    "amount": "5.00",
                    "currency_code": "USD"
                },
                "shipping_estimate": {
                    "time_unit": "HOUR",
                    "value": "12"
                }
            }
        ]
    },
    "shipping": {
        "address": {
            "line1": "10 Ditka Ave",
            "line2": "Suite 2500",
            "line3": null,
            "city": "Chicago",
            "state": "IL",
            "zip": "60602",
            "country": "US",
            "first_name": "Susie",
            "last_name": "Smith"
        },
        "phone": {
            "number": "8000000000"
        }
    }
}'

Response:

{
    "payment_id": "pay_5PNFPVBnFxzILMlOObef",
    "merchant_id": "merchant_1737183572",
    "status": "requires_confirmation",
    "amount": 1000,
    "net_amount": 3000,
    "shipping_cost": 2000,
    "amount_capturable": 0,
    "amount_received": null,
    "connector": null,
    "client_secret": "pay_5PNFPVBnFxzILMlOObef_secret_AlhkOS1WRXHeoilo9qFV",
    "created": "2025-01-18T15:24:05.175Z",
    "currency": "USD",
    "customer_id": "customer123",
    "customer": {
        "id": "customer123",
        "name": "Susie Smith",
        "email": null,
        "phone": "8000000000",
        "phone_country_code": 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": null,
    "payment_method": "wallet",
    "payment_method_data": {
        "wallet": {},
        "billing": null
    },
    "payment_token": "token_kJO6YSUslxcng0VskAI5",
    "shipping": {
        "address": {
            "city": "Chicago",
            "country": "US",
            "line1": "10 Ditka Ave",
            "line2": "Suite 2500",
            "line3": null,
            "zip": "60602",
            "state": "IL",
            "first_name": "Susie",
            "last_name": "Smith"
        },
        "phone": {
            "number": "8000000000",
            "country_code": null
        },
        "email": null
    },
    "billing": null,
    "order_details": null,
    "email": null,
    "name": "Susie Smith",
    "phone": "8000000000",
    "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": "amazon_pay",
    "connector_label": null,
    "business_country": null,
    "business_label": "default",
    "business_sub_label": null,
    "allowed_payment_method_types": null,
    "ephemeral_key": {
        "customer_id": "customer123",
        "created_at": 1737213845,
        "expires": 1737217445,
        "secret": "epk_9ce232016ad34720a3f2a05baf6b33fc"
    },
    "manual_retry_allowed": null,
    "connector_transaction_id": null,
    "frm_message": null,
    "metadata": {
        "delivery_options": [
            {
                "id": "standard-delivery",
                "price": {
                    "amount": "20.00",
                    "currency_code": "USD"
                },
                "is_default": true,
                "shipping_method": {
                    "shipping_method_code": "standard-courier",
                    "shipping_method_name": "standard-courier"
                },
                "date_time_window": [
                    {
                        "type": "DATE",
                        "value": [
                            "2025-01-18",
                            "2025-01-19",
                            "2025-01-20"
                        ]
                    }
                ]
            },
            {
                "id": "express-delivery",
                "price": {
                    "amount": "50",
                    "currency_code": "USD"
                },
                "is_default": false,
                "shipping_method": {
                    "shipping_method_code": "express-courier",
                    "shipping_method_name": "express-courier"
                },
                "date_time_window": [
                    {
                        "type": "DATE",
                        "value": [
                            "2025-01-16",
                            "2025-01-17"
                        ]
                    }
                ]
            }
        ]
    },
    "connector_metadata": null,
    "feature_metadata": null,
    "reference_id": null,
    "payment_link": null,
    "profile_id": "pro_KjH58F7Kk38DKamoARZo",
    "surcharge_details": null,
    "attempt_count": 1,
    "merchant_decision": null,
    "merchant_connector_id": null,
    "incremental_authorization_allowed": null,
    "authorization_count": null,
    "incremental_authorizations": null,
    "external_authentication_details": null,
    "external_3ds_authentication_attempted": false,
    "expires_on": "2025-01-18T15:39:05.175Z",
    "fingerprint": null,
    "browser_info": null,
    "payment_method_id": null,
    "payment_method_status": null,
    "updated": "2025-01-18T15:24:05.238Z",
    "split_payments": null,
    "frm_metadata": null,
    "merchant_order_reference_id": null,
    "order_tax_amount": null,
    "connector_mandate_id": null
}
  1. Session Token
curl --location 'http://localhost:8080/payments/session_tokens' \
--header 'Content-Type: application/json' \
--header 'api-key: pk_dev_7b8e41e42f304499a2ea757d2d605552' \
--data '{
    "payment_id": "Payment ID here",
    "wallets": [],
    "client_secret": "Client Secret here"
}'

Response:

{
    "payment_id": "pay_Lgz51QGpjmbKLxRfVEgL",
    "client_secret": "***",
    "session_token": [
        {
            "wallet_name": "amazon_pay",
            "merchant_id": "A3UJN62U20X4GB",
            "ledger_currency": "USD",
            "store_id": "amzn1.application-oa2-client.43ee1af277a94b6c8efd9118dd6c156c",
            "payment_intent": "AuthorizeWithCapture",
            "total_shipping_amount": "20.00",
            "total_tax_amount": "0.00",
            "total_base_amount": "10.00",
            "delivery_options": [
                {
                    "id": "standard-delivery",
                    "price": {
                        "amount": "20.00",
                        "currency_code": "USD"
                    },
                    "shipping_method": {
                        "shipping_method_name": "standard-courier",
                        "shipping_method_code": "standard-courier"
                    },
                    "is_default": true,
                    "shipping_estimate": null,
                    "discounted_price": null,
                    "date_time_window": [
                        {
                            "type_": "DATE",
                            "value": [
                                "2025-01-18",
                                "2025-01-19",
                                "2025-01-20"
                            ],
                            "default_value": null
                        }
                    ]
                },
                {
                    "id": "express-delivery",
                    "price": {
                        "amount": "50",
                        "currency_code": "USD"
                    },
                    "shipping_method": {
                        "shipping_method_name": "express-courier",
                        "shipping_method_code": "express-courier"
                    },
                    "is_default": false,
                    "shipping_estimate": null,
                    "discounted_price": null,
                    "date_time_window": [
                        {
                            "type_": "DATE",
                            "value": [
                                "2025-01-16",
                                "2025-01-17"
                            ],
                            "default_value": null
                        }
                    ]
                }
            ]
        }
    ]
}
  1. Payments - Confirm
curl --location 'http://localhost:8080/payments/:id/confirm' \
--header 'Content-Type: application/json' \
--data '{
    "currency": "USD",
    "shipping_cost": 2000,
    "capture_method": "automatic",
    "shipping": {
        "address": {
            "line1": "10 Ditka Ave",
            "line2": "Suite 2500",
            "line3": null,
            "city": "Chicago",
            "state": "IL",
            "zip": "60602",
            "country": "US",
            "first_name": "Susie",
            "last_name": "Smith"
        },
        "phone": {
            "number": "800-000-0000"
        }
    },
    "payment_method": "wallet",
    "payment_method_type": "amazon_pay",
    "payment_method_data": {
        "wallet": {
            "amazon_pay": {
                "checkout_session_id": "f6d776b5-1563-47e5-bed5-b133717e8da9"
            }
        }
    }
}'

Response:

{
    "payment_id": "pay_Lgz51QGpjmbKLxRfVEgL",
    "merchant_id": "merchant_1737183572",
    "status": "succeeded",
    "amount": 1000,
    "net_amount": 3000,
    "shipping_cost": 2000,
    "amount_capturable": 0,
    "amount_received": 3000,
    "connector": "amazonpay",
    "client_secret": "pay_Lgz51QGpjmbKLxRfVEgL_secret_YynoL8B6bfAY9VH1LntV",
    "created": "2025-01-18T16:07:04.140Z",
    "currency": "USD",
    "customer_id": "customer123",
    "customer": {
        "id": "customer123",
        "name": "Susie Smith",
        "email": null,
        "phone": "8000000000",
        "phone_country_code": 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": "token_9qbWBJMFUUjVZaW5sZAH",
    "shipping": {
        "address": {
            "city": "Chicago",
            "country": "US",
            "line1": "10 Ditka Ave",
            "line2": "Suite 2500",
            "line3": null,
            "zip": "60602",
            "state": "IL",
            "first_name": "Susie",
            "last_name": "Smith"
        },
        "phone": {
            "number": "800-000-0000",
            "country_code": null
        },
        "email": null
    },
    "billing": null,
    "order_details": null,
    "email": null,
    "name": "Susie Smith",
    "phone": "8000000000",
    "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": "amazon_pay",
    "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": "S01-9812512-1772206-C013084",
    "frm_message": null,
    "metadata": {
        "delivery_options": [
            {
                "id": "standard-delivery",
                "price": {
                    "amount": "20.00",
                    "currency_code": "USD"
                },
                "is_default": true,
                "shipping_method": {
                    "shipping_method_code": "standard-courier",
                    "shipping_method_name": "standard-courier"
                },
                "date_time_window": [
                    {
                        "type": "DATE",
                        "value": [
                            "2025-01-18",
                            "2025-01-19",
                            "2025-01-20"
                        ]
                    }
                ]
            },
            {
                "id": "express-delivery",
                "price": {
                    "amount": "50",
                    "currency_code": "USD"
                },
                "is_default": false,
                "shipping_method": {
                    "shipping_method_code": "express-courier",
                    "shipping_method_name": "express-courier"
                },
                "date_time_window": [
                    {
                        "type": "DATE",
                        "value": [
                            "2025-01-16",
                            "2025-01-17"
                        ]
                    }
                ]
            }
        ]
    },
    "connector_metadata": null,
    "feature_metadata": null,
    "reference_id": null,
    "payment_link": null,
    "profile_id": "pro_KjH58F7Kk38DKamoARZo",
    "surcharge_details": null,
    "attempt_count": 1,
    "merchant_decision": null,
    "merchant_connector_id": "mca_dzcaJz3OXpbsEUtmnRRB",
    "incremental_authorization_allowed": null,
    "authorization_count": null,
    "incremental_authorizations": null,
    "external_authentication_details": null,
    "external_3ds_authentication_attempted": false,
    "expires_on": "2025-01-18T16:22:04.140Z",
    "fingerprint": null,
    "browser_info": {
        "os_type": null,
        "language": null,
        "time_zone": null,
        "ip_address": "::1",
        "os_version": null,
        "user_agent": null,
        "color_depth": null,
        "device_model": null,
        "java_enabled": null,
        "screen_width": null,
        "accept_header": null,
        "screen_height": null,
        "java_script_enabled": null
    },
    "payment_method_id": null,
    "payment_method_status": null,
    "updated": "2025-01-18T16:07:10.472Z",
    "split_payments": null,
    "frm_metadata": null,
    "merchant_order_reference_id": null,
    "order_tax_amount": null,
    "connector_mandate_id": null
}
  1. Refunds - Create
curl --location 'http://localhost:8080/refunds' \
--header 'Content-Type: application/json' \
--data '{
    "payment_id": "Payment ID here",
    "amount": 200,
    "reason": "Customer returned product",
    "refund_type": "instant"
}'

Response:

{
    "refund_id": "ref_vaJsPpJfxznRIFMMrma5",
    "payment_id": "pay_Lgz51QGpjmbKLxRfVEgL",
    "amount": 200,
    "currency": "USD",
    "status": "pending",
    "reason": "Customer returned product",
    "metadata": null,
    "error_message": null,
    "error_code": null,
    "created_at": "2025-01-18T16:10:06.949Z",
    "updated_at": "2025-01-18T16:10:08.260Z",
    "connector": "amazonpay",
    "profile_id": "pro_KjH58F7Kk38DKamoARZo",
    "merchant_connector_id": "mca_dzcaJz3OXpbsEUtmnRRB",
    "split_refunds": null
}
  1. Refunds - Retrieve
curl --location 'http://localhost:8080/refunds/ref_vaJsPpJfxznRIFMMrma5' \
--header 'Accept: application/json' \
--header 'api-key: dev_l0ClsrWTgTFlMglwCTdQYVOG8meOmMhR8pSa87efG6U0y5mhBtbH5wvMt3vtXBhE'

Response:

{
    "refund_id": "ref_vaJsPpJfxznRIFMMrma5",
    "payment_id": "pay_Lgz51QGpjmbKLxRfVEgL",
    "amount": 200,
    "currency": "USD",
    "status": "succeeded",
    "reason": "Customer returned product",
    "metadata": null,
    "error_message": null,
    "error_code": null,
    "created_at": "2025-01-18T16:10:06.949Z",
    "updated_at": "2025-01-18T16:12:28.204Z",
    "connector": "amazonpay",
    "profile_id": "pro_KjH58F7Kk38DKamoARZo",
    "merchant_connector_id": "mca_dzcaJz3OXpbsEUtmnRRB",
    "split_refunds": 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

@Anurag-05-prog Anurag-05-prog requested review from a team as code owners January 18, 2025 16:18
Copy link

semanticdiff-com bot commented Jan 18, 2025

Review changes with  SemanticDiff

Changed Files
File Status
  crates/connector_configs/src/transformer.rs  80% smaller
  crates/hyperswitch_connectors/src/connectors/square/transformers.rs  67% smaller
  crates/router/src/connector/adyen.rs  67% smaller
  crates/router/src/connector/stripe/transformers.rs  52% smaller
  crates/router/src/connector/noon/transformers.rs  45% smaller
  crates/hyperswitch_connectors/src/connectors/bluesnap/transformers.rs  43% smaller
  crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs  43% smaller
  crates/hyperswitch_connectors/src/connectors/globepay/transformers.rs  43% smaller
  crates/hyperswitch_connectors/src/connectors/multisafepay/transformers.rs  43% smaller
  crates/router/src/connector/bankofamerica/transformers.rs  41% smaller
  crates/router/src/connector/cybersource/transformers.rs  41% smaller
  crates/router/src/connector/wellsfargo/transformers.rs  41% smaller
  crates/router/src/connector/klarna.rs  39% smaller
  crates/router/src/connector/paypal/transformers.rs  38% smaller
  crates/hyperswitch_connectors/src/connectors/shift4/transformers.rs  37% smaller
  crates/hyperswitch_connectors/src/connectors/worldpay/transformers.rs  37% smaller
  crates/hyperswitch_connectors/src/connectors/zen/transformers.rs  37% smaller
  crates/router/src/connector/checkout/transformers.rs  36% smaller
  crates/router/src/connector/mifinity/transformers.rs  36% smaller
  crates/router/src/connector/nmi/transformers.rs  36% smaller
  crates/router/src/connector/nuvei/transformers.rs  36% smaller
  crates/router/src/connector/payme/transformers.rs  36% smaller
  crates/hyperswitch_connectors/src/connectors/novalnet/transformers.rs  36% smaller
  crates/router/src/connector/aci/transformers.rs  31% smaller
  crates/router/src/connector/adyen/transformers.rs  31% smaller
  crates/hyperswitch_connectors/src/connectors/airwallex/transformers.rs  30% smaller
  crates/hyperswitch_connectors/src/connectors/boku/transformers.rs  30% smaller
  crates/hyperswitch_connectors/src/connectors/nexinets/transformers.rs  30% smaller
  crates/router/src/connector/authorizedotnet/transformers.rs  24% smaller
  crates/hyperswitch_connectors/src/default_implementations.rs  19% smaller
  crates/hyperswitch_connectors/src/connectors/amazonpay.rs  11% smaller
  crates/hyperswitch_connectors/src/connectors/amazonpay/transformers.rs  7% smaller
  crates/router/src/core/payments/helpers.rs  5% smaller
  crates/router/src/core/payments/flows/session_flow.rs  3% smaller
  crates/api_models/src/payments.rs  1% smaller
  Cargo.lock Unsupported file format
  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/admin.rs  0% smaller
  crates/common_enums/src/connector_enums.rs  0% smaller
  crates/common_enums/src/enums.rs  0% smaller
  crates/common_enums/src/transformers.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/euclid/src/frontend/dir/enums.rs  0% smaller
  crates/euclid/src/frontend/dir/lowering.rs  0% smaller
  crates/euclid/src/frontend/dir/transformers.rs  0% smaller
  crates/hyperswitch_connectors/Cargo.toml Unsupported file format
  crates/hyperswitch_connectors/src/utils.rs  0% smaller
  crates/hyperswitch_domain_models/src/payment_method_data.rs  0% smaller
  crates/hyperswitch_domain_models/src/router_request_types.rs  0% smaller
  crates/kgraph_utils/src/mca.rs  0% smaller
  crates/kgraph_utils/src/transformers.rs  0% smaller
  crates/router/src/connector/utils.rs  0% smaller
  crates/router/src/core/admin.rs  0% smaller
  crates/router/src/core/payments/operations/payment_session.rs  0% smaller
  crates/router/src/core/payments/operations/payment_session_intent.rs  0% smaller
  crates/router/src/core/payments/transformers.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
  loadtest/config/development.toml Unsupported file format

@Anurag-05-prog Anurag-05-prog changed the title Amazon pay flows feat(connector): [AMAZONPAY] add Payment flows for Amazon Pay Wallet Jan 18, 2025
@Anurag-05-prog Anurag-05-prog self-assigned this Jan 18, 2025
@Anurag-05-prog Anurag-05-prog force-pushed the amazon-pay-flows branch 2 times, most recently from 7fd7b8e to c7e552d Compare January 18, 2025 17:04
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.

1 participant