refactor(router): add connector_transaction_id, send response body and use admin_api_auth_with_merchant_id for payments manual update flow (#5658)

This commit is contained in:
Sai Harsha Vardhan
2024-08-22 15:48:15 +05:30
committed by GitHub
parent da5102efe2
commit 5be0c2bfd2
7 changed files with 58 additions and 7 deletions

View File

@ -1917,6 +1917,7 @@ impl DataModelExt for PaymentAttemptUpdate {
updated_by,
unified_code,
unified_message,
connector_transaction_id,
} => DieselPaymentAttemptUpdate::ManualUpdate {
status,
error_code,
@ -1925,6 +1926,7 @@ impl DataModelExt for PaymentAttemptUpdate {
updated_by,
unified_code,
unified_message,
connector_transaction_id,
},
}
}
@ -2267,6 +2269,7 @@ impl DataModelExt for PaymentAttemptUpdate {
updated_by,
unified_code,
unified_message,
connector_transaction_id,
} => Self::ManualUpdate {
status,
error_code,
@ -2275,6 +2278,7 @@ impl DataModelExt for PaymentAttemptUpdate {
updated_by,
unified_code,
unified_message,
connector_transaction_id,
},
}
}