feat(connector): Add support for get plan prices for Chargebee#9300
Merged
Gnanasundari24 merged 25 commits intomainfrom Sep 19, 2025
Merged
feat(connector): Add support for get plan prices for Chargebee#9300Gnanasundari24 merged 25 commits intomainfrom
Gnanasundari24 merged 25 commits intomainfrom
Conversation
jagan-jaya
requested changes
Sep 8, 2025
| @@ -0,0 +1,4 @@ | |||
| #[derive(Debug, Clone)] | |||
| pub struct GetSubscriptionPlanPricesRequest { | |||
| pub item_id: String, | |||
Contributor
There was a problem hiding this comment.
Suggested change
| pub item_id: String, | |
| pub plan_price_id: String, |
deepanshu-iiitu
requested changes
Sep 8, 2025
jagan-jaya
requested changes
Sep 11, 2025
crates/hyperswitch_connectors/src/connectors/chargebee/transformers.rs
Outdated
Show resolved
Hide resolved
jagan-jaya
requested changes
Sep 11, 2025
crates/hyperswitch_connectors/src/connectors/chargebee/transformers.rs
Outdated
Show resolved
Hide resolved
jagan-jaya
previously approved these changes
Sep 11, 2025
deepanshu-iiitu
previously approved these changes
Sep 11, 2025
a7a63b8
deepanshu-iiitu
previously approved these changes
Sep 11, 2025
jagan-jaya
requested changes
Sep 17, 2025
jagan-jaya
previously approved these changes
Sep 18, 2025
deepanshu-iiitu
previously approved these changes
Sep 18, 2025
9276cf5
jagan-jaya
approved these changes
Sep 18, 2025
deepanshu-iiitu
approved these changes
Sep 19, 2025
pixincreate
added a commit
that referenced
this pull request
Sep 23, 2025
…aysafe-apple-pay * 'main' of github.com:juspay/hyperswitch: feat(connector): [Tokenex] add template code (#9416) fix(webhooks): add idempotent_event_id generation using URL-safe Base64 (no padding) and SHA256 digest (#9405) feat(core): add webhook setup event handler (#9420) chore(version): 2025.09.22.0 fix(connectors): [Nexixpay] send cvv in nexixpay requests (#9459) feat(router): add flag to wait for post message in `threeDSMethodData` for `three_ds_invoke` next action in Payments Confirm (#9454) feat(connector): [Paysafe] add wasm changes (#9455) feat: Implement subscription create for Chargebee (#9303) fix(connector): [CYBERSOURCE] Pass transaction type for only wallet MITs (#9444) feat(Connector): [checkout] l2l3 data (#9446) feat(nuvei): applepay decrypt at hyperswitch flow (#9431) fix(connectors): [Nuvei] payments, refunds and chargeback webhooks (#9378) fix(connector): [ADYEN] Add fallback parsing for refusal codes and messages (#9361) feat(connector): Add support for get plan prices for Chargebee (#9300) feat(core): Juspay 3DS Server via Payments API (#9433) fix(core): Add Validation Check for Amount in Capture Flow (#9434) chore(version): 2025.09.19.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Type of Change
Description
This PR integrates the get plan prices endpoint for chargebee, required to be called in the respective API handler for the same (not yet implemented)
Additional Changes
Motivation and Context
Closes #9054
How did you test it?
Since the API handler is being implemented in a separate PR, this connector integration code cannot be called directly and was tested only by successful compilation of code


Checklist
cargo +nightly fmt --allcargo clippy