feat: add offers merchant event payload - #88
Open
AbhishekChorotiya wants to merge 1 commit into
Open
Conversation
Adds an eligibleOffer/offersEvent type and offersEventToJson serializer to PaymentEventData.res, following the existing surchargeEvent pattern, plus a new Offers variant in the shared events enum. Used by hyperswitch-web to emit an offersInfo merchant event for auto-applied card eligibility offers. Fixes #87
aritro2002
approved these changes
Aug 26, 2026
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
Adds an
offersEventtype andoffersEventToJsonserializer tosdk-utils/events/PaymentEventData.res, mirroring the existingsurchargeEventpattern:eligibleOfferrecord:offerQuoteId,offerAmount,currency,code,title,description.offersEventrecord:{offers: array<eligibleOffer>}.buildOffersEvent(~offers=[])andoffersEventToJson, emitting{"offers": [...]}.Offersvariant added to the sharedeventsenum inPaymentEventTypes.res(string form"OFFERS").Additive only — no changes to existing event types/serializers.
How did you test it?
offersEventToJsonproduces{"offers": [...]}for a single auto-applied offer, matching the expectedappliedOffersInfomerchant event payload.Impact on Mobile and Web Repositories
This is additive-only (new type + new enum variant), so it does not affect existing mobile-repository consumers.
Fixes #87
Companion PR in hyperswitch-web: juspay/hyperswitch-web#1729
Checklist