repo
stringclasses
1 value
instance_id
stringlengths
22
24
problem_statement
stringlengths
24
24.1k
patch
stringlengths
0
1.9M
test_patch
stringclasses
1 value
created_at
stringdate
2022-11-25 05:12:07
2025-10-09 08:44:51
hints_text
stringlengths
11
235k
base_commit
stringlengths
40
40
juspay/hyperswitch
juspay__hyperswitch-2790
Bug: [BUG] Newly created business profile takes the value of `routing_algorithm` from the `merchant_account.routing_algorithm` column ### Bug Description When creating a new business profile, the value of `routing_algorithm` is taken from the merchant account's `routing_algorithm` field which may contain some stale...
diff --git a/crates/router/src/types/api/admin.rs b/crates/router/src/types/api/admin.rs index 6bbe9149f4d..fe99d084223 100644 --- a/crates/router/src/types/api/admin.rs +++ b/crates/router/src/types/api/admin.rs @@ -124,9 +124,10 @@ impl ForeignTryFrom<(domain::MerchantAccount, BusinessProfileCreate)> ...
2023-11-06T06:36:58Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description This PR updates the code to set the value of the `business_profile.routing_algorithm` column to a default...
ab3dac79b4f138cd1f60a9afc0635dcc137a4a05
juspay/hyperswitch
juspay__hyperswitch-2646
Bug: [FEATURE] Add custom-headers support for Rustman ### Feature Description This will open up wide range of possibility for all the developers out there to add custom headers of their wish to test out new things and what not? ### Possible Implementation Pass the headers in the form of a key-value pair in th...
diff --git a/crates/test_utils/README.md b/crates/test_utils/README.md index 1e92174b333..2edbc7104c2 100644 --- a/crates/test_utils/README.md +++ b/crates/test_utils/README.md @@ -28,9 +28,16 @@ Required fields: Optional fields: +- `--delay` -- To add a delay between requests in milliseconds. + - Maximum delay i...
2023-10-18T17:58:48Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [x] New feature - [x] Documentation - [x] CI/CD ## Description <!-- Describe your changes in detail --> Closes #2646 This PR as usual, narrows the main aim of rustman by making specific to Hyperswitch. With this, you should now be able to: - ...
cdca284b2a7a77cb22074fa8b3b380a088c10f00
juspay/hyperswitch
juspay__hyperswitch-2683
Bug: [FEATURE] Add support for tokenising bank details and fetching masked details while listing ### Feature Description Add support for tokenising the fetched bank details during list_customer_payment_method and return masked bank details ### Possible Implementation For each bank account fetched from payment_me...
diff --git a/crates/api_models/src/payment_methods.rs b/crates/api_models/src/payment_methods.rs index c40dffe4cf3..8710c69aa5c 100644 --- a/crates/api_models/src/payment_methods.rs +++ b/crates/api_models/src/payment_methods.rs @@ -811,10 +811,20 @@ pub struct CustomerPaymentMethod { #[schema(value_type = Option<...
2023-10-14T12:17:42Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This PR includes changes for tokenising the fetched bank detail...
037e310aab5fac90ba33cdff2acda2f031261a6c
juspay/hyperswitch
juspay__hyperswitch-2833
Bug: [FEATURE] Add support for profile-specific default routing fallback ### Feature Description Currently every merchant has a default fallback which is a list of all of their configured connectors. We now want to make this profile-specific, i.e. each profile will have an associated default fallback that is a lis...
diff --git a/crates/api_models/src/events/routing.rs b/crates/api_models/src/events/routing.rs index 5eca01acc6f..a09735bc572 100644 --- a/crates/api_models/src/events/routing.rs +++ b/crates/api_models/src/events/routing.rs @@ -1,8 +1,9 @@ use common_utils::events::{ApiEventMetric, ApiEventsType}; use crate::routi...
2023-11-08T07:55:27Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description `default-fallbacks` are defined specific to profile i.e every profile will correspond to different fallba...
f88eee7362be2cc3e8e8dc2bb7bfd263892ff01e
juspay/hyperswitch
juspay__hyperswitch-2526
Bug: [REFACTOR] delete requires cvv config when merchant account is deleted ### Feature Description Add support for removing the requires cvv config from configs table when merchant account is deleted. ### Possible Implementation When merchant account delete request is sent, delete an entry in configs with key = ...
diff --git a/crates/router/src/core/admin.rs b/crates/router/src/core/admin.rs index ec229bd8a56..226d77d598e 100644 --- a/crates/router/src/core/admin.rs +++ b/crates/router/src/core/admin.rs @@ -491,6 +491,25 @@ pub async fn merchant_account_delete( .to_not_found_response(errors::ApiErrorResponse::Mercha...
2023-10-10T08:03:09Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This PR includes changes for removing the requires cvv config f...
cf0db35923d39caca9bf267b7d87a3f215884b66
juspay/hyperswitch
juspay__hyperswitch-2598
Bug: [CI] Add ci workflow for validating hotfix pr ### Feature Description Add support for creating a new workflow for validating the hotfix pr. Workflow should be triggered when baseRef is prefixed with hotfix- ### Possible Implementation Assumption - Hotfix PR description contains one or more original PR'...
2023-10-16T07:23:49Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [x] CI/CD ## Description <!-- Describe your changes in detail --> This PR adds a new workflow for validating the hotfix PR. Work...
cecea8718a48b4e896b2bafce0f909ef8d9a6e8a
juspay/hyperswitch
juspay__hyperswitch-2510
Bug: [REFACTOR] remove ansi escape characters from logs when format is set to json ### Feature Description Fix log formatting by removing the ansi escape characters from logs when the log format is set to json ### Possible Implementation This will help in making the logs much cleaner as opposed to having ansi esc...
diff --git a/Cargo.lock b/Cargo.lock index 9e026101d1a..abecaf6ae24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4179,6 +4179,7 @@ version = "0.1.0" dependencies = [ "cargo_metadata 0.15.4", "config", + "error-stack", "gethostname", "once_cell", "opentelemetry", diff --git a/crates/router_env/Cargo.toml b/cr...
2023-10-09T11:46:27Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This PR includes changes for removing the ansi escape character...
e02838eb5d3da97ef573926ded4a318ed24b6f1c
juspay/hyperswitch
juspay__hyperswitch-2504
Bug: [REFACTOR] Limiting `Tracing` to only Payments API ## Description We are tracing all the APIs, which isn't effective due to the variance of the traffic. This change will include the tracing layer to a specific scope instead of the entire application
diff --git a/config/config.example.toml b/config/config.example.toml index e980ea4fffd..b69519b6ac4 100644 --- a/config/config.example.toml +++ b/config/config.example.toml @@ -28,6 +28,7 @@ port = 5432 # DB Port dbname = "hyperswitch_db" # Name of Database pool_size = 5 # Number of co...
2023-10-09T12:09:44Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description This change introduces a new middleware for tracing requests with the specified url. Providing a filtra...
14cf0e735a31a823a1909a2886a3fedb4a9ea3e1
juspay/hyperswitch
juspay__hyperswitch-2432
Bug: [REFACTOR] add `requires_cvv` config while creating merchant account ### Feature Description Insert requires_cvv config during merchant account creation itself. while getting that config during list_customer_payment_method, if not found in db, we insert it into db. ### Possible Implementation in order to red...
diff --git a/crates/router/src/core/admin.rs b/crates/router/src/core/admin.rs index dabe22da626..c7009bf4cc9 100644 --- a/crates/router/src/core/admin.rs +++ b/crates/router/src/core/admin.rs @@ -219,6 +219,17 @@ pub async fn create_merchant_account( .insert_merchant(merchant_account, &key_store) .aw...
2023-10-03T13:39:33Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This PR includes changes for inserting requires_cvv config duri...
d177b4d94f08fb8ef44b5c07ec1bdc771baa016d
juspay/hyperswitch
juspay__hyperswitch-2438
Bug: [FEATURE] Implement `MerchantAccountInterface` for `MockDb` Spin off from #172. Refer to the parent issue for more information
diff --git a/crates/diesel_models/src/merchant_account.rs b/crates/diesel_models/src/merchant_account.rs index b1dcc1d3476..12d51311e87 100644 --- a/crates/diesel_models/src/merchant_account.rs +++ b/crates/diesel_models/src/merchant_account.rs @@ -260,6 +260,36 @@ pub struct MerchantAccountUpdateInternal { pub re...
2024-10-10T01:07:03Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Mockdb is a stub to avoid costly interactions with db during tes...
33bc83fce47c579457f1b9be0a91bb4fa13585ff
juspay/hyperswitch
juspay__hyperswitch-2400
Bug: [Docs] : Some links not working ## Some index links are not working - Quick start guide - Fast integration for stripe users - Supported Features - Faq ### Video https://github.com/juspay/hyperswitch/assets/101205226/70f42b41-4c94-40fb-a538-85ef5ac4dd6c
diff --git a/README.md b/README.md index 3306de28704..cc19670a8fc 100644 --- a/README.md +++ b/README.md @@ -10,17 +10,17 @@ The single API to access payment ecosystems across 130+ countries</div> <p align="center"> - <a href="#quick-start-guide">Quick Start Guide</a> • - <a href="#fast-integration-for-stripe-use...
2023-10-01T07:16:56Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [x] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
d8a1bdd3ae0156e0b1da551b50814f7599d6e813
juspay/hyperswitch
juspay__hyperswitch-2351
Bug: [FEATURE]: [Worldline] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a si...
diff --git a/crates/router/src/connector/worldline/transformers.rs b/crates/router/src/connector/worldline/transformers.rs index f11c2398080..8d18723f9ed 100644 --- a/crates/router/src/connector/worldline/transformers.rs +++ b/crates/router/src/connector/worldline/transformers.rs @@ -565,12 +565,12 @@ impl<F, T> TryFro...
2023-10-29T15:30:07Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> https://github.com/juspay/hyperswitch/issues/2351 ### Ad...
8125ea19912f6d6446412d13842e35545cc1a484
juspay/hyperswitch
juspay__hyperswitch-2350
Bug: [FEATURE]: [Tsys] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a single ...
diff --git a/crates/router/src/connector/tsys/transformers.rs b/crates/router/src/connector/tsys/transformers.rs index 5aa4574c91e..d8516c8293b 100644 --- a/crates/router/src/connector/tsys/transformers.rs +++ b/crates/router/src/connector/tsys/transformers.rs @@ -192,12 +192,14 @@ fn get_error_response( fn get_paym...
2023-10-11T12:40:42Z
## Type of Change - [x] New feature ## Description The `connector_response_reference_id` parameter has been set for the Tsys Payment Solutions for uniform reference and transaction tracking. ### File Changes - [x] This PR modifies the Tsys Transformers file. **Location- router/src/connector/tsys/t...
62638c4230bfd149c43c2805cbad0ce9be5386b3
juspay/hyperswitch
juspay__hyperswitch-2349
Bug: [FEATURE]: [Square] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a singl...
diff --git a/crates/router/src/connector/square/transformers.rs b/crates/router/src/connector/square/transformers.rs index ff33914c4fd..01ed507bf34 100644 --- a/crates/router/src/connector/square/transformers.rs +++ b/crates/router/src/connector/square/transformers.rs @@ -327,6 +327,7 @@ pub struct SquarePaymentsRespon...
2023-10-03T14:40:02Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Populated reference ID from the response ### Additional Changes - [ ] This PR modifies the API cont...
0aa6b30d2c9056e9a21a88bdc064daa7e8659bd6
juspay/hyperswitch
juspay__hyperswitch-2348
Bug: [FEATURE]: [Stax] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a single ...
diff --git a/crates/router/src/connector/stax/transformers.rs b/crates/router/src/connector/stax/transformers.rs index 42c7c02a363..4ee28be1937 100644 --- a/crates/router/src/connector/stax/transformers.rs +++ b/crates/router/src/connector/stax/transformers.rs @@ -23,6 +23,7 @@ pub struct StaxPaymentsRequest { is_...
2023-10-02T10:52:24Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This pull request fixes #2348 issue in STAX and uses connector_...
36805411772da00719a716d05c650f10ca990d49
juspay/hyperswitch
juspay__hyperswitch-2346
Bug: [FEATURE]: [Rapyd] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a single...
diff --git a/crates/router/src/connector/rapyd/transformers.rs b/crates/router/src/connector/rapyd/transformers.rs index 044a64b413c..6689c5b46f4 100644 --- a/crates/router/src/connector/rapyd/transformers.rs +++ b/crates/router/src/connector/rapyd/transformers.rs @@ -274,6 +274,7 @@ pub struct ResponseData { pub ...
2024-10-14T06:50:16Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Add connector_response_reference_id support for Rapyd - Used `merchant_reference_id` as the reference ...
9597215a66e38b0021bd804ffe4d9d040e30f8f9
juspay/hyperswitch
juspay__hyperswitch-2441
Bug: [REFACTOR] add support for passing context generic to api calls ### Feature Description Add support for including a new generic, context, which will be passed during api call (server_wrap) to call the related implementation depending on context ### Possible Implementation To have multiple implementation to a...
diff --git a/crates/router/src/compatibility/stripe/payment_intents.rs b/crates/router/src/compatibility/stripe/payment_intents.rs index e44ce0a1fd3..1076dfe410f 100644 --- a/crates/router/src/compatibility/stripe/payment_intents.rs +++ b/crates/router/src/compatibility/stripe/payment_intents.rs @@ -6,7 +6,7 @@ use rou...
2023-10-03T13:46:00Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This PR includes changes for adding a new generic, context, whi...
f364a069b90dd63a28cf25457b2cd4fda0829a8b
juspay/hyperswitch
juspay__hyperswitch-2344
Bug: [FEATURE]: [PayU] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a single ...
diff --git a/crates/router/src/connector/payu/transformers.rs b/crates/router/src/connector/payu/transformers.rs index c43e59ac76c..9a2e14215c7 100644 --- a/crates/router/src/connector/payu/transformers.rs +++ b/crates/router/src/connector/payu/transformers.rs @@ -194,12 +194,17 @@ impl<F, T> Ok(Self { ...
2023-10-04T16:32:38Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Fixes #2344 ### Additional Changes - [ ] This PR modifies the API contract - [ ] This PR modifi...
b5cc7483f99dcd995b9022d21c94f2f9710ea7fe
juspay/hyperswitch
juspay__hyperswitch-2345
Bug: [FEATURE]: [PowerTranz] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a s...
diff --git a/crates/router/src/connector/powertranz/transformers.rs b/crates/router/src/connector/powertranz/transformers.rs index 4703a81f30f..4032f8019b0 100644 --- a/crates/router/src/connector/powertranz/transformers.rs +++ b/crates/router/src/connector/powertranz/transformers.rs @@ -123,7 +123,7 @@ impl TryFrom<&t...
2023-10-02T08:23:45Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
89cb63be3328010d26b5f6322449fc50e80593e4
juspay/hyperswitch
juspay__hyperswitch-2347
Bug: [FEATURE]: [Shift4] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a singl...
diff --git a/crates/router/src/connector/shift4/transformers.rs b/crates/router/src/connector/shift4/transformers.rs index 23c91e48d8c..0dd3b858349 100644 --- a/crates/router/src/connector/shift4/transformers.rs +++ b/crates/router/src/connector/shift4/transformers.rs @@ -717,6 +717,7 @@ impl<T, F> types::...
2023-10-08T00:13:23Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> fixes #2316 ### Additional Changes - [ ] This PR modif...
31431e41357d4d3d12668fa0d678cce0b3d86611
juspay/hyperswitch
juspay__hyperswitch-2342
Bug: [FEATURE]: [OpenNode] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a sin...
diff --git a/crates/router/src/connector/opennode/transformers.rs b/crates/router/src/connector/opennode/transformers.rs index 70a50e1b922..aa3fae3a516 100644 --- a/crates/router/src/connector/opennode/transformers.rs +++ b/crates/router/src/connector/opennode/transformers.rs @@ -78,6 +78,7 @@ pub struct OpennodePaymen...
2023-10-02T13:56:34Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
f720aecf1fb676cec71e636b877a46f9791d713a
juspay/hyperswitch
juspay__hyperswitch-2341
Bug: [FEATURE]: [Opayo] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a single...
diff --git a/crates/router/src/connector/opayo/transformers.rs b/crates/router/src/connector/opayo/transformers.rs index e6c3d90fa4f..d828232dbc1 100644 --- a/crates/router/src/connector/opayo/transformers.rs +++ b/crates/router/src/connector/opayo/transformers.rs @@ -86,6 +86,7 @@ impl From<OpayoPaymentStatus> for enu...
2023-10-02T18:54:39Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> opayo uses [transaction_Id ](https://developer-eu.elavon.com/do...
688557ef95826622fe87a4de1dfbc09446496686
juspay/hyperswitch
juspay__hyperswitch-2343
Bug: [FEATURE]: [Payeezy] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a sing...
diff --git a/crates/router/src/connector/payeezy/transformers.rs b/crates/router/src/connector/payeezy/transformers.rs index d6c22ba67c3..98e8ea12c00 100644 --- a/crates/router/src/connector/payeezy/transformers.rs +++ b/crates/router/src/connector/payeezy/transformers.rs @@ -67,6 +67,7 @@ pub struct PayeezyPaymentsReq...
2023-10-01T19:11:46Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Add `connector_response_reference_id` support for Payeezy - Us...
89cb63be3328010d26b5f6322449fc50e80593e4
juspay/hyperswitch
juspay__hyperswitch-2340
Bug: [FEATURE]: [Nuvei] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a single...
diff --git a/crates/router/src/connector/nuvei/transformers.rs b/crates/router/src/connector/nuvei/transformers.rs index 21b72955414..cf7d480e0c1 100644 --- a/crates/router/src/connector/nuvei/transformers.rs +++ b/crates/router/src/connector/nuvei/transformers.rs @@ -1294,7 +1294,7 @@ where Ok(types::...
2023-10-01T18:46:13Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Nuvei is using just the [order id](https://developer.nuvei.com/...
89cb63be3328010d26b5f6322449fc50e80593e4
juspay/hyperswitch
juspay__hyperswitch-2339
Bug: [FEATURE]: [Noon] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a single ...
diff --git a/crates/router/src/connector/noon/transformers.rs b/crates/router/src/connector/noon/transformers.rs index d7dc832b445..6c3084a75e4 100644 --- a/crates/router/src/connector/noon/transformers.rs +++ b/crates/router/src/connector/noon/transformers.rs @@ -356,6 +356,7 @@ pub struct NoonPaymentsOrderResponse { ...
2023-10-04T10:01:42Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description I have added `reference` that's sent to noon payments order to the `TransactionResponse` in `transfor...
ab2cde799371a66eb045cf8b20431b3b108dac44
juspay/hyperswitch
juspay__hyperswitch-2338
Bug: [FEATURE]: [NMI] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a single t...
diff --git a/crates/router/src/connector/nmi/transformers.rs b/crates/router/src/connector/nmi/transformers.rs index 5b486aae600..926f2c300d2 100644 --- a/crates/router/src/connector/nmi/transformers.rs +++ b/crates/router/src/connector/nmi/transformers.rs @@ -727,7 +727,7 @@ impl<T> Response::Approved => ...
2023-10-26T17:24:03Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
8ac4c205e8876ce596ff9a729e1f034360624ec2
juspay/hyperswitch
juspay__hyperswitch-2337
Bug: [FEATURE]: [Nexi Nets] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a si...
diff --git a/crates/router/src/connector/nexinets/transformers.rs b/crates/router/src/connector/nexinets/transformers.rs index 5949e48ae18..7b2a41cfb0b 100644 --- a/crates/router/src/connector/nexinets/transformers.rs +++ b/crates/router/src/connector/nexinets/transformers.rs @@ -364,7 +364,7 @@ impl<F, T> ...
2023-10-10T14:22:43Z
## Type of Change - [x] New feature ## Description The `connector_response_reference_id` parameter has been set for the Nexi Nets Payment Solutions for uniform reference and transaction tracking. ### File Changes - [x] This PR modifies the Nexi Nets Transformers file. **Location- router/src/connec...
3854d58270937ac4d2e5901eeb215bc19fffc838
juspay/hyperswitch
juspay__hyperswitch-2336
Bug: [FEATURE]: [Multisafepay] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a...
diff --git a/crates/router/src/connector/multisafepay/transformers.rs b/crates/router/src/connector/multisafepay/transformers.rs index 2fa8a4c9030..dfc7bad277d 100644 --- a/crates/router/src/connector/multisafepay/transformers.rs +++ b/crates/router/src/connector/multisafepay/transformers.rs @@ -530,7 +530,9 @@ impl<F,...
2023-10-04T16:17:19Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Updated the `connector_response_reference_id` value from the response. closes #2336 ### Additional...
65ca5f12da54715e5db785d122e2ec9714147c68
juspay/hyperswitch
juspay__hyperswitch-2335
Bug: [FEATURE]: [Mollie] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a singl...
diff --git a/crates/router/src/connector/mollie/transformers.rs b/crates/router/src/connector/mollie/transformers.rs index 3c23c9f1d39..56f280d288a 100644 --- a/crates/router/src/connector/mollie/transformers.rs +++ b/crates/router/src/connector/mollie/transformers.rs @@ -590,7 +590,7 @@ pub struct RefundResponse { ...
2023-10-26T04:17:27Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
8e484ddab8d3f4463299c7f7e8ce75b8dd628599
juspay/hyperswitch
juspay__hyperswitch-2333
Bug: [FEATURE]: [Iatapay] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a sing...
diff --git a/crates/router/src/connector/iatapay/transformers.rs b/crates/router/src/connector/iatapay/transformers.rs index 39dfd61b9a3..9d4ecdff197 100644 --- a/crates/router/src/connector/iatapay/transformers.rs +++ b/crates/router/src/connector/iatapay/transformers.rs @@ -212,10 +212,14 @@ impl<F, T> item:...
2023-10-10T07:58:03Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> - Adressess issue #2333 : Implement `connector_response_refe...
d9fb5d4a52f44809ab4a1576a99e97b4c8b8c41b
juspay/hyperswitch
juspay__hyperswitch-2330
Bug: [FEATURE]: [Forte] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a single...
diff --git a/crates/router/src/connector/forte/transformers.rs b/crates/router/src/connector/forte/transformers.rs index dcc8b97788d..bc7c55c4f87 100644 --- a/crates/router/src/connector/forte/transformers.rs +++ b/crates/router/src/connector/forte/transformers.rs @@ -259,7 +259,7 @@ impl<F, T> aut...
2023-10-05T07:22:01Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Addreses issue #2330 Updated `connector_response_referenc...
bb2ba0815330578295de8036ea1a5e6d66a36277
juspay/hyperswitch
juspay__hyperswitch-2329
Bug: [FEATURE]: [Fiserv] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a singl...
diff --git a/crates/router/src/connector/fiserv/transformers.rs b/crates/router/src/connector/fiserv/transformers.rs index 6c6c346dccc..c9c2f0c4087 100644 --- a/crates/router/src/connector/fiserv/transformers.rs +++ b/crates/router/src/connector/fiserv/transformers.rs @@ -315,7 +315,9 @@ impl<F, T> man...
2023-10-07T15:44:04Z
Update connector_response_reference_id to use gateway_resp.transaction_processing_details.order_id in fiserv transformers. Fixes #2329 ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentati...
3f1e7c2152a839a6fe69f60b906277ca831e7611
juspay/hyperswitch
juspay__hyperswitch-2328
Bug: [FEATURE]: [Dlocal] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a singl...
diff --git a/crates/router/src/connector/dlocal/transformers.rs b/crates/router/src/connector/dlocal/transformers.rs index e6db1503e59..8558836372e 100644 --- a/crates/router/src/connector/dlocal/transformers.rs +++ b/crates/router/src/connector/dlocal/transformers.rs @@ -250,6 +250,7 @@ pub struct DlocalPaymentsRespon...
2023-10-04T11:16:52Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x ] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> I have populated the 'id' which is provided as a payment-...
d177b4d94f08fb8ef44b5c07ec1bdc771baa016d
juspay/hyperswitch
juspay__hyperswitch-2327
Bug: [FEATURE]: [Cybersource] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a ...
diff --git a/crates/router/src/connector/cybersource/transformers.rs b/crates/router/src/connector/cybersource/transformers.rs index 106ce2e3c29..3558f752841 100644 --- a/crates/router/src/connector/cybersource/transformers.rs +++ b/crates/router/src/connector/cybersource/transformers.rs @@ -275,6 +275,13 @@ pub struct...
2023-10-05T19:02:15Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Use connector_response_reference_id as reference to merchant for Cybersource Fixes #2327 ### Addit...
503823408b782968fb59f6ff5d7df417b9aa7dbe
juspay/hyperswitch
juspay__hyperswitch-2331
Bug: [FEATURE]: [GlobalPayments] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for...
diff --git a/Cargo.lock b/Cargo.lock index 082bb476dec..fff48158ded 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -422,45 +422,6 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8868f09ff8cea88b079da74ae569d9b8c62a23c68c746240b704ee6f7525c89c" -[[package]] -name = "asn...
2023-09-07T11:34:38Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This PR enables multiple partial capture for Adyen. ### Ad...
05696d326f87a08919f177e67bfa54e09fba5147
juspay/hyperswitch
juspay__hyperswitch-2326
Bug: [FEATURE]: [Coinbase] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a sin...
diff --git a/crates/router/src/connector/coinbase/transformers.rs b/crates/router/src/connector/coinbase/transformers.rs index acc08e36e49..6cc097bc9d8 100644 --- a/crates/router/src/connector/coinbase/transformers.rs +++ b/crates/router/src/connector/coinbase/transformers.rs @@ -136,7 +136,7 @@ impl<F, T> ...
2023-10-05T17:50:31Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Relevant documentation [here](https://docs.cloud.coinbase.com/c...
bb2ba0815330578295de8036ea1a5e6d66a36277
juspay/hyperswitch
juspay__hyperswitch-2334
Bug: [FEATURE]: [Klarna] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a singl...
diff --git a/crates/router/src/connector/klarna/transformers.rs b/crates/router/src/connector/klarna/transformers.rs index 31e356d4765..563410ee99d 100644 --- a/crates/router/src/connector/klarna/transformers.rs +++ b/crates/router/src/connector/klarna/transformers.rs @@ -159,12 +159,14 @@ impl TryFrom<types::PaymentsR...
2023-10-17T13:15:34Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
67d006272158372a4b9ec65cbbe7b2ae8f35eb69
juspay/hyperswitch
juspay__hyperswitch-2325
Bug: [FEATURE]: [Bitpay] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a singl...
diff --git a/crates/router/src/connector/bitpay/transformers.rs b/crates/router/src/connector/bitpay/transformers.rs index 5af20d6423f..89dd2368b2b 100644 --- a/crates/router/src/connector/bitpay/transformers.rs +++ b/crates/router/src/connector/bitpay/transformers.rs @@ -134,6 +134,7 @@ pub struct BitpayPaymentRespons...
2023-10-15T04:51:11Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> [Relevant documentation](https://developer.bitpay.com/docs/crea...
4563935372d2cdff3f746fa86a47f1166ffd32ac
juspay/hyperswitch
juspay__hyperswitch-2324
Bug: [FEATURE]: [Bambora] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a sing...
diff --git a/crates/router/src/connector/bambora/transformers.rs b/crates/router/src/connector/bambora/transformers.rs index bfcd9846292..e686186c901 100644 --- a/crates/router/src/connector/bambora/transformers.rs +++ b/crates/router/src/connector/bambora/transformers.rs @@ -214,7 +214,7 @@ impl<F, T> ...
2023-10-18T17:09:58Z
## Type of Change - [x] New feature ## Description The `connector_response_reference_id` parameter has been set for the Bambora Payment Solutions for uniform reference and transaction tracking. ### File Changes - [x] This PR modifies the Bambora Transformers file. **Location- router/src/connector/...
03b6eaebeccd628115b8f4c52aa8645abbccdd29
juspay/hyperswitch
juspay__hyperswitch-2323
Bug: [FEATURE]: [Authorizedotnet] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` fo...
diff --git a/crates/router/src/connector/authorizedotnet/transformers.rs b/crates/router/src/connector/authorizedotnet/transformers.rs index a2faeddb50f..1b7480f78e4 100644 --- a/crates/router/src/connector/authorizedotnet/transformers.rs +++ b/crates/router/src/connector/authorizedotnet/transformers.rs @@ -540,7 +540,...
2023-10-08T15:12:53Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Implement `connector_response_reference_id` as reference for Au...
3f1e7c2152a839a6fe69f60b906277ca831e7611
juspay/hyperswitch
juspay__hyperswitch-2322
Bug: [FEATURE]: [Airwallex] Use `connector_response_reference_id` as reference to merchant ### :memo: Feature Description - Reference id are used to map transactions in the connector’s dashboard. - Hyperswitch manages several reference ids, such as `payment_id`, `attempt_id`, and `connector_transaction_id` for a si...
diff --git a/crates/router/src/connector/airwallex/transformers.rs b/crates/router/src/connector/airwallex/transformers.rs index e38999d495b..d3824e9d0da 100644 --- a/crates/router/src/connector/airwallex/transformers.rs +++ b/crates/router/src/connector/airwallex/transformers.rs @@ -569,12 +569,12 @@ impl<F, T> ...
2023-10-31T14:25:53Z
## Type of Change - [x] New feature ## Description The `connector_response_reference_id` parameter has been set for the Airwallex Payment Solutions for uniform reference and transaction tracking. ### File Changes - [x] This PR modifies the Airwallex Transformers file. **Location- router/src/connec...
2798f575605cc4439166344e57ff19b612f1304a
juspay/hyperswitch
juspay__hyperswitch-2319
Bug: [FEATURE]: [Tsys] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformity...
diff --git a/crates/router/src/connector/tsys/transformers.rs b/crates/router/src/connector/tsys/transformers.rs index d8516c8293b..83134568c05 100644 --- a/crates/router/src/connector/tsys/transformers.rs +++ b/crates/router/src/connector/tsys/transformers.rs @@ -34,6 +34,7 @@ pub struct TsysPaymentAuthSaleRequest { ...
2023-10-18T13:20:35Z
## Type of Change - [x] New feature ## Description The `connector_request_reference_id` parameter has been set for the Tsys Payment Solutions for uniform reference and transaction tracking. ### File Changes - [x] This PR modifies the Tsys Transformers file. **Location- router/src/connector/tsys/tr...
6cf8f0582cfa4f6a58c67a868cb67846970b3835
juspay/hyperswitch
juspay__hyperswitch-2321
Bug: [FEATURE]: [Worldpay] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of unifor...
diff --git a/crates/router/src/connector/worldpay/transformers.rs b/crates/router/src/connector/worldpay/transformers.rs index aabe27fc4eb..61d04a8e9f1 100644 --- a/crates/router/src/connector/worldpay/transformers.rs +++ b/crates/router/src/connector/worldpay/transformers.rs @@ -167,10 +167,14 @@ impl ...
2023-10-11T18:13:27Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> As mentioned in the issue #2321 , I had to work on the attemp...
cd9030506c6843c0331bc93d67590d12e280ecca
juspay/hyperswitch
juspay__hyperswitch-2320
Bug: [FEATURE]: [Worldline] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of unifo...
diff --git a/crates/router/src/connector/worldline/transformers.rs b/crates/router/src/connector/worldline/transformers.rs index f1267c09766..d02ab60c8b9 100644 --- a/crates/router/src/connector/worldline/transformers.rs +++ b/crates/router/src/connector/worldline/transformers.rs @@ -40,11 +40,18 @@ pub struct AmountOf...
2023-10-08T15:33:20Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Replace `payment_id` with `connector_request_reference_id` in worldline. Closes #2320 ### Addition...
53d760460305e16f03d86f699acb035151dfdfad
juspay/hyperswitch
juspay__hyperswitch-2317
Bug: [FEATURE]: [Stax] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformity...
diff --git a/crates/router/src/connector/stax/transformers.rs b/crates/router/src/connector/stax/transformers.rs index 42c7c02a363..4ee28be1937 100644 --- a/crates/router/src/connector/stax/transformers.rs +++ b/crates/router/src/connector/stax/transformers.rs @@ -23,6 +23,7 @@ pub struct StaxPaymentsRequest { is_...
2023-10-02T10:52:24Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This pull request fixes #2348 issue in STAX and uses connector_...
36805411772da00719a716d05c650f10ca990d49
juspay/hyperswitch
juspay__hyperswitch-2316
Bug: [FEATURE]: [Shift4] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformi...
diff --git a/crates/router/src/connector/shift4/transformers.rs b/crates/router/src/connector/shift4/transformers.rs index 23c91e48d8c..0dd3b858349 100644 --- a/crates/router/src/connector/shift4/transformers.rs +++ b/crates/router/src/connector/shift4/transformers.rs @@ -717,6 +717,7 @@ impl<T, F> types::...
2023-10-08T00:13:23Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> fixes #2316 ### Additional Changes - [ ] This PR modif...
31431e41357d4d3d12668fa0d678cce0b3d86611
juspay/hyperswitch
juspay__hyperswitch-2315
Bug: [FEATURE]: [Rapyd] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformit...
diff --git a/crates/router/src/connector/rapyd/transformers.rs b/crates/router/src/connector/rapyd/transformers.rs index 044a64b413c..939004f8ea9 100644 --- a/crates/router/src/connector/rapyd/transformers.rs +++ b/crates/router/src/connector/rapyd/transformers.rs @@ -37,6 +37,7 @@ pub struct RapydPaymentsRequest { ...
2024-10-12T13:47:08Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Add connector_request_reference_id support for Rapyd - Used `merchant_reference_id` as the reference i...
9597215a66e38b0021bd804ffe4d9d040e30f8f9
juspay/hyperswitch
juspay__hyperswitch-2314
Bug: [FEATURE]: [PowerTranz] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of unif...
diff --git a/crates/router/src/connector/powertranz/transformers.rs b/crates/router/src/connector/powertranz/transformers.rs index 4703a81f30f..4032f8019b0 100644 --- a/crates/router/src/connector/powertranz/transformers.rs +++ b/crates/router/src/connector/powertranz/transformers.rs @@ -123,7 +123,7 @@ impl TryFrom<&t...
2023-10-02T08:23:45Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
89cb63be3328010d26b5f6322449fc50e80593e4
juspay/hyperswitch
juspay__hyperswitch-2313
Bug: [FEATURE]: [PayU] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformity...
diff --git a/crates/hyperswitch_connectors/src/connectors/payu/transformers.rs b/crates/hyperswitch_connectors/src/connectors/payu/transformers.rs index 7b3792c0e24..dc65d6e1d76 100644 --- a/crates/hyperswitch_connectors/src/connectors/payu/transformers.rs +++ b/crates/hyperswitch_connectors/src/connectors/payu/transfo...
2024-10-18T03:14:35Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Add connector_request_reference_id support for PayU - Used `extOrderId` as the reference id based on t...
c3b0f7c1d6ad95034535048aa50ff6abe9ed6aa0
juspay/hyperswitch
juspay__hyperswitch-2312
Bug: [FEATURE]: [Payeezy] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniform...
diff --git a/crates/router/src/connector/payeezy/transformers.rs b/crates/router/src/connector/payeezy/transformers.rs index d6c22ba67c3..98e8ea12c00 100644 --- a/crates/router/src/connector/payeezy/transformers.rs +++ b/crates/router/src/connector/payeezy/transformers.rs @@ -67,6 +67,7 @@ pub struct PayeezyPaymentsReq...
2023-10-01T19:11:46Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Add `connector_response_reference_id` support for Payeezy - Us...
89cb63be3328010d26b5f6322449fc50e80593e4
juspay/hyperswitch
juspay__hyperswitch-2311
Bug: [FEATURE]: [OpenNode] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of unifor...
diff --git a/crates/router/src/connector/opennode/transformers.rs b/crates/router/src/connector/opennode/transformers.rs index aa3fae3a516..b367012ca75 100644 --- a/crates/router/src/connector/opennode/transformers.rs +++ b/crates/router/src/connector/opennode/transformers.rs @@ -19,6 +19,7 @@ pub struct OpennodePaymen...
2023-10-15T19:43:10Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Use connector_request_reference_id as reference to the connecto...
027385eca6e76c5cbe65450f058ececa012d1175
juspay/hyperswitch
juspay__hyperswitch-2309
Bug: [FEATURE]: [Nuvei] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformit...
diff --git a/crates/router/src/connector/nuvei/transformers.rs b/crates/router/src/connector/nuvei/transformers.rs index cf7d480e0c1..2fd1a9c272f 100644 --- a/crates/router/src/connector/nuvei/transformers.rs +++ b/crates/router/src/connector/nuvei/transformers.rs @@ -384,7 +384,7 @@ impl TryFrom<&types::PaymentsAuthor...
2023-10-08T01:05:10Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> `connector_request_reference_id` is being passed as "attempt_id...
3f1e7c2152a839a6fe69f60b906277ca831e7611
juspay/hyperswitch
juspay__hyperswitch-2307
Bug: [FEATURE]: [Nexi Nets] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of unifo...
diff --git a/crates/router/src/connector/nexinets/transformers.rs b/crates/router/src/connector/nexinets/transformers.rs index 7b2a41cfb0b..897d8f639d3 100644 --- a/crates/router/src/connector/nexinets/transformers.rs +++ b/crates/router/src/connector/nexinets/transformers.rs @@ -27,6 +27,7 @@ pub struct NexinetsPaymen...
2023-10-09T20:55:20Z
## Type of Change - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description For all payment methods, Hyperswitch should transmit a reference to the connector, enabling merchants to subsequently locate the payment within the ...
8029a895b2c27a1ac14a19aea23bbc06cc364809
juspay/hyperswitch
juspay__hyperswitch-2308
Bug: [FEATURE]: [Noon] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformity...
diff --git a/crates/router/src/connector/noon/transformers.rs b/crates/router/src/connector/noon/transformers.rs index 6c3084a75e4..3e584e204ae 100644 --- a/crates/router/src/connector/noon/transformers.rs +++ b/crates/router/src/connector/noon/transformers.rs @@ -264,7 +264,7 @@ impl TryFrom<&types::PaymentsAuthorizeR...
2023-10-05T17:35:30Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Closes #2308 Use `connector_request_reference_id` instead of...
414996592b3016bfa9f3399319c6e02ccd333c68
juspay/hyperswitch
juspay__hyperswitch-2306
Bug: [FEATURE]: [NMI] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformity ...
diff --git a/crates/router/src/connector/nmi/transformers.rs b/crates/router/src/connector/nmi/transformers.rs index 3f64ff9eaca..582bb9f7367 100644 --- a/crates/router/src/connector/nmi/transformers.rs +++ b/crates/router/src/connector/nmi/transformers.rs @@ -49,6 +49,7 @@ pub struct NmiPaymentsRequest { currency...
2023-10-30T02:40:45Z
Add orderid with value of connector_request_reference_id in NMI transformers. Fixes #2306 ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [X] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Desc...
8125ea19912f6d6446412d13842e35545cc1a484
juspay/hyperswitch
juspay__hyperswitch-2305
Bug: [FEATURE]: [Multisafepay] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of un...
diff --git a/crates/router/src/connector/multisafepay.rs b/crates/router/src/connector/multisafepay.rs index 1629f2ab36d..120ea23d7ca 100644 --- a/crates/router/src/connector/multisafepay.rs +++ b/crates/router/src/connector/multisafepay.rs @@ -165,7 +165,7 @@ impl ConnectorIntegration<api::PSync, types::PaymentsSyncDa...
2023-10-09T07:12:04Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description - Addressing Issue [#2305](https://github.com/juspay/hyperswitch/issues/2305): Use connector_request_refe...
e02838eb5d3da97ef573926ded4a318ed24b6f1c
juspay/hyperswitch
juspay__hyperswitch-2303
Bug: [FEATURE]: [Klarna] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformi...
diff --git a/crates/router/src/connector/klarna/transformers.rs b/crates/router/src/connector/klarna/transformers.rs index b31d56d51b9..31e356d4765 100644 --- a/crates/router/src/connector/klarna/transformers.rs +++ b/crates/router/src/connector/klarna/transformers.rs @@ -45,6 +45,7 @@ pub struct KlarnaPaymentsRequest ...
2023-10-08T05:56:23Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [x] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Included a `merchant_reference1` field in `KlarnaPaymentsReques...
b5feab61d950921c75267ad88e944e7e2c4af3ca
juspay/hyperswitch
juspay__hyperswitch-2302
Bug: [FEATURE]: [Iatapay] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniform...
diff --git a/crates/router/src/connector/iatapay/transformers.rs b/crates/router/src/connector/iatapay/transformers.rs index f98798fe5be..d4731b024c8 100644 --- a/crates/router/src/connector/iatapay/transformers.rs +++ b/crates/router/src/connector/iatapay/transformers.rs @@ -110,7 +110,7 @@ impl TryFrom<&types::Paymen...
2023-10-25T18:56:03Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> fixes #2302 ### Additional Changes - [ ] This PR modifie...
2815443c1b147e005a2384ff817292b1845a9f88
juspay/hyperswitch
juspay__hyperswitch-2300
Bug: [FEATURE]: [GlobalPayments] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of ...
diff --git a/crates/router/src/connector/globalpay/transformers.rs b/crates/router/src/connector/globalpay/transformers.rs index 7a35a5f578f..78a83e70026 100644 --- a/crates/router/src/connector/globalpay/transformers.rs +++ b/crates/router/src/connector/globalpay/transformers.rs @@ -39,7 +39,7 @@ impl TryFrom<&types::...
2023-10-10T05:28:11Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
cf0db35923d39caca9bf267b7d87a3f215884b66
juspay/hyperswitch
juspay__hyperswitch-2298
Bug: [FEATURE]: [Fiserv] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformi...
diff --git a/crates/router/src/connector/fiserv/transformers.rs b/crates/router/src/connector/fiserv/transformers.rs index c9c2f0c4087..ae8eed0af31 100644 --- a/crates/router/src/connector/fiserv/transformers.rs +++ b/crates/router/src/connector/fiserv/transformers.rs @@ -62,6 +62,7 @@ pub struct Amount { pub struct T...
2023-10-26T11:51:29Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
6dc71fe9923a793b76eee2ea1ac1060ab584a303
juspay/hyperswitch
juspay__hyperswitch-2297
Bug: [FEATURE]: [Dlocal] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformi...
diff --git a/crates/router/src/connector/dlocal/transformers.rs b/crates/router/src/connector/dlocal/transformers.rs index 5146dd0ea03..668a335cce8 100644 --- a/crates/router/src/connector/dlocal/transformers.rs +++ b/crates/router/src/connector/dlocal/transformers.rs @@ -145,7 +145,7 @@ impl TryFrom<&DlocalRouterData<...
2023-10-26T19:01:06Z
…cal connector #2297 ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Use connector_request_reference_id as reference to the connector #2297 ### ...
6dc71fe9923a793b76eee2ea1ac1060ab584a303
juspay/hyperswitch
juspay__hyperswitch-2294
Bug: [FEATURE]: [Bitpay] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniformi...
diff --git a/crates/router/src/connector/bitpay/transformers.rs b/crates/router/src/connector/bitpay/transformers.rs index c5c20608a75..5af20d6423f 100644 --- a/crates/router/src/connector/bitpay/transformers.rs +++ b/crates/router/src/connector/bitpay/transformers.rs @@ -60,6 +60,7 @@ pub struct BitpayPaymentsRequest ...
2023-10-26T09:49:02Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
e40a29351c7aa7b86a5684959a84f0236104cafd
juspay/hyperswitch
juspay__hyperswitch-2293
Bug: [FEATURE]: [Bambora] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uniform...
diff --git a/crates/router/src/connector/bambora/transformers.rs b/crates/router/src/connector/bambora/transformers.rs index d34dda73eb6..bfcd9846292 100644 --- a/crates/router/src/connector/bambora/transformers.rs +++ b/crates/router/src/connector/bambora/transformers.rs @@ -48,6 +48,7 @@ pub struct BamboraBrowserInfo...
2023-10-10T02:00:08Z
Addresses #2293 ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This PR updates the use of `RequestData.requ...
9e450b81ca8bc4b1ddbbe2c1d732dbc58c61934e
juspay/hyperswitch
juspay__hyperswitch-2296
Bug: [FEATURE]: [Cybersource] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of uni...
diff --git a/crates/router/src/connector/cybersource/transformers.rs b/crates/router/src/connector/cybersource/transformers.rs index 3558f752841..5a3060f99eb 100644 --- a/crates/router/src/connector/cybersource/transformers.rs +++ b/crates/router/src/connector/cybersource/transformers.rs @@ -21,6 +21,7 @@ pub struct Cy...
2023-10-09T13:40:40Z
Add reference with value of connector_request_reference_id in Cybersource transformers. Fixes #2296 ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description ...
550377a6c3943d9fec4ca6a8be5a5f3aafe109ab
juspay/hyperswitch
juspay__hyperswitch-2292
Bug: [FEATURE]: [Authorizedotnet] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack...
diff --git a/crates/router/src/connector/authorizedotnet/transformers.rs b/crates/router/src/connector/authorizedotnet/transformers.rs index 20d78729a1b..561723be46c 100644 --- a/crates/router/src/connector/authorizedotnet/transformers.rs +++ b/crates/router/src/connector/authorizedotnet/transformers.rs @@ -261,6 +261,...
2023-10-15T08:07:18Z
…ference to the connector ## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ...
94947bdb33ca4eb91daad13b2a427592d3b69851
juspay/hyperswitch
juspay__hyperswitch-2291
Bug: [FEATURE]: [Airwallex] Use `connector_request_reference_id` as reference to the connector ### :memo: Feature Description - We transmit our reference id from Hyperswitch to the connector, enabling merchants to subsequently locate the payment within the connector dashboard. - Presently, there is a lack of unifo...
diff --git a/crates/router/src/connector/airwallex/transformers.rs b/crates/router/src/connector/airwallex/transformers.rs index ecdddfb3672..fc90743ab08 100644 --- a/crates/router/src/connector/airwallex/transformers.rs +++ b/crates/router/src/connector/airwallex/transformers.rs @@ -48,7 +48,7 @@ impl TryFrom<&types::...
2023-10-09T23:09:19Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API contract - [ ] This...
c34f1bf36ffb3a3533dd51ac87e7f66ab0dcce79
juspay/hyperswitch
juspay__hyperswitch-2290
Bug: [REFACTOR]: [Worldpay] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum va...
diff --git a/crates/router/src/connector/worldpay/transformers.rs b/crates/router/src/connector/worldpay/transformers.rs index 61d04a8e9f1..d31f4d65e78 100644 --- a/crates/router/src/connector/worldpay/transformers.rs +++ b/crates/router/src/connector/worldpay/transformers.rs @@ -217,7 +217,13 @@ impl From<EventType> f...
2023-10-07T11:57:43Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Instead of relying on a default match case `_` I have added conditions for each type in match statements....
adad77f0433bb7691f4313a27e021849cd5a6c1d
juspay/hyperswitch
juspay__hyperswitch-2289
Bug: [REFACTOR]: [Worldline] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum v...
diff --git a/crates/router/src/connector/worldline/transformers.rs b/crates/router/src/connector/worldline/transformers.rs index f11c2398080..80378215a45 100644 --- a/crates/router/src/connector/worldline/transformers.rs +++ b/crates/router/src/connector/worldline/transformers.rs @@ -247,11 +247,19 @@ impl ...
2023-10-24T09:39:40Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> https://github.com/juspay/hyperswitch/issues/2289 ### Additi...
eaa972052024678ade122eec14261f9f33788e45
juspay/hyperswitch
juspay__hyperswitch-2288
Bug: [REFACTOR]: [Tsys] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum varian...
diff --git a/crates/router/src/connector/tsys/transformers.rs b/crates/router/src/connector/tsys/transformers.rs index 83134568c05..a3bd1c4a074 100644 --- a/crates/router/src/connector/tsys/transformers.rs +++ b/crates/router/src/connector/tsys/transformers.rs @@ -3,7 +3,7 @@ use masking::Secret; use serde::{Deseriali...
2023-10-23T21:26:08Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- https://github.com/juspay/hyperswitch/issues/2288 --> Resolves: #2288 ### Additional Changes ...
eaa972052024678ade122eec14261f9f33788e45
juspay/hyperswitch
juspay__hyperswitch-2287
Bug: [REFACTOR]: [Trustpay] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum va...
diff --git a/Cargo.lock b/Cargo.lock index cca3b6f58d9..9e026101d1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -393,6 +393,7 @@ dependencies = [ "serde", "serde_json", "strum 0.24.1", + "thiserror", "time 0.3.22", "url", "utoipa", @@ -471,18 +472,6 @@ dependencies = [ "serde_json", ] -[[package]] -nam...
2023-10-06T16:14:34Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Handling the unhandled variants for trustpay Issue #2287 ...
ba2efac4fa2af22f81b0841350a334bc36e91022
juspay/hyperswitch
juspay__hyperswitch-2286
Bug: [REFACTOR]: [Square] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum vari...
diff --git a/crates/router/src/connector/square/transformers.rs b/crates/router/src/connector/square/transformers.rs index 01ed507bf34..54a7c461dbf 100644 --- a/crates/router/src/connector/square/transformers.rs +++ b/crates/router/src/connector/square/transformers.rs @@ -23,7 +23,10 @@ impl TryFrom<(&types::Tokenizati...
2023-10-26T14:35:57Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> - Fix issue #2286 - Changes to be made : Remove default case ...
88e1f29dae13622bc58b8f5df1cd84b929b28ac6
juspay/hyperswitch
juspay__hyperswitch-2283
Bug: [REFACTOR]: [PowerTranz] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum ...
diff --git a/crates/router/src/connector/powertranz/transformers.rs b/crates/router/src/connector/powertranz/transformers.rs index 4032f8019b0..5bbfe094352 100644 --- a/crates/router/src/connector/powertranz/transformers.rs +++ b/crates/router/src/connector/powertranz/transformers.rs @@ -1,6 +1,7 @@ use api_models::pa...
2023-10-11T13:10:38Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
31431e41357d4d3d12668fa0d678cce0b3d86611
juspay/hyperswitch
juspay__hyperswitch-2282
Bug: [REFACTOR]: [Payme] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum varia...
diff --git a/crates/router/src/connector/payme/transformers.rs b/crates/router/src/connector/payme/transformers.rs index 4ced1a9bcda..1b7ce27439b 100644 --- a/crates/router/src/connector/payme/transformers.rs +++ b/crates/router/src/connector/payme/transformers.rs @@ -651,7 +651,20 @@ impl TryFrom<&types::PaymentsAutho...
2023-10-29T12:15:07Z
## Type of Change - [x] Refactoring ## Description This PR removes the default case handling and adds error handling for all the available cases. Fixes #2282 ## How did you test it? No test cases. As In this PR only error message have been populated for all default cases. ## Checklist - [x] I f...
4afe552563c6a0cb9544a9a2f870bb9d07d7cf18
juspay/hyperswitch
juspay__hyperswitch-2281
Bug: [REFACTOR]: [Payeezy] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum var...
diff --git a/crates/router/src/connector/payeezy/transformers.rs b/crates/router/src/connector/payeezy/transformers.rs index 98e8ea12c00..efcd1b36d5b 100644 --- a/crates/router/src/connector/payeezy/transformers.rs +++ b/crates/router/src/connector/payeezy/transformers.rs @@ -37,11 +37,14 @@ impl TryFrom<utils::CardIss...
2023-10-27T14:47:44Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> - Fix issue #2281 - Changes to be made : Remove default case h...
ca77c7ce3c6b806ff60e83725cc4e50855422037
juspay/hyperswitch
juspay__hyperswitch-2279
Bug: [REFACTOR]: [Opayo] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum varia...
diff --git a/crates/router/src/connector/opayo/transformers.rs b/crates/router/src/connector/opayo/transformers.rs index d828232dbc1..41bcc1500ed 100644 --- a/crates/router/src/connector/opayo/transformers.rs +++ b/crates/router/src/connector/opayo/transformers.rs @@ -2,7 +2,7 @@ use masking::Secret; use serde::{Deser...
2023-10-25T12:28:59Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> #2279 ### Additional Changes - [ ] This PR modifies the ...
27b97626245cab12dd9aefb4d85a77b5c913dba0
juspay/hyperswitch
juspay__hyperswitch-2278
Bug: [REFACTOR]: [Nuvei] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum varia...
diff --git a/crates/router/src/connector/nuvei/transformers.rs b/crates/router/src/connector/nuvei/transformers.rs index 2fd1a9c272f..88ebe1d8dbe 100644 --- a/crates/router/src/connector/nuvei/transformers.rs +++ b/crates/router/src/connector/nuvei/transformers.rs @@ -490,11 +490,145 @@ impl TryFrom<api_models::enums::...
2023-10-13T18:46:35Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [X] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> - Fix issue #2278 - Changes to be made : Remove default case ...
5d88dbc92ce470c951717debe246e182b3fe5656
juspay/hyperswitch
juspay__hyperswitch-2277
Bug: [REFACTOR]: [Noon] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum varian...
diff --git a/crates/router/src/connector/noon/transformers.rs b/crates/router/src/connector/noon/transformers.rs index cde6de2e43b..4a2128f7ec6 100644 --- a/crates/router/src/connector/noon/transformers.rs +++ b/crates/router/src/connector/noon/transformers.rs @@ -245,13 +245,51 @@ impl TryFrom<&types::PaymentsAuthoriz...
2023-10-25T00:59:43Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description - Addresses Issue #2277 - Modified `crates/router/src/connector/noon/transformers.rs` - Convert `Not...
2815443c1b147e005a2384ff817292b1845a9f88
juspay/hyperswitch
juspay__hyperswitch-2276
Bug: [REFACTOR]: [NMI] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum variant...
diff --git a/crates/router/src/connector/nmi/transformers.rs b/crates/router/src/connector/nmi/transformers.rs index a57ac4271d0..3f64ff9eaca 100644 --- a/crates/router/src/connector/nmi/transformers.rs +++ b/crates/router/src/connector/nmi/transformers.rs @@ -112,14 +112,51 @@ impl TryFrom<&api_models::payments::Payme...
2023-10-05T15:12:18Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Adds the error handles for all unhandled variants ### Addi...
414996592b3016bfa9f3399319c6e02ccd333c68
juspay/hyperswitch
juspay__hyperswitch-2275
Bug: [REFACTOR]: [Nexi nets] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum v...
diff --git a/crates/router/src/connector/nexinets/transformers.rs b/crates/router/src/connector/nexinets/transformers.rs index 897d8f639d3..2af3ee0a1bb 100644 --- a/crates/router/src/connector/nexinets/transformers.rs +++ b/crates/router/src/connector/nexinets/transformers.rs @@ -9,7 +9,7 @@ use url::Url; use crate:...
2023-10-19T03:44:35Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- https://github.com/juspay/hyperswitch/issues/2275 --> ### Additional Changes - [ ] This PR ...
cc0b42263257b6cf6c7f94350442a74d3c02750b
juspay/hyperswitch
juspay__hyperswitch-2274
Bug: [REFACTOR]: [Multisafepay] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enu...
diff --git a/crates/router/src/connector/multisafepay/transformers.rs b/crates/router/src/connector/multisafepay/transformers.rs index a8366fadf81..385c85e0aa6 100644 --- a/crates/router/src/connector/multisafepay/transformers.rs +++ b/crates/router/src/connector/multisafepay/transformers.rs @@ -229,11 +229,13 @@ impl ...
2023-10-14T13:54:31Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Removed all the default case handling in multisafepay and handle all the missing cases. Closes: #2274 ...
500405d78938772e0e9f8e3ce4f930d782c670fa
juspay/hyperswitch
juspay__hyperswitch-2272
Bug: [REFACTOR]: [Iatapay] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum var...
diff --git a/crates/router/src/connector/iatapay/transformers.rs b/crates/router/src/connector/iatapay/transformers.rs index 9d4ecdff197..f98798fe5be 100644 --- a/crates/router/src/connector/iatapay/transformers.rs +++ b/crates/router/src/connector/iatapay/transformers.rs @@ -86,7 +86,18 @@ impl TryFrom<&types::Payment...
2023-10-14T15:42:37Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [X] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> - Fix issue https://github.com/juspay/hyperswitch/issues/2272 ...
5d88dbc92ce470c951717debe246e182b3fe5656
juspay/hyperswitch
juspay__hyperswitch-2273
Bug: [REFACTOR]: [Klarna] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum vari...
diff --git a/crates/router/src/connector/klarna.rs b/crates/router/src/connector/klarna.rs index 220b8f4a416..1814f9de809 100644 --- a/crates/router/src/connector/klarna.rs +++ b/crates/router/src/connector/klarna.rs @@ -288,12 +288,115 @@ impl self.base_url(connectors), token ...
2023-10-01T10:51:34Z
## Type of Change - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description Match arms using the wildcard patten (`_`) can be dangereous when extending enums since developers may miss locations where new variants should be h...
c81d8e9a180da8f71d156d39c9f85847f6d7a572
juspay/hyperswitch
juspay__hyperswitch-2270
Bug: [REFACTOR]: [Forte] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum varia...
diff --git a/crates/router/src/connector/forte/transformers.rs b/crates/router/src/connector/forte/transformers.rs index bc7c55c4f87..7851608d11b 100644 --- a/crates/router/src/connector/forte/transformers.rs +++ b/crates/router/src/connector/forte/transformers.rs @@ -101,9 +101,23 @@ impl TryFrom<&types::PaymentsAutho...
2023-10-18T08:56:41Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description - Addresses Issue #2270 - Modified `crates/router/src/connector/forte/transformers.rs` - Convert `No...
6cf8f0582cfa4f6a58c67a868cb67846970b3835
juspay/hyperswitch
juspay__hyperswitch-2268
Bug: [REFACTOR]: [Cybersource] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum...
diff --git a/crates/router/src/connector/cybersource/transformers.rs b/crates/router/src/connector/cybersource/transformers.rs index 9b0bf61c545..324fe77d0bc 100644 --- a/crates/router/src/connector/cybersource/transformers.rs +++ b/crates/router/src/connector/cybersource/transformers.rs @@ -193,9 +193,22 @@ impl TryFr...
2023-10-26T21:29:00Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
a8c74321dbba5c7be6468fff7680d703d726a781
juspay/hyperswitch
juspay__hyperswitch-2269
Bug: [REFACTOR]: [Dlocal] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum vari...
diff --git a/crates/router/src/connector/dlocal/transformers.rs b/crates/router/src/connector/dlocal/transformers.rs index 8558836372e..18a6ad46755 100644 --- a/crates/router/src/connector/dlocal/transformers.rs +++ b/crates/router/src/connector/dlocal/transformers.rs @@ -118,7 +118,20 @@ impl TryFrom<&types::PaymentsA...
2023-10-18T08:01:14Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description removed all the default case in dlocal and handle all the missing cases closes #2269 ### Additional ...
a1472c6b78afa819cbe026a7db1e0c2b9016715e
juspay/hyperswitch
juspay__hyperswitch-2250
Bug: [FEATURE]: [Worldpay] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount ...
diff --git a/crates/router/src/connector/worldpay.rs b/crates/router/src/connector/worldpay.rs index 0c69cd981bb..60a5fc83045 100644 --- a/crates/router/src/connector/worldpay.rs +++ b/crates/router/src/connector/worldpay.rs @@ -56,6 +56,10 @@ impl ConnectorCommon for Worldpay { "worldpay" } + fn get...
2023-10-03T16:27:58Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This pull request implements the get_currency_unit from the Con...
b5b3625efdd70c619e9fc206721c4bedf8af30a4
juspay/hyperswitch
juspay__hyperswitch-2267
Bug: [REFACTOR]: [CryptoPay] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum v...
diff --git a/crates/router/src/connector/cryptopay/transformers.rs b/crates/router/src/connector/cryptopay/transformers.rs index a49380cb365..8d9f277dd0f 100644 --- a/crates/router/src/connector/cryptopay/transformers.rs +++ b/crates/router/src/connector/cryptopay/transformers.rs @@ -69,9 +69,23 @@ impl TryFrom<&Crypto...
2023-10-19T10:21:04Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> Removed the default match case as mentioned in the issue ###...
664093dc79743203196d912c17570885718b1c02
juspay/hyperswitch
juspay__hyperswitch-2262
Bug: [REFACTOR]: [Airwallex] Remove Default Case Handling ### :memo: Feature Description - We utilize match statements to make pivotal decisions, such as generating requests based on the payment method type and managing responses received from the connector. - These conditions generally go hand in hand with enum v...
diff --git a/crates/router/src/connector/airwallex/transformers.rs b/crates/router/src/connector/airwallex/transformers.rs index 51258643c64..031a8276bb0 100644 --- a/crates/router/src/connector/airwallex/transformers.rs +++ b/crates/router/src/connector/airwallex/transformers.rs @@ -186,8 +186,18 @@ impl TryFrom<&Airw...
2023-10-26T18:19:54Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> #2262 ### Additional Changes - [ ] This PR modifies the ...
6dc71fe9923a793b76eee2ea1ac1060ab584a303
juspay/hyperswitch
juspay__hyperswitch-2248
Bug: [FEATURE]: [Tsys] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount valu...
diff --git a/crates/router/src/connector/tsys.rs b/crates/router/src/connector/tsys.rs index 869aa535636..e7e818062e2 100644 --- a/crates/router/src/connector/tsys.rs +++ b/crates/router/src/connector/tsys.rs @@ -71,6 +71,10 @@ impl ConnectorCommon for Tsys { "tsys" } + fn get_currency_unit(&self) ->...
2023-10-31T16:54:55Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> - This PR is related with #2248 which implements `get_currency_...
8e484ddab8d3f4463299c7f7e8ce75b8dd628599
juspay/hyperswitch
juspay__hyperswitch-2249
Bug: [FEATURE]: [Worldline] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount...
diff --git a/crates/router/src/connector/worldline.rs b/crates/router/src/connector/worldline.rs index 4e69fd5ca0a..b10e3dcd74c 100644 --- a/crates/router/src/connector/worldline.rs +++ b/crates/router/src/connector/worldline.rs @@ -112,6 +112,10 @@ impl ConnectorCommon for Worldline { "worldline" } + ...
2023-10-12T18:04:53Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description This pull request implements the get_currency_unit from the ConnectorCommon trait for the Worldline conne...
1afae7e69a81afeff3a7ff55f2b2d5b063afb7c1
juspay/hyperswitch
juspay__hyperswitch-2244
Bug: [FEATURE]: [Rapyd] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount val...
diff --git a/crates/router/src/connector/rapyd.rs b/crates/router/src/connector/rapyd.rs index 292e6c55f26..29f21f37381 100644 --- a/crates/router/src/connector/rapyd.rs +++ b/crates/router/src/connector/rapyd.rs @@ -64,6 +64,10 @@ impl ConnectorCommon for Rapyd { "rapyd" } + fn get_currency_unit(&se...
2023-10-22T19:22:53Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This PR solves issue number #2244 for currency unit conversion ...
af90089010e06ed45a70c51d4143260eec45b6dc
juspay/hyperswitch
juspay__hyperswitch-2246
Bug: [FEATURE]: [Stax] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount valu...
diff --git a/crates/router/src/connector/stax.rs b/crates/router/src/connector/stax.rs index 82a4c7ff323..7f5fde71938 100644 --- a/crates/router/src/connector/stax.rs +++ b/crates/router/src/connector/stax.rs @@ -70,6 +70,10 @@ impl ConnectorCommon for Stax { "stax" } + fn get_currency_unit(&self) ->...
2023-10-27T14:45:03Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This PR solves the Currency Unit Conversion for STAX Connector ...
e40a29351c7aa7b86a5684959a84f0236104cafd
juspay/hyperswitch
juspay__hyperswitch-2241
Bug: [FEATURE]: [Payeezy] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount v...
diff --git a/crates/router/src/connector/payeezy.rs b/crates/router/src/connector/payeezy.rs index da712605437..03e76af907c 100644 --- a/crates/router/src/connector/payeezy.rs +++ b/crates/router/src/connector/payeezy.rs @@ -90,6 +90,10 @@ impl ConnectorCommon for Payeezy { "payeezy" } + fn get_curre...
2023-10-27T13:51:28Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> ### Additional Changes - [ ] This PR modifies the API co...
cdca284b2a7a77cb22074fa8b3b380a088c10f00
juspay/hyperswitch
juspay__hyperswitch-2237
Bug: [FEATURE]: [Noon] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount valu...
diff --git a/crates/router/src/connector/noon.rs b/crates/router/src/connector/noon.rs index 45792864255..3bfcbbc6169 100644 --- a/crates/router/src/connector/noon.rs +++ b/crates/router/src/connector/noon.rs @@ -114,6 +114,10 @@ impl ConnectorCommon for Noon { "noon" } + fn get_currency_unit(&self) ...
2023-11-05T11:34:36Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description - Addressing Issue #2237 - Modified two files in `hyperswitch/crates/router/src/connector/` - `noon....
8e484ddab8d3f4463299c7f7e8ce75b8dd628599
juspay/hyperswitch
juspay__hyperswitch-2233
Bug: [FEATURE]: [Nexi Nets] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount...
diff --git a/crates/router/src/connector/nexinets.rs b/crates/router/src/connector/nexinets.rs index 30ae4ab25e5..ac0d7494d2d 100644 --- a/crates/router/src/connector/nexinets.rs +++ b/crates/router/src/connector/nexinets.rs @@ -76,6 +76,10 @@ impl ConnectorCommon for Nexinets { "nexinets" } + fn get...
2023-10-25T01:48:47Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description This pull request implements the get_currency_unit from the ConnectorCommon trait for the Nexinets connec...
8e484ddab8d3f4463299c7f7e8ce75b8dd628599
juspay/hyperswitch
juspay__hyperswitch-2230
Bug: [FEATURE]: [Klarna] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount va...
diff --git a/crates/router/src/connector/klarna.rs b/crates/router/src/connector/klarna.rs index 1814f9de809..2611c062ebe 100644 --- a/crates/router/src/connector/klarna.rs +++ b/crates/router/src/connector/klarna.rs @@ -32,6 +32,10 @@ impl ConnectorCommon for Klarna { "klarna" } + fn get_currency_un...
2023-10-02T10:10:41Z
## Type of Change - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description This pull request implements the `get_currency_unit` from the `ConnectorCommon` trait for the Klarna connector. This function allows connectors to d...
89cb63be3328010d26b5f6322449fc50e80593e4
juspay/hyperswitch
juspay__hyperswitch-2236
Bug: [FEATURE]: [NMI] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount value...
diff --git a/crates/router/src/connector/nmi.rs b/crates/router/src/connector/nmi.rs index cdeb9c99d5e..4f7ee15d730 100644 --- a/crates/router/src/connector/nmi.rs +++ b/crates/router/src/connector/nmi.rs @@ -58,6 +58,10 @@ impl ConnectorCommon for Nmi { "nmi" } + fn get_currency_unit(&self) -> api::...
2023-10-27T09:20:15Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description - Addressing Issue: #2236 - Modified two files in `hyperswitch/crates/router/src/connector/` - `nmi....
53b8fefbc2f8b58d1be7e9f35ca8b7e44e327bfb
juspay/hyperswitch
juspay__hyperswitch-2226
Bug: [FEATURE]: [Forte] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount val...
diff --git a/crates/router/src/connector/forte.rs b/crates/router/src/connector/forte.rs index 7cc3f9f9a4e..6184b130bb6 100644 --- a/crates/router/src/connector/forte.rs +++ b/crates/router/src/connector/forte.rs @@ -82,6 +82,10 @@ impl ConnectorCommon for Forte { "forte" } + fn get_currency_unit(&se...
2023-10-11T18:34:00Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [ ] New feature - [ ] Enhancement - [x] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description <!-- Describe your changes in detail --> This pull request implements the get_currency_unit from the Con...
2d4f6b3fa004a3f03beaa604e2dbfe95fcbe22a6
juspay/hyperswitch
juspay__hyperswitch-2229
Bug: [FEATURE]: [IataPay] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount v...
diff --git a/crates/router/src/connector/iatapay.rs b/crates/router/src/connector/iatapay.rs index 3a813c50cf6..4db2faa2d42 100644 --- a/crates/router/src/connector/iatapay.rs +++ b/crates/router/src/connector/iatapay.rs @@ -90,6 +90,10 @@ impl ConnectorCommon for Iatapay { "application/json" } + fn ...
2023-10-15T07:21:50Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description - Addresses issue #2229 - Modified the files `hyperswitch/crates/router/src/connector/iatapay/transfor...
ca77c7ce3c6b806ff60e83725cc4e50855422037
juspay/hyperswitch
juspay__hyperswitch-2240
Bug: [FEATURE]: [OpenNode] Currency Unit Conversion ### :memo: Feature Description - Each currency can be described in terms of base or minor units. - For instance, when dealing with USD currency, the Cent is considered as the minor unit, while the Dollar is considered the base unit. - In Hyperswitch, the amount ...
diff --git a/crates/router/src/connector/opennode.rs b/crates/router/src/connector/opennode.rs index 6fad0f47205..07d33382a21 100644 --- a/crates/router/src/connector/opennode.rs +++ b/crates/router/src/connector/opennode.rs @@ -72,6 +72,10 @@ impl ConnectorCommon for Opennode { "opennode" } + fn get...
2023-10-19T15:45:27Z
## Type of Change <!-- Put an `x` in the boxes that apply --> - [ ] Bugfix - [x] New feature - [ ] Enhancement - [ ] Refactoring - [ ] Dependency updates - [ ] Documentation - [ ] CI/CD ## Description - Addressing Issue: #2240 - Modified two files in `hyperswitch/crates/router/src/connector/` - `open...
62d5727092ac482dd086ab9e814a8ba5e3011849