Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a0ffaa7
add template code for stripebilling
Feb 9, 2025
bb432a5
add logic instead of todo in template code
Feb 9, 2025
4555023
chore: run formatter
hyperswitch-bot[bot] Feb 9, 2025
8ab0630
Merge branch 'main' into template_code_stripebilling
Feb 13, 2025
2ad25d7
fixes errors
Feb 13, 2025
3c38093
chore: run formatter
hyperswitch-bot[bot] Feb 13, 2025
a2ca88b
Merge branch 'main' into template_code_stripebilling
NISHANTH1221 Feb 24, 2025
4412b10
resolved error in default implementation
Feb 24, 2025
d6c7f7a
additional api call flow for revenue recovery
Feb 27, 2025
0139e03
Merge branch 'main' into template_code_stripebilling
Feb 27, 2025
ccfcff3
chore: run formatter
hyperswitch-bot[bot] Feb 27, 2025
4abdce9
Merge branch 'main' into template_code_stripebilling
NISHANTH1221 Mar 2, 2025
6e08413
Merge branch 'main' into template_code_stripebilling
NISHANTH1221 Mar 3, 2025
3295979
chore: run formatter
hyperswitch-bot[bot] Mar 3, 2025
0d5a8ea
changes in name of the flow in config files
Mar 3, 2025
1ad2464
chore: run formatter
hyperswitch-bot[bot] Mar 3, 2025
70b7546
Merge branch 'template_code_stripebilling' into additional_recovery_c…
NISHANTH1221 Mar 3, 2025
966ce1b
add paystack in deafult implememtation additional call flow
Mar 3, 2025
6f4573a
Merge branch 'main' into additional_recovery_call_flow
NISHANTH1221 Mar 3, 2025
4a34e07
added paystack connector in default implementation
Mar 3, 2025
e10b589
add debug and clone trait to Additional Revenue Recovery Flow Common …
Mar 3, 2025
145a6d9
chore: run formatter
hyperswitch-bot[bot] Mar 3, 2025
2cc26be
resolve spell check
Mar 3, 2025
70a430f
add stripebilling in configs
Mar 3, 2025
c9ae685
refactor: rename Additional Revenue Recovery related types and traits
Mar 4, 2025
524cce1
chore: run formatter
hyperswitch-bot[bot] Mar 4, 2025
66132cb
refactor: reorganize revenue recovery module structure
Mar 4, 2025
fc01f6c
chore: run formatter
hyperswitch-bot[bot] Mar 4, 2025
f93bbc6
Merge branch 'main' into additional_recovery_call_flow
NISHANTH1221 Mar 4, 2025
51e6dcd
change v2 to v1
Mar 4, 2025
e5b8314
refactor: update additional revenue recovery call implementations for…
Mar 4, 2025
25855cc
refactor: add RevenueRecovery trait and update related implementations
Mar 4, 2025
ad1e7dd
chore: run formatter
hyperswitch-bot[bot] Mar 4, 2025
7c05cb5
refactor: update revenue recovery request data structure
Mar 4, 2025
f09f19c
Merge branch 'main' into additional_recovery_call_flow
NISHANTH1221 Mar 5, 2025
5bf5bf1
feat(connector): add Recurly to additional revenue recovery call
Mar 5, 2025
15952db
Merge branch 'main' into additional_recovery_call_flow
NISHANTH1221 Mar 5, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(connector): add Recurly to additional revenue recovery call
  • Loading branch information
Nishanth Challa authored and Nishanth Challa committed Mar 5, 2025
commit 5bf5bf10d0ee1d1d9e36597d5b8f9a202345b676
Original file line number Diff line number Diff line change
Expand Up @@ -3604,6 +3604,7 @@ default_imp_for_additional_revenue_recovery_call!(
connectors::Placetopay,
connectors::Rapyd,
connectors::Razorpay,
connectors::Recurly,
connectors::Redsys,
connectors::Shift4,
connectors::Stax,
Expand Down
2 changes: 1 addition & 1 deletion crates/router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ payouts = ["api_models/payouts", "common_enums/payouts", "hyperswitch_connectors
payout_retry = ["payouts"]
recon = ["email", "api_models/recon"]
retry = []
v2 = ["customer_v2", "payment_methods_v2", "common_default", "api_models/v2", "diesel_models/v2", "hyperswitch_domain_models/v2", "storage_impl/v2", "kgraph_utils/v2", "common_utils/v2", "hyperswitch_connectors/v2","hyperswitch_interfaces/v2", "common_types/v2"]
v2 = ["customer_v2", "payment_methods_v2", "common_default", "api_models/v2", "diesel_models/v2", "hyperswitch_domain_models/v2", "storage_impl/v2", "kgraph_utils/v2", "common_utils/v2", "hyperswitch_connectors/v2","hyperswitch_interfaces/v2", "common_types/v2","revenue_recovery"]
v1 = ["common_default", "api_models/v1", "diesel_models/v1", "hyperswitch_domain_models/v1", "storage_impl/v1", "hyperswitch_interfaces/v1", "kgraph_utils/v1", "common_utils/v1", "hyperswitch_connectors/v1", "common_types/v1"]
customer_v2 = ["api_models/customer_v2", "diesel_models/customer_v2", "hyperswitch_domain_models/customer_v2", "storage_impl/customer_v2"]
payment_methods_v2 = ["api_models/payment_methods_v2", "diesel_models/payment_methods_v2", "hyperswitch_domain_models/payment_methods_v2", "storage_impl/payment_methods_v2", "common_utils/payment_methods_v2"]
Expand Down
Loading