diff --git a/api-reference-v2/openapi_spec.json b/api-reference-v2/openapi_spec.json index 757beea4b652..0505dd498e3f 100644 --- a/api-reference-v2/openapi_spec.json +++ b/api-reference-v2/openapi_spec.json @@ -10283,17 +10283,6 @@ } } }, - { - "type": "object", - "required": [ - "paypal" - ], - "properties": { - "paypal": { - "type": "object" - } - } - }, { "type": "object", "required": [ diff --git a/crates/router/src/core/payment_methods/utils.rs b/crates/router/src/core/payment_methods/utils.rs index 0aad71908931..1afdaaab0622 100644 --- a/crates/router/src/core/payment_methods/utils.rs +++ b/crates/router/src/core/payment_methods/utils.rs @@ -590,7 +590,7 @@ fn compile_accepted_countries_for_mca( .map_err(KgraphError::GraphConstructionError)?; agg_nodes.push(( pm_object_country_value_node, - cgraph::Relation::Positive, + cgraph::Relation::Negative, cgraph::Strength::Weak, )); } @@ -712,7 +712,7 @@ fn compile_accepted_currency_for_mca( .map_err(KgraphError::GraphConstructionError)?; agg_nodes.push(( pm_object_currency_value_node, - cgraph::Relation::Positive, + cgraph::Relation::Negative, cgraph::Strength::Weak, )); }